API Integration Guide

Complete documentation for integrating with the Magpie Scraping API.

๐Ÿ” Authentication

All endpoints require a Bearer token in the Authorization header:

Authorization: your-api-token

Contact us for trial access or manage your token in Magpie Data.

โณ Approval Flow

Jobs for Variant Sold, Merchant Items and Search Items endpoints go through manual approval:

  1. You submit a job โ†’ Status: AWAITING_APPROVAL
  2. Our team reviews and approves (within 24 hours)
  3. Job starts processing โ†’ Status: PROCESSING
  4. Results ready โ†’ Status: COMPLETED or PARTIAL_COMPLETE

Note: Shopee Product Page, Tokopedia PDP, and Blibli PDP do NOT require approval - tasks are processed immediately.

1. Variant Sold

Batch scraping for Shopee product variant and sales data. Up to 50,000 items per request.

Supported regions: ID ยท SG ยท TH ยท PH ยท MY ยท VN ยท TW

๐Ÿ”‘ Endpoint

POST /v1/shopee/variant_sold_v1/submit
GET  /v1/shopee/variant_sold_v1/retrieve/{job_id}
GET  /v1/shopee/variant_sold_v1/download/{job_id}

๐Ÿ“ฅ Request Body

ParameterTypeRequiredDescription
countrystringYesCountry code: id, sg, th, ph, my, vn, tw
itemsarrayYesArray of objects with item_id and shop_id (max 50,000)

๐Ÿ’ป Code Examples

# Submit Job
curl -X POST "https://nest-api.magpieiq.com/v1/shopee/variant_sold_v1/submit" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "country": "id",
    "items": [
      {"item_id": 13490493252, "shop_id": 651735813},
      {"item_id": 12345678901, "shop_id": 987654321}
    ]
  }'

# Poll Status
curl "https://nest-api.magpieiq.com/v1/shopee/variant_sold_v1/retrieve/{job_id}" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

# Download Results
curl "https://nest-api.magpieiq.com/v1/shopee/variant_sold_v1/download/{job_id}" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
View Python Example
import requests
import time

API_HOST = "https://nest-api.magpieiq.com"
headers = {
    "Authorization": "Bearer YOUR_API_TOKEN",
    "Content-Type": "application/json"
}

# 1. Submit Job
payload = {
    "country": "id",
    "items": [
        {"item_id": 13490493252, "shop_id": 651735813},
        {"item_id": 12345678901, "shop_id": 987654321}
    ]
}
response = requests.post(f"{API_HOST}/v1/shopee/variant_sold_v1/submit", json=payload, headers=headers)
job_id = response.json()["job_id"]
print(f"Job submitted: {job_id}")

# 2. Poll until complete
while True:
    status_resp = requests.get(f"{API_HOST}/v1/shopee/variant_sold_v1/retrieve/{job_id}", headers=headers)
    status = status_resp.json()["status"]
    print(f"Status: {status}")
    if status in ["COMPLETED", "PARTIAL_COMPLETE", "FAILED"]:
        break
    time.sleep(30)

# 3. Download results
download_resp = requests.get(f"{API_HOST}/v1/shopee/variant_sold_v1/download/{job_id}", headers=headers)
print(download_resp.json())

Behavior

  • Cost: 10 credits per item
  • Approval: Required (24h timeout)
  • Batching: Items are chunked into batches of 50 for processing
  • Results: Merged into a single JSON file per job

Result Example

Variant Sold JSON Click to expand
{
  "cbOption": 0,
  "cmtCount": 56,
  "condition": 1,
  "createTime": 1651126772,
  "currency": "IDR",
  "description": "Philips Sonicare Brush Head Opt Wht 4x Wht HX6064/67\n\nGigi lebih putih hingga 100% hanya dalam satu minggu*. \nKepala sikat W2 Optimal White sangat cocok untuk mereka yang ingin melakukan lebih dari sekadar pembersihan mendalam untuk menghilangkan noda di permukaan untuk senyum putih dan bercahaya. Kepala sikat ini juga bagus untuk menjaga kecerahan di antara perawatan pemutihan profesional. Bulu sikat berkualitas tinggi yang padat menghilangkan plak hingga 7x lebih banyak daripada sikat gigi manual.\n\nKepala sikat menjadi kurang efektif setelah 3 bulan penggunaan, tetapi dengan BrushSyncโ„ข Anda akan diingatkan sebelum hal ini terjadi. Sikat gigi pintar Anda akan melacak seberapa sering dan seberapa keras Anda menyikat, dan akan memberi tahu Anda kapan saatnya untuk mengganti.\n\nKepala sikat W2 Optimal White Anda sangat cocok dengan gagang sikat gigi Philips Sonicare, kecuali Philips One dan Essence. Cukup klik on dan off untuk penggantian dan pembersihan yang mudah.\n\nKeunggulan:\n1. Gigi lebih putih dalam 7 hari\n2. Penyandingan mode BrushSyncโ„ข  \n3. Pemasangan mudah",
  "flag": 917504,
  "globalBrandId": 1146897,
  "images": [
    "id-11134207-7ra0s-mcvqfkodg4yg05",
    "id-11134207-7ra0u-mcvqfkodhjiw79",
    "id-11134207-7ra0h-mcvqfkodiy3cac",
    "id-11134207-7ra0i-mcvqfkodkcns17",
    "id-11134207-7ra0h-mcvqfkodlr88d6",
    "id-11134207-7ra0m-mcvqfkodn5so0d",
    "id-11134207-7ra0m-mcvqfkodokd43e"
  ],
  "itemCardV2": {
    "displayPrice": {
      "currency": "IDR",
      "discount": 0,
      "discountPrice": "44862400000",
      "discountText": {
        "buyerTranslatedText": {
          "source": "",
          "translatedLanguage": "",
          "translatedText": ""
        },
        "text": "-29%"
      },
      "displayFinalPriceIcon": true,
      "priceMask": false
    }
  },
  "itemId": "13490493252",
  "likedCount": 47,
  "localBrand": "",
  "localCatIds": null,
  "maxPriceDisplay": "52480000000",
  "maxPriceDisplayBeforeDiscount": "63590000000",
  "minPriceDisplay": "52480000000",
  "minPriceDisplayBeforeDiscount": "63590000000",
  "models": [
    {
      "createTime": 1651126772,
      "currency": "IDR",
      "modelId": "116455280153",
      "name": "",
      "normalPrice": "63590000000",
      "price": "52480000000",
      "priceInfo": {},
      "priceRebate": null,
      "priceRuleId": "907214374617088",
      "sellerSku": "",
      "sold": 237,
      "status": 1,
      "stock": 4,
      "tierIndices": [
        0
      ]
    }
  ],
  "mtime": 1775640991,
  "name": "Philips | Brush Replacement | Kepala Sikat Gigi Optimal White | Gigi Lebih Putih dalam Satu Minggu | Putih | Isi 4 | HX6064/67",
  "offerCount": 0,
  "option": 0,
  "priceBeforeDiscount": "63590000000",
  "priceInfo": {
    "maxFinalPrice": "44862400000",
    "minFinalPrice": "44862400000"
  },
  "priceMax": "52480000000",
  "priceMin": "52480000000",
  "rating": {
    "ratingCounts": [
      0,
      0,
      0,
      0,
      1,
      55
    ]
  },
  "region": "ID",
  "sellerSku": "PSB3A35",
  "shopId": "651735813",
  "singlePriceDisplay": "52480000000",
  "singlePriceDisplayBeforeDiscount": "63590000000",
  "sizeChart": "",
  "sold": 237,
  "soldOutTime": "0",
  "status": 1,
  "tierVariations": [
    {
      "images": null,
      "name": "",
      "options": [
        ""
      ]
    }
  ],
  "totalStock": "4",
  "touchTime": 1651126772,
  "translatedItemName": null,
  "videoInfo": null,
  "wholesaleTierList": null
}

2. Shopee Product Page

Extended product details from Shopee product detail page. Single task per request. No Approval Required

Supported regions: ID ยท SG ยท TH ยท PH ยท MY ยท VN

๐Ÿ”‘ Endpoint

POST /v1/shopee/get_pc/submit
GET  /v1/shopee/get_pc/retrieve/{task_id}

๐Ÿ“ฅ Request Body

ParameterTypeRequiredDescription
urlstringYesShopee product URL (e.g., https://shopee.co.id/product/{shop_id}/{item_id})

๐Ÿ’ป Code Examples

# Submit Task
curl -X POST "https://nest-api.magpieiq.com/v1/shopee/get_pc/submit" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://shopee.co.id/product/34907167/40869177342"}'

# Retrieve Result (poll until status is "completed")
curl "https://nest-api.magpieiq.com/v1/shopee/get_pc/retrieve/{task_id}" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
View Python Example
import requests
import time

API_HOST = "https://nest-api.magpieiq.com"
headers = {"Authorization": "Bearer YOUR_API_TOKEN", "Content-Type": "application/json"}

# Submit
resp = requests.post(f"{API_HOST}/v1/shopee/get_pc/submit",
    json={"url": "https://shopee.co.id/product/34907167/40869177342"}, headers=headers)
task_id = resp.json()["task_id"]

# Poll until ready
while True:
    result = requests.get(f"{API_HOST}/v1/shopee/get_pc/retrieve/{task_id}", headers=headers).json()
    if result.get("status") == "completed":
        print(result["data"])
        break
    time.sleep(5)

โšก Behavior

  • Cost: 8 credits per request
  • Approval: NOT required - immediate processing
  • Processing: Single task processing
  • Results: Full product detail page data including attributes, models, description

Result Example

Shopee Product Page JSON Click to expand
{
    "bff_meta": null,
    "error": null,
    "error_msg": null,
    "data": {
        "item": {
            "item_id": 40869177342,
            "shop_id": 34907167,
            "item_status": "normal",
            "status": 1,
            "item_type": 0,
            "reference_item_id": "",
            "title": "Apple iPhone 15 - Garansi Resmi",
            "image": "id-11134207-82250-mkkn12wketc0d8",
            "label_ids": [
                1400066568,
                47,
                1000255,
                1000544,
                1000167,
                1000559,
                1000560,
                2018619,
                1000584,
                1012729,
                2018618,
                2153644,
                1428713,
                1718087960,
                844931064601283,
                1119699,
                1015914,
                700190087,
                1400285055,
                2213652,
                2008656,
                700765096,
                700005503,
                1049134,
                700005498,
                1049130,
                700005505,
                1059150,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                1718093079,
                1049131,
                700005507,
                700000530,
                700005570,
                1049126,
                1059152,
                700005489,
                298938356,
                299138386,
                298463379,
                1718088045,
                298468389
            ],
            "is_adult": false,
            "is_preview": false,
            "flag": 131072,
            "is_service_by_shopee": false,
            "condition": 1,
            "cat_id": 100013,
            "has_low_fulfillment_rate": false,
            "is_live_streaming_price": null,
            "currency": "IDR",
            "brand": "Apple",
            "brand_id": 1189223,
            "show_discount": 0,
            "ctime": 1758006715,
            "item_rating": {
                "rating_star": 4.916666666666667
            },
            "cb_option": 0,
            "has_model_with_available_shopee_stock": false,
            "shop_location": "KOTA MEDAN",
            "attributes": [
                {
                    "name": "Kapasitas Penyimpanan",
                    "value": "256GB",
                    "id": 100465,
                    "is_timestamp": false,
                    "brand_option": null,
                    "val_id": 5162,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": null,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Masa Garansi",
                    "value": "12 Bulan",
                    "id": 100121,
                    "is_timestamp": false,
                    "brand_option": null,
                    "val_id": 822,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": null,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Tipe Kabel Seluler",
                    "value": "Type C, i-phone, iphone",
                    "id": 100481,
                    "is_timestamp": false,
                    "brand_option": null,
                    "val_id": 2790,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": null,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Tipe Pengaman Layar",
                    "value": "Lainnya",
                    "id": 100503,
                    "is_timestamp": false,
                    "brand_option": null,
                    "val_id": 2839,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": null,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Tipe Case",
                    "value": "Lainnya",
                    "id": 100471,
                    "is_timestamp": false,
                    "brand_option": null,
                    "val_id": 2792,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": null,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Produk Custom",
                    "value": "Tidak",
                    "id": 101219,
                    "is_timestamp": false,
                    "brand_option": null,
                    "val_id": 7222,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": null,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Build-in Battery",
                    "value": "Ya",
                    "id": 100526,
                    "is_timestamp": false,
                    "brand_option": null,
                    "val_id": 2950,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": null,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "SIRIM Certified",
                    "value": "Yes",
                    "id": 101198,
                    "is_timestamp": false,
                    "brand_option": null,
                    "val_id": 7057,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": null,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Jenis Garansi",
                    "value": "Garansi Resmi",
                    "id": 100370,
                    "is_timestamp": false,
                    "brand_option": null,
                    "val_id": 0,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": null,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Kondisi",
                    "value": "baru",
                    "id": 100413,
                    "is_timestamp": false,
                    "brand_option": null,
                    "val_id": 0,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": null,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Model Handphone",
                    "value": "iphone 15",
                    "id": 100490,
                    "is_timestamp": false,
                    "brand_option": null,
                    "val_id": 0,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": null,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "No.Sertifikat (POSTEL)",
                    "value": "-",
                    "id": 101255,
                    "is_timestamp": false,
                    "brand_option": null,
                    "val_id": null,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": null,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                }
            ],
            "rich_text_description": {
                "paragraph_list": [
                    {
                        "type": 0,
                        "text": "iPhone 15 menghadirkan Dynamic Island, kamera Utama 48 MP, dan USB-C โ€” semuanya dalam desain aluminium dan kaca berwarna yang tangguh. ",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 10001,
                        "text": null,
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": 1
                    },
                    {
                        "type": 0,
                        "text": "Isi Kotak :",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "โ€ข iPhone dengan iOS 17.",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "โ€ข Kabel USB-C ke USB-C.",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "โ€ข Buku Manual dan dokumentasi lain.",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 10001,
                        "text": null,
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": 1
                    },
                    {
                        "type": 0,
                        "text": "Poin-poin fitur utama",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "DYNAMIC ISLAND HADIR DI IPHONE 15 โ€” Dynamic Island menampilkan gelembung pemberitahuan dan Aktivitas Langsung โ€” jadi Anda tidak melewatkannya saat melakukan hal lain. Anda dapat melihat siapa yang menelepon, memeriksa status penerbangan Anda, dan banyak lagi.",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "DESAIN INOVATIF โ€” iPhone 15 dilengkapi dengan desain aluminium dan kaca berwarna yang tangguh. Tahan cipratan, air, dan debu.(1) Bagian depan Ceramic Shield lebih tangguh dibandingkan kaca ponsel pintar mana pun. Dan layar Super Retina XDR 6,1 (2) hingga 2x lebih terang di bawah sinar matahari dibandingkan iPhone 14.",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "KAMERA UTAMA 48 MP DENGAN TELEFOTO 2X โ€” Kamera Utama 48 MP mengambil gambar dengan resolusi super tinggi. Jadi kini semakin mudah untuk mengambil foto yang memukau dengan detail menakjubkan. Telefoto berkualitas optik 2x memungkinkan Anda mengambil gambar close-up yang sempurna.",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "GENERASI BARU MODE POTRET โ€” Ambil gambar dengan lebih banyak detail dan warna. Ketuk untuk mengalihkan fokus antara subjek โ€” bahkan setelah Anda mengambil gambar.",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "CHIP A16 BIONIC SUPER BERTENAGA โ€” Chip super cepat mendukung beragam fitur canggih seperti fotografi komputasional, transisi Dynamic Island yang lancar, dan Isolasi Suara untuk panggilan telepon. Dan A16 Bionic sangat efisien dalam membantu menghadirkan kekuatan baterai sepanjang hari yang menakjubkan.(3)",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "KONEKTIVITAS USB-C โ€” Konektor USB-C memungkinkan Anda mengisi daya Mac atau iPad dengan kabel yang sama dengan yang Anda gunakan untuk mengisi daya iPhone 15. Anda bahkan dapat menggunakan iPhone 15 untuk mengisi daya Apple Watch atau AirPods.",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "FITUR KESELAMATAN PENTING โ€” Dengan Deteksi Tabrakan, iPhone bisa mendeteksi kecelakaan mobil yang parah dan melakukan panggilan bantuan saat Anda tak bisa.(4)",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "DIDESAIN UNTUK MEMBUAT PERUBAHAN โ€” iPhone dilengkapi dengan perlindungan privasi yang membantu Anda tetap memegang kendali atas data. Terbuat dari lebih banyak material daur ulang untuk meminimalkan dampak lingkungan. Dan memiliki fitur bawaan yang menjadikan iPhone lebih mudah diakses oleh semua orang.",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 10001,
                        "text": null,
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": 1
                    },
                    {
                        "type": 0,
                        "text": "Legal",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "(1) iPhone 15, iPhone 15 Plus, iPhone 15 Pro, dan iPhone 15 Pro Max tahan cipratan, air, dan debu dan diuji dalam kondisi laboratorium terkontrol dengan level IP68 menurut standar IEC 60529 (kedalaman maksimum 6 meter hingga selama 30 menit). Ketahanan terhadap cipratan, air, dan debu tidak berlaku secara permanen. Daya tahan mungkin berkurang akibat penggunaan sehari-hari. Jangan coba mengisi daya iPhone yang basah; lihat panduan pengguna untuk instruksi pembersihan dan pengeringan. Kerusakan akibat cairan tidak ditanggung dalam garansi.ย ",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "(2) Layar memiliki sudut melengkung. Jika diukur sebagai persegi standar, layarnya memiliki ukuran diagonal 6,12 inci (iPhone 15 Pro, iPhone 15) atau 6,69 inci (iPhone 15 Pro Max, iPhone 15 Plus). Area bidang layar berukuran lebih kecil.",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "(3) Kekuatan baterai bervariasi tergantung penggunaan dan konfigurasi; lihat apple.com/batteries untuk informasi selengkapnya.",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "(4) iPhone 15 dan iPhone 15 Pro bisa mendeteksi kecelakaan mobil yang parah dan melakukan panggilan bantuan. Memerlukan panggilan Wi-Fi atau koneksi seluler.",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 10001,
                        "text": null,
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": 1
                    },
                    {
                        "type": 0,
                        "text": "Cara klaim garansi:",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "1. Bawa UNIT, DUS, NOTA PEMBELIAN dan KARTU GARANSI ke Service Center terdekat di kota Anda.",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "2. Jelaskan ke Customer Service keluhan anda (selama masih dalam masa garansi, tidak dikenakan biaya/gratis).",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "3. Garansi TIDAK BERLAKU apabila kerusakan karena human error (Contoh: Jatuh/Pecah, kena air, terbakar)",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "========================",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    },
                    {
                        "type": 0,
                        "text": "MEMBELI = SETUJU",
                        "img_id": null,
                        "ratio": null,
                        "description_type": 1,
                        "empty_paragraph_count": null
                    }
                ],
                "source_language": null
            },
            "invoice_option": null,
            "is_category_failed": null,
            "is_prescription_item": false,
            "preview_info": null,
            "show_prescription_feed": false,
            "is_alcohol_product": false,
            "is_infant_milk_formula_product": false,
            "is_unavailable": false,
            "is_partial_fulfilled": false,
            "is_presale": false,
            "is_presale_deposit_item": null,
            "is_presale_deposit_made": null,
            "description": "iPhone 15 menghadirkan Dynamic Island, kamera Utama 48 MP, dan USB-C โ€” semuanya dalam desain aluminium dan kaca berwarna yang tangguh. \n\nIsi Kotak :\nโ€ข iPhone dengan iOS 17.\nโ€ข Kabel USB-C ke USB-C.\nโ€ข Buku Manual dan dokumentasi lain.\n\nPoin-poin fitur utama\nDYNAMIC ISLAND HADIR DI IPHONE 15 โ€” Dynamic Island menampilkan gelembung pemberitahuan dan Aktivitas Langsung โ€” jadi Anda tidak melewatkannya saat melakukan hal lain. Anda dapat melihat siapa yang menelepon, memeriksa status penerbangan Anda, dan banyak lagi.\nDESAIN INOVATIF โ€” iPhone 15 dilengkapi dengan desain aluminium dan kaca berwarna yang tangguh. Tahan cipratan, air, dan debu.(1) Bagian depan Ceramic Shield lebih tangguh dibandingkan kaca ponsel pintar mana pun. Dan layar Super Retina XDR 6,1 (2) hingga 2x lebih terang di bawah sinar matahari dibandingkan iPhone 14.\nKAMERA UTAMA 48 MP DENGAN TELEFOTO 2X โ€” Kamera Utama 48 MP mengambil gambar dengan resolusi super tinggi. Jadi kini semakin mudah untuk mengambil foto yang memukau dengan detail menakjubkan. Telefoto berkualitas optik 2x memungkinkan Anda mengambil gambar close-up yang sempurna.\nGENERASI BARU MODE POTRET โ€” Ambil gambar dengan lebih banyak detail dan warna. Ketuk untuk mengalihkan fokus antara subjek โ€” bahkan setelah Anda mengambil gambar.\nCHIP A16 BIONIC SUPER BERTENAGA โ€” Chip super cepat mendukung beragam fitur canggih seperti fotografi komputasional, transisi Dynamic Island yang lancar, dan Isolasi Suara untuk panggilan telepon. Dan A16 Bionic sangat efisien dalam membantu menghadirkan kekuatan baterai sepanjang hari yang menakjubkan.(3)\nKONEKTIVITAS USB-C โ€” Konektor USB-C memungkinkan Anda mengisi daya Mac atau iPad dengan kabel yang sama dengan yang Anda gunakan untuk mengisi daya iPhone 15. Anda bahkan dapat menggunakan iPhone 15 untuk mengisi daya Apple Watch atau AirPods.\nFITUR KESELAMATAN PENTING โ€” Dengan Deteksi Tabrakan, iPhone bisa mendeteksi kecelakaan mobil yang parah dan melakukan panggilan bantuan saat Anda tak bisa.(4)\nDIDESAIN UNTUK MEMBUAT PERUBAHAN โ€” iPhone dilengkapi dengan perlindungan privasi yang membantu Anda tetap memegang kendali atas data. Terbuat dari lebih banyak material daur ulang untuk meminimalkan dampak lingkungan. Dan memiliki fitur bawaan yang menjadikan iPhone lebih mudah diakses oleh semua orang.\n\nLegal\n(1) iPhone 15, iPhone 15 Plus, iPhone 15 Pro, dan iPhone 15 Pro Max tahan cipratan, air, dan debu dan diuji dalam kondisi laboratorium terkontrol dengan level IP68 menurut standar IEC 60529 (kedalaman maksimum 6 meter hingga selama 30 menit). Ketahanan terhadap cipratan, air, dan debu tidak berlaku secara permanen. Daya tahan mungkin berkurang akibat penggunaan sehari-hari. Jangan coba mengisi daya iPhone yang basah; lihat panduan pengguna untuk instruksi pembersihan dan pengeringan. Kerusakan akibat cairan tidak ditanggung dalam garansi.ย \n(2) Layar memiliki sudut melengkung. Jika diukur sebagai persegi standar, layarnya memiliki ukuran diagonal 6,12 inci (iPhone 15 Pro, iPhone 15) atau 6,69 inci (iPhone 15 Pro Max, iPhone 15 Plus). Area bidang layar berukuran lebih kecil.\n(3) Kekuatan baterai bervariasi tergantung penggunaan dan konfigurasi; lihat apple.com/batteries untuk informasi selengkapnya.\n(4) iPhone 15 dan iPhone 15 Pro bisa mendeteksi kecelakaan mobil yang parah dan melakukan panggilan bantuan. Memerlukan panggilan Wi-Fi atau koneksi seluler.\n\nCara klaim garansi:\n1. Bawa UNIT, DUS, NOTA PEMBELIAN dan KARTU GARANSI ke Service Center terdekat di kota Anda.\n2. Jelaskan ke Customer Service keluhan anda (selama masih dalam masa garansi, tidak dikenakan biaya/gratis).\n3. Garansi TIDAK BERLAKU apabila kerusakan karena human error (Contoh: Jatuh/Pecah, kena air, terbakar)\n========================\nMEMBELI = SETUJU",
            "categories": [
                {
                    "catid": 100013,
                    "display_name": "Handphone \u0026 Aksesoris",
                    "no_sub": false,
                    "is_default_subcat": false
                },
                {
                    "catid": 100073,
                    "display_name": "Handphone",
                    "no_sub": true,
                    "is_default_subcat": false
                }
            ],
            "fe_categories": [
                {
                    "catid": 11044458,
                    "display_name": "Handphone \u0026 Aksesoris",
                    "no_sub": false,
                    "is_default_subcat": false
                },
                {
                    "catid": 11044476,
                    "display_name": "Handphone",
                    "no_sub": false,
                    "is_default_subcat": false
                },
                {
                    "catid": 11044496,
                    "display_name": "Apple",
                    "no_sub": true,
                    "is_default_subcat": false
                }
            ],
            "item_has_video": true,
            "presale_dday_start_time": null,
            "is_lowest_price_at_shopee": null,
            "display_description_disclosure_rsku_redirection": null,
            "display_similar_sold": null,
            "title_type": 1,
            "authorized_brand_name": null,
            "models": [
                {
                    "item_id": 40869177342,
                    "status": 1,
                    "current_promotion_reserved_stock": null,
                    "name": "Blue,128GB",
                    "promotion_id": 0,
                    "price": 1327000000000,
                    "price_stocks": [
                        {
                            "allocated_stock": null,
                            "stock_breakdown_by_location": null,
                            "promotion_type": 0
                        }
                    ],
                    "current_promotion_has_reserve_stock": false,
                    "normal_stock": null,
                    "extinfo": {
                        "tier_index": [
                            4,
                            0
                        ],
                        "is_pre_order": false,
                        "estimated_days": 2
                    },
                    "price_before_discount": 0,
                    "model_id": 238282002834,
                    "stock": null,
                    "has_gimmick_tag": false,
                    "key_measurement": null,
                    "sold": null,
                    "is_lowest_price_at_shopee": false,
                    "name_tr": null,
                    "is_clickable": true,
                    "is_grayout": false,
                    "has_stock": true
                },
                {
                    "item_id": 40869177342,
                    "status": 1,
                    "current_promotion_reserved_stock": null,
                    "name": "Pink,128GB",
                    "promotion_id": 0,
                    "price": 1327000000000,
                    "price_stocks": [
                        {
                            "allocated_stock": null,
                            "stock_breakdown_by_location": null,
                            "promotion_type": 0
                        }
                    ],
                    "current_promotion_has_reserve_stock": false,
                    "normal_stock": null,
                    "extinfo": {
                        "tier_index": [
                            3,
                            0
                        ],
                        "is_pre_order": false,
                        "estimated_days": 2
                    },
                    "price_before_discount": 0,
                    "model_id": 238282002832,
                    "stock": null,
                    "has_gimmick_tag": false,
                    "key_measurement": null,
                    "sold": null,
                    "is_lowest_price_at_shopee": false,
                    "name_tr": null,
                    "is_clickable": true,
                    "is_grayout": false,
                    "has_stock": true
                },
                {
                    "item_id": 40869177342,
                    "status": 1,
                    "current_promotion_reserved_stock": null,
                    "name": "Green,256GB",
                    "promotion_id": 0,
                    "price": 1407900000000,
                    "price_stocks": [
                        {
                            "allocated_stock": null,
                            "stock_breakdown_by_location": null,
                            "promotion_type": 0
                        }
                    ],
                    "current_promotion_has_reserve_stock": false,
                    "normal_stock": null,
                    "extinfo": {
                        "tier_index": [
                            1,
                            1
                        ],
                        "is_pre_order": false,
                        "estimated_days": 2
                    },
                    "price_before_discount": 0,
                    "model_id": 375252464276,
                    "stock": null,
                    "has_gimmick_tag": false,
                    "key_measurement": null,
                    "sold": null,
                    "is_lowest_price_at_shopee": false,
                    "name_tr": null,
                    "is_clickable": false,
                    "is_grayout": true,
                    "has_stock": false
                },
                {
                    "item_id": 40869177342,
                    "status": 1,
                    "current_promotion_reserved_stock": null,
                    "name": "Yellow,128GB",
                    "promotion_id": 0,
                    "price": 1151700000000,
                    "price_stocks": [
                        {
                            "allocated_stock": null,
                            "stock_breakdown_by_location": null,
                            "promotion_type": 0
                        }
                    ],
                    "current_promotion_has_reserve_stock": false,
                    "normal_stock": null,
                    "extinfo": {
                        "tier_index": [
                            0,
                            0
                        ],
                        "is_pre_order": false,
                        "estimated_days": 2
                    },
                    "price_before_discount": 0,
                    "model_id": 375252464273,
                    "stock": null,
                    "has_gimmick_tag": false,
                    "key_measurement": null,
                    "sold": null,
                    "is_lowest_price_at_shopee": false,
                    "name_tr": null,
                    "is_clickable": false,
                    "is_grayout": true,
                    "has_stock": false
                },
                {
                    "item_id": 40869177342,
                    "status": 1,
                    "current_promotion_reserved_stock": null,
                    "name": "Black,256GB",
                    "promotion_id": 0,
                    "price": 1410300000000,
                    "price_stocks": [
                        {
                            "allocated_stock": null,
                            "stock_breakdown_by_location": null,
                            "promotion_type": 0
                        }
                    ],
                    "current_promotion_has_reserve_stock": false,
                    "normal_stock": null,
                    "extinfo": {
                        "tier_index": [
                            2,
                            1
                        ],
                        "is_pre_order": false,
                        "estimated_days": 2
                    },
                    "price_before_discount": 0,
                    "model_id": 435411719672,
                    "stock": null,
                    "has_gimmick_tag": false,
                    "key_measurement": null,
                    "sold": null,
                    "is_lowest_price_at_shopee": false,
                    "name_tr": null,
                    "is_clickable": false,
                    "is_grayout": true,
                    "has_stock": false
                },
                {
                    "item_id": 40869177342,
                    "status": 1,
                    "current_promotion_reserved_stock": null,
                    "name": "Pink,256GB",
                    "promotion_id": 0,
                    "price": 1410300000000,
                    "price_stocks": [
                        {
                            "allocated_stock": null,
                            "stock_breakdown_by_location": null,
                            "promotion_type": 0
                        }
                    ],
                    "current_promotion_has_reserve_stock": false,
                    "normal_stock": null,
                    "extinfo": {
                        "tier_index": [
                            3,
                            1
                        ],
                        "is_pre_order": false,
                        "estimated_days": 2
                    },
                    "price_before_discount": 0,
                    "model_id": 238282002833,
                    "stock": null,
                    "has_gimmick_tag": false,
                    "key_measurement": null,
                    "sold": null,
                    "is_lowest_price_at_shopee": false,
                    "name_tr": null,
                    "is_clickable": false,
                    "is_grayout": true,
                    "has_stock": false
                },
                {
                    "item_id": 40869177342,
                    "status": 1,
                    "current_promotion_reserved_stock": null,
                    "name": "Green,128GB",
                    "promotion_id": 0,
                    "price": 1151700000000,
                    "price_stocks": [
                        {
                            "allocated_stock": null,
                            "stock_breakdown_by_location": null,
                            "promotion_type": 0
                        }
                    ],
                    "current_promotion_has_reserve_stock": false,
                    "normal_stock": null,
                    "extinfo": {
                        "tier_index": [
                            1,
                            0
                        ],
                        "is_pre_order": false,
                        "estimated_days": 2
                    },
                    "price_before_discount": 0,
                    "model_id": 375252464275,
                    "stock": null,
                    "has_gimmick_tag": false,
                    "key_measurement": null,
                    "sold": null,
                    "is_lowest_price_at_shopee": false,
                    "name_tr": null,
                    "is_clickable": false,
                    "is_grayout": true,
                    "has_stock": false
                },
                {
                    "item_id": 40869177342,
                    "status": 1,
                    "current_promotion_reserved_stock": null,
                    "name": "Blue,256GB",
                    "promotion_id": 0,
                    "price": 1410300000000,
                    "price_stocks": [
                        {
                            "allocated_stock": null,
                            "stock_breakdown_by_location": null,
                            "promotion_type": 0
                        }
                    ],
                    "current_promotion_has_reserve_stock": false,
                    "normal_stock": null,
                    "extinfo": {
                        "tier_index": [
                            4,
                            1
                        ],
                        "is_pre_order": false,
                        "estimated_days": 2
                    },
                    "price_before_discount": 0,
                    "model_id": 238282002835,
                    "stock": null,
                    "has_gimmick_tag": false,
                    "key_measurement": null,
                    "sold": null,
                    "is_lowest_price_at_shopee": false,
                    "name_tr": null,
                    "is_clickable": false,
                    "is_grayout": true,
                    "has_stock": false
                },
                {
                    "item_id": 40869177342,
                    "status": 1,
                    "current_promotion_reserved_stock": null,
                    "name": "Black,128GB",
                    "promotion_id": 0,
                    "price": 1327000000000,
                    "price_stocks": [
                        {
                            "allocated_stock": null,
                            "stock_breakdown_by_location": null,
                            "promotion_type": 0
                        }
                    ],
                    "current_promotion_has_reserve_stock": false,
                    "normal_stock": null,
                    "extinfo": {
                        "tier_index": [
                            2,
                            0
                        ],
                        "is_pre_order": false,
                        "estimated_days": 2
                    },
                    "price_before_discount": 0,
                    "model_id": 435411719671,
                    "stock": null,
                    "has_gimmick_tag": false,
                    "key_measurement": null,
                    "sold": null,
                    "is_lowest_price_at_shopee": true,
                    "name_tr": null,
                    "is_clickable": true,
                    "is_grayout": false,
                    "has_stock": true
                },
                {
                    "item_id": 40869177342,
                    "status": 1,
                    "current_promotion_reserved_stock": null,
                    "name": "Yellow,256GB",
                    "promotion_id": 0,
                    "price": 1432500000000,
                    "price_stocks": [
                        {
                            "allocated_stock": null,
                            "stock_breakdown_by_location": null,
                            "promotion_type": 0
                        }
                    ],
                    "current_promotion_has_reserve_stock": false,
                    "normal_stock": null,
                    "extinfo": {
                        "tier_index": [
                            0,
                            1
                        ],
                        "is_pre_order": false,
                        "estimated_days": 2
                    },
                    "price_before_discount": 0,
                    "model_id": 375252464274,
                    "stock": null,
                    "has_gimmick_tag": false,
                    "key_measurement": null,
                    "sold": null,
                    "is_lowest_price_at_shopee": false,
                    "name_tr": null,
                    "is_clickable": false,
                    "is_grayout": true,
                    "has_stock": false
                }
            ],
            "tier_variations": [
                {
                    "name": "Warna",
                    "options": [
                        "Yellow",
                        "Green",
                        "Black",
                        "Pink",
                        "Blue"
                    ],
                    "images": [
                        "id-11134207-82250-mhvb7exbej9k54",
                        "id-11134207-8224o-mhvb7exbfxu000",
                        "id-11134207-82250-mj9evrbu2bcw1c",
                        "id-11134207-822wo-mnv6e6cv2q6e92",
                        "id-11134207-822wn-mnv6e6csp1j58e"
                    ],
                    "properties": null,
                    "type": 0,
                    "summed_stocks": null,
                    "display_indicators": [
                        2,
                        2,
                        0,
                        0,
                        0
                    ],
                    "name_tr": null,
                    "options_tr": null,
                    "selling_points": [
                        "",
                        "",
                        "",
                        "",
                        ""
                    ],
                    "selling_points_tr": null
                },
                {
                    "name": "Penyimpanan",
                    "options": [
                        "128GB",
                        "256GB"
                    ],
                    "images": null,
                    "properties": null,
                    "type": 0,
                    "summed_stocks": null,
                    "display_indicators": [
                        0,
                        2
                    ],
                    "name_tr": null,
                    "options_tr": null,
                    "selling_points": [
                        "",
                        ""
                    ],
                    "selling_points_tr": null
                }
            ],
            "size_chart": null,
            "size_chart_info": null,
            "welcome_package_type": 0,
            "is_free_gift": false,
            "deep_discount": null,
            "is_low_price_eligible": null,
            "bundle_deal_info": null,
            "add_on_deal_info": null,
            "shipping_icon_type": 0,
            "badge_icon_type": 0,
            "spl_info": null,
            "estimated_days": 2,
            "is_pre_order": false,
            "is_free_shipping": false,
            "overall_purchase_limit": null,
            "min_purchase_limit": 1,
            "is_hide_stock": false,
            "stock": null,
            "normal_stock": null,
            "current_promotion_reserved_stock": null,
            "can_use_wholesale": false,
            "wholesale_tier_list": [],
            "price": 1327000000000,
            "raw_discount": 0,
            "hidden_price_display": null,
            "price_min": 1327000000000,
            "price_max": 1327000000000,
            "price_before_discount": 1327000000000,
            "price_min_before_discount": 1327000000000,
            "price_max_before_discount": 1327000000000,
            "other_stock": null,
            "discount_stock": null,
            "current_promotion_has_reserve_stock": false,
            "complaint_policy": null,
            "show_recycling_info": null,
            "should_show_amp_tag": true,
            "all_models_has_pre_order": false,
            "is_item_inherited": false,
            "max_quantity": null,
            "drug_details": null,
            "selected_real_models": null,
            "size_tier_variation_idx": null,
            "is_fashion_item": false,
            "social_proof_label": null,
            "title_tr": null,
            "description_tr": null,
            "rich_text_description_tr": null,
            "stock_display": "28",
            "max_quantity_display": "Tersedia 28",
            "disclaimer": null
        },
        "account": {
            "user_id": 8534030442,
            "is_new_user": true,
            "default_address": {
                "state": "DKI JAKARTA",
                "city": "KOTA JAKARTA PUSAT",
                "district": "MENTENG",
                "town": "",
                "zip_code": null,
                "address": null,
                "region": null,
                "longitude": null,
                "latitude": null,
                "vn_data_version": ""
            },
            "adult_consent": 0,
            "birth_timestamp": 0
        },
        "product_images": {
            "video": {
                "video_id": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4",
                "thumb_url": "id-11110105-6vdv4-mepeuiil53wg6e_cover",
                "duration": 53,
                "version": 2,
                "vid": "id-11110105-6vdv4-mepeuiil53wg6e",
                "formats": [
                    {
                        "format": 1600408,
                        "defn": "V360P",
                        "profile": "MP4",
                        "path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004081777212317.mp4",
                        "url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004081777212317.mp4",
                        "width": 640,
                        "height": 360
                    },
                    {
                        "format": 1600671,
                        "defn": "V540P",
                        "profile": "MP4",
                        "path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006711776587068.mp4",
                        "url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006711776587068.mp4",
                        "width": 960,
                        "height": 540
                    },
                    {
                        "format": 1600673,
                        "defn": "V540P",
                        "profile": "MP4",
                        "path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006731776797764.mp4",
                        "url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006731776797764.mp4",
                        "width": 960,
                        "height": 540
                    },
                    {
                        "format": 1600409,
                        "defn": "V540P",
                        "profile": "MP4",
                        "path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004091777212317.mp4",
                        "url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004091777212317.mp4",
                        "width": 960,
                        "height": 540
                    },
                    {
                        "format": 1600008,
                        "defn": "V720P",
                        "profile": "MP4",
                        "path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4",
                        "url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4",
                        "width": 1280,
                        "height": 720
                    },
                    {
                        "format": 1600325,
                        "defn": "V720P",
                        "profile": "MP4",
                        "path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003251776587068.mp4",
                        "url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003251776587068.mp4",
                        "width": 1280,
                        "height": 720
                    },
                    {
                        "format": 1600410,
                        "defn": "V720P",
                        "profile": "MP4",
                        "path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004101777212317.mp4",
                        "url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004101777212317.mp4",
                        "width": 1280,
                        "height": 720
                    },
                    {
                        "format": 1600411,
                        "defn": "V720P",
                        "profile": "MP4",
                        "path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004111777212317.mp4",
                        "url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004111777212317.mp4",
                        "width": 1280,
                        "height": 720
                    }
                ],
                "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.default.mp4",
                    "width": 960,
                    "height": 540
                },
                "mms_data": "{\"vid\":\"id-11110105-6vdv4-mepeuiil53wg6e\",\"biz\":107,\"duration\":52918,\"create_time\":1758005971,\"update_time\":1758005974,\"serviceID\":2,\"cover\":\"https://down-aka-sg.img.susercontent.com/id-11110105-6vdv4-mepeuiil53wg6e_cover\",\"formats\":[{\"format\":1600408,\"defn\":\"V360P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004081777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004081777212317.mp4\",\"width\":640,\"height\":360,\"bitrate\":108363,\"abitrate\":32129,\"duration\":52918,\"size\":963458,\"fps\":25,\"update_time\":1777212324,\"codec\":\"H264\"},{\"format\":1600671,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006711776587068.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006711776587068.mp4\",\"width\":960,\"height\":540,\"bitrate\":164363,\"abitrate\":32129,\"duration\":52918,\"size\":1334182,\"fps\":25,\"update_time\":1776587081,\"codec\":\"H264\"},{\"format\":1600673,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006731776797764.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006731776797764.mp4\",\"width\":960,\"height\":540,\"bitrate\":279004,\"abitrate\":32129,\"duration\":52918,\"size\":2091963,\"fps\":25,\"update_time\":1776797773,\"codec\":\"H264\"},{\"format\":1600409,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004091777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004091777212317.mp4\",\"width\":960,\"height\":540,\"bitrate\":153593,\"abitrate\":32129,\"duration\":52918,\"size\":1262172,\"fps\":25,\"update_time\":1777212327,\"codec\":\"H264\"},{\"format\":1600008,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4\",\"width\":1280,\"height\":720,\"bitrate\":245989,\"abitrate\":128213,\"duration\":52918,\"size\":2519709,\"fps\":25,\"update_time\":1758006006,\"codec\":\"H264\"},{\"format\":1600325,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003251776587068.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003251776587068.mp4\",\"width\":1280,\"height\":720,\"bitrate\":334286,\"abitrate\":48164,\"duration\":52918,\"size\":2563469,\"fps\":25,\"update_time\":1776587093,\"codec\":\"H264\"},{\"format\":1600410,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004101777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004101777212317.mp4\",\"width\":1280,\"height\":720,\"bitrate\":325941,\"abitrate\":48164,\"duration\":52918,\"size\":2506604,\"fps\":25,\"update_time\":1777212353,\"codec\":\"H264\"},{\"format\":1600411,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004111777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004111777212317.mp4\",\"width\":1280,\"height\":720,\"bitrate\":387755,\"abitrate\":48164,\"duration\":52918,\"size\":2914843,\"fps\":25.00047,\"update_time\":1777212338,\"codec\":\"H264\"}],\"extend_formats\":{\"H265\":[{\"format\":1600315,\"defn\":\"V360P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003151776587040.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003151776587040.mp4\",\"width\":640,\"height\":360,\"bitrate\":119719,\"abitrate\":32129,\"duration\":52918,\"size\":1042815,\"fps\":25,\"update_time\":1776587067,\"codec\":\"H265\"},{\"format\":1600412,\"defn\":\"V360P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004121777212306.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004121777212306.mp4\",\"width\":640,\"height\":360,\"bitrate\":71794,\"abitrate\":32129,\"duration\":52918,\"size\":725663,\"fps\":25,\"update_time\":1777212316,\"codec\":\"H265\"},{\"format\":1600316,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003161776587067.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003161776587067.mp4\",\"width\":960,\"height\":540,\"bitrate\":201559,\"abitrate\":32129,\"duration\":52918,\"size\":1583768,\"fps\":25,\"update_time\":1776587092,\"codec\":\"H265\"},{\"format\":1600413,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004131777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004131777212317.mp4\",\"width\":960,\"height\":540,\"bitrate\":111665,\"abitrate\":32129,\"duration\":52918,\"size\":988987,\"fps\":25,\"update_time\":1777212337,\"codec\":\"H265\"},{\"format\":1600309,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003091758006006.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003091758006006.mp4\",\"width\":1280,\"height\":720,\"bitrate\":152291,\"abitrate\":128213,\"duration\":52918,\"size\":1904043,\"fps\":25,\"update_time\":1758006035,\"codec\":\"H265\"},{\"format\":1600317,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003171776587067.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003171776587067.mp4\",\"width\":1280,\"height\":720,\"bitrate\":290039,\"abitrate\":48164,\"duration\":52918,\"size\":2274688,\"fps\":25,\"update_time\":1776587102,\"codec\":\"H265\"},{\"format\":1600318,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003181776587067.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003181776587067.mp4\",\"width\":1280,\"height\":720,\"bitrate\":275456,\"abitrate\":48164,\"duration\":52918,\"size\":2178297,\"fps\":25,\"update_time\":1776587101,\"codec\":\"H265\"},{\"format\":1600415,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004151777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004151777212317.mp4\",\"width\":1280,\"height\":720,\"bitrate\":206607,\"abitrate\":48164,\"duration\":52918,\"size\":1722147,\"fps\":25.00047,\"update_time\":1777212340,\"codec\":\"H265\"},{\"format\":1600414,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004141777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004141777212317.mp4\",\"width\":1280,\"height\":720,\"bitrate\":190093,\"abitrate\":48164,\"duration\":52918,\"size\":1613067,\"fps\":25.00047,\"update_time\":1777212346,\"codec\":\"H265\"}]},\"default_format\":{\"format\":1600323,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"\",\"url\":\"https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.default.mp4\",\"width\":960,\"height\":540,\"bitrate\":210840,\"abitrate\":32210,\"duration\":52918,\"size\":1652259,\"fps\":25,\"update_time\":1758006017,\"codec\":\"H264\"}}",
                "item_cover": null
            },
            "images": [
                "id-11134207-82250-mkkn12wketc0d8",
                "id-11134207-8224r-mhvb7ex33cas7d",
                "id-11134207-8224r-mhvb7exb7ifc18",
                "id-11134207-82251-mhvb7exb8wzs7c",
                "id-11134207-8224u-mhvb7exbabk8bb",
                "id-11134207-82250-mhbc73v1c1l47c"
            ],
            "first_tier_variations": [
                {
                    "name": "Yellow",
                    "image": "id-11134207-82250-mhvb7exbej9k54",
                    "summed_stock": null,
                    "display_indicator": 0,
                    "show_find_similar": null,
                    "name_tr": null,
                    "selling_point": "",
                    "selling_point_tr": null,
                    "gallery_image": "id-11134207-82250-mhvb7exbej9k54"
                },
                {
                    "name": "Green",
                    "image": "id-11134207-8224o-mhvb7exbfxu000",
                    "summed_stock": null,
                    "display_indicator": 0,
                    "show_find_similar": null,
                    "name_tr": null,
                    "selling_point": "",
                    "selling_point_tr": null,
                    "gallery_image": "id-11134207-8224o-mhvb7exbfxu000"
                },
                {
                    "name": "Black",
                    "image": "id-11134207-82250-mj9evrbu2bcw1c",
                    "summed_stock": null,
                    "display_indicator": 0,
                    "show_find_similar": null,
                    "name_tr": null,
                    "selling_point": "",
                    "selling_point_tr": null,
                    "gallery_image": "id-11134207-82250-mj9evrbu2bcw1c"
                },
                {
                    "name": "Pink",
                    "image": "id-11134207-822wo-mnv6e6cv2q6e92",
                    "summed_stock": null,
                    "display_indicator": 0,
                    "show_find_similar": null,
                    "name_tr": null,
                    "selling_point": "",
                    "selling_point_tr": null,
                    "gallery_image": "id-11134207-822wo-mnv6e6cv2q6e92"
                },
                {
                    "name": "Blue",
                    "image": "id-11134207-822wn-mnv6e6csp1j58e",
                    "summed_stock": null,
                    "display_indicator": 0,
                    "show_find_similar": null,
                    "name_tr": null,
                    "selling_point": "",
                    "selling_point_tr": null,
                    "gallery_image": "id-11134207-822wn-mnv6e6csp1j58e"
                }
            ],
            "sorted_variation_image_index_list": [
                2,
                3,
                4,
                0,
                1
            ],
            "overlay": null,
            "makeup_preview": null,
            "abnormal_status": "",
            "promotion_images": [],
            "long_images": null,
            "shopee_video_info_list": [],
            "shopee_video_rcmd_info": null,
            "shopee_video_req_id": null,
            "skincam": null,
            "pdp_top_info_list": null,
            "has_long_image": false,
            "show_find_similar": null,
            "try_it_on": null,
            "show_find_similar_for_selection": false,
            "beautycam": null,
            "unavailable_item_recommendation": null,
            "models": [
                {
                    "tier_index": [
                        4,
                        0
                    ],
                    "gallery_image": "id-11134207-822wn-mnv6e6csp1j58e"
                },
                {
                    "tier_index": [
                        3,
                        0
                    ],
                    "gallery_image": "id-11134207-822wo-mnv6e6cv2q6e92"
                },
                {
                    "tier_index": [
                        1,
                        1
                    ],
                    "gallery_image": "id-11134207-8224o-mhvb7exbfxu000"
                },
                {
                    "tier_index": [
                        0,
                        0
                    ],
                    "gallery_image": "id-11134207-82250-mhvb7exbej9k54"
                },
                {
                    "tier_index": [
                        2,
                        1
                    ],
                    "gallery_image": "id-11134207-82250-mj9evrbu2bcw1c"
                },
                {
                    "tier_index": [
                        3,
                        1
                    ],
                    "gallery_image": "id-11134207-822wo-mnv6e6cv2q6e92"
                },
                {
                    "tier_index": [
                        1,
                        0
                    ],
                    "gallery_image": "id-11134207-8224o-mhvb7exbfxu000"
                },
                {
                    "tier_index": [
                        4,
                        1
                    ],
                    "gallery_image": "id-11134207-822wn-mnv6e6csp1j58e"
                },
                {
                    "tier_index": [
                        2,
                        0
                    ],
                    "gallery_image": "id-11134207-82250-mj9evrbu2bcw1c"
                },
                {
                    "tier_index": [
                        0,
                        1
                    ],
                    "gallery_image": "id-11134207-82250-mhvb7exbej9k54"
                }
            ],
            "gallery_contents": [
                {
                    "image": null,
                    "video": {
                        "video_id": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4",
                        "thumb_url": "id-11110105-6vdv4-mepeuiil53wg6e_cover",
                        "duration": 53,
                        "version": 2,
                        "vid": "id-11110105-6vdv4-mepeuiil53wg6e",
                        "formats": [
                            {
                                "format": 1600408,
                                "defn": "V360P",
                                "profile": "MP4",
                                "path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004081777212317.mp4",
                                "url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004081777212317.mp4",
                                "width": 640,
                                "height": 360
                            },
                            {
                                "format": 1600671,
                                "defn": "V540P",
                                "profile": "MP4",
                                "path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006711776587068.mp4",
                                "url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006711776587068.mp4",
                                "width": 960,
                                "height": 540
                            },
                            {
                                "format": 1600673,
                                "defn": "V540P",
                                "profile": "MP4",
                                "path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006731776797764.mp4",
                                "url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006731776797764.mp4",
                                "width": 960,
                                "height": 540
                            },
                            {
                                "format": 1600409,
                                "defn": "V540P",
                                "profile": "MP4",
                                "path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004091777212317.mp4",
                                "url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004091777212317.mp4",
                                "width": 960,
                                "height": 540
                            },
                            {
                                "format": 1600008,
                                "defn": "V720P",
                                "profile": "MP4",
                                "path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4",
                                "url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4",
                                "width": 1280,
                                "height": 720
                            },
                            {
                                "format": 1600325,
                                "defn": "V720P",
                                "profile": "MP4",
                                "path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003251776587068.mp4",
                                "url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003251776587068.mp4",
                                "width": 1280,
                                "height": 720
                            },
                            {
                                "format": 1600410,
                                "defn": "V720P",
                                "profile": "MP4",
                                "path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004101777212317.mp4",
                                "url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004101777212317.mp4",
                                "width": 1280,
                                "height": 720
                            },
                            {
                                "format": 1600411,
                                "defn": "V720P",
                                "profile": "MP4",
                                "path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004111777212317.mp4",
                                "url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004111777212317.mp4",
                                "width": 1280,
                                "height": 720
                            }
                        ],
                        "default_format": {
                            "format": 1600323,
                            "defn": "V540P",
                            "profile": "MP4",
                            "path": "",
                            "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.default.mp4",
                            "width": 960,
                            "height": 540
                        },
                        "mms_data": "{\"vid\":\"id-11110105-6vdv4-mepeuiil53wg6e\",\"biz\":107,\"duration\":52918,\"create_time\":1758005971,\"update_time\":1758005974,\"serviceID\":2,\"cover\":\"https://down-aka-sg.img.susercontent.com/id-11110105-6vdv4-mepeuiil53wg6e_cover\",\"formats\":[{\"format\":1600408,\"defn\":\"V360P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004081777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004081777212317.mp4\",\"width\":640,\"height\":360,\"bitrate\":108363,\"abitrate\":32129,\"duration\":52918,\"size\":963458,\"fps\":25,\"update_time\":1777212324,\"codec\":\"H264\"},{\"format\":1600671,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006711776587068.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006711776587068.mp4\",\"width\":960,\"height\":540,\"bitrate\":164363,\"abitrate\":32129,\"duration\":52918,\"size\":1334182,\"fps\":25,\"update_time\":1776587081,\"codec\":\"H264\"},{\"format\":1600673,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006731776797764.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006731776797764.mp4\",\"width\":960,\"height\":540,\"bitrate\":279004,\"abitrate\":32129,\"duration\":52918,\"size\":2091963,\"fps\":25,\"update_time\":1776797773,\"codec\":\"H264\"},{\"format\":1600409,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004091777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004091777212317.mp4\",\"width\":960,\"height\":540,\"bitrate\":153593,\"abitrate\":32129,\"duration\":52918,\"size\":1262172,\"fps\":25,\"update_time\":1777212327,\"codec\":\"H264\"},{\"format\":1600008,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4\",\"width\":1280,\"height\":720,\"bitrate\":245989,\"abitrate\":128213,\"duration\":52918,\"size\":2519709,\"fps\":25,\"update_time\":1758006006,\"codec\":\"H264\"},{\"format\":1600325,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003251776587068.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003251776587068.mp4\",\"width\":1280,\"height\":720,\"bitrate\":334286,\"abitrate\":48164,\"duration\":52918,\"size\":2563469,\"fps\":25,\"update_time\":1776587093,\"codec\":\"H264\"},{\"format\":1600410,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004101777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004101777212317.mp4\",\"width\":1280,\"height\":720,\"bitrate\":325941,\"abitrate\":48164,\"duration\":52918,\"size\":2506604,\"fps\":25,\"update_time\":1777212353,\"codec\":\"H264\"},{\"format\":1600411,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004111777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004111777212317.mp4\",\"width\":1280,\"height\":720,\"bitrate\":387755,\"abitrate\":48164,\"duration\":52918,\"size\":2914843,\"fps\":25.00047,\"update_time\":1777212338,\"codec\":\"H264\"}],\"extend_formats\":{\"H265\":[{\"format\":1600315,\"defn\":\"V360P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003151776587040.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003151776587040.mp4\",\"width\":640,\"height\":360,\"bitrate\":119719,\"abitrate\":32129,\"duration\":52918,\"size\":1042815,\"fps\":25,\"update_time\":1776587067,\"codec\":\"H265\"},{\"format\":1600412,\"defn\":\"V360P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004121777212306.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004121777212306.mp4\",\"width\":640,\"height\":360,\"bitrate\":71794,\"abitrate\":32129,\"duration\":52918,\"size\":725663,\"fps\":25,\"update_time\":1777212316,\"codec\":\"H265\"},{\"format\":1600316,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003161776587067.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003161776587067.mp4\",\"width\":960,\"height\":540,\"bitrate\":201559,\"abitrate\":32129,\"duration\":52918,\"size\":1583768,\"fps\":25,\"update_time\":1776587092,\"codec\":\"H265\"},{\"format\":1600413,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004131777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004131777212317.mp4\",\"width\":960,\"height\":540,\"bitrate\":111665,\"abitrate\":32129,\"duration\":52918,\"size\":988987,\"fps\":25,\"update_time\":1777212337,\"codec\":\"H265\"},{\"format\":1600309,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003091758006006.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003091758006006.mp4\",\"width\":1280,\"height\":720,\"bitrate\":152291,\"abitrate\":128213,\"duration\":52918,\"size\":1904043,\"fps\":25,\"update_time\":1758006035,\"codec\":\"H265\"},{\"format\":1600317,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003171776587067.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003171776587067.mp4\",\"width\":1280,\"height\":720,\"bitrate\":290039,\"abitrate\":48164,\"duration\":52918,\"size\":2274688,\"fps\":25,\"update_time\":1776587102,\"codec\":\"H265\"},{\"format\":1600318,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003181776587067.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003181776587067.mp4\",\"width\":1280,\"height\":720,\"bitrate\":275456,\"abitrate\":48164,\"duration\":52918,\"size\":2178297,\"fps\":25,\"update_time\":1776587101,\"codec\":\"H265\"},{\"format\":1600415,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004151777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004151777212317.mp4\",\"width\":1280,\"height\":720,\"bitrate\":206607,\"abitrate\":48164,\"duration\":52918,\"size\":1722147,\"fps\":25.00047,\"update_time\":1777212340,\"codec\":\"H265\"},{\"format\":1600414,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004141777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004141777212317.mp4\",\"width\":1280,\"height\":720,\"bitrate\":190093,\"abitrate\":48164,\"duration\":52918,\"size\":1613067,\"fps\":25.00047,\"update_time\":1777212346,\"codec\":\"H265\"}]},\"default_format\":{\"format\":1600323,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"\",\"url\":\"https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.default.mp4\",\"width\":960,\"height\":540,\"bitrate\":210840,\"abitrate\":32210,\"duration\":52918,\"size\":1652259,\"fps\":25,\"update_time\":1758006017,\"codec\":\"H264\"}}",
                        "item_cover": null
                    }
                },
                {
                    "image": {
                        "url": "id-11134207-82250-mkkn12wketc0d8",
                        "promotion_image_type": null,
                        "label_content": null,
                        "cmt_id": null
                    },
                    "video": null
                },
                {
                    "image": {
                        "url": "id-11134207-8224r-mhvb7ex33cas7d",
                        "promotion_image_type": null,
                        "label_content": null,
                        "cmt_id": null
                    },
                    "video": null
                },
                {
                    "image": {
                        "url": "id-11134207-8224r-mhvb7exb7ifc18",
                        "promotion_image_type": null,
                        "label_content": null,
                        "cmt_id": null
                    },
                    "video": null
                },
                {
                    "image": {
                        "url": "id-11134207-82251-mhvb7exb8wzs7c",
                        "promotion_image_type": null,
                        "label_content": null,
                        "cmt_id": null
                    },
                    "video": null
                },
                {
                    "image": {
                        "url": "id-11134207-8224u-mhvb7exbabk8bb",
                        "promotion_image_type": null,
                        "label_content": null,
                        "cmt_id": null
                    },
                    "video": null
                },
                {
                    "image": {
                        "url": "id-11134207-82250-mhbc73v1c1l47c",
                        "promotion_image_type": null,
                        "label_content": null,
                        "cmt_id": null
                    },
                    "video": null
                }
            ]
        },
        "product_price": {
            "discount": null,
            "installment_info": {
                "recommended_plan": {
                    "months": 24,
                    "pay_per_month": 55291666000,
                    "has_buyer_transaction_fee": true
                }
            },
            "spl_installment_info": null,
            "pack_size": "",
            "hide_price": false,
            "price": {
                "single_value": 1327000000000,
                "range_min": -1,
                "range_max": -1,
                "price_mask": null
            },
            "price_before_discount": null,
            "presale_price": null,
            "lowest_past_price": null,
            "labels": [
                {
                    "type": 0,
                    "text": "Bebas Pengembalian",
                    "color": "#26AA99",
                    "display": "free_return",
                    "exclusive_price": null,
                    "promotion_id": null,
                    "voucher_ext_info": null
                }
            ],
            "hide_discount": false,
            "discount_text": null,
            "show_final_price_indicator": null,
            "final_price_vouchers": null,
            "has_final_price": true,
            "final_price_info": null,
            "price_subtext": null,
            "price_model": {
                "price_single_model_id": 238282002834,
                "price_min_model_id": null,
                "price_max_model_id": null
            },
            "price_promotion": {
                "price_single_promotion_id": 0,
                "price_single_promotion_type": 0,
                "price_min_promotion_id": null,
                "price_min_promotion_type": null,
                "price_max_promotion_id": null,
                "price_max_promotion_type": null
            }
        },
        "flash_sale": null,
        "flash_sale_preview": null,
        "deep_discount": null,
        "exclusive_price": null,
        "exclusive_price_cta": null,
        "product_meta": {
            "show_lowest_price_guarantee": null,
            "show_original_guarantee": null,
            "show_best_price_guarantee": false,
            "show_official_shop_label_in_title": true,
            "show_shopee_verified_label": false,
            "show_lowest_installment_guarantee": null,
            "hide_sharing_button": false,
            "hide_sold_count": false,
            "show_description_translation_button": null
        },
        "product_review": {
            "rating_star": 4.916666666666667,
            "rating_count": [
                24,
                0,
                0,
                1,
                0,
                23
            ],
            "total_rating_count": 24,
            "historical_sold": null,
            "global_sold": null,
            "liked": false,
            "liked_count": 160,
            "cmt_count": 24,
            "should_move_ratings_above": null,
            "review_rcmd_exp_group": null,
            "display_global_sold": false,
            "hide_rating": false,
            "hide_buyer_gallery": false,
            "hide_reviews": false,
            "hide_other_product_reviews_in_shop": false,
            "sold_count_disclosure": null,
            "historical_sold_display": "42",
            "global_sold_display": "42",
            "sold_count_display": "42"
        },
        "promotion_info": {
            "spl": null,
            "spl_lite": null,
            "installment": {
                "month": 24,
                "price_raw": 55291666000,
                "interest": 0,
                "has_buyer_transaction_fee": true,
                "display_text": "24x {{price}} (Bunga 0%)"
            },
            "wholesale": null,
            "insurance": null,
            "item_installment_eligibility": {
                "is_cc_installment_payment_eligible": true,
                "is_non_cc_installment_payment_eligible": true
            }
        },
        "age_gate": {
            "kyc": null
        },
        "shipping_meta": null,
        "product_shipping": {
            "free_shipping": null,
            "shipping_fee_info": {
                "ship_from_location": "KOTA MEDAN",
                "price": {
                    "single_value": 5200000000,
                    "range_min": -1,
                    "range_max": -1,
                    "price_mask": null
                },
                "shipping_icon_type": 0,
                "warning": null
            },
            "show_shipping_to": true,
            "ungrouped_channel_infos": [
                {
                    "channel_id": 8002,
                    "name": "Next Day",
                    "price": {
                        "single_value": 5200000000,
                        "range_min": -1,
                        "range_max": -1,
                        "price_mask": null
                    },
                    "price_before_discount": null,
                    "channel_delivery_info": {
                        "has_edt": true,
                        "display_mode": "edt_by_date",
                        "estimated_delivery_date_from": 1778211973,
                        "estimated_delivery_date_to": 1778211973,
                        "estimated_delivery_time_min": 1,
                        "estimated_delivery_time_max": 1,
                        "delay_message": null,
                        "is_fastest_edt_channel": true,
                        "sla_message": "Pemesanan sebelum pk. 12:00 akan dikirim besok (kecuali hari libur nasional). \n\nPemesanan setelah pk. 12:00 akan dikirim lusa (kecuali hari libur nasional).",
                        "show_edt": true,
                        "edt_text": "Garansi tiba besok",
                        "formatted_edt_text": [
                            {
                                "template": "{label_guaranteed_get_by+}{label_fast_edt_tomorrow}",
                                "format": null,
                                "attributes": [
                                    {
                                        "type": 1,
                                        "key": "label_guaranteed_get_by+",
                                        "value": {
                                            "value_str": "Garansi tiba ",
                                            "value_int": null
                                        },
                                        "format": null,
                                        "text_color": null,
                                        "text_hex_color": "#000000de",
                                        "url": null
                                    },
                                    {
                                        "type": 1,
                                        "key": "label_fast_edt_tomorrow",
                                        "value": {
                                            "value_str": "Besok",
                                            "value_int": null
                                        },
                                        "format": [
                                            3
                                        ],
                                        "text_color": null,
                                        "text_hex_color": "#ffffff",
                                        "url": null
                                    }
                                ],
                                "text_color": null,
                                "text_hex_color": null
                            }
                        ],
                        "formatted_pre_order_text": null,
                        "formatted_fbs_description_text": null,
                        "show_edt_as_header": false
                    },
                    "channel_promotion_infos": [],
                    "warning": null,
                    "shipping_icon_type": null,
                    "lowest_bpsf_promotion_rule": null,
                    "service_type_info": "next_day",
                    "is_integrated_channel": true,
                    "late_delivery_compensation": {
                        "type": 1,
                        "amount": 1000000000,
                        "is_guaranteed_edt": true,
                        "compensation_amount": null,
                        "text": null
                    },
                    "is_sst_included": false,
                    "display_text": {
                        "late_delivery_compensation": null,
                        "direct_delivery": null,
                        "fulfilled_by_shopee": null,
                        "spx_instant_delivery": null
                    },
                    "rule_type": 0,
                    "is_xdd_channel": false,
                    "show_shopee_plus_icon": false,
                    "xdd_value": null,
                    "hide_shipping_fee": null,
                    "edt_tracking_info": "{\"edt_min\":1,\"edt_max\":1,\"edt_min_hours\":24,\"edt_max_hours\":24,\"edt_display_identifier\":263433,\"buyer_address_hash\":\"6RslI4\",\"is_cache_edt\":false}"
                },
                {
                    "channel_id": 8003,
                    "name": "Reguler",
                    "price": {
                        "single_value": 0,
                        "range_min": -1,
                        "range_max": -1,
                        "price_mask": null
                    },
                    "price_before_discount": null,
                    "channel_delivery_info": {
                        "has_edt": false,
                        "display_mode": null,
                        "estimated_delivery_date_from": null,
                        "estimated_delivery_date_to": null,
                        "estimated_delivery_time_min": null,
                        "estimated_delivery_time_max": null,
                        "delay_message": null,
                        "is_fastest_edt_channel": false,
                        "sla_message": "",
                        "show_edt": null,
                        "edt_text": null,
                        "formatted_edt_text": null,
                        "formatted_pre_order_text": null,
                        "formatted_fbs_description_text": null,
                        "show_edt_as_header": false
                    },
                    "channel_promotion_infos": null,
                    "warning": {
                        "type": "address_no_long_lat",
                        "warning_msg": "Mohon atur lokasi peta"
                    },
                    "shipping_icon_type": null,
                    "lowest_bpsf_promotion_rule": null,
                    "service_type_info": "regular",
                    "is_integrated_channel": true,
                    "late_delivery_compensation": null,
                    "is_sst_included": false,
                    "display_text": {
                        "late_delivery_compensation": null,
                        "direct_delivery": null,
                        "fulfilled_by_shopee": null,
                        "spx_instant_delivery": null
                    },
                    "rule_type": 0,
                    "is_xdd_channel": false,
                    "show_shopee_plus_icon": false,
                    "xdd_value": null,
                    "hide_shipping_fee": null,
                    "edt_tracking_info": null
                },
                {
                    "channel_id": 8005,
                    "name": "Hemat Kargo",
                    "price": {
                        "single_value": 0,
                        "range_min": -1,
                        "range_max": -1,
                        "price_mask": null
                    },
                    "price_before_discount": null,
                    "channel_delivery_info": {
                        "has_edt": false,
                        "display_mode": null,
                        "estimated_delivery_date_from": null,
                        "estimated_delivery_date_to": null,
                        "estimated_delivery_time_min": null,
                        "estimated_delivery_time_max": null,
                        "delay_message": null,
                        "is_fastest_edt_channel": false,
                        "sla_message": "",
                        "show_edt": null,
                        "edt_text": null,
                        "formatted_edt_text": null,
                        "formatted_pre_order_text": null,
                        "formatted_fbs_description_text": null,
                        "show_edt_as_header": false
                    },
                    "channel_promotion_infos": null,
                    "warning": {
                        "type": "address_no_long_lat",
                        "warning_msg": "Mohon atur lokasi peta"
                    },
                    "shipping_icon_type": null,
                    "lowest_bpsf_promotion_rule": null,
                    "service_type_info": "regular",
                    "is_integrated_channel": true,
                    "late_delivery_compensation": null,
                    "is_sst_included": false,
                    "display_text": {
                        "late_delivery_compensation": null,
                        "direct_delivery": null,
                        "fulfilled_by_shopee": null,
                        "spx_instant_delivery": null
                    },
                    "rule_type": 0,
                    "is_xdd_channel": false,
                    "show_shopee_plus_icon": false,
                    "xdd_value": null,
                    "hide_shipping_fee": null,
                    "edt_tracking_info": null
                },
                {
                    "channel_id": 8007,
                    "name": "Instant",
                    "price": {
                        "single_value": 0,
                        "range_min": -1,
                        "range_max": -1,
                        "price_mask": null
                    },
                    "price_before_discount": null,
                    "channel_delivery_info": {
                        "has_edt": false,
                        "display_mode": null,
                        "estimated_delivery_date_from": null,
                        "estimated_delivery_date_to": null,
                        "estimated_delivery_time_min": null,
                        "estimated_delivery_time_max": null,
                        "delay_message": null,
                        "is_fastest_edt_channel": false,
                        "sla_message": "",
                        "show_edt": null,
                        "edt_text": null,
                        "formatted_edt_text": null,
                        "formatted_pre_order_text": null,
                        "formatted_fbs_description_text": null,
                        "show_edt_as_header": false
                    },
                    "channel_promotion_infos": null,
                    "warning": {
                        "type": "address_no_long_lat",
                        "warning_msg": "Mohon atur lokasi peta"
                    },
                    "shipping_icon_type": null,
                    "lowest_bpsf_promotion_rule": null,
                    "service_type_info": "instant",
                    "is_integrated_channel": true,
                    "late_delivery_compensation": null,
                    "is_sst_included": false,
                    "display_text": {
                        "late_delivery_compensation": null,
                        "direct_delivery": null,
                        "fulfilled_by_shopee": null,
                        "spx_instant_delivery": null
                    },
                    "rule_type": 0,
                    "is_xdd_channel": false,
                    "show_shopee_plus_icon": false,
                    "xdd_value": null,
                    "hide_shipping_fee": null,
                    "edt_tracking_info": null
                },
                {
                    "channel_id": 8008,
                    "name": "Instant Prioritas",
                    "price": {
                        "single_value": 0,
                        "range_min": -1,
                        "range_max": -1,
                        "price_mask": null
                    },
                    "price_before_discount": null,
                    "channel_delivery_info": {
                        "has_edt": false,
                        "display_mode": null,
                        "estimated_delivery_date_from": null,
                        "estimated_delivery_date_to": null,
                        "estimated_delivery_time_min": null,
                        "estimated_delivery_time_max": null,
                        "delay_message": null,
                        "is_fastest_edt_channel": false,
                        "sla_message": "",
                        "show_edt": null,
                        "edt_text": null,
                        "formatted_edt_text": null,
                        "formatted_pre_order_text": null,
                        "formatted_fbs_description_text": null,
                        "show_edt_as_header": false
                    },
                    "channel_promotion_infos": null,
                    "warning": {
                        "type": "address_no_long_lat",
                        "warning_msg": "Mohon atur lokasi peta"
                    },
                    "shipping_icon_type": null,
                    "lowest_bpsf_promotion_rule": null,
                    "service_type_info": "instant",
                    "is_integrated_channel": true,
                    "late_delivery_compensation": null,
                    "is_sst_included": false,
                    "display_text": {
                        "late_delivery_compensation": null,
                        "direct_delivery": null,
                        "fulfilled_by_shopee": null,
                        "spx_instant_delivery": null
                    },
                    "rule_type": 0,
                    "is_xdd_channel": false,
                    "show_shopee_plus_icon": false,
                    "xdd_value": null,
                    "hide_shipping_fee": null,
                    "edt_tracking_info": null
                }
            ],
            "grouped_channel_infos_by_service_type": [],
            "also_available_channel_name": "",
            "pre_selected_shipping_channel": {
                "channel_id": 8002,
                "name": "Next Day",
                "price": {
                    "single_value": 5200000000,
                    "range_min": -1,
                    "range_max": -1,
                    "price_mask": ""
                },
                "price_before_discount": null,
                "channel_delivery_info": {
                    "has_edt": true,
                    "display_mode": "edt_by_date",
                    "estimated_delivery_date_from": 1778211973,
                    "estimated_delivery_date_to": 1778211973,
                    "estimated_delivery_time_min": 1,
                    "estimated_delivery_time_max": 1,
                    "delay_message": "",
                    "is_fastest_edt_channel": true,
                    "sla_message": "Pemesanan sebelum pk. 12:00 akan dikirim besok (kecuali hari libur nasional). \n\nPemesanan setelah pk. 12:00 akan dikirim lusa (kecuali hari libur nasional).",
                    "show_edt": true,
                    "edt_text": "Garansi tiba besok",
                    "formatted_edt_text": [
                        {
                            "template": "{label_guaranteed_get_by+}{label_fast_edt_tomorrow}",
                            "format": [],
                            "attributes": [
                                {
                                    "type": 1,
                                    "key": "label_guaranteed_get_by+",
                                    "value": {
                                        "value_str": "Garansi tiba ",
                                        "value_int": null
                                    },
                                    "format": [],
                                    "text_color": null,
                                    "text_hex_color": "#000000de",
                                    "url": null
                                },
                                {
                                    "type": 1,
                                    "key": "label_fast_edt_tomorrow",
                                    "value": {
                                        "value_str": "Besok",
                                        "value_int": null
                                    },
                                    "format": [
                                        3
                                    ],
                                    "text_color": null,
                                    "text_hex_color": "#ffffff",
                                    "url": null
                                }
                            ],
                            "text_color": null,
                            "text_hex_color": null
                        }
                    ],
                    "formatted_pre_order_text": null,
                    "formatted_fbs_description_text": null,
                    "show_edt_as_header": false
                },
                "channel_promotion_infos": [],
                "warning": {
                    "type": "",
                    "warning_msg": ""
                },
                "shipping_icon_type": null,
                "lowest_bpsf_promotion_rule": null,
                "service_type_info": "next_day",
                "is_integrated_channel": true,
                "late_delivery_compensation": {
                    "type": 1,
                    "amount": 1000000000,
                    "is_guaranteed_edt": true,
                    "compensation_amount": {
                        "value": 1000000000
                    },
                    "text": ""
                },
                "is_sst_included": false,
                "display_text": {
                    "late_delivery_compensation": {
                        "text": "Dapatkan Voucher s/d {compensation_amount} jika pesanan terlambat.",
                        "gdt_max": null,
                        "compensation_amount": {
                            "value": 1000000000
                        }
                    },
                    "direct_delivery": null,
                    "fulfilled_by_shopee": null,
                    "spx_instant_delivery": null
                },
                "rule_type": 0,
                "is_xdd_channel": false,
                "show_shopee_plus_icon": false,
                "xdd_value": 0,
                "hide_shipping_fee": null,
                "edt_tracking_info": "{\"edt_min\":1,\"edt_max\":1,\"edt_min_hours\":24,\"edt_max_hours\":24,\"edt_display_identifier\":263173,\"buyer_address_hash\":\"6RslI4\",\"is_cache_edt\":false}"
            },
            "show_grouped_channel_first": false,
            "is_item_with_price_range": false,
            "also_available_channel_icon_type": null,
            "pre_order_text": "",
            "selected_late_delivery_compensation_for_drawer": {
                "type": 1,
                "amount": null,
                "is_guaranteed_edt": true,
                "compensation_amount": {
                    "value": 1000000000
                },
                "text": "Dapatkan Voucher s/d {compensation_amount} jika pesanan terlambat."
            },
            "shipping_info_text": {
                "text_template": null,
                "shipping_fee": null,
                "edt_from": null,
                "edt_to": null,
                "show_shipping_fee_suffix": false,
                "formatted_text": {
                    "edt": {
                        "template": "{label_guaranteed_get_by++label_fast_edt_tomorrow}",
                        "format": null,
                        "attributes": [
                            {
                                "type": 1,
                                "key": "label_guaranteed_get_by++label_fast_edt_tomorrow",
                                "value": {
                                    "value_str": "Garansi tiba Besok",
                                    "value_int": null
                                },
                                "format": [
                                    6
                                ],
                                "text_color": null,
                                "text_hex_color": "#000000de",
                                "url": null
                            }
                        ],
                        "text_color": null,
                        "text_hex_color": null
                    },
                    "shipping_fee": null,
                    "late_delivery_compensation": {
                        "template": "Dapatkan Voucher s/d {compensation_amount} jika pesanan terlambat.",
                        "format": null,
                        "attributes": [
                            {
                                "type": 2,
                                "key": "compensation_amount",
                                "value": {
                                    "value_str": null,
                                    "value_int": 1000000000
                                },
                                "format": null,
                                "text_color": null,
                                "text_hex_color": null,
                                "url": null
                            }
                        ],
                        "text_color": null,
                        "text_hex_color": null
                    },
                    "fbs_description": null,
                    "display_edt_text_first_line": true,
                    "should_wrap_edt_text_by_attribute": false
                },
                "highlight_free_shipping": false
            },
            "formatted_pre_order_text": null,
            "has_free_return": null,
            "model_id": 238282002832,
            "delivery_address": {
                "state": "DKI JAKARTA",
                "city": "KOTA JAKARTA PUSAT",
                "district": "MENTENG",
                "town": null,
                "zip_code": null,
                "address": null,
                "region": null,
                "longitude": null,
                "latitude": null,
                "vn_data_version": null
            }
        },
        "shop_vouchers": [],
        "free_return": null,
        "coin_info": {
            "spend_cash_unit": 100000,
            "coin_earn_items": [
                {
                    "coin_earn": 0
                },
                {
                    "coin_earn": 0
                },
                {
                    "coin_earn": 0
                },
                {
                    "coin_earn": 0
                },
                {
                    "coin_earn": 0
                },
                {
                    "coin_earn": 0
                },
                {
                    "coin_earn": 0
                },
                {
                    "coin_earn": 0
                },
                {
                    "coin_earn": 0
                },
                {
                    "coin_earn": 0
                }
            ],
            "coin_earn_label": null
        },
        "product_attributes": {
            "attrs": [
                {
                    "name": "Stok",
                    "value": "28",
                    "id": null,
                    "is_timestamp": null,
                    "brand_option": null,
                    "val_id": null,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": 7,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Merek",
                    "value": "Apple",
                    "id": null,
                    "is_timestamp": null,
                    "brand_option": null,
                    "val_id": null,
                    "url": "/search?brands=1189223",
                    "brand_id": 1189223,
                    "full_url": "https://shopee.co.id/search?brands=1189223",
                    "type": 1,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Kapasitas Penyimpanan",
                    "value": "256GB",
                    "id": 100465,
                    "is_timestamp": null,
                    "brand_option": null,
                    "val_id": null,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": 5,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Masa Garansi",
                    "value": "12 Bulan",
                    "id": 100121,
                    "is_timestamp": null,
                    "brand_option": null,
                    "val_id": null,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": 5,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Tipe Kabel Seluler",
                    "value": "Type C, i-phone, iphone",
                    "id": 100481,
                    "is_timestamp": null,
                    "brand_option": null,
                    "val_id": null,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": 5,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Tipe Pengaman Layar",
                    "value": "Lainnya",
                    "id": 100503,
                    "is_timestamp": null,
                    "brand_option": null,
                    "val_id": null,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": 5,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Tipe Case",
                    "value": "Lainnya",
                    "id": 100471,
                    "is_timestamp": null,
                    "brand_option": null,
                    "val_id": null,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": 5,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Produk Custom",
                    "value": "Tidak",
                    "id": 101219,
                    "is_timestamp": null,
                    "brand_option": null,
                    "val_id": null,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": 5,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Build-in Battery",
                    "value": "Ya",
                    "id": 100526,
                    "is_timestamp": null,
                    "brand_option": null,
                    "val_id": null,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": 5,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "SIRIM Certified",
                    "value": "Yes",
                    "id": 101198,
                    "is_timestamp": null,
                    "brand_option": null,
                    "val_id": null,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": 5,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Jenis Garansi",
                    "value": "Garansi Resmi",
                    "id": 100370,
                    "is_timestamp": null,
                    "brand_option": null,
                    "val_id": null,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": 5,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Kondisi",
                    "value": "baru",
                    "id": 100413,
                    "is_timestamp": null,
                    "brand_option": null,
                    "val_id": null,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": 5,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Model Handphone",
                    "value": "iphone 15",
                    "id": 100490,
                    "is_timestamp": null,
                    "brand_option": null,
                    "val_id": null,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": 5,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "No.Sertifikat (POSTEL)",
                    "value": "-",
                    "id": 101255,
                    "is_timestamp": null,
                    "brand_option": null,
                    "val_id": null,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": 5,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                },
                {
                    "name": "Dikirim Dari",
                    "value": "KOTA MEDAN",
                    "id": null,
                    "is_timestamp": null,
                    "brand_option": null,
                    "val_id": null,
                    "url": null,
                    "brand_id": null,
                    "full_url": null,
                    "type": 6,
                    "item_attribute_type": null,
                    "name_tr": null,
                    "value_tr": null
                }
            ],
            "categories": [
                {
                    "catid": 11044458,
                    "display_name": "Handphone \u0026 Aksesoris",
                    "no_sub": false,
                    "is_default_subcat": false
                },
                {
                    "catid": 11044476,
                    "display_name": "Handphone",
                    "no_sub": false,
                    "is_default_subcat": false
                },
                {
                    "catid": 11044496,
                    "display_name": "Apple",
                    "no_sub": true,
                    "is_default_subcat": false
                }
            ],
            "related_items": []
        },
        "shop_detailed": {
            "shopid": 34907167,
            "userid": 34908551,
            "last_active_time": 1778125477,
            "vacation": false,
            "place": null,
            "account": {
                "portrait": "id-11134216-7rask-m5dxlm5n2g7sef",
                "username": "doranwearablemanado",
                "status": 1
            },
            "is_shopee_verified": false,
            "is_preferred_plus_seller": false,
            "is_official_shop": true,
            "shop_location": null,
            "item_count": 1264,
            "rating_star": 4.851093,
            "response_rate": 100,
            "session_info": null,
            "name": "Doran Wearable Manado",
            "ctime": 1505465623,
            "response_time": 3039,
            "follower_count": 6821,
            "show_official_shop_label": true,
            "rating_bad": 150,
            "rating_good": 27672,
            "rating_normal": 482,
            "session_infos": null,
            "status": 1,
            "is_individual_seller": null,
            "is_mart": false,
            "favorite_shop_info": null,
            "is_3pf": false,
            "sold_total": null,
            "is_shopee_choice": false,
            "is_high_end": false,
            "banner": {
                "shopee_choice": null
            },
            "authorized_brand": null,
            "is_scs": false,
            "shop_location_tr": null,
            "sold_total_display": null,
            "is_outlet": false,
            "display_fbs_logo": false,
            "is_chatroom_online": true,
            "outlet_shop": null,
            "vacation_status": null,
            "display_shopee_choice_tick": false
        },
        "age_gate_control": null,
        "abnormal_popup": null,
        "return_on_spot": null,
        "display_sections": {
            "add_on_deal": null,
            "bundle_deal": null,
            "exclusive_price_label": null,
            "free_return": null,
            "coin": null,
            "wholesale": null
        },
        "ineligible_ep": null,
        "tax_disclaimer": null,
        "alcohol_disclaimer": null,
        "design_control": {
            "use_new_revamp_first_screen": null,
            "display_on_time_delivery_guarantee": true,
            "disable_price_with_variation": false,
            "display_direct_delivery": false,
            "use_new_featured_video_revamp": null,
            "first_screen_revamp_abtest_group": null,
            "display_choice_customised_section": false,
            "is_support_fbs_enabled": false,
            "top_section_featured_video_ab_test_group": null,
            "enable_ksp_config": null,
            "disable_main_page_select_variation": null,
            "support_shop_review_preview": null,
            "pdp_revamp_phase1_improvement_ui_review_down": null,
            "display_fashion_attributes": null,
            "display_fashion_review_section": null,
            "display_fashion_first_screen": null,
            "enable_fashion_review_improvements": null,
            "display_fbs_floating_counter": null,
            "display_shipping_drawer_new_free_shipping_text": false,
            "display_shipping_drawer_new_free_shipping_ui": false,
            "shift_featured_videos_above_review_ratings_section": null,
            "enable_fashion_featured_videos_improvements": null,
            "hide_shipping_channel_promotion_text": false
        },
        "shopee_free_return": null,
        "detail_level": 0,
        "removed_fields": null,
        "size_guide": null,
        "designer_info": null,
        "shipping_info": null,
        "vehicle_compatibility_info": null,
        "nea": null,
        "button_group": {
            "buy_with_voucher": null,
            "ineligible_user_platform_exclusive_sku": null
        },
        "installment_drawer": {
            "priority": [
                0,
                1
            ],
            "spl": null,
            "bank": {
                "channels": [
                    {
                        "channel_ic": "ic_paymentoption_ccinstallment",
                        "channel_name": "label_nicepay_cc_installment",
                        "is_cc": true,
                        "plans": null,
                        "banks": [
                            {
                                "bank_id": 833,
                                "bank_name": "DBS",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_dbs_digibank_id.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-200",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-201",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "12x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 12,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 110583333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-202",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "18x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 18,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 73722222000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-203",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "24x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 24,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 55291666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-204",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 858,
                                "bank_name": "Danamon",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_danamon_bank.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-205",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-206",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "12x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 12,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 110583333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-207",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 1499,
                                "bank_name": "CIMB",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_CIMB.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-260",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-261",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "12x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 12,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 110583333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-262",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "24x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 24,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 55291666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-264",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 1577,
                                "bank_name": "Bukopin",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_BUKOPIN.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-280",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-281",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "12x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 12,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 110583333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-282",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 2200,
                                "bank_name": "Mandiri",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_mandiri.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-215",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-216",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "12x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 12,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 110583333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-217",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "18x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 18,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 73722222000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-218",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "24x @ 0.50%",
                                            "channel_id": 8000501,
                                            "tenure": 24,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 55291666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-219",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 2505,
                                "bank_name": "Permata",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_permata.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-220",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-221",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "12x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 12,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 110583333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-222",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "18x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 18,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 73722222000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-223",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "24x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 24,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 55291666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-224",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 3632,
                                "bank_name": "BNI",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_negara.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-255",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-256",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "12x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 12,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 110583333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-257",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "18x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 18,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 73722222000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-258",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "24x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 24,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 55291666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-259",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 4495,
                                "bank_name": "HSBC",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_hsbc.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-225",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-226",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "12x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 12,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 110583333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-227",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "18x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 18,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 73722222000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-228",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "24x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 24,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 55291666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-229",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 4882,
                                "bank_name": "Bank Mega",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_mega_bank.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-235",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-236",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 5011,
                                "bank_name": "BRI",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_BRI.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-240",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-241",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "12x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 12,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 110583333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-242",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 5236,
                                "bank_name": "BCA",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_bca.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-290",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-291",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "12x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 12,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 110583333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-292",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 6391,
                                "bank_name": "UOB",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_UOB.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-245",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-246",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "12x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 12,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 110583333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-247",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 7447,
                                "bank_name": "OCBC NISP",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_OCBC_NISP.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-275",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-276",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "12x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 12,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 110583333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-277",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "18x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 18,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 73722222000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-278",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "24x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 24,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 55291666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-279",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 13339,
                                "bank_name": "Panin",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_panin_bank.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-285",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-286",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "12x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 12,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 110583333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-287",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 13863,
                                "bank_name": "MNC",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_MNC.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-270",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-271",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "12x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 12,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 110583333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-272",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 13865,
                                "bank_name": "Maybank",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_maybank.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-250",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-251",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "12x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 12,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 110583333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-252",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "24x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 24,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 55291666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-254",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 13895,
                                "bank_name": "BTN",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_BTN.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-265",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-266",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "12x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 12,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 110583333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-267",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 13897,
                                "bank_name": "Sinarmas",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_sinarmas.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-300",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-301",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 13916,
                                "bank_name": "Mayapada",
                                "bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_bank_mayapada.png",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-295",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-296",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "12x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 12,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 110583333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-297",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            },
                            {
                                "bank_id": 102979,
                                "bank_name": "PT BANK SMBC INDONESIA TBK",
                                "bank_logo": "",
                                "sub_options": [
                                    {
                                        "data": {
                                            "name": "3x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 3,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 442333333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-410",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "6x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 6,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 221166666000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-411",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    },
                                    {
                                        "data": {
                                            "name": "12x @ 0.00%",
                                            "channel_id": 8000501,
                                            "tenure": 12,
                                            "total_amount": 1327000000000,
                                            "down_payment": null,
                                            "interest_rate": 0,
                                            "installment_amount": null,
                                            "monthly_installment": 110583333000,
                                            "bank_id": null,
                                            "bank_name": null,
                                            "has_buyer_transaction_fee": true
                                        },
                                        "name": null,
                                        "option_info": "8002000-412",
                                        "disabled_reason_key": null,
                                        "disabled_reason": null,
                                        "disabled_reason_data": null,
                                        "sub_title": "Cicilan Murah 0%"
                                    }
                                ]
                            }
                        ],
                        "plan_groups": null
                    }
                ]
            },
            "credit_card": null
        },
        "ongoing_banner": null,
        "teaser_banner": null,
        "price_breakdown": null,
        "membership_exclusive": null,
        "membership_exclusive_teaser": null,
        "service_entrance": {
            "services": [
                {
                    "text": "15 Hari Pengembalian",
                    "type": null,
                    "id": 30
                },
                {
                    "text": "100% Original",
                    "type": null,
                    "id": 23
                },
                {
                    "text": "Proteksi Gadget",
                    "type": null,
                    "id": 25
                }
            ]
        },
        "service_drawer": {
            "services": [
                {
                    "title": "15 Hari Pengembalian",
                    "description": "Untuk memastikan kepuasanmu, Shopee Mall memberikan periode pengembalian yang lebih panjang (15 hari setelah barang diterima).",
                    "type": null,
                    "free_return": null,
                    "insurance": null,
                    "id": 30,
                    "redirection_url": "https://shopee.co.id/m/bebas-pengembalian",
                    "icon": "id-11134258-7rasd-m3bt5w8dhhjxdf",
                    "insurance_drawer": null,
                    "product_type": 0
                },
                {
                    "title": "100% Original",
                    "description": "Produk ini dijamin 100% asli dan akan dikirimkan secara langsung. Jika produk yang diterima tidak asli, kamu dapat mengajukan Pengembalian Dana.",
                    "type": null,
                    "free_return": null,
                    "insurance": null,
                    "id": 23,
                    "redirection_url": "https://shopee.co.id/m/shopee-garansi-ori",
                    "icon": "id-11134258-7ras8-m3bt6aa6vxsk65",
                    "insurance_drawer": null,
                    "product_type": 0
                },
                {
                    "title": "Proteksi Gadget",
                    "description": "Melindungi gadgetmu dari kerusakan akibat cairan atau tidak disengaja hingga 12 bulan",
                    "type": null,
                    "free_return": null,
                    "insurance": null,
                    "id": 25,
                    "redirection_url": "https://insurance.shopee.co.id/ec/ec-pdp.html?from=pdp\u0026locale=ID\u0026product_id=1507653218475573533",
                    "icon": "id-11134258-7rasa-m3bt6nx0z2dw71",
                    "insurance_drawer": {},
                    "product_type": 0
                }
            ]
        },
        "trade_in": null,
        "product_description": {
            "paragraph_list": [
                {
                    "type": 0,
                    "text": "iPhone 15 menghadirkan Dynamic Island, kamera Utama 48 MP, dan USB-C โ€” semuanya dalam desain aluminium dan kaca berwarna yang tangguh. ",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 10001,
                    "text": null,
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": 1
                },
                {
                    "type": 0,
                    "text": "Isi Kotak :",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "โ€ข iPhone dengan iOS 17.",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "โ€ข Kabel USB-C ke USB-C.",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "โ€ข Buku Manual dan dokumentasi lain.",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 10001,
                    "text": null,
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": 1
                },
                {
                    "type": 0,
                    "text": "Poin-poin fitur utama",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "DYNAMIC ISLAND HADIR DI IPHONE 15 โ€” Dynamic Island menampilkan gelembung pemberitahuan dan Aktivitas Langsung โ€” jadi Anda tidak melewatkannya saat melakukan hal lain. Anda dapat melihat siapa yang menelepon, memeriksa status penerbangan Anda, dan banyak lagi.",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "DESAIN INOVATIF โ€” iPhone 15 dilengkapi dengan desain aluminium dan kaca berwarna yang tangguh. Tahan cipratan, air, dan debu.(1) Bagian depan Ceramic Shield lebih tangguh dibandingkan kaca ponsel pintar mana pun. Dan layar Super Retina XDR 6,1 (2) hingga 2x lebih terang di bawah sinar matahari dibandingkan iPhone 14.",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "KAMERA UTAMA 48 MP DENGAN TELEFOTO 2X โ€” Kamera Utama 48 MP mengambil gambar dengan resolusi super tinggi. Jadi kini semakin mudah untuk mengambil foto yang memukau dengan detail menakjubkan. Telefoto berkualitas optik 2x memungkinkan Anda mengambil gambar close-up yang sempurna.",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "GENERASI BARU MODE POTRET โ€” Ambil gambar dengan lebih banyak detail dan warna. Ketuk untuk mengalihkan fokus antara subjek โ€” bahkan setelah Anda mengambil gambar.",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "CHIP A16 BIONIC SUPER BERTENAGA โ€” Chip super cepat mendukung beragam fitur canggih seperti fotografi komputasional, transisi Dynamic Island yang lancar, dan Isolasi Suara untuk panggilan telepon. Dan A16 Bionic sangat efisien dalam membantu menghadirkan kekuatan baterai sepanjang hari yang menakjubkan.(3)",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "KONEKTIVITAS USB-C โ€” Konektor USB-C memungkinkan Anda mengisi daya Mac atau iPad dengan kabel yang sama dengan yang Anda gunakan untuk mengisi daya iPhone 15. Anda bahkan dapat menggunakan iPhone 15 untuk mengisi daya Apple Watch atau AirPods.",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "FITUR KESELAMATAN PENTING โ€” Dengan Deteksi Tabrakan, iPhone bisa mendeteksi kecelakaan mobil yang parah dan melakukan panggilan bantuan saat Anda tak bisa.(4)",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "DIDESAIN UNTUK MEMBUAT PERUBAHAN โ€” iPhone dilengkapi dengan perlindungan privasi yang membantu Anda tetap memegang kendali atas data. Terbuat dari lebih banyak material daur ulang untuk meminimalkan dampak lingkungan. Dan memiliki fitur bawaan yang menjadikan iPhone lebih mudah diakses oleh semua orang.",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 10001,
                    "text": null,
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": 1
                },
                {
                    "type": 0,
                    "text": "Legal",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "(1) iPhone 15, iPhone 15 Plus, iPhone 15 Pro, dan iPhone 15 Pro Max tahan cipratan, air, dan debu dan diuji dalam kondisi laboratorium terkontrol dengan level IP68 menurut standar IEC 60529 (kedalaman maksimum 6 meter hingga selama 30 menit). Ketahanan terhadap cipratan, air, dan debu tidak berlaku secara permanen. Daya tahan mungkin berkurang akibat penggunaan sehari-hari. Jangan coba mengisi daya iPhone yang basah; lihat panduan pengguna untuk instruksi pembersihan dan pengeringan. Kerusakan akibat cairan tidak ditanggung dalam garansi.ย ",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "(2) Layar memiliki sudut melengkung. Jika diukur sebagai persegi standar, layarnya memiliki ukuran diagonal 6,12 inci (iPhone 15 Pro, iPhone 15) atau 6,69 inci (iPhone 15 Pro Max, iPhone 15 Plus). Area bidang layar berukuran lebih kecil.",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "(3) Kekuatan baterai bervariasi tergantung penggunaan dan konfigurasi; lihat apple.com/batteries untuk informasi selengkapnya.",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "(4) iPhone 15 dan iPhone 15 Pro bisa mendeteksi kecelakaan mobil yang parah dan melakukan panggilan bantuan. Memerlukan panggilan Wi-Fi atau koneksi seluler.",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 10001,
                    "text": null,
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": 1
                },
                {
                    "type": 0,
                    "text": "Cara klaim garansi:",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "1. Bawa UNIT, DUS, NOTA PEMBELIAN dan KARTU GARANSI ke Service Center terdekat di kota Anda.",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "2. Jelaskan ke Customer Service keluhan anda (selama masih dalam masa garansi, tidak dikenakan biaya/gratis).",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "3. Garansi TIDAK BERLAKU apabila kerusakan karena human error (Contoh: Jatuh/Pecah, kena air, terbakar)",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "========================",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                },
                {
                    "type": 0,
                    "text": "MEMBELI = SETUJU",
                    "img_id": null,
                    "ratio": null,
                    "description_type": 1,
                    "empty_paragraph_count": null
                }
            ],
            "source_language": ""
        },
        "selected_tiers": null,
        "size_info": null,
        "size_recommendation": null,
        "translation_status": 0,
        "product_description_tr": null,
        "default_warnings": null,
        "bcrs_disclaimer": null
    }
}

3. Search / Category Items

Scrape all products from Shopee search or category pages. Up to 50 URLs per request.

Supported regions: ID ยท SG ยท TH ยท PH ยท MY ยท VN ยท TW

๐Ÿ”‘ Endpoint

POST /v1/shopee/search-items/submit
GET  /v1/shopee/search-items/retrieve/{job_id}

๐Ÿ“ฅ Request Body

ParameterTypeRequiredDescription
urlsarrayYesArray of Shopee search/category URLs (max 50)

๐Ÿ”— Supported URL Formats

  • Search: https://shopee.co.id/search?keyword=iphone
  • Category: https://shopee.co.id/Elektronik-cat.11044070

๐Ÿ’ป Code Examples

# Submit Job
curl -X POST "https://nest-api.magpieiq.com/v1/shopee/search-items/submit" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "urls": [
      "https://shopee.co.id/search?keyword=iphone",
      "https://shopee.co.id/Elektronik-cat.11044070"
    ]
  }'

# Poll Status & collect download URLs
curl "https://nest-api.magpieiq.com/v1/shopee/search-items/retrieve/{job_id}" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

# Download a specific result (download_url requires the same Bearer token)
curl "https://nest-api.magpieiq.com/v1/shopee/pgnt/jobs/{job_id}/items/{item_token}/data" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
View Python Example
import requests
import time

API_HOST = "https://nest-api.magpieiq.com"
headers = {"Authorization": "Bearer YOUR_API_TOKEN", "Content-Type": "application/json"}

# Submit
payload = {"urls": ["https://shopee.co.id/search?keyword=iphone"]}
resp = requests.post(f"{API_HOST}/v1/shopee/search-items/submit", json=payload, headers=headers)
job_id = resp.json()["job_id"]

# Poll until complete
while True:
    result = requests.get(f"{API_HOST}/v1/shopee/search-items/retrieve/{job_id}", headers=headers).json()
    if result["status"] in ["COMPLETED", "PARTIAL_COMPLETE"]:
        for item in result["items"]:
            print(f"URL: {item['url']}, Status: {item['status']}, Download: {item.get('download_url')}")
        break
    time.sleep(30)

โšก Behavior

  • Cost: 6 credits per URL
  • Approval: Required (24h timeout)
  • Region: Automatically extracted from URL (e.g., shopee.co.id โ†’ ID)
  • Results: One JSON file per URL containing all items from the search/category
  • Download: Each download_url points to /v1/shopee/pgnt/jobs/{job_id}/items/{token}/data and requires the same Bearer token.
  • Data source: Returns items from search_items (all pages)

Result Example

Search Items JSON Click to expand
{
  "success": true,
  "url": "https://shopee.co.id/search?keyword=iphone",
  "total_items": 94,
  "items": [
    {
      "itemid": 40011228763,
      "shopid": 24843249,
      "name": "iPhone 15 Pro Max 256GB",
      "price": 800000000,
      "price_min": 800000000,
      "price_max": 800000000,
      "stock": 1,
      "sold": 1000,
      "historical_sold": 1000,
      "liked_count": 221,
      "cmt_count": 624,
      "item_rating": {
        "rating_star": 4.815705128205129,
        "rating_count": [624, 21, 2, 7, 11, 583]
      },
      "shop_location": "KOTA JAKARTA UTARA",
      "shop_name": "tokojualbarangmurahbanget",
      "is_official_shop": false,
      "tier_variations": [
        {
          "name": "Garansi",
          "options": ["1 Bulan", "3 Bulan", "6 Bulan", "Lifetime"]
        }
      ]
    }
  ]
}

4. Merchant Items

Scrape all products from Shopee merchant/shop pages. Up to 50 URLs per request.

Supported regions: ID ยท SG ยท TH ยท PH ยท MY ยท VN ยท TW

๐Ÿ”‘ Endpoint

POST /v1/shopee/merchant-items/submit
GET  /v1/shopee/merchant-items/retrieve/{job_id}

๐Ÿ“ฅ Request Body

ParameterTypeRequiredDescription
urlsarrayYesArray of Shopee shop/merchant URLs (max 50)

๐Ÿ”— Supported URL Formats

  • Shop ID: https://shopee.co.id/shop/24843249

๐Ÿ’ป Code Examples

# Submit Job
curl -X POST "https://nest-api.magpieiq.com/v1/shopee/merchant-items/submit" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "urls": [
      "https://shopee.co.id/shop/24843249",
      "https://shopee.co.id/shop/651735813"
    ]
  }'

# Poll Status & collect download URLs
curl "https://nest-api.magpieiq.com/v1/shopee/merchant-items/retrieve/{job_id}" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

# Download a specific result
curl "https://nest-api.magpieiq.com/v1/shopee/pgnt/jobs/{job_id}/items/{item_token}/data" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
View Python Example
import requests
import time

API_HOST = "https://nest-api.magpieiq.com"
headers = {"Authorization": "Bearer YOUR_API_TOKEN", "Content-Type": "application/json"}

# Submit
payload = {"urls": ["https://shopee.co.id/shop/24843249"]}
resp = requests.post(f"{API_HOST}/v1/shopee/merchant-items/submit", json=payload, headers=headers)
job_id = resp.json()["job_id"]

# Poll & download results
while True:
    result = requests.get(f"{API_HOST}/v1/shopee/merchant-items/retrieve/{job_id}", headers=headers).json()
    if result["status"] in ["completed", "partial_complete"]:
        for item in result["items"]:
            if item["status"] == "SUCCESS" and item["download_url"]:
                data = requests.get(f"{API_HOST}{item['download_url']}", headers=headers).json()
                print(item["url"], data.keys())
        break
    time.sleep(30)

โšก Behavior

  • Cost: 6 credits per URL
  • Approval: Required (24h timeout)
  • Region: Automatically extracted from URL (e.g., shopee.co.id โ†’ ID)
  • Results: One JSON file per shop URL containing all products
  • Download: Use the download_url from retrieve to call /v1/shopee/pgnt/jobs/{job_id}/items/{token}/data with your Bearer token.
  • Data sources: Returns items from both:
    • rcmd_items - Recommended/active items
    • search_items?filter_sold_out=1 - Sold out items (if any)

Result Example

Merchant Items JSON Click to expand
{
  "success": true,
  "shops": {
    "https://shopee.co.id/shop/24843249": {
      "page_url": "https://shopee.co.id/shop/24843249",
      "page_type": "shop",
      "page_params": {
        "shop_id": 24843249
      },
      "items": {
        "items": [],
        "total_fetched": 0,
        "total_count": 0,
        "pages_fetched": 0,
        "has_more": true
      },
      "rcmd_items": {
        "items": [
          {
            "itemid": 40011228763,
            "shopid": 24843249,
            "name": "Lifetime N3TFLXX Premium UHD 4K Akun Netflix",
            "label_ids": [
              2018619,
              700025282,
              1718087960,
              1428713,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1015914,
              700190087,
              700830032,
              298933384,
              1400285055
            ],
            "image": "id-11134207-7ra0i-mcwe7x8ljik5bb",
            "images": [
              "id-11134207-7ra0i-mcwe7x8ljik5bb"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1754070551,
            "sold": 1000,
            "historical_sold": 1000,
            "liked": false,
            "liked_count": 221,
            "catid": 100642,
            "brand": "",
            "cmt_count": 624,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 800000000,
            "price_min": 800000000,
            "price_max": 800000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.815705128205129,
              "rating_count": [
                624,
                21,
                2,
                7,
                11,
                583
              ],
              "rcount_with_context": 124,
              "rcount_with_image": 35
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.154511},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 1000,
              "rounded_display_sold_count": 1000,
              "display_sold_count_text": "1RB+",
              "rounded_local_monthly_sold_count": 1000,
              "local_monthly_sold_count_text": "1RB+",
              "rounded_local_historical_sold_count": 1000,
              "local_historical_sold_count_text": "1RB+",
              "rounded_global_historical_sold_count": 1000,
              "global_historical_sold_count_text": "1RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 29700784692,
            "shopid": 24843249,
            "name": "LIFETIME SUNO AI PREMIUM",
            "label_ids": [
              700025282,
              1400285055,
              1428713,
              1718087960,
              1015914,
              700190087,
              2018619,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              298933384,
              700830032
            ],
            "image": "id-11134207-7r98p-lyamb5m0up0gd3",
            "images": [
              "id-11134207-7r98p-lyamb5m0up0gd3"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1716487553,
            "sold": 680,
            "historical_sold": 7000,
            "liked": false,
            "liked_count": 1581,
            "catid": 100642,
            "brand": "",
            "cmt_count": 2869,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1500000000,
            "price_min": 1500000000,
            "price_max": 1500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "2 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "8 Bulan",
                  "10 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.495569188820722,
              "rating_count": [
                2934,
                278,
                46,
                70,
                90,
                2450
              ],
              "rcount_with_context": 633,
              "rcount_with_image": 124
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.151433},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 7000,
              "rounded_display_sold_count": 7000,
              "display_sold_count_text": "7RB+",
              "rounded_local_monthly_sold_count": 680,
              "local_monthly_sold_count_text": "680",
              "rounded_local_historical_sold_count": 7000,
              "local_historical_sold_count_text": "7RB+",
              "rounded_global_historical_sold_count": 7000,
              "global_historical_sold_count_text": "7RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 23759132564,
            "shopid": 24843249,
            "name": "LIFETIME CLAUDE AI PREMIUM Dengan Akun Lifetime",
            "label_ids": [
              700025282,
              1059152,
              1059154,
              822059908662278,
              1400285055,
              822120592853526,
              1718087960,
              1428713,
              2018619,
              298933384,
              700830032,
              1015914,
              700190087
            ],
            "image": "id-11134207-7r98z-lnamcttrextm9c",
            "images": [
              "id-11134207-7r98z-lnamcttrextm9c"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1698272945,
            "sold": 314,
            "historical_sold": 4000,
            "liked": false,
            "liked_count": 785,
            "catid": 100642,
            "brand": "",
            "cmt_count": 1213,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1000000000,
            "price_min": 1000000000,
            "price_max": 1000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.581749049429658,
              "rating_count": [
                1315,
                68,
                33,
                57,
                65,
                1092
              ],
              "rcount_with_context": 180,
              "rcount_with_image": 34
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.132052},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 4000,
              "rounded_display_sold_count": 4000,
              "display_sold_count_text": "4RB+",
              "rounded_local_monthly_sold_count": 314,
              "local_monthly_sold_count_text": "314",
              "rounded_local_historical_sold_count": 4000,
              "local_historical_sold_count_text": "4RB+",
              "rounded_global_historical_sold_count": 4000,
              "global_historical_sold_count_text": "4RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 26275994044,
            "shopid": 24843249,
            "name": "PR1ME VID Premium - Akses Nonton Film Dengan Garansi",
            "label_ids": [
              700025282,
              1428713,
              1718087960,
              1400285055,
              2018619,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              298933384,
              1015914,
              700190087
            ],
            "image": "id-11134207-7rbk5-m661btyd7r5sad",
            "images": [
              "id-11134207-7rbk5-m661btyd7r5sad"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1739401229,
            "sold": 387,
            "historical_sold": 2000,
            "liked": false,
            "liked_count": 323,
            "catid": 100644,
            "brand": "",
            "cmt_count": 1165,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 500000000,
            "price_min": 500000000,
            "price_max": 500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.775107296137339,
              "rating_count": [
                1165,
                43,
                8,
                18,
                30,
                1066
              ],
              "rcount_with_context": 169,
              "rcount_with_image": 42
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.122446},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 2000,
              "rounded_display_sold_count": 2000,
              "display_sold_count_text": "2RB+",
              "rounded_local_monthly_sold_count": 387,
              "local_monthly_sold_count_text": "387",
              "rounded_local_historical_sold_count": 2000,
              "local_historical_sold_count_text": "2RB+",
              "rounded_global_historical_sold_count": 2000,
              "global_historical_sold_count_text": "2RB+"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 26280730972,
            "shopid": 24843249,
            "name": "Lifetime Kling Ai Premium Dengan Akun Baru Gratis",
            "label_ids": [
              2018619,
              700025282,
              1428713,
              1718087960,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1400285055,
              1015914,
              700190087,
              298933384,
              700830032
            ],
            "image": "id-11134207-7rbk0-m7qpotapjr1e79",
            "images": [
              "id-11134207-7rbk0-m7qpotapjr1e79"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1742847992,
            "sold": 90,
            "historical_sold": 768,
            "liked": false,
            "liked_count": 542,
            "catid": 100642,
            "brand": "",
            "cmt_count": 260,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3000000000,
            "price_min": 3000000000,
            "price_max": 3000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.35,
              "rating_count": [
                260,
                33,
                4,
                7,
                11,
                205
              ],
              "rcount_with_context": 44,
              "rcount_with_image": 9
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.093357},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 768,
              "rounded_display_sold_count": 768,
              "display_sold_count_text": "768",
              "rounded_local_monthly_sold_count": 90,
              "local_monthly_sold_count_text": "90",
              "rounded_local_historical_sold_count": 768,
              "local_historical_sold_count_text": "768",
              "rounded_global_historical_sold_count": 768,
              "global_historical_sold_count_text": "768"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 46602718815,
            "shopid": 24843249,
            "name": "LIFETIME MELOLO PREMIUM",
            "label_ids": [
              2018619,
              700025282,
              1428713,
              1718087960,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              298933384,
              1400285055
            ],
            "image": "id-11134207-8224x-mhxmjt5ljqx105",
            "images": [
              "id-11134207-8224x-mhxmjt5ljqx105"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1765041674,
            "sold": 210,
            "historical_sold": 230,
            "liked": false,
            "liked_count": 29,
            "catid": 100642,
            "brand": "",
            "cmt_count": 104,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 300000000,
            "price_min": 300000000,
            "price_max": 300000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "ANDROID",
                  "ALL DEVICES"
                ],
                "type": 0
              },
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.894230769230769,
              "rating_count": [
                104,
                1,
                0,
                2,
                3,
                98
              ],
              "rcount_with_context": 17,
              "rcount_with_image": 4
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.090885},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 230,
              "rounded_display_sold_count": 230,
              "display_sold_count_text": "230",
              "rounded_local_monthly_sold_count": 210,
              "local_monthly_sold_count_text": "210",
              "rounded_local_historical_sold_count": 230,
              "local_historical_sold_count_text": "230",
              "rounded_global_historical_sold_count": 230,
              "global_historical_sold_count_text": "230"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 27879193443,
            "shopid": 24843249,
            "name": "LIFETIME Bein Sports Premium Murah Dengan Garansi 1-12 Bulan",
            "label_ids": [
              700025282,
              1718087960,
              1428713,
              1049122,
              1059152,
              822059908662278,
              822120592853526,
              2018619,
              1400285055,
              1015914,
              700190087,
              298933384,
              700830032
            ],
            "image": "id-11134207-7rbk9-m77yw8l073kmc8",
            "images": [
              "id-11134207-7rbk9-m77yw8l073kmc8"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1741696836,
            "sold": 109,
            "historical_sold": 1000,
            "liked": false,
            "liked_count": 307,
            "catid": 100642,
            "brand": "",
            "cmt_count": 716,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 2100000000,
            "price_min": 2100000000,
            "price_max": 2100000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.572625698324022,
              "rating_count": [
                716,
                52,
                12,
                17,
                28,
                607
              ],
              "rcount_with_context": 97,
              "rcount_with_image": 20
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.089645},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 1000,
              "rounded_display_sold_count": 1000,
              "display_sold_count_text": "1RB+",
              "rounded_local_monthly_sold_count": 109,
              "local_monthly_sold_count_text": "109",
              "rounded_local_historical_sold_count": 1000,
              "local_historical_sold_count_text": "1RB+",
              "rounded_global_historical_sold_count": 1000,
              "global_historical_sold_count_text": "1RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 40226546605,
            "shopid": 24843249,
            "name": "LIFETIME LOKLLOCKK PPPREMIUM",
            "label_ids": [
              2018619,
              700025282,
              1718087960,
              1428713,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1400285055,
              298933384,
              1015914,
              700190087
            ],
            "image": "id-11134207-8224o-mh839kz8cphn9a",
            "images": [
              "id-11134207-8224o-mh839kz8cphn9a"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1763495429,
            "sold": 162,
            "historical_sold": 208,
            "liked": false,
            "liked_count": 56,
            "catid": 100642,
            "brand": "",
            "cmt_count": 122,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3500000000,
            "price_min": 3500000000,
            "price_max": 3500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.819672131147541,
              "rating_count": [
                122,
                4,
                0,
                2,
                2,
                114
              ],
              "rcount_with_context": 28,
              "rcount_with_image": 9
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.089563},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 208,
              "rounded_display_sold_count": 208,
              "display_sold_count_text": "208",
              "rounded_local_monthly_sold_count": 162,
              "local_monthly_sold_count_text": "162",
              "rounded_local_historical_sold_count": 208,
              "local_historical_sold_count_text": "208",
              "rounded_global_historical_sold_count": 208,
              "global_historical_sold_count_text": "208"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 28720158961,
            "shopid": 24843249,
            "name": "LIFETIME BLACKBOX AI PREMIUM",
            "label_ids": [
              700025282,
              1718087960,
              1428713,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1400285055,
              2018619,
              1015914,
              700190087,
              298933384,
              700830032
            ],
            "image": "id-11134207-7rasd-m3kkw94z5hbia1",
            "images": [
              "id-11134207-7rasd-m3kkw94z5hbia1"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1733744842,
            "sold": 361,
            "historical_sold": 4000,
            "liked": false,
            "liked_count": 556,
            "catid": 100642,
            "brand": "",
            "cmt_count": 1527,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 2800000000,
            "price_min": 2800000000,
            "price_max": 2800000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.68369351669941,
              "rating_count": [
                1527,
                76,
                15,
                35,
                64,
                1337
              ],
              "rcount_with_context": 178,
              "rcount_with_image": 45
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.083507},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 4000,
              "rounded_display_sold_count": 4000,
              "display_sold_count_text": "4RB+",
              "rounded_local_monthly_sold_count": 361,
              "local_monthly_sold_count_text": "361",
              "rounded_local_historical_sold_count": 4000,
              "local_historical_sold_count_text": "4RB+",
              "rounded_global_historical_sold_count": 4000,
              "global_historical_sold_count_text": "4RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 56202053257,
            "shopid": 24843249,
            "name": "LIFETIME GROK AI PREMIUM",
            "label_ids": [
              2018619,
              700025282,
              1718087960,
              1428713,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              298933384,
              1015914,
              700190087,
              1400285055
            ],
            "image": "id-11134207-8224v-mhh7baj74buv8d",
            "images": [
              "id-11134207-8224v-mhh7baj74buv8d"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1764047666,
            "sold": 193,
            "historical_sold": 239,
            "liked": false,
            "liked_count": 110,
            "catid": 100642,
            "brand": "",
            "cmt_count": 96,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3500000000,
            "price_min": 3500000000,
            "price_max": 3500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.770833333333333,
              "rating_count": [
                96,
                4,
                1,
                1,
                1,
                89
              ],
              "rcount_with_context": 17,
              "rcount_with_image": 2
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.081607},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 239,
              "rounded_display_sold_count": 239,
              "display_sold_count_text": "239",
              "rounded_local_monthly_sold_count": 193,
              "local_monthly_sold_count_text": "193",
              "rounded_local_historical_sold_count": 239,
              "local_historical_sold_count_text": "239",
              "rounded_global_historical_sold_count": 239,
              "global_historical_sold_count_text": "239"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 41065546729,
            "shopid": 24843249,
            "name": "Lifetime FlareFlow Premium",
            "label_ids": [
              2018619,
              700025282,
              1428713,
              1718087960,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              298933384,
              1015914,
              700190087
            ],
            "image": "id-11134207-81ztn-mdyyn782pvydf9",
            "images": [
              "id-11134207-81ztn-mdyyn782pvydf9"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1756405226,
            "sold": 104,
            "historical_sold": 366,
            "liked": false,
            "liked_count": 34,
            "catid": 100642,
            "brand": "",
            "cmt_count": 95,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 2000000000,
            "price_min": 2000000000,
            "price_max": 2000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.6,
              "rating_count": [
                95,
                4,
                3,
                4,
                5,
                79
              ],
              "rcount_with_context": 10,
              "rcount_with_image": 0
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.078361},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 366,
              "rounded_display_sold_count": 366,
              "display_sold_count_text": "366",
              "rounded_local_monthly_sold_count": 104,
              "local_monthly_sold_count_text": "104",
              "rounded_local_historical_sold_count": 366,
              "local_historical_sold_count_text": "366",
              "rounded_global_historical_sold_count": 366,
              "global_historical_sold_count_text": "366"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 46701258873,
            "shopid": 24843249,
            "name": "LIFETIME DERABOKS PREMIUM",
            "label_ids": [
              2018619,
              700025282,
              1428713,
              1718087960,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              298933384,
              1400285055
            ],
            "image": "id-11134207-8224z-mgzc5jq6a0p83c",
            "images": [
              "id-11134207-8224z-mgzc5jq6a0p83c"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1762965628,
            "sold": 56,
            "historical_sold": 95,
            "liked": false,
            "liked_count": 10,
            "catid": 100642,
            "brand": "",
            "cmt_count": 53,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1200000000,
            "price_min": 1200000000,
            "price_max": 1200000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.9245283018867925,
              "rating_count": [
                53,
                1,
                0,
                0,
                0,
                52
              ],
              "rcount_with_context": 9,
              "rcount_with_image": 1
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.076410},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 95,
              "rounded_display_sold_count": 95,
              "display_sold_count_text": "95",
              "rounded_local_monthly_sold_count": 56,
              "local_monthly_sold_count_text": "56",
              "rounded_local_historical_sold_count": 95,
              "local_historical_sold_count_text": "95",
              "rounded_global_historical_sold_count": 95,
              "global_historical_sold_count_text": "95"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 25955568095,
            "shopid": 24843249,
            "name": "Premium Lifetime Eleven Labs Dengan Panduan Gratis",
            "label_ids": [
              700025282,
              1400285055,
              1718087960,
              1428713,
              2018619,
              1049122,
              1059152,
              822059908662278,
              822120592853526,
              298933384,
              1015914,
              700190087
            ],
            "image": "id-11134207-7r98o-lptm9vir0fjmcd",
            "images": [
              "id-11134207-7r98o-lptm9vir0fjmcd"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1703780005,
            "sold": 235,
            "historical_sold": 1000,
            "liked": false,
            "liked_count": 292,
            "catid": 100644,
            "brand": "",
            "cmt_count": 491,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 2000000000,
            "price_min": 2000000000,
            "price_max": 2000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.315040650406504,
              "rating_count": [
                492,
                66,
                8,
                16,
                17,
                385
              ],
              "rcount_with_context": 91,
              "rcount_with_image": 20
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.076247},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 1000,
              "rounded_display_sold_count": 1000,
              "display_sold_count_text": "1RB+",
              "rounded_local_monthly_sold_count": 235,
              "local_monthly_sold_count_text": "235",
              "rounded_local_historical_sold_count": 1000,
              "local_historical_sold_count_text": "1RB+",
              "rounded_global_historical_sold_count": 1000,
              "global_historical_sold_count_text": "1RB+"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 24522559441,
            "shopid": 24843249,
            "name": "Lifetime MoboReels Premium",
            "label_ids": [
              700025282,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1400285055,
              1718087960,
              1428713,
              2018619,
              1015914,
              700190087,
              298933384,
              700830032
            ],
            "image": "id-11134207-7r990-ltr41vbovuytf1",
            "images": [
              "id-11134207-7r990-ltr41vbovuytf1"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1712348840,
            "sold": 28,
            "historical_sold": 1000,
            "liked": false,
            "liked_count": 89,
            "catid": 100642,
            "brand": "",
            "cmt_count": 646,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 600000000,
            "price_min": 600000000,
            "price_max": 600000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.776712328767124,
              "rating_count": [
                730,
                20,
                10,
                12,
                29,
                659
              ],
              "rcount_with_context": 100,
              "rcount_with_image": 23
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.068148},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 1000,
              "rounded_display_sold_count": 1000,
              "display_sold_count_text": "1RB+",
              "rounded_local_monthly_sold_count": 28,
              "local_monthly_sold_count_text": "28",
              "rounded_local_historical_sold_count": 1000,
              "local_historical_sold_count_text": "1RB+",
              "rounded_global_historical_sold_count": 1000,
              "global_historical_sold_count_text": "1RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 26465072469,
            "shopid": 24843249,
            "name": "Lifetime FlickReels Premium",
            "label_ids": [
              700025282,
              1428713,
              1718087960,
              1400285055,
              1015914,
              700190087,
              2018619,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              298933384,
              700810080
            ],
            "image": "id-11134207-7rase-m1pm2nejv41n11",
            "images": [
              "id-11134207-7rase-m1pm2nejv41n11"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1729689946,
            "sold": 287,
            "historical_sold": 3000,
            "liked": false,
            "liked_count": 188,
            "catid": 100644,
            "brand": "",
            "cmt_count": 1021,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 800000000,
            "price_min": 800000000,
            "price_max": 800000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.634671890303624,
              "rating_count": [
                1021,
                58,
                11,
                35,
                38,
                879
              ],
              "rcount_with_context": 103,
              "rcount_with_image": 28
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.067686},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 3000,
              "rounded_display_sold_count": 3000,
              "display_sold_count_text": "3RB+",
              "rounded_local_monthly_sold_count": 287,
              "local_monthly_sold_count_text": "287",
              "rounded_local_historical_sold_count": 3000,
              "local_historical_sold_count_text": "3RB+",
              "rounded_global_historical_sold_count": 3000,
              "global_historical_sold_count_text": "3RB+"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 27352939986,
            "shopid": 24843249,
            "name": "LIFETIME SUNO AI PREMIUM PRIVATE",
            "label_ids": [
              700025282,
              1718087960,
              1428713,
              2018619,
              298933384,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1015914,
              700190087,
              1400285055
            ],
            "image": "id-11134207-7r98v-lyamb5m0w3kw6c",
            "images": [
              "id-11134207-7r98v-lyamb5m0w3kw6c"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1718440675,
            "sold": 63,
            "historical_sold": 162,
            "liked": false,
            "liked_count": 120,
            "catid": 100644,
            "brand": "",
            "cmt_count": 67,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 10000000000,
            "price_min": 10000000000,
            "price_max": 10000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.3428571428571425,
              "rating_count": [
                70,
                9,
                1,
                1,
                5,
                54
              ],
              "rcount_with_context": 19,
              "rcount_with_image": 3
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.065556},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 162,
              "rounded_display_sold_count": 162,
              "display_sold_count_text": "162",
              "rounded_local_monthly_sold_count": 63,
              "local_monthly_sold_count_text": "63",
              "rounded_local_historical_sold_count": 162,
              "local_historical_sold_count_text": "162",
              "rounded_global_historical_sold_count": 162,
              "global_historical_sold_count_text": "162"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 23281742299,
            "shopid": 24843249,
            "name": "LIFETIME PERPLEXITY AI PREMIUM",
            "label_ids": [
              700025282,
              1400285055,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1718087960,
              1428713,
              1015914,
              700190087,
              2018619,
              298933384,
              700830032
            ],
            "image": "id-11134207-7r98s-lm6n7wt2bu6m92",
            "images": [
              "id-11134207-7r98s-lm6n7wt2bu6m92"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1695858277,
            "sold": 122,
            "historical_sold": 4000,
            "liked": false,
            "liked_count": 1019,
            "catid": 100642,
            "brand": "",
            "cmt_count": 1834,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3500000000,
            "price_min": 3500000000,
            "price_max": 3500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.846711548420507,
              "rating_count": [
                1931,
                41,
                9,
                29,
                47,
                1805
              ],
              "rcount_with_context": 264,
              "rcount_with_image": 70
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.059268},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 4000,
              "rounded_display_sold_count": 4000,
              "display_sold_count_text": "4RB+",
              "rounded_local_monthly_sold_count": 122,
              "local_monthly_sold_count_text": "122",
              "rounded_local_historical_sold_count": 4000,
              "local_historical_sold_count_text": "4RB+",
              "rounded_global_historical_sold_count": 4000,
              "global_historical_sold_count_text": "4RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 22444965011,
            "shopid": 24843249,
            "name": "LIFETIME ENV4TO ELEMENTS PREMIUM",
            "label_ids": [
              1400285055,
              700025282,
              1428713,
              1718087960,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              2018619,
              298933384,
              700830032
            ],
            "image": "id-11134207-7qul0-lhs6xq83e84p65",
            "images": [
              "id-11134207-7qul0-lhs6xq83e84p65"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1686259468,
            "sold": 27,
            "historical_sold": 2000,
            "liked": false,
            "liked_count": 665,
            "catid": 100642,
            "brand": "",
            "cmt_count": 910,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 500000000,
            "price_min": 500000000,
            "price_max": 500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.752843846949328,
              "rating_count": [
                967,
                33,
                12,
                19,
                33,
                870
              ],
              "rcount_with_context": 160,
              "rcount_with_image": 37
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.058598},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 2000,
              "rounded_display_sold_count": 2000,
              "display_sold_count_text": "2RB+",
              "rounded_local_monthly_sold_count": 27,
              "local_monthly_sold_count_text": "27",
              "rounded_local_historical_sold_count": 2000,
              "local_historical_sold_count_text": "2RB+",
              "rounded_global_historical_sold_count": 2000,
              "global_historical_sold_count_text": "2RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 17093507834,
            "shopid": 24843249,
            "name": "PREMIUM QU1LL B LIFETIME",
            "label_ids": [
              1400285055,
              700025282,
              1718087960,
              1428713,
              2018619,
              1015914,
              700190087,
              298933384,
              700830032,
              1049122,
              1059152,
              822059908662278,
              822120592853526
            ],
            "image": "id-11134201-23030-n0no0ud2o4nvfb",
            "images": [
              "id-11134201-23030-n0no0ud2o4nvfb"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1678735635,
            "sold": 113,
            "historical_sold": 8000,
            "liked": false,
            "liked_count": 945,
            "catid": 100642,
            "brand": "",
            "cmt_count": 3310,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 500000000,
            "price_min": 500000000,
            "price_max": 500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.875426621160409,
              "rating_count": [
                3516,
                27,
                23,
                49,
                163,
                3254
              ],
              "rcount_with_context": 487,
              "rcount_with_image": 159
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.058488},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 8000,
              "rounded_display_sold_count": 8000,
              "display_sold_count_text": "8RB+",
              "rounded_local_monthly_sold_count": 113,
              "local_monthly_sold_count_text": "113",
              "rounded_local_historical_sold_count": 8000,
              "local_historical_sold_count_text": "8RB+",
              "rounded_global_historical_sold_count": 8000,
              "global_historical_sold_count_text": "8RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 29502349955,
            "shopid": 24843249,
            "name": "LIFETIME GEMINI AI ADVANCED PREMIUM",
            "label_ids": [
              700025282,
              1049122,
              1059152,
              822059908662278,
              822120592853526,
              1718087960,
              1428713,
              1400285055,
              2018619,
              1015914,
              700190087,
              298933384,
              700810080
            ],
            "image": "id-11134207-7r98w-lwd5rnu9dz3x04",
            "images": [
              "id-11134207-7r98w-lwd5rnu9dz3x04"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1718041120,
            "sold": 25,
            "historical_sold": 220,
            "liked": false,
            "liked_count": 99,
            "catid": 100644,
            "brand": "",
            "cmt_count": 95,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 500000000,
            "price_min": 500000000,
            "price_max": 500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.755102040816326,
              "rating_count": [
                98,
                3,
                0,
                4,
                4,
                87
              ],
              "rcount_with_context": 15,
              "rcount_with_image": 7
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.058222},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 220,
              "rounded_display_sold_count": 220,
              "display_sold_count_text": "220",
              "rounded_local_monthly_sold_count": 25,
              "local_monthly_sold_count_text": "25",
              "rounded_local_historical_sold_count": 220,
              "local_historical_sold_count_text": "220",
              "rounded_global_historical_sold_count": 220,
              "global_historical_sold_count_text": "220"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 24808027544,
            "shopid": 24843249,
            "name": "LIFETIME GITHUB COPILOT PREMIUM",
            "label_ids": [
              700025282,
              1400285055,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1428713,
              1718087960,
              2018619,
              1015914,
              700190087,
              298933384,
              700810080
            ],
            "image": "id-11134207-7r990-lqefsyrxi0tu74",
            "images": [
              "id-11134207-7r990-lqefsyrxi0tu74"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1705040235,
            "sold": 182,
            "historical_sold": 1000,
            "liked": false,
            "liked_count": 304,
            "catid": 100644,
            "brand": "",
            "cmt_count": 654,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 2000000000,
            "price_min": 2000000000,
            "price_max": 2000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.770045385779123,
              "rating_count": [
                661,
                29,
                4,
                6,
                12,
                610
              ],
              "rcount_with_context": 130,
              "rcount_with_image": 32
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.056557},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 1000,
              "rounded_display_sold_count": 1000,
              "display_sold_count_text": "1RB+",
              "rounded_local_monthly_sold_count": 182,
              "local_monthly_sold_count_text": "182",
              "rounded_local_historical_sold_count": 1000,
              "local_historical_sold_count_text": "1RB+",
              "rounded_global_historical_sold_count": 1000,
              "global_historical_sold_count_text": "1RB+"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 22376222002,
            "shopid": 24843249,
            "name": "Lifetime Humata.Ai Premium Dengan Akun Lifetime",
            "label_ids": [
              1400285055,
              700025282,
              1015914,
              700190087,
              1049122,
              1059152,
              822059908662278,
              822120592853526,
              1428713,
              1718087960,
              2018619,
              298933384,
              700830032
            ],
            "image": "id-11134207-7qukz-lk7agu2exs5r96",
            "images": [
              "id-11134207-7qukz-lk7agu2exs5r96"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1691533701,
            "sold": 43,
            "historical_sold": 7000,
            "liked": false,
            "liked_count": 1079,
            "catid": 100642,
            "brand": "",
            "cmt_count": 3084,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 500000000,
            "price_min": 500000000,
            "price_max": 500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.908279470606341,
              "rating_count": [
                3249,
                20,
                13,
                38,
                103,
                3075
              ],
              "rcount_with_context": 416,
              "rcount_with_image": 114
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.051738},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 7000,
              "rounded_display_sold_count": 7000,
              "display_sold_count_text": "7RB+",
              "rounded_local_monthly_sold_count": 43,
              "local_monthly_sold_count_text": "43",
              "rounded_local_historical_sold_count": 7000,
              "local_historical_sold_count_text": "7RB+",
              "rounded_global_historical_sold_count": 7000,
              "global_historical_sold_count_text": "7RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 24320951432,
            "shopid": 24843249,
            "name": "Lifetime Photoroom Premium Akun Lifetime Gratis Panduan",
            "label_ids": [
              700025282,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1400285055,
              1428713,
              1718087960,
              1015914,
              700190087,
              2018619,
              298933384
            ],
            "image": "id-11134207-7r98v-ltc0rbhdeqtlb9",
            "images": [
              "id-11134207-7r98v-ltc0rbhdeqtlb9"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1711432524,
            "sold": 26,
            "historical_sold": 2000,
            "liked": false,
            "liked_count": 279,
            "catid": 100644,
            "brand": "",
            "cmt_count": 1032,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 300000000,
            "price_min": 300000000,
            "price_max": 300000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.853486319505737,
              "rating_count": [
                1133,
                21,
                9,
                17,
                21,
                1065
              ],
              "rcount_with_context": 229,
              "rcount_with_image": 65
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.048983},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 2000,
              "rounded_display_sold_count": 2000,
              "display_sold_count_text": "2RB+",
              "rounded_local_monthly_sold_count": 26,
              "local_monthly_sold_count_text": "26",
              "rounded_local_historical_sold_count": 2000,
              "local_historical_sold_count_text": "2RB+",
              "rounded_global_historical_sold_count": 2000,
              "global_historical_sold_count_text": "2RB+"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 22849901967,
            "shopid": 24843249,
            "name": "LIFETIME PIXELCUT PREMIUM ALL DEVICES",
            "label_ids": [
              1059152,
              822059908662278,
              700025282,
              822120592853526,
              1400285055,
              1718087960,
              1428713,
              2018619,
              1015914,
              700190087,
              298933384,
              700830032,
              1049122
            ],
            "image": "id-11134207-7qukx-ljum41tk84pk31",
            "images": [
              "id-11134207-7qukx-ljum41tk84pk31"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1690764803,
            "sold": 55,
            "historical_sold": 1000,
            "liked": false,
            "liked_count": 125,
            "catid": 100642,
            "brand": "",
            "cmt_count": 463,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3500000000,
            "price_min": 3500000000,
            "price_max": 3500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime",
                  "Tip Untuk Seller"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.840670859538784,
              "rating_count": [
                477,
                13,
                3,
                3,
                9,
                449
              ],
              "rcount_with_context": 79,
              "rcount_with_image": 12
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.048730},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 1000,
              "rounded_display_sold_count": 1000,
              "display_sold_count_text": "1RB+",
              "rounded_local_monthly_sold_count": 55,
              "local_monthly_sold_count_text": "55",
              "rounded_local_historical_sold_count": 1000,
              "local_historical_sold_count_text": "1RB+",
              "rounded_global_historical_sold_count": 1000,
              "global_historical_sold_count_text": "1RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 25559433414,
            "shopid": 24843249,
            "name": "PRIVATE ELEVEN LABS PREMIUM",
            "label_ids": [
              700025282,
              1059152,
              822059908662278,
              1015914,
              700190087,
              822120592853526,
              1400285055,
              1049122,
              1428713,
              1718087960,
              2018619,
              298933384,
              700830032
            ],
            "image": "id-11134207-7r98p-lr56uqwajsivd2",
            "images": [
              "id-11134207-7r98p-lr56uqwajsivd2"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1705689140,
            "sold": 53,
            "historical_sold": 1000,
            "liked": false,
            "liked_count": 487,
            "catid": 100642,
            "brand": "",
            "cmt_count": 637,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3200000000,
            "price_min": 3200000000,
            "price_max": 3200000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "Starter",
                  "Creator"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.606060606060606,
              "rating_count": [
                660,
                52,
                7,
                7,
                17,
                577
              ],
              "rcount_with_context": 121,
              "rcount_with_image": 32
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.048580},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 1000,
              "rounded_display_sold_count": 1000,
              "display_sold_count_text": "1RB+",
              "rounded_local_monthly_sold_count": 53,
              "local_monthly_sold_count_text": "53",
              "rounded_local_historical_sold_count": 1000,
              "local_historical_sold_count_text": "1RB+",
              "rounded_global_historical_sold_count": 1000,
              "global_historical_sold_count_text": "1RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 18668822609,
            "shopid": 24843249,
            "name": "On3Drive Premium 1TB - 5TB",
            "label_ids": [
              1059152,
              1059154,
              822059908662278,
              1400285055,
              700025282,
              822120592853526,
              1428713,
              1718087960,
              2018619,
              1015914,
              700190087,
              298933384
            ],
            "image": "sg-11134201-22120-91anf0xxy5kv0a",
            "images": [
              "sg-11134201-22120-91anf0xxy5kv0a"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1671156683,
            "sold": 31,
            "historical_sold": 1000,
            "liked": false,
            "liked_count": 917,
            "catid": 100644,
            "brand": "",
            "cmt_count": 473,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3500000000,
            "price_min": 3500000000,
            "price_max": 3500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 TB",
                  "5 TB"
                ],
                "type": 0
              },
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.703549060542797,
              "rating_count": [
                479,
                25,
                4,
                6,
                18,
                426
              ],
              "rcount_with_context": 126,
              "rcount_with_image": 45
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.045890},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 1000,
              "rounded_display_sold_count": 1000,
              "display_sold_count_text": "1RB+",
              "rounded_local_monthly_sold_count": 31,
              "local_monthly_sold_count_text": "31",
              "rounded_local_historical_sold_count": 1000,
              "local_historical_sold_count_text": "1RB+",
              "rounded_global_historical_sold_count": 1000,
              "global_historical_sold_count_text": "1RB+"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 46651755092,
            "shopid": 24843249,
            "name": "LIFETIME CHAT AI PREMIUM",
            "label_ids": [
              2018619,
              700025282,
              1718087960,
              1428713,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              298933384,
              1400285055,
              1015914,
              700190087
            ],
            "image": "id-11134207-8224z-mh8yujp3905qff",
            "images": [
              "id-11134207-8224z-mh8yujp3905qff"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1763548403,
            "sold": 199,
            "historical_sold": 315,
            "liked": false,
            "liked_count": 70,
            "catid": 100642,
            "brand": "",
            "cmt_count": 97,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 500000000,
            "price_min": 500000000,
            "price_max": 500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.835051546391752,
              "rating_count": [
                97,
                1,
                0,
                4,
                4,
                88
              ],
              "rcount_with_context": 9,
              "rcount_with_image": 3
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.043347},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 315,
              "rounded_display_sold_count": 315,
              "display_sold_count_text": "315",
              "rounded_local_monthly_sold_count": 199,
              "local_monthly_sold_count_text": "199",
              "rounded_local_historical_sold_count": 315,
              "local_historical_sold_count_text": "315",
              "rounded_global_historical_sold_count": 315,
              "global_historical_sold_count_text": "315"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 43918954033,
            "shopid": 24843249,
            "name": "LIFETIME MOISES PREMIUM",
            "label_ids": [
              2018619,
              700025282,
              1718087960,
              1428713,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              298933384,
              1400285055
            ],
            "image": "id-11134207-81ztp-melm0264hkw18d",
            "images": [
              "id-11134207-81ztp-melm0264hkw18d"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1757883692,
            "sold": 58,
            "historical_sold": 176,
            "liked": false,
            "liked_count": 26,
            "catid": 100642,
            "brand": "",
            "cmt_count": 99,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1000000000,
            "price_min": 1000000000,
            "price_max": 1000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.858585858585859,
              "rating_count": [
                99,
                3,
                0,
                1,
                0,
                95
              ],
              "rcount_with_context": 15,
              "rcount_with_image": 3
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.042892},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 176,
              "rounded_display_sold_count": 176,
              "display_sold_count_text": "176",
              "rounded_local_monthly_sold_count": 58,
              "local_monthly_sold_count_text": "58",
              "rounded_local_historical_sold_count": 176,
              "local_historical_sold_count_text": "176",
              "rounded_global_historical_sold_count": 176,
              "global_historical_sold_count_text": "176"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 22211119225,
            "shopid": 24843249,
            "name": "LIFETIME T1DAL HIFI PLUS MASTER PREMIUMM ACCOUNT",
            "label_ids": [
              822059908662278,
              1059152,
              1400285055,
              700025282,
              822120592853526,
              1718087960,
              1428713,
              1049122,
              2018619,
              700830032
            ],
            "image": "sg-11134201-22120-v8n96xvaj4kva0",
            "images": [
              "sg-11134201-22120-v8n96xvaj4kva0"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1671068836,
            "sold": 60,
            "historical_sold": 3000,
            "liked": false,
            "liked_count": 637,
            "catid": 100642,
            "brand": "",
            "cmt_count": 1996,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 300000000,
            "price_min": 300000000,
            "price_max": 300000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.868369351669941,
              "rating_count": [
                2036,
                43,
                6,
                19,
                40,
                1928
              ],
              "rcount_with_context": 463,
              "rcount_with_image": 156
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.042152},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 3000,
              "rounded_display_sold_count": 3000,
              "display_sold_count_text": "3RB+",
              "rounded_local_monthly_sold_count": 60,
              "local_monthly_sold_count_text": "60",
              "rounded_local_historical_sold_count": 3000,
              "local_historical_sold_count_text": "3RB+",
              "rounded_global_historical_sold_count": 3000,
              "global_historical_sold_count_text": "3RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 56552323108,
            "shopid": 24843249,
            "name": "Lifetime CubeTV Premium Dengan Akun Lifetime",
            "label_ids": [
              2018619,
              700025282,
              1718087960,
              1428713,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1015914,
              700190087,
              1400285055
            ],
            "image": "id-11134207-8224z-mhnp3nywgq2r67",
            "images": [
              "id-11134207-8224z-mhnp3nywgq2r67"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1764441186,
            "sold": 548,
            "historical_sold": 780,
            "liked": false,
            "liked_count": 23,
            "catid": 100642,
            "brand": "",
            "cmt_count": 355,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 800000000,
            "price_min": 800000000,
            "price_max": 800000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.870422535211268,
              "rating_count": [
                355,
                6,
                2,
                4,
                8,
                335
              ],
              "rcount_with_context": 35,
              "rcount_with_image": 8
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.038997},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 780,
              "rounded_display_sold_count": 780,
              "display_sold_count_text": "780",
              "rounded_local_monthly_sold_count": 548,
              "local_monthly_sold_count_text": "548",
              "rounded_local_historical_sold_count": 780,
              "local_historical_sold_count_text": "780",
              "rounded_global_historical_sold_count": 780,
              "global_historical_sold_count_text": "780"
            },
            "global_cat": {
              "catid": [
                100642,
                100773
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 25950499510,
            "shopid": 24843249,
            "name": "LIFETIME SCISPACE/TYPESET PREMIUM",
            "label_ids": [
              700025282,
              1059152,
              1059154,
              822059908662278,
              1400285055,
              822120592853526,
              1428713,
              1718087960,
              1015914,
              700190087,
              2018619,
              298933384,
              700830032
            ],
            "image": "id-11134207-7r98z-lnum6e7qccg1c3",
            "images": [
              "id-11134207-7r98z-lnum6e7qccg1c3"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1699486667,
            "sold": 79,
            "historical_sold": 5000,
            "liked": false,
            "liked_count": 446,
            "catid": 100642,
            "brand": "",
            "cmt_count": 2529,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 2800000000,
            "price_min": 2800000000,
            "price_max": 2800000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.8896783844427825,
              "rating_count": [
                2674,
                38,
                14,
                11,
                79,
                2532
              ],
              "rcount_with_context": 368,
              "rcount_with_image": 89
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.038701},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 5000,
              "rounded_display_sold_count": 5000,
              "display_sold_count_text": "5RB+",
              "rounded_local_monthly_sold_count": 79,
              "local_monthly_sold_count_text": "79",
              "rounded_local_historical_sold_count": 5000,
              "local_historical_sold_count_text": "5RB+",
              "rounded_global_historical_sold_count": 5000,
              "global_historical_sold_count_text": "5RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 26002530627,
            "shopid": 24843249,
            "name": "Lifetime Medium Premium",
            "label_ids": [
              700025282,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1428713,
              1718087960,
              1400285055,
              2018619,
              1015914,
              700190087,
              298933384
            ],
            "image": "id-11134207-7r990-lwd5rnu9gs8t96",
            "images": [
              "id-11134207-7r990-lwd5rnu9gs8t96"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1718041971,
            "sold": 63,
            "historical_sold": 1000,
            "liked": false,
            "liked_count": 359,
            "catid": 100644,
            "brand": "",
            "cmt_count": 343,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3500000000,
            "price_min": 3500000000,
            "price_max": 3500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.856020942408377,
              "rating_count": [
                382,
                10,
                2,
                3,
                3,
                364
              ],
              "rcount_with_context": 56,
              "rcount_with_image": 9
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.038128},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 1000,
              "rounded_display_sold_count": 1000,
              "display_sold_count_text": "1RB+",
              "rounded_local_monthly_sold_count": 63,
              "local_monthly_sold_count_text": "63",
              "rounded_local_historical_sold_count": 1000,
              "local_historical_sold_count_text": "1RB+",
              "rounded_global_historical_sold_count": 1000,
              "global_historical_sold_count_text": "1RB+"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 18549480719,
            "shopid": 24843249,
            "name": "Lifetime Flightradar24 Premium",
            "label_ids": [
              1059152,
              822059908662278,
              1400285055,
              700025282,
              822120592853526,
              1718087960,
              1428713,
              1049122,
              2018619,
              1015914,
              700190087,
              700830032
            ],
            "image": "sg-11134201-22090-ruond1xo2whv61",
            "images": [
              "sg-11134201-22090-ruond1xo2whv61"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1664138801,
            "sold": 26,
            "historical_sold": 687,
            "liked": false,
            "liked_count": 112,
            "catid": 100642,
            "brand": "",
            "cmt_count": 335,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 7000000000,
            "price_min": 7000000000,
            "price_max": 7000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Durasi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.893371757925072,
              "rating_count": [
                347,
                4,
                1,
                5,
                8,
                329
              ],
              "rcount_with_context": 64,
              "rcount_with_image": 23
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.037164},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 687,
              "rounded_display_sold_count": 687,
              "display_sold_count_text": "687",
              "rounded_local_monthly_sold_count": 26,
              "local_monthly_sold_count_text": "26",
              "rounded_local_historical_sold_count": 687,
              "local_historical_sold_count_text": "687",
              "rounded_global_historical_sold_count": 687,
              "global_historical_sold_count_text": "687"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 41508495105,
            "shopid": 24843249,
            "name": "CEK PLAGIASI STUDENT ACCOUNT NO REPOSITORY UNLIMITEDD",
            "label_ids": [
              2018619,
              700025282,
              1718087960,
              1428713,
              298933384,
              1015914,
              700190087,
              1400285055,
              1049122,
              1059152,
              822059908662278,
              822120592853526,
              700810080
            ],
            "image": "id-11134207-7ra0n-mc6hrsde1yybaf",
            "images": [
              "id-11134207-7ra0n-mc6hrsde1yybaf"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1752504009,
            "sold": 154,
            "historical_sold": 667,
            "liked": false,
            "liked_count": 87,
            "catid": 100644,
            "brand": "",
            "cmt_count": 257,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3300000000,
            "price_min": 3300000000,
            "price_max": 3300000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "Akun",
                  "Jasa"
                ],
                "type": 0
              },
              {
                "name": "Durasi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime",
                  "1x Check",
                  "3x Check",
                  "5x Check"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.715953307392996,
              "rating_count": [
                257,
                12,
                3,
                5,
                6,
                231
              ],
              "rcount_with_context": 40,
              "rcount_with_image": 14
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.036648},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 667,
              "rounded_display_sold_count": 667,
              "display_sold_count_text": "667",
              "rounded_local_monthly_sold_count": 154,
              "local_monthly_sold_count_text": "154",
              "rounded_local_historical_sold_count": 667,
              "local_historical_sold_count_text": "667",
              "rounded_global_historical_sold_count": 667,
              "global_historical_sold_count_text": "667"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 25554476045,
            "shopid": 24843249,
            "name": "LIFETIME CONSENSUS AI PREMIUM",
            "label_ids": [
              700025282,
              822059908662278,
              1400285055,
              1059152,
              1059154,
              822120592853526,
              1428713,
              1718087960,
              2018619,
              1015914,
              700190087,
              298933384,
              700810080
            ],
            "image": "id-11134207-7r98u-lpknbyv8v8y8e6",
            "images": [
              "id-11134207-7r98u-lpknbyv8v8y8e6"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1703237355,
            "sold": 37,
            "historical_sold": 1000,
            "liked": false,
            "liked_count": 170,
            "catid": 100644,
            "brand": "",
            "cmt_count": 457,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 300000000,
            "price_min": 300000000,
            "price_max": 300000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.919831223628692,
              "rating_count": [
                474,
                5,
                2,
                2,
                8,
                457
              ],
              "rcount_with_context": 64,
              "rcount_with_image": 13
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.036469},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 1000,
              "rounded_display_sold_count": 1000,
              "display_sold_count_text": "1RB+",
              "rounded_local_monthly_sold_count": 37,
              "local_monthly_sold_count_text": "37",
              "rounded_local_historical_sold_count": 1000,
              "local_historical_sold_count_text": "1RB+",
              "rounded_global_historical_sold_count": 1000,
              "global_historical_sold_count_text": "1RB+"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 43073382296,
            "shopid": 24843249,
            "name": "Lifetime JustDone AI PREMIUM",
            "label_ids": [
              700025282,
              2018619,
              1428713,
              1718087960,
              1049122,
              1059152,
              822059908662278,
              822120592853526,
              298933384,
              1015914,
              700190087,
              1400285055
            ],
            "image": "id-11134207-81ztg-meodri0bsfepee",
            "images": [
              "id-11134207-81ztg-meodri0bsfepee"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1760014882,
            "sold": 76,
            "historical_sold": 241,
            "liked": false,
            "liked_count": 13,
            "catid": 100642,
            "brand": "",
            "cmt_count": 79,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1000000000,
            "price_min": 1000000000,
            "price_max": 1000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.30379746835443,
              "rating_count": [
                79,
                12,
                1,
                2,
                0,
                64
              ],
              "rcount_with_context": 16,
              "rcount_with_image": 5
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.032176},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 241,
              "rounded_display_sold_count": 241,
              "display_sold_count_text": "241",
              "rounded_local_monthly_sold_count": 76,
              "local_monthly_sold_count_text": "76",
              "rounded_local_historical_sold_count": 241,
              "local_historical_sold_count_text": "241",
              "rounded_global_historical_sold_count": 241,
              "global_historical_sold_count_text": "241"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 28309520298,
            "shopid": 24843249,
            "name": "Lifetime Udemy Premium",
            "label_ids": [
              700025282,
              1718087960,
              1428713,
              1400285055,
              2018619,
              1049122,
              1059152,
              822059908662278,
              822120592853526,
              298933384,
              700830032
            ],
            "image": "id-11134207-7r98o-lzj8ns9fvc2m38",
            "images": [
              "id-11134207-7r98o-lzj8ns9fvc2m38"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1724946514,
            "sold": 20,
            "historical_sold": 285,
            "liked": false,
            "liked_count": 121,
            "catid": 100642,
            "brand": "",
            "cmt_count": 77,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 700000000,
            "price_min": 700000000,
            "price_max": 700000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.716049382716049,
              "rating_count": [
                81,
                4,
                1,
                2,
                0,
                74
              ],
              "rcount_with_context": 15,
              "rcount_with_image": 1
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.030455},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 285,
              "rounded_display_sold_count": 285,
              "display_sold_count_text": "285",
              "rounded_local_monthly_sold_count": 20,
              "local_monthly_sold_count_text": "20",
              "rounded_local_historical_sold_count": 285,
              "local_historical_sold_count_text": "285",
              "rounded_global_historical_sold_count": 285,
              "global_historical_sold_count_text": "285"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 22017441064,
            "shopid": 24843249,
            "name": "LIFETIME M / M.NZ PREMIUM",
            "label_ids": [
              822059908662278,
              1059152,
              1400285055,
              700025282,
              822120592853526,
              1049122,
              1428713,
              1718087960,
              2018619,
              1015914,
              700190087,
              298933384,
              700830032
            ],
            "image": "id-11134207-7r991-lz7m4s87xbnp77",
            "images": [
              "id-11134207-7r991-lz7m4s87xbnp77"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1673261579,
            "sold": 2,
            "historical_sold": 1000,
            "liked": false,
            "liked_count": 432,
            "catid": 100642,
            "brand": "",
            "cmt_count": 578,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 2700000000,
            "price_min": 2700000000,
            "price_max": 2700000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "Pro Lite (1TB 400GB)",
                  "Pro I (4TB)",
                  "Pro II (16TB)",
                  "Pro III (32TB)",
                  "Random (4TB ke atas)"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.825,
              "rating_count": [
                600,
                16,
                3,
                11,
                10,
                560
              ],
              "rcount_with_context": 133,
              "rcount_with_image": 24
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.029696},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 1000,
              "rounded_display_sold_count": 1000,
              "display_sold_count_text": "1RB+",
              "rounded_local_monthly_sold_count": 2,
              "local_monthly_sold_count_text": "2",
              "rounded_local_historical_sold_count": 1000,
              "local_historical_sold_count_text": "1RB+",
              "rounded_global_historical_sold_count": 1000,
              "global_historical_sold_count_text": "1RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 21092865960,
            "shopid": 24843249,
            "name": "LIFETIME SCITE AI PREMIUM",
            "label_ids": [
              700025282,
              1400285055,
              1428713,
              1718087960,
              1049122,
              1059152,
              822059908662278,
              822120592853526,
              1015914,
              700190087,
              2018619,
              298933384,
              700810080
            ],
            "image": "id-11134207-7r992-lldubjthhyzt1d",
            "images": [
              "id-11134207-7r992-lldubjthhyzt1d"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1694108494,
            "sold": 89,
            "historical_sold": 7000,
            "liked": false,
            "liked_count": 793,
            "catid": 100644,
            "brand": "",
            "cmt_count": 3267,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1500000000,
            "price_min": 1500000000,
            "price_max": 1500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.855646100116415,
              "rating_count": [
                3436,
                51,
                23,
                39,
                145,
                3178
              ],
              "rcount_with_context": 476,
              "rcount_with_image": 139
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.029419},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 7000,
              "rounded_display_sold_count": 7000,
              "display_sold_count_text": "7RB+",
              "rounded_local_monthly_sold_count": 89,
              "local_monthly_sold_count_text": "89",
              "rounded_local_historical_sold_count": 7000,
              "local_historical_sold_count_text": "7RB+",
              "rounded_global_historical_sold_count": 7000,
              "global_historical_sold_count_text": "7RB+"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 23448164194,
            "shopid": 24843249,
            "name": "Lifetimelinktree Premium Akun Lifetime 1-12 Bulan",
            "label_ids": [
              1059152,
              1059154,
              822059908662278,
              1400285055,
              700025282,
              822120592853526,
              1718087960,
              1428713,
              2018619,
              1015914,
              700190087,
              700830032,
              298933384
            ],
            "image": "id-11134207-7qul7-lj7nzjkkvuzn6e",
            "images": [
              "id-11134207-7qul7-lj7nzjkkvuzn6e"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1689375691,
            "sold": 15,
            "historical_sold": 492,
            "liked": false,
            "liked_count": 214,
            "catid": 100642,
            "brand": "",
            "cmt_count": 158,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3500000000,
            "price_min": 3500000000,
            "price_max": 3500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Durasi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.691358024691358,
              "rating_count": [
                162,
                6,
                1,
                9,
                5,
                141
              ],
              "rcount_with_context": 33,
              "rcount_with_image": 7
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.029229},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 492,
              "rounded_display_sold_count": 492,
              "display_sold_count_text": "492",
              "rounded_local_monthly_sold_count": 15,
              "local_monthly_sold_count_text": "15",
              "rounded_local_historical_sold_count": 492,
              "local_historical_sold_count_text": "492",
              "rounded_global_historical_sold_count": 492,
              "global_historical_sold_count_text": "492"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 20484932244,
            "shopid": 24843249,
            "name": "PREMIUM QU1LLBOT LIFETIME",
            "label_ids": [
              700025282,
              1059152,
              1059154,
              822059908662278,
              1400285055,
              822120592853526,
              1718087960,
              1428713,
              2018619,
              1015914,
              700190087,
              298933384
            ],
            "image": "id-11134207-7r98u-lmjjr2c71h1o2e",
            "images": [
              "id-11134207-7r98u-lmjjr2c71h1o2e"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1696632889,
            "sold": 41,
            "historical_sold": 2000,
            "liked": false,
            "liked_count": 272,
            "catid": 100644,
            "brand": "",
            "cmt_count": 846,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 500000000,
            "price_min": 500000000,
            "price_max": 500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.893103448275862,
              "rating_count": [
                870,
                7,
                2,
                11,
                37,
                813
              ],
              "rcount_with_context": 131,
              "rcount_with_image": 45
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.028102},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 2000,
              "rounded_display_sold_count": 2000,
              "display_sold_count_text": "2RB+",
              "rounded_local_monthly_sold_count": 41,
              "local_monthly_sold_count_text": "41",
              "rounded_local_historical_sold_count": 2000,
              "local_historical_sold_count_text": "2RB+",
              "rounded_global_historical_sold_count": 2000,
              "global_historical_sold_count_text": "2RB+"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 21082027990,
            "shopid": 24843249,
            "name": "Lifetime Ubersuggest Premium Dengan Akun Lifetime",
            "label_ids": [
              1059152,
              1059154,
              822059908662278,
              1400285055,
              700025282,
              822120592853526,
              1428713,
              1718087960,
              2018619,
              1015914,
              700190087,
              298933384,
              700830032
            ],
            "image": "id-11134207-7qul4-ljeurkxgqet735",
            "images": [
              "id-11134207-7qul4-ljeurkxgqet735"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1689810630,
            "sold": 24,
            "historical_sold": 1000,
            "liked": false,
            "liked_count": 353,
            "catid": 100642,
            "brand": "",
            "cmt_count": 609,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1400000000,
            "price_min": 1400000000,
            "price_max": 1400000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.768488745980707,
              "rating_count": [
                622,
                20,
                4,
                11,
                30,
                557
              ],
              "rcount_with_context": 122,
              "rcount_with_image": 24
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.027414},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 1000,
              "rounded_display_sold_count": 1000,
              "display_sold_count_text": "1RB+",
              "rounded_local_monthly_sold_count": 24,
              "local_monthly_sold_count_text": "24",
              "rounded_local_historical_sold_count": 1000,
              "local_historical_sold_count_text": "1RB+",
              "rounded_global_historical_sold_count": 1000,
              "global_historical_sold_count_text": "1RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 26660700709,
            "shopid": 24843249,
            "name": "Lifetime Kittl Premium Expert Dengan Akun Lifetime",
            "label_ids": [
              700025282,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1718087960,
              1428713,
              1400285055,
              2018619,
              1015914,
              700190087,
              298933384,
              700830032
            ],
            "image": "id-11134207-7r990-lzyffe4avnby0d",
            "images": [
              "id-11134207-7r990-lzyffe4avnby0d"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1725863589,
            "sold": 16,
            "historical_sold": 377,
            "liked": false,
            "liked_count": 78,
            "catid": 100642,
            "brand": "",
            "cmt_count": 168,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1000000000,
            "price_min": 1000000000,
            "price_max": 1000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.690476190476191,
              "rating_count": [
                168,
                11,
                2,
                0,
                2,
                153
              ],
              "rcount_with_context": 29,
              "rcount_with_image": 10
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.027076},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 377,
              "rounded_display_sold_count": 377,
              "display_sold_count_text": "377",
              "rounded_local_monthly_sold_count": 16,
              "local_monthly_sold_count_text": "16",
              "rounded_local_historical_sold_count": 377,
              "local_historical_sold_count_text": "377",
              "rounded_global_historical_sold_count": 377,
              "global_historical_sold_count_text": "377"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 29120163160,
            "shopid": 24843249,
            "name": "LIFETIME WIBUKU PREMIUM",
            "label_ids": [
              700025282,
              1428713,
              1718087960,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              2018619,
              1400285055,
              298933384,
              700830032
            ],
            "image": "id-11134207-7rasd-m3kkw94z6vvyf3",
            "images": [
              "id-11134207-7rasd-m3kkw94z6vvyf3"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1733745114,
            "sold": 3,
            "historical_sold": 157,
            "liked": false,
            "liked_count": 41,
            "catid": 100642,
            "brand": "",
            "cmt_count": 60,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 2500000000,
            "price_min": 2500000000,
            "price_max": 2500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.533333333333333,
              "rating_count": [
                60,
                6,
                0,
                0,
                4,
                50
              ],
              "rcount_with_context": 11,
              "rcount_with_image": 2
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.025277},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 157,
              "rounded_display_sold_count": 157,
              "display_sold_count_text": "157",
              "rounded_local_monthly_sold_count": 3,
              "local_monthly_sold_count_text": "3",
              "rounded_local_historical_sold_count": 157,
              "local_historical_sold_count_text": "157",
              "rounded_global_historical_sold_count": 157,
              "global_historical_sold_count_text": "157"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 27575518296,
            "shopid": 24843249,
            "name": "LIFETIME EPIDEMIC SOUND PREMIUM DENGAN GARANSI 1-12 BULAN",
            "label_ids": [
              700025282,
              1718087960,
              1428713,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              2018619,
              1015914,
              700190087,
              1400285055,
              700830032,
              298933384
            ],
            "image": "id-11134207-7rash-m5zjo94f0o7saa",
            "images": [
              "id-11134207-7rash-m5zjo94f0o7saa"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1739009599,
            "sold": 36,
            "historical_sold": 435,
            "liked": false,
            "liked_count": 59,
            "catid": 100642,
            "brand": "",
            "cmt_count": 188,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 2800000000,
            "price_min": 2800000000,
            "price_max": 2800000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.925531914893617,
              "rating_count": [
                188,
                3,
                0,
                1,
                0,
                184
              ],
              "rcount_with_context": 18,
              "rcount_with_image": 5
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.025228},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 435,
              "rounded_display_sold_count": 435,
              "display_sold_count_text": "435",
              "rounded_local_monthly_sold_count": 36,
              "local_monthly_sold_count_text": "36",
              "rounded_local_historical_sold_count": 435,
              "local_historical_sold_count_text": "435",
              "rounded_global_historical_sold_count": 435,
              "global_historical_sold_count_text": "435"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 21890766369,
            "shopid": 24843249,
            "name": "Lifetimes Blinkist Premium Akun Lifetime Garansi 1-12 Bulan",
            "label_ids": [
              1059152,
              822059908662278,
              700025282,
              1400285055,
              822120592853526,
              1428713,
              1718087960,
              1049122,
              2018619,
              1015914,
              700190087,
              298933384
            ],
            "image": "id-11134207-7qul8-lj7nzjkkx9k373",
            "images": [
              "id-11134207-7qul8-lj7nzjkkx9k373"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1689377148,
            "sold": 18,
            "historical_sold": 534,
            "liked": false,
            "liked_count": 103,
            "catid": 100644,
            "brand": "",
            "cmt_count": 206,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1000000000,
            "price_min": 1000000000,
            "price_max": 1000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Durasi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.928909952606635,
              "rating_count": [
                211,
                3,
                0,
                0,
                3,
                205
              ],
              "rcount_with_context": 43,
              "rcount_with_image": 7
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.024871},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 534,
              "rounded_display_sold_count": 534,
              "display_sold_count_text": "534",
              "rounded_local_monthly_sold_count": 18,
              "local_monthly_sold_count_text": "18",
              "rounded_local_historical_sold_count": 534,
              "local_historical_sold_count_text": "534",
              "rounded_global_historical_sold_count": 534,
              "global_historical_sold_count_text": "534"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 25041955387,
            "shopid": 24843249,
            "name": "Lifetime Qobuz Premium",
            "label_ids": [
              700025282,
              1718087960,
              1428713,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              2018619,
              1015914,
              700190087,
              1400285055,
              700830032
            ],
            "image": "id-11134207-7rbk3-m6pxk5519nai7c",
            "images": [
              "id-11134207-7rbk3-m6pxk5519nai7c"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1740604999,
            "sold": 26,
            "historical_sold": 282,
            "liked": false,
            "liked_count": 27,
            "catid": 100642,
            "brand": "",
            "cmt_count": 143,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1400000000,
            "price_min": 1400000000,
            "price_max": 1400000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.748251748251748,
              "rating_count": [
                143,
                7,
                0,
                3,
                2,
                131
              ],
              "rcount_with_context": 24,
              "rcount_with_image": 7
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.024632},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 282,
              "rounded_display_sold_count": 282,
              "display_sold_count_text": "282",
              "rounded_local_monthly_sold_count": 26,
              "local_monthly_sold_count_text": "26",
              "rounded_local_historical_sold_count": 282,
              "local_historical_sold_count_text": "282",
              "rounded_global_historical_sold_count": 282,
              "global_historical_sold_count_text": "282"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 26478704140,
            "shopid": 24843249,
            "name": "LIFETIME DEEPSEEK AI PREMIUM",
            "label_ids": [
              700025282,
              1718087960,
              1428713,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              2018619,
              1015914,
              700190087,
              298933384,
              700830032
            ],
            "image": "id-11134207-7rbk4-m71hfbcv8z6y3e",
            "images": [
              "id-11134207-7rbk4-m71hfbcv8z6y3e"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1741304077,
            "sold": 25,
            "historical_sold": 394,
            "liked": false,
            "liked_count": 142,
            "catid": 100642,
            "brand": "",
            "cmt_count": 139,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 7000000000,
            "price_min": 7000000000,
            "price_max": 7000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.625899280575539,
              "rating_count": [
                139,
                9,
                1,
                5,
                3,
                121
              ],
              "rcount_with_context": 15,
              "rcount_with_image": 0
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.024567},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 394,
              "rounded_display_sold_count": 394,
              "display_sold_count_text": "394",
              "rounded_local_monthly_sold_count": 25,
              "local_monthly_sold_count_text": "25",
              "rounded_local_historical_sold_count": 394,
              "local_historical_sold_count_text": "394",
              "rounded_global_historical_sold_count": 394,
              "global_historical_sold_count_text": "394"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 18995587046,
            "shopid": 24843249,
            "name": "Lifetime Ellicit AI Premium Dengan Akun Lifetime",
            "label_ids": [
              700025282,
              822059908662278,
              1400285055,
              1059152,
              1059154,
              822120592853526,
              1718087960,
              1428713,
              2018619,
              1015914,
              700190087,
              298933384
            ],
            "image": "id-11134207-7r98x-loooqpbt55cq5a",
            "images": [
              "id-11134207-7r98x-loooqpbt55cq5a"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1701303120,
            "sold": 19,
            "historical_sold": 735,
            "liked": false,
            "liked_count": 189,
            "catid": 100644,
            "brand": "",
            "cmt_count": 300,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 4900000000,
            "price_min": 4900000000,
            "price_max": 4900000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.851735015772871,
              "rating_count": [
                317,
                6,
                2,
                4,
                9,
                296
              ],
              "rcount_with_context": 45,
              "rcount_with_image": 12
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.022823},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 735,
              "rounded_display_sold_count": 735,
              "display_sold_count_text": "735",
              "rounded_local_monthly_sold_count": 19,
              "local_monthly_sold_count_text": "19",
              "rounded_local_historical_sold_count": 735,
              "local_historical_sold_count_text": "735",
              "rounded_global_historical_sold_count": 735,
              "global_historical_sold_count_text": "735"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 21991109642,
            "shopid": 24843249,
            "name": "Lifetime Epidemic Sound Premium Dengan Akun Lifetime",
            "label_ids": [
              1400285055,
              700025282,
              1718087960,
              1428713,
              1049122,
              1059152,
              822059908662278,
              822120592853526,
              2018619,
              298933384
            ],
            "image": "id-11134207-7qul9-ljj3a8cc9ief2f",
            "images": [
              "id-11134207-7qul9-ljj3a8cc9ief2f"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1690067101,
            "sold": 7,
            "historical_sold": 1000,
            "liked": false,
            "liked_count": 238,
            "catid": 100642,
            "brand": "",
            "cmt_count": 547,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1000000000,
            "price_min": 1000000000,
            "price_max": 1000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.934931506849315,
              "rating_count": [
                584,
                4,
                1,
                4,
                11,
                564
              ],
              "rcount_with_context": 83,
              "rcount_with_image": 19
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.022724},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 1000,
              "rounded_display_sold_count": 1000,
              "display_sold_count_text": "1RB+",
              "rounded_local_monthly_sold_count": 7,
              "local_monthly_sold_count_text": "7",
              "rounded_local_historical_sold_count": 1000,
              "local_historical_sold_count_text": "1RB+",
              "rounded_global_historical_sold_count": 1000,
              "global_historical_sold_count_text": "1RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100773
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 24820946017,
            "shopid": 24843249,
            "name": "Lifetimes Yousician Premium Dengan Panduan Gratis",
            "label_ids": [
              700025282,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1718087960,
              1428713,
              1400285055,
              2018619,
              1015914,
              700190087,
              298933384
            ],
            "image": "id-11134207-7r990-ltc0rbhddc951b",
            "images": [
              "id-11134207-7r990-ltc0rbhddc951b"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1711432223,
            "sold": 11,
            "historical_sold": 346,
            "liked": false,
            "liked_count": 70,
            "catid": 100644,
            "brand": "",
            "cmt_count": 146,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1000000000,
            "price_min": 1000000000,
            "price_max": 1000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.879746835443038,
              "rating_count": [
                158,
                3,
                0,
                1,
                5,
                149
              ],
              "rcount_with_context": 24,
              "rcount_with_image": 5
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.021141},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 346,
              "rounded_display_sold_count": 346,
              "display_sold_count_text": "346",
              "rounded_local_monthly_sold_count": 11,
              "local_monthly_sold_count_text": "11",
              "rounded_local_historical_sold_count": 346,
              "local_historical_sold_count_text": "346",
              "rounded_global_historical_sold_count": 346,
              "global_historical_sold_count_text": "346"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 23312235800,
            "shopid": 24843249,
            "name": "Lifetimee Scribd Premium Account | Unlock Download Dokumen",
            "label_ids": [
              1400285055,
              700025282,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1718087960,
              1428713,
              2018619,
              1015914,
              700190087
            ],
            "image": "sg-11134201-22120-3qhji76qn8kvda",
            "images": [
              "sg-11134201-22120-3qhji76qn8kvda"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1671318719,
            "sold": 10,
            "historical_sold": 931,
            "liked": false,
            "liked_count": 183,
            "catid": 100642,
            "brand": "",
            "cmt_count": 476,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 500000000,
            "price_min": 500000000,
            "price_max": 500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "Download Dokumen",
                  "Premium 1 Bulan",
                  "Premium 3 Bulan",
                  "Premium 6 Bulan",
                  "Premium 12 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.84394250513347,
              "rating_count": [
                487,
                9,
                5,
                7,
                11,
                455
              ],
              "rcount_with_context": 120,
              "rcount_with_image": 30
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.020082},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 931,
              "rounded_display_sold_count": 931,
              "display_sold_count_text": "931",
              "rounded_local_monthly_sold_count": 10,
              "local_monthly_sold_count_text": "10",
              "rounded_local_historical_sold_count": 931,
              "local_historical_sold_count_text": "931",
              "rounded_global_historical_sold_count": 931,
              "global_historical_sold_count_text": "931"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 22435401531,
            "shopid": 24843249,
            "name": "Lifetimme Nb4 League Pass Premium Dengan Panduan Gratis",
            "label_ids": [
              1400285055,
              700025282,
              1015914,
              700190087,
              1428713,
              1718087960,
              1049122,
              1059152,
              822059908662278,
              822120592853526,
              2018619,
              298933384
            ],
            "image": "id-11134201-7qula-lex8g3mrt4zea2",
            "images": [
              "id-11134201-7qula-lex8g3mrt4zea2"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1680027310,
            "sold": 0,
            "historical_sold": 1000,
            "liked": false,
            "liked_count": 315,
            "catid": 100642,
            "brand": "",
            "cmt_count": 747,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3500000000,
            "price_min": 3500000000,
            "price_max": 3500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.800796812749004,
              "rating_count": [
                753,
                13,
                13,
                14,
                31,
                682
              ],
              "rcount_with_context": 94,
              "rcount_with_image": 24
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.018990},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 1000,
              "rounded_display_sold_count": 1000,
              "display_sold_count_text": "1RB+",
              "rounded_local_monthly_sold_count": 0,
              "rounded_local_historical_sold_count": 1000,
              "local_historical_sold_count_text": "1RB+",
              "rounded_global_historical_sold_count": 1000,
              "global_historical_sold_count_text": "1RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100773
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 20190777492,
            "shopid": 24843249,
            "name": "LIFETIME SMALLPDF PREMIUM",
            "label_ids": [
              1059152,
              1059154,
              822059908662278,
              1400285055,
              700025282,
              822120592853526,
              1428713,
              1718087960,
              2018619,
              1015914,
              700190087,
              298933384
            ],
            "image": "id-11134207-7qula-lj7nzjkkyo4j73",
            "images": [
              "id-11134207-7qula-lj7nzjkkyo4j73"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1689378247,
            "sold": 21,
            "historical_sold": 956,
            "liked": false,
            "liked_count": 127,
            "catid": 100644,
            "brand": "",
            "cmt_count": 427,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1700000000,
            "price_min": 1700000000,
            "price_max": 1700000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Durasi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.830663615560641,
              "rating_count": [
                437,
                9,
                4,
                6,
                14,
                404
              ],
              "rcount_with_context": 63,
              "rcount_with_image": 12
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.018561},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 956,
              "rounded_display_sold_count": 956,
              "display_sold_count_text": "956",
              "rounded_local_monthly_sold_count": 21,
              "local_monthly_sold_count_text": "21",
              "rounded_local_historical_sold_count": 956,
              "local_historical_sold_count_text": "956",
              "rounded_global_historical_sold_count": 956,
              "global_historical_sold_count_text": "956"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 24274602905,
            "shopid": 24843249,
            "name": "Lifetime ChatPDF Premium Akun Lifetime Garansi 1-12 Bulan",
            "label_ids": [
              700025282,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1400285055,
              1428713,
              1718087960,
              2018619,
              298933384,
              700810080
            ],
            "image": "id-11134207-7r98v-lu70311td3ba75",
            "images": [
              "id-11134207-7r98v-lu70311td3ba75"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1713307207,
            "sold": 14,
            "historical_sold": 1000,
            "liked": false,
            "liked_count": 111,
            "catid": 100644,
            "brand": "",
            "cmt_count": 401,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 500000000,
            "price_min": 500000000,
            "price_max": 500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.8464912280701755,
              "rating_count": [
                456,
                8,
                5,
                5,
                13,
                425
              ],
              "rcount_with_context": 73,
              "rcount_with_image": 24
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.017974},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 1000,
              "rounded_display_sold_count": 1000,
              "display_sold_count_text": "1RB+",
              "rounded_local_monthly_sold_count": 14,
              "local_monthly_sold_count_text": "14",
              "rounded_local_historical_sold_count": 1000,
              "local_historical_sold_count_text": "1RB+",
              "rounded_global_historical_sold_count": 1000,
              "global_historical_sold_count_text": "1RB+"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 24415599488,
            "shopid": 24843249,
            "name": "Lifetime Leonardo AI Premium Unlimited Akun Seumur Hidup",
            "label_ids": [
              700025282,
              1049122,
              1059152,
              822059908662278,
              822120592853526,
              1400285055,
              1718087960,
              1428713,
              1015914,
              700190087,
              2018619,
              298933384
            ],
            "image": "id-11134207-7r98z-ls9gbvpsvvt96e",
            "images": [
              "id-11134207-7r98z-ls9gbvpsvvt96e"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1709097432,
            "sold": 2,
            "historical_sold": 259,
            "liked": false,
            "liked_count": 312,
            "catid": 100644,
            "brand": "",
            "cmt_count": 92,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3000000000,
            "price_min": 3000000000,
            "price_max": 3000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.383838383838384,
              "rating_count": [
                99,
                14,
                1,
                0,
                2,
                82
              ],
              "rcount_with_context": 27,
              "rcount_with_image": 8
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.017429},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 259,
              "rounded_display_sold_count": 259,
              "display_sold_count_text": "259",
              "rounded_local_monthly_sold_count": 2,
              "local_monthly_sold_count_text": "2",
              "rounded_local_historical_sold_count": 259,
              "local_historical_sold_count_text": "259",
              "rounded_global_historical_sold_count": 259,
              "global_historical_sold_count_text": "259"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 22782519277,
            "shopid": 24843249,
            "name": "Lifetime Gamma AI Premium Unlimited Dengan Panduan Gratis",
            "label_ids": [
              700025282,
              1059152,
              1059154,
              822059908662278,
              822120592853526,
              1400285055,
              1718087960,
              1428713,
              2018619,
              1015914,
              700190087,
              298933384,
              700810080
            ],
            "image": "id-11134207-7r98t-lmjjr2c74a6k8b",
            "images": [
              "id-11134207-7r98t-lmjjr2c74a6k8b"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1696634440,
            "sold": 20,
            "historical_sold": 651,
            "liked": false,
            "liked_count": 102,
            "catid": 100644,
            "brand": "",
            "cmt_count": 310,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3500000000,
            "price_min": 3500000000,
            "price_max": 3500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.828220858895706,
              "rating_count": [
                326,
                9,
                2,
                3,
                8,
                304
              ],
              "rcount_with_context": 38,
              "rcount_with_image": 6
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.017107},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 651,
              "rounded_display_sold_count": 651,
              "display_sold_count_text": "651",
              "rounded_local_monthly_sold_count": 20,
              "local_monthly_sold_count_text": "20",
              "rounded_local_historical_sold_count": 651,
              "local_historical_sold_count_text": "651",
              "rounded_global_historical_sold_count": 651,
              "global_historical_sold_count_text": "651"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 57900928199,
            "shopid": 24843249,
            "name": "LIFETIME SORA AI PREMIUM",
            "label_ids": [
              2018619,
              700025282,
              1428713,
              1718087960,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              298933384,
              1015914,
              700190087
            ],
            "image": "id-11134207-8224t-mgqcaruvjuh568",
            "images": [
              "id-11134207-8224t-mgqcaruvjuh568"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1762423590,
            "sold": 12,
            "historical_sold": 36,
            "liked": false,
            "liked_count": 51,
            "catid": 100642,
            "brand": "",
            "cmt_count": 12,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3500000000,
            "price_min": 3500000000,
            "price_max": 3500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.833333333333333,
              "rating_count": [
                12,
                0,
                0,
                1,
                0,
                11
              ],
              "rcount_with_context": 1,
              "rcount_with_image": 0
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.015792},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 36,
              "rounded_display_sold_count": 36,
              "display_sold_count_text": "36",
              "rounded_local_monthly_sold_count": 12,
              "local_monthly_sold_count_text": "12",
              "rounded_local_historical_sold_count": 36,
              "local_historical_sold_count_text": "36",
              "rounded_global_historical_sold_count": 36,
              "global_historical_sold_count_text": "36"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 25663467883,
            "shopid": 24843249,
            "name": "Lifetime Academia.Edu Premium Dengan Garansi Lifetime",
            "label_ids": [
              700025282,
              1059152,
              1059154,
              822059908662278,
              822120592853526,
              1400285055,
              1428713,
              1718087960,
              2018619,
              1015914,
              700190087,
              298933384
            ],
            "image": "id-11134207-7r98w-lrpln5fekeplb5",
            "images": [
              "id-11134207-7r98w-lrpln5fekeplb5"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1707895731,
            "sold": 14,
            "historical_sold": 674,
            "liked": false,
            "liked_count": 161,
            "catid": 100644,
            "brand": "",
            "cmt_count": 258,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 600000000,
            "price_min": 600000000,
            "price_max": 600000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.944237918215613,
              "rating_count": [
                269,
                2,
                1,
                1,
                2,
                263
              ],
              "rcount_with_context": 38,
              "rcount_with_image": 12
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.015516},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 674,
              "rounded_display_sold_count": 674,
              "display_sold_count_text": "674",
              "rounded_local_monthly_sold_count": 14,
              "local_monthly_sold_count_text": "14",
              "rounded_local_historical_sold_count": 674,
              "local_historical_sold_count_text": "674",
              "rounded_global_historical_sold_count": 674,
              "global_historical_sold_count_text": "674"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 28391552093,
            "shopid": 24843249,
            "name": "LIFETIME MONICA AI PREMIUM",
            "label_ids": [
              2018619,
              700025282,
              1718087960,
              1428713,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              298933384
            ],
            "image": "id-11134207-81ztn-meodri0br0u9cc",
            "images": [
              "id-11134207-81ztn-meodri0br0u9cc"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1757944390,
            "sold": 4,
            "historical_sold": 31,
            "liked": false,
            "liked_count": 6,
            "catid": 100642,
            "brand": "",
            "cmt_count": 11,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 800000000,
            "price_min": 800000000,
            "price_max": 800000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.636363636363637,
              "rating_count": [
                11,
                1,
                0,
                0,
                0,
                10
              ],
              "rcount_with_context": 0,
              "rcount_with_image": 0
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.015279},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 31,
              "rounded_display_sold_count": 31,
              "display_sold_count_text": "31",
              "rounded_local_monthly_sold_count": 4,
              "local_monthly_sold_count_text": "4",
              "rounded_local_historical_sold_count": 31,
              "local_historical_sold_count_text": "31",
              "rounded_global_historical_sold_count": 31,
              "global_historical_sold_count_text": "31"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 23546367727,
            "shopid": 24843249,
            "name": "Lifetimes Prezi Premium Akun Lifetime Garansi 1-12 Bulan",
            "label_ids": [
              1059152,
              1059154,
              822059908662278,
              700025282,
              1400285055,
              822120592853526,
              1428713,
              1718087960,
              2018619,
              298933384
            ],
            "image": "id-11134207-7qul3-lif3kl9ms80g6c",
            "images": [
              "id-11134207-7qul3-lif3kl9ms80g6c"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1687646194,
            "sold": 21,
            "historical_sold": 565,
            "liked": false,
            "liked_count": 72,
            "catid": 100644,
            "brand": "",
            "cmt_count": 267,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1400000000,
            "price_min": 1400000000,
            "price_max": 1400000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.825454545454545,
              "rating_count": [
                275,
                4,
                6,
                2,
                10,
                253
              ],
              "rcount_with_context": 25,
              "rcount_with_image": 5
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.014435},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 565,
              "rounded_display_sold_count": 565,
              "display_sold_count_text": "565",
              "rounded_local_monthly_sold_count": 21,
              "local_monthly_sold_count_text": "21",
              "rounded_local_historical_sold_count": 565,
              "local_historical_sold_count_text": "565",
              "rounded_global_historical_sold_count": 565,
              "global_historical_sold_count_text": "565"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 49902348029,
            "shopid": 24843249,
            "name": "Lifetime Lingokids Premium",
            "label_ids": [
              2018619,
              700025282,
              1718087960,
              1428713,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              298933384
            ],
            "image": "id-11134207-8224q-mhnp3nywi4n7d2",
            "images": [
              "id-11134207-8224q-mhnp3nywi4n7d2"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1764441842,
            "sold": 10,
            "historical_sold": 13,
            "liked": false,
            "liked_count": 6,
            "catid": 100642,
            "brand": "",
            "cmt_count": 9,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 2000000000,
            "price_min": 2000000000,
            "price_max": 2000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.555555555555555,
              "rating_count": [
                9,
                1,
                0,
                0,
                0,
                8
              ],
              "rcount_with_context": 2,
              "rcount_with_image": 0
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.013980},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 13,
              "rounded_display_sold_count": 13,
              "display_sold_count_text": "13",
              "rounded_local_monthly_sold_count": 10,
              "local_monthly_sold_count_text": "10",
              "rounded_local_historical_sold_count": 13,
              "local_historical_sold_count_text": "13",
              "rounded_global_historical_sold_count": 13,
              "global_historical_sold_count_text": "13"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 48103617453,
            "shopid": 24843249,
            "name": "Lifetime Tunee AI Premium",
            "label_ids": [
              2018619,
              700025282,
              1718087960,
              1428713,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1718596,
              298933384
            ],
            "image": "id-11134207-8224w-min1lj5vyxace5",
            "images": [
              "id-11134207-8224w-min1lj5vyxace5"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1766586907,
            "sold": 2,
            "historical_sold": 2,
            "liked": false,
            "liked_count": 3,
            "catid": 100642,
            "brand": "",
            "cmt_count": 1,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 4000000000,
            "price_min": 4000000000,
            "price_max": 4000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "2 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "8 Bulan",
                  "10 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 5,
              "rating_count": [
                1,
                0,
                0,
                0,
                0,
                1
              ],
              "rcount_with_context": 0,
              "rcount_with_image": 0
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.013411},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 2,
              "rounded_display_sold_count": 2,
              "display_sold_count_text": "2",
              "rounded_local_monthly_sold_count": 2,
              "local_monthly_sold_count_text": "2",
              "rounded_local_historical_sold_count": 2,
              "local_historical_sold_count_text": "2",
              "rounded_global_historical_sold_count": 2,
              "global_historical_sold_count_text": "2"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 42562554338,
            "shopid": 24843249,
            "name": "Lifetime Pissat Premium Dengan Akun Lifetime Dan Garansi 1-12 Bulan",
            "label_ids": [
              2018619,
              700025282,
              1428713,
              1718087960,
              1049122,
              1059152,
              822059908662278,
              822120592853526,
              298933384,
              1400285055
            ],
            "image": "id-11134207-7ra0s-mdcwcu9ga9nn11",
            "images": [
              "id-11134207-7ra0s-mdcwcu9ga9nn11"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1755069747,
            "sold": 6,
            "historical_sold": 30,
            "liked": false,
            "liked_count": 5,
            "catid": 100642,
            "brand": "",
            "cmt_count": 19,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1400000000,
            "price_min": 1400000000,
            "price_max": 1400000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.631578947368421,
              "rating_count": [
                19,
                1,
                0,
                0,
                3,
                15
              ],
              "rcount_with_context": 3,
              "rcount_with_image": 1
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.013251},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 30,
              "rounded_display_sold_count": 30,
              "display_sold_count_text": "30",
              "rounded_local_monthly_sold_count": 6,
              "local_monthly_sold_count_text": "6",
              "rounded_local_historical_sold_count": 30,
              "local_historical_sold_count_text": "30",
              "rounded_global_historical_sold_count": 30,
              "global_historical_sold_count_text": "30"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 21490569881,
            "shopid": 24843249,
            "name": "LIFETIME TENNIS TV PREMIUM",
            "label_ids": [
              822059908662278,
              1059152,
              1059154,
              1400285055,
              700025282,
              822120592853526,
              1428713,
              1718087960,
              2018619,
              1015914,
              700190087,
              298933384
            ],
            "image": "id-11134207-7qul2-liz1yztcze77f5",
            "images": [
              "id-11134207-7qul2-liz1yztcze77f5"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1688855981,
            "sold": 6,
            "historical_sold": 369,
            "liked": false,
            "liked_count": 34,
            "catid": 100644,
            "brand": "",
            "cmt_count": 150,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 4500000000,
            "price_min": 4500000000,
            "price_max": 4500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Durasi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.910256410256411,
              "rating_count": [
                156,
                3,
                0,
                0,
                2,
                151
              ],
              "rcount_with_context": 32,
              "rcount_with_image": 8
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.012111},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 369,
              "rounded_display_sold_count": 369,
              "display_sold_count_text": "369",
              "rounded_local_monthly_sold_count": 6,
              "local_monthly_sold_count_text": "6",
              "rounded_local_historical_sold_count": 369,
              "local_historical_sold_count_text": "369",
              "rounded_global_historical_sold_count": 369,
              "global_historical_sold_count_text": "369"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 24209192612,
            "shopid": 24843249,
            "name": "LIFETIME CODECADEMY PRO PREMIUM",
            "label_ids": [
              700025282,
              1059152,
              1059154,
              822059908662278,
              822120592853526,
              1400285055,
              1718087960,
              1428713,
              2018619,
              1015914,
              700190087,
              298933384,
              700810080
            ],
            "image": "id-11134207-7r98p-lqn8s2ldsggg92",
            "images": [
              "id-11134207-7r98p-lqn8s2ldsggg92"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1705573767,
            "sold": 5,
            "historical_sold": 526,
            "liked": false,
            "liked_count": 239,
            "catid": 100644,
            "brand": "",
            "cmt_count": 205,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 2000000000,
            "price_min": 2000000000,
            "price_max": 2000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.941704035874439,
              "rating_count": [
                223,
                2,
                0,
                0,
                5,
                216
              ],
              "rcount_with_context": 36,
              "rcount_with_image": 3
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.011890},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 526,
              "rounded_display_sold_count": 526,
              "display_sold_count_text": "526",
              "rounded_local_monthly_sold_count": 5,
              "local_monthly_sold_count_text": "5",
              "rounded_local_historical_sold_count": 526,
              "local_historical_sold_count_text": "526",
              "rounded_global_historical_sold_count": 526,
              "global_historical_sold_count_text": "526"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 22361874379,
            "shopid": 24843249,
            "name": "LIFETIME Tome.App AI Premium Dengan Panduan Gratis",
            "label_ids": [
              700025282,
              822059908662278,
              1059152,
              1059154,
              822120592853526,
              1428713,
              1718087960,
              2018619,
              298933384
            ],
            "image": "id-11134207-7r98w-loooqpbt7yhmb0",
            "images": [
              "id-11134207-7r98w-loooqpbt7yhmb0"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1701303931,
            "sold": 3,
            "historical_sold": 213,
            "liked": false,
            "liked_count": 65,
            "catid": 100644,
            "brand": "",
            "cmt_count": 90,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 500000000,
            "price_min": 500000000,
            "price_max": 500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.709677419354839,
              "rating_count": [
                93,
                2,
                2,
                3,
                7,
                79
              ],
              "rcount_with_context": 10,
              "rcount_with_image": 0
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.011700},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 213,
              "rounded_display_sold_count": 213,
              "display_sold_count_text": "213",
              "rounded_local_monthly_sold_count": 3,
              "local_monthly_sold_count_text": "3",
              "rounded_local_historical_sold_count": 213,
              "local_historical_sold_count_text": "213",
              "rounded_global_historical_sold_count": 213,
              "global_historical_sold_count_text": "213"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 16299547121,
            "shopid": 24843249,
            "name": "Lifetime Jenni.ai Chatpdf Premium Akun Lifetime",
            "label_ids": [
              700025282,
              822059908662278,
              1400285055,
              1059152,
              1059154,
              822120592853526,
              1718087960,
              1428713,
              2018619,
              1015914,
              700190087,
              298933384
            ],
            "image": "id-11134207-7r98w-lo71mrlaxt7od4",
            "images": [
              "id-11134207-7r98w-lo71mrlaxt7od4"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1700254451,
            "sold": 17,
            "historical_sold": 1000,
            "liked": false,
            "liked_count": 255,
            "catid": 100644,
            "brand": "",
            "cmt_count": 685,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 2500000000,
            "price_min": 2500000000,
            "price_max": 2500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.891483516483516,
              "rating_count": [
                728,
                6,
                2,
                12,
                25,
                683
              ],
              "rcount_with_context": 128,
              "rcount_with_image": 25
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.011425},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 1000,
              "rounded_display_sold_count": 1000,
              "display_sold_count_text": "1RB+",
              "rounded_local_monthly_sold_count": 17,
              "local_monthly_sold_count_text": "17",
              "rounded_local_historical_sold_count": 1000,
              "local_historical_sold_count_text": "1RB+",
              "rounded_global_historical_sold_count": 1000,
              "global_historical_sold_count_text": "1RB+"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 25520945467,
            "shopid": 24843249,
            "name": "LIFETIME PIXLR PREMIUM",
            "label_ids": [
              700025282,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1400285055,
              1718087960,
              1428713,
              2018619,
              1015914,
              700190087
            ],
            "image": "id-11134207-7r98z-ltc0rbhdbxop31",
            "images": [
              "id-11134207-7r98z-ltc0rbhdbxop31"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1711431880,
            "sold": 3,
            "historical_sold": 133,
            "liked": false,
            "liked_count": 29,
            "catid": 100644,
            "brand": "",
            "cmt_count": 56,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 2500000000,
            "price_min": 2500000000,
            "price_max": 2500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.655737704918033,
              "rating_count": [
                61,
                5,
                0,
                0,
                1,
                55
              ],
              "rcount_with_context": 10,
              "rcount_with_image": 1
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.011181},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 133,
              "rounded_display_sold_count": 133,
              "display_sold_count_text": "133",
              "rounded_local_monthly_sold_count": 3,
              "local_monthly_sold_count_text": "3",
              "rounded_local_historical_sold_count": 133,
              "local_historical_sold_count_text": "133",
              "rounded_global_historical_sold_count": 133,
              "global_historical_sold_count_text": "133"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 26513436147,
            "shopid": 24843249,
            "name": "Lifetime WWE Network Premium Akun Lifetime Garansi 1-12 Bulan",
            "label_ids": [
              700025282,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1718087960,
              1428713,
              1400285055,
              2018619,
              298933384
            ],
            "image": "id-11134207-7rasi-m12olcu7offs52",
            "images": [
              "id-11134207-7rasi-m12olcu7offs52"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1728301940,
            "sold": 1,
            "historical_sold": 76,
            "liked": false,
            "liked_count": 13,
            "catid": 100642,
            "brand": "",
            "cmt_count": 35,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3500000000,
            "price_min": 3500000000,
            "price_max": 3500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.742857142857143,
              "rating_count": [
                35,
                1,
                1,
                1,
                0,
                32
              ],
              "rcount_with_context": 5,
              "rcount_with_image": 1
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.010133},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 76,
              "rounded_display_sold_count": 76,
              "display_sold_count_text": "76",
              "rounded_local_monthly_sold_count": 1,
              "local_monthly_sold_count_text": "1",
              "rounded_local_historical_sold_count": 76,
              "local_historical_sold_count_text": "76",
              "rounded_global_historical_sold_count": 76,
              "global_historical_sold_count_text": "76"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 53302725639,
            "shopid": 24843249,
            "name": "Lifetime 20 Kali Translate Premium",
            "label_ids": [
              2018619,
              700025282,
              1718087960,
              1428713,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              298933384
            ],
            "image": "id-11134207-8224s-mhynyf5pklqd5e",
            "images": [
              "id-11134207-8224s-mhynyf5pklqd5e"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1765104138,
            "sold": 9,
            "historical_sold": 9,
            "liked": false,
            "liked_count": 5,
            "catid": 100642,
            "brand": "",
            "cmt_count": 6,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 700000000,
            "price_min": 700000000,
            "price_max": 700000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.333333333333333,
              "rating_count": [
                6,
                1,
                0,
                0,
                0,
                5
              ],
              "rcount_with_context": 1,
              "rcount_with_image": 0
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.009370},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 9,
              "rounded_display_sold_count": 9,
              "display_sold_count_text": "9",
              "rounded_local_monthly_sold_count": 9,
              "local_monthly_sold_count_text": "9",
              "rounded_local_historical_sold_count": 9,
              "local_historical_sold_count_text": "9",
              "rounded_global_historical_sold_count": 9,
              "global_historical_sold_count_text": "9"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 24987966350,
            "shopid": 24843249,
            "name": "Lifetime MyFitnessPal Premium",
            "label_ids": [
              700025282,
              1718087960,
              1428713,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              2018619,
              1400285055,
              298933384
            ],
            "image": "id-11134207-7rase-m26xlw4gbexv4d",
            "images": [
              "id-11134207-7rase-m26xlw4gbexv4d"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1730737480,
            "sold": 10,
            "historical_sold": 60,
            "liked": false,
            "liked_count": 18,
            "catid": 100644,
            "brand": "",
            "cmt_count": 20,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 7000000000,
            "price_min": 7000000000,
            "price_max": 7000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.55,
              "rating_count": [
                20,
                1,
                0,
                2,
                1,
                16
              ],
              "rcount_with_context": 4,
              "rcount_with_image": 1
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.009164},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 60,
              "rounded_display_sold_count": 60,
              "display_sold_count_text": "60",
              "rounded_local_monthly_sold_count": 10,
              "local_monthly_sold_count_text": "10",
              "rounded_local_historical_sold_count": 60,
              "local_historical_sold_count_text": "60",
              "rounded_global_historical_sold_count": 60,
              "global_historical_sold_count_text": "60"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 25124593596,
            "shopid": 24843249,
            "name": "Lifetime Paperpal Premium Dengan Akun Dan Garansi",
            "label_ids": [
              700025282,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1400285055,
              1718087960,
              1428713,
              2018619,
              298933384,
              700810080
            ],
            "image": "id-11134207-7r990-lu70311thb0mfd",
            "images": [
              "id-11134207-7r990-lu70311thb0mfd"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1713308078,
            "sold": 8,
            "historical_sold": 322,
            "liked": false,
            "liked_count": 29,
            "catid": 100644,
            "brand": "",
            "cmt_count": 154,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 800000000,
            "price_min": 800000000,
            "price_max": 800000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.904761904761905,
              "rating_count": [
                168,
                3,
                0,
                0,
                4,
                161
              ],
              "rcount_with_context": 30,
              "rcount_with_image": 6
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.008960},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 322,
              "rounded_display_sold_count": 322,
              "display_sold_count_text": "322",
              "rounded_local_monthly_sold_count": 8,
              "local_monthly_sold_count_text": "8",
              "rounded_local_historical_sold_count": 322,
              "local_historical_sold_count_text": "322",
              "rounded_global_historical_sold_count": 322,
              "global_historical_sold_count_text": "322"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 28182110347,
            "shopid": 24843249,
            "name": "Lifetimes Dzine Ai Premium Creator Dengan Panduan Gratis",
            "label_ids": [
              2018619,
              700025282,
              1428713,
              1718087960,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1015914,
              700190087,
              298933384
            ],
            "image": "id-11134207-7rbk2-m874aneqyt4dae",
            "images": [
              "id-11134207-7rbk2-m874aneqyt4dae"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1743824745,
            "sold": 0,
            "historical_sold": 41,
            "liked": false,
            "liked_count": 17,
            "catid": 100642,
            "brand": "",
            "cmt_count": 21,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3500000000,
            "price_min": 3500000000,
            "price_max": 3500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.333333333333333,
              "rating_count": [
                21,
                2,
                1,
                1,
                1,
                16
              ],
              "rcount_with_context": 5,
              "rcount_with_image": 0
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.007308},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 41,
              "rounded_display_sold_count": 41,
              "display_sold_count_text": "41",
              "rounded_local_monthly_sold_count": 0,
              "rounded_local_historical_sold_count": 41,
              "local_historical_sold_count_text": "41",
              "rounded_global_historical_sold_count": 41,
              "global_historical_sold_count_text": "41"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 24608812531,
            "shopid": 24843249,
            "name": "LIFETIME STUDOCU PREMIUM",
            "label_ids": [
              700025282,
              822059908662278,
              1059152,
              1059154,
              822120592853526,
              1400285055,
              1428713,
              1718087960,
              2018619,
              298933384
            ],
            "image": "id-11134207-7r98u-lqkv661bhnnq25",
            "images": [
              "id-11134207-7r98u-lqkv661bhnnq25"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1705429119,
            "sold": 6,
            "historical_sold": 284,
            "liked": false,
            "liked_count": 49,
            "catid": 100644,
            "brand": "",
            "cmt_count": 100,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1400000000,
            "price_min": 1400000000,
            "price_max": 1400000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.941747572815534,
              "rating_count": [
                103,
                1,
                0,
                0,
                2,
                100
              ],
              "rcount_with_context": 10,
              "rcount_with_image": 4
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.007280},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 284,
              "rounded_display_sold_count": 284,
              "display_sold_count_text": "284",
              "rounded_local_monthly_sold_count": 6,
              "local_monthly_sold_count_text": "6",
              "rounded_local_historical_sold_count": 284,
              "local_historical_sold_count_text": "284",
              "rounded_global_historical_sold_count": 284,
              "global_historical_sold_count_text": "284"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 27259515769,
            "shopid": 24843249,
            "name": "Lifetime KooBits Premium Akun Dan Garansi 1-12 Bulan",
            "label_ids": [
              700025282,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1718087960,
              1428713,
              1400285055,
              2018619,
              700830032,
              298933384
            ],
            "image": "id-11134207-7r98u-lzj8ns9ftxi691",
            "images": [
              "id-11134207-7r98u-lzj8ns9ftxi691"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1724946020,
            "sold": 11,
            "historical_sold": 161,
            "liked": false,
            "liked_count": 23,
            "catid": 100642,
            "brand": "",
            "cmt_count": 35,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3500000000,
            "price_min": 3500000000,
            "price_max": 3500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.864864864864865,
              "rating_count": [
                37,
                1,
                0,
                0,
                1,
                35
              ],
              "rcount_with_context": 5,
              "rcount_with_image": 3
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.007219},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 161,
              "rounded_display_sold_count": 161,
              "display_sold_count_text": "161",
              "rounded_local_monthly_sold_count": 11,
              "local_monthly_sold_count_text": "11",
              "rounded_local_historical_sold_count": 161,
              "local_historical_sold_count_text": "161",
              "rounded_global_historical_sold_count": 161,
              "global_historical_sold_count_text": "161"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 27588872906,
            "shopid": 24843249,
            "name": "Lifetime Miro Premium Dengan Akun Dan Garansi",
            "label_ids": [
              1428713,
              1718087960,
              2018619,
              700025282,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1015914,
              700190087,
              298933384
            ],
            "image": "id-11134207-7ra0s-mcf6sey8bq741a",
            "images": [
              "id-11134207-7ra0s-mcf6sey8bq741a"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1753033650,
            "sold": 6,
            "historical_sold": 30,
            "liked": false,
            "liked_count": 7,
            "catid": 100642,
            "brand": "",
            "cmt_count": 7,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 500000000,
            "price_min": 500000000,
            "price_max": 500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.857142857142857,
              "rating_count": [
                7,
                0,
                0,
                0,
                1,
                6
              ],
              "rcount_with_context": 0,
              "rcount_with_image": 0
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.007136},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 30,
              "rounded_display_sold_count": 30,
              "display_sold_count_text": "30",
              "rounded_local_monthly_sold_count": 6,
              "local_monthly_sold_count_text": "6",
              "rounded_local_historical_sold_count": 30,
              "local_historical_sold_count_text": "30",
              "rounded_global_historical_sold_count": 30,
              "global_historical_sold_count_text": "30"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 16495977981,
            "shopid": 24843249,
            "name": "LIFETIME HOOTSUITE PREMIUM",
            "label_ids": [
              1059152,
              1059154,
              822059908662278,
              700025282,
              822120592853526,
              1400285055,
              1428713,
              1718087960,
              2018619,
              1015914,
              700190087,
              298933384
            ],
            "image": "id-11134207-7r98y-lldubjthgkfd52",
            "images": [
              "id-11134207-7r98y-lldubjthgkfd52"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1694108159,
            "sold": 5,
            "historical_sold": 321,
            "liked": false,
            "liked_count": 127,
            "catid": 100644,
            "brand": "",
            "cmt_count": 89,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1200000000,
            "price_min": 1200000000,
            "price_max": 1200000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime",
                  "Tip Untuk Seller"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.90625,
              "rating_count": [
                96,
                1,
                0,
                2,
                1,
                92
              ],
              "rcount_with_context": 18,
              "rcount_with_image": 2
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.006786},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 321,
              "rounded_display_sold_count": 321,
              "display_sold_count_text": "321",
              "rounded_local_monthly_sold_count": 5,
              "local_monthly_sold_count_text": "5",
              "rounded_local_historical_sold_count": 321,
              "local_historical_sold_count_text": "321",
              "rounded_global_historical_sold_count": 321,
              "global_historical_sold_count_text": "321"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 24963527284,
            "shopid": 24843249,
            "name": "LIFETIME QUIZIZZ PREMIUM",
            "label_ids": [
              700025282,
              1059152,
              1059154,
              822059908662278,
              1400285055,
              822120592853526,
              1428713,
              1718087960,
              2018619,
              298933384
            ],
            "image": "id-11134207-7r98u-lrpln5fen7uh6c",
            "images": [
              "id-11134207-7r98u-lrpln5fen7uh6c"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1707930542,
            "sold": 9,
            "historical_sold": 315,
            "liked": false,
            "liked_count": 75,
            "catid": 100644,
            "brand": "",
            "cmt_count": 147,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 400000000,
            "price_min": 400000000,
            "price_max": 400000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.868421052631579,
              "rating_count": [
                152,
                2,
                1,
                1,
                7,
                141
              ],
              "rcount_with_context": 19,
              "rcount_with_image": 5
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.006693},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 315,
              "rounded_display_sold_count": 315,
              "display_sold_count_text": "315",
              "rounded_local_monthly_sold_count": 9,
              "local_monthly_sold_count_text": "9",
              "rounded_local_historical_sold_count": 315,
              "local_historical_sold_count_text": "315",
              "rounded_global_historical_sold_count": 315,
              "global_historical_sold_count_text": "315"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 52803085660,
            "shopid": 24843249,
            "name": "LIFETIME KRIIPIK PREMIUM",
            "label_ids": [
              2018619,
              700025282,
              1428713,
              1718087960,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1718596
            ],
            "image": "id-11134207-8224v-mi98j5s90irk63",
            "images": [
              "id-11134207-8224v-mi98j5s90irk63"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1765743845,
            "sold": 5,
            "historical_sold": 5,
            "liked": false,
            "liked_count": 0,
            "catid": 100642,
            "brand": "",
            "cmt_count": 3,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3500000000,
            "price_min": 3500000000,
            "price_max": 3500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 5,
              "rating_count": [
                3,
                0,
                0,
                0,
                0,
                3
              ],
              "rcount_with_context": 0,
              "rcount_with_image": 0
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.006004},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 5,
              "rounded_display_sold_count": 5,
              "display_sold_count_text": "5",
              "rounded_local_monthly_sold_count": 5,
              "local_monthly_sold_count_text": "5",
              "rounded_local_historical_sold_count": 5,
              "local_historical_sold_count_text": "5",
              "rounded_global_historical_sold_count": 5,
              "global_historical_sold_count_text": "5"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 24913594603,
            "shopid": 24843249,
            "name": "Lifetime Numerade Premium Akun Per Device",
            "label_ids": [
              700025282,
              1059154,
              1059152,
              822059908662278,
              1400285055,
              822120592853526,
              1718087960,
              1428713,
              2018619,
              298933384
            ],
            "image": "id-11134207-7r98z-lrrhak1hcj0p06",
            "images": [
              "id-11134207-7r98z-lrrhak1hcj0p06"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1708010270,
            "sold": 1,
            "historical_sold": 393,
            "liked": false,
            "liked_count": 38,
            "catid": 100644,
            "brand": "",
            "cmt_count": 101,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 200000000,
            "price_min": 200000000,
            "price_max": 200000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.839622641509434,
              "rating_count": [
                106,
                2,
                0,
                2,
                5,
                97
              ],
              "rcount_with_context": 9,
              "rcount_with_image": 4
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.005446},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 393,
              "rounded_display_sold_count": 393,
              "display_sold_count_text": "393",
              "rounded_local_monthly_sold_count": 1,
              "local_monthly_sold_count_text": "1",
              "rounded_local_historical_sold_count": 393,
              "local_historical_sold_count_text": "393",
              "rounded_global_historical_sold_count": 393,
              "global_historical_sold_count_text": "393"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 26138872673,
            "shopid": 24843249,
            "name": "Lifetime Scholarcy Premium Dengan Akun Lifetime",
            "label_ids": [
              1428713,
              1718087960,
              2018619,
              700025282,
              1049122,
              1059152,
              822059908662278,
              822120592853526,
              298933384
            ],
            "image": "id-11134207-7ra0k-mcf6sey88x28af",
            "images": [
              "id-11134207-7ra0k-mcf6sey88x28af"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1753029571,
            "sold": 5,
            "historical_sold": 20,
            "liked": false,
            "liked_count": 6,
            "catid": 100642,
            "brand": "",
            "cmt_count": 5,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3500000000,
            "price_min": 3500000000,
            "price_max": 3500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 5,
              "rating_count": [
                5,
                0,
                0,
                0,
                0,
                5
              ],
              "rcount_with_context": 0,
              "rcount_with_image": 0
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.004183},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 20,
              "rounded_display_sold_count": 20,
              "display_sold_count_text": "20",
              "rounded_local_monthly_sold_count": 5,
              "local_monthly_sold_count_text": "5",
              "rounded_local_historical_sold_count": 20,
              "local_historical_sold_count_text": "20",
              "rounded_global_historical_sold_count": 20,
              "global_historical_sold_count_text": "20"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 25969107193,
            "shopid": 24843249,
            "name": "Kahoot!+ For Teachers Premium Lifetime 1-12 Bulan",
            "label_ids": [
              700025282,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1400285055,
              1428713,
              1718087960,
              2018619,
              298933384
            ],
            "image": "id-11134207-7r98o-lsvizj6sud1910",
            "images": [
              "id-11134207-7r98o-lsvizj6sud1910"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1710435025,
            "sold": 4,
            "historical_sold": 175,
            "liked": false,
            "liked_count": 37,
            "catid": 100644,
            "brand": "",
            "cmt_count": 67,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 2000000000,
            "price_min": 2000000000,
            "price_max": 2000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.626666666666667,
              "rating_count": [
                75,
                3,
                3,
                3,
                1,
                65
              ],
              "rcount_with_context": 12,
              "rcount_with_image": 4
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.004117},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 175,
              "rounded_display_sold_count": 175,
              "display_sold_count_text": "175",
              "rounded_local_monthly_sold_count": 4,
              "local_monthly_sold_count_text": "4",
              "rounded_local_historical_sold_count": 175,
              "local_historical_sold_count_text": "175",
              "rounded_global_historical_sold_count": 175,
              "global_historical_sold_count_text": "175"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 25932865522,
            "shopid": 24843249,
            "name": "F1 TV PRO FULL GARANSI PREMIUME",
            "label_ids": [
              700025282,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1400285055,
              1015914,
              700190087,
              1428713,
              1718087960,
              2018619,
              298933384
            ],
            "image": "id-11134207-7r992-lx3n3yo9gzff5a",
            "images": [
              "id-11134207-7r992-lx3n3yo9gzff5a"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1719641252,
            "sold": 47,
            "historical_sold": 815,
            "liked": false,
            "liked_count": 538,
            "catid": 100644,
            "brand": "",
            "cmt_count": 289,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 10500000000,
            "price_min": 10500000000,
            "price_max": 10500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.760135135135135,
              "rating_count": [
                296,
                8,
                3,
                10,
                10,
                265
              ],
              "rcount_with_context": 41,
              "rcount_with_image": 16
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.003793},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 815,
              "rounded_display_sold_count": 815,
              "display_sold_count_text": "815",
              "rounded_local_monthly_sold_count": 47,
              "local_monthly_sold_count_text": "47",
              "rounded_local_historical_sold_count": 815,
              "local_historical_sold_count_text": "815",
              "rounded_global_historical_sold_count": 815,
              "global_historical_sold_count_text": "815"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 40358606922,
            "shopid": 24843249,
            "name": "LIFETIME MEG4 / MEG4.NZ PREMIUM",
            "label_ids": [
              2018619,
              700025282,
              1428713,
              1718087960,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              298933384,
              1015914,
              700190087
            ],
            "image": "id-11134207-7ra0g-mc7wwec1m99c61",
            "images": [
              "id-11134207-7ra0g-mc7wwec1m99c61"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1752588518,
            "sold": 1,
            "historical_sold": 42,
            "liked": false,
            "liked_count": 7,
            "catid": 100644,
            "brand": "",
            "cmt_count": 23,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 500000000,
            "price_min": 500000000,
            "price_max": 500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "TER4BOX",
                  "MEG4"
                ],
                "type": 0
              },
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.956521739130435,
              "rating_count": [
                23,
                0,
                0,
                0,
                1,
                22
              ],
              "rcount_with_context": 3,
              "rcount_with_image": 0
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.002958},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 42,
              "rounded_display_sold_count": 42,
              "display_sold_count_text": "42",
              "rounded_local_monthly_sold_count": 1,
              "local_monthly_sold_count_text": "1",
              "rounded_local_historical_sold_count": 42,
              "local_historical_sold_count_text": "42",
              "rounded_global_historical_sold_count": 42,
              "global_historical_sold_count_text": "42"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 26838829428,
            "shopid": 24843249,
            "name": "Lifetime Connected Papers Premium",
            "label_ids": [
              2018619,
              700025282,
              1718087960,
              1428713,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              298933384
            ],
            "image": "id-11134207-7ra0g-mcd93ybu5yyta6",
            "images": [
              "id-11134207-7ra0g-mcd93ybu5yyta6"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1752914445,
            "sold": 1,
            "historical_sold": 15,
            "liked": false,
            "liked_count": 0,
            "catid": 100642,
            "brand": "",
            "cmt_count": 4,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1400000000,
            "price_min": 1400000000,
            "price_max": 1400000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4,
              "rating_count": [
                4,
                1,
                0,
                0,
                0,
                3
              ],
              "rcount_with_context": 0,
              "rcount_with_image": 0
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.001681},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 15,
              "rounded_display_sold_count": 15,
              "display_sold_count_text": "15",
              "rounded_local_monthly_sold_count": 1,
              "local_monthly_sold_count_text": "1",
              "rounded_local_historical_sold_count": 15,
              "local_historical_sold_count_text": "15",
              "rounded_global_historical_sold_count": 15,
              "global_historical_sold_count_text": "15"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 22920077027,
            "shopid": 24843249,
            "name": "Lifetime N4Pster Premium Dengan Akun Dan Garansi",
            "label_ids": [
              822059908662278,
              1059152,
              1059154,
              700025282,
              822120592853526,
              1428713,
              1718087960,
              2018619,
              298933384
            ],
            "image": "sg-11134201-23010-uffp242ibrmvfd",
            "images": [
              "sg-11134201-23010-uffp242ibrmvfd"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1674690270,
            "sold": 0,
            "historical_sold": 194,
            "liked": false,
            "liked_count": 13,
            "catid": 100644,
            "brand": "",
            "cmt_count": 31,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 800000000,
            "price_min": 800000000,
            "price_max": 800000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.709677419354839,
              "rating_count": [
                31,
                2,
                0,
                0,
                1,
                28
              ],
              "rcount_with_context": 12,
              "rcount_with_image": 0
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.001600},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 194,
              "rounded_display_sold_count": 194,
              "display_sold_count_text": "194",
              "rounded_local_monthly_sold_count": 0,
              "rounded_local_historical_sold_count": 194,
              "local_historical_sold_count_text": "194",
              "rounded_global_historical_sold_count": 194,
              "global_historical_sold_count_text": "194"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 24692950072,
            "shopid": 24843249,
            "name": "LIFETIME UDIO PREMIUM DENGAN GRATIS PANDUAN",
            "label_ids": [
              2018619,
              700025282,
              1718087960,
              1428713,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1015914,
              700190087,
              700830032,
              298933384
            ],
            "image": "id-11134207-7rbk3-m7lr7xrwdq9je4",
            "images": [
              "id-11134207-7rbk3-m7lr7xrwdq9je4"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1742531583,
            "sold": 1,
            "historical_sold": 35,
            "liked": false,
            "liked_count": 6,
            "catid": 100642,
            "brand": "",
            "cmt_count": 13,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3500000000,
            "price_min": 3500000000,
            "price_max": 3500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4,
              "rating_count": [
                13,
                3,
                0,
                0,
                1,
                9
              ],
              "rcount_with_context": 2,
              "rcount_with_image": 0
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.001343},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 35,
              "rounded_display_sold_count": 35,
              "display_sold_count_text": "35",
              "rounded_local_monthly_sold_count": 1,
              "local_monthly_sold_count_text": "1",
              "rounded_local_historical_sold_count": 35,
              "local_historical_sold_count_text": "35",
              "rounded_global_historical_sold_count": 35,
              "global_historical_sold_count_text": "35"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 22349890773,
            "shopid": 24843249,
            "name": "LIFETIME JOOK PREMIUM",
            "label_ids": [
              1059152,
              1059154,
              822059908662278,
              700025282,
              1400285055,
              822120592853526,
              1428713,
              1718087960,
              2018619
            ],
            "image": "id-11134207-7qul2-ljum41tk6q547d",
            "images": [
              "id-11134207-7qul2-ljum41tk6q547d"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1690764505,
            "sold": 0,
            "historical_sold": 306,
            "liked": false,
            "liked_count": 97,
            "catid": 100642,
            "brand": "",
            "cmt_count": 145,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 1500000000,
            "price_min": 1500000000,
            "price_max": 1500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.8493150684931505,
              "rating_count": [
                146,
                2,
                1,
                2,
                7,
                134
              ],
              "rcount_with_context": 25,
              "rcount_with_image": 8
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.001241},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 306,
              "rounded_display_sold_count": 306,
              "display_sold_count_text": "306",
              "rounded_local_monthly_sold_count": 0,
              "rounded_local_historical_sold_count": 306,
              "local_historical_sold_count_text": "306",
              "rounded_global_historical_sold_count": 306,
              "global_historical_sold_count_text": "306"
            },
            "global_cat": {
              "catid": [
                100642,
                100773
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 23871858013,
            "shopid": 24843249,
            "name": "LIFETIME QUIZLET PREMIUM",
            "label_ids": [
              1059152,
              1059154,
              822059908662278,
              700025282,
              1400285055,
              822120592853526,
              1718087960,
              1428713,
              2018619,
              298933384
            ],
            "image": "id-11134207-7qul1-lif3kl9mtmkw6b",
            "images": [
              "id-11134207-7qul1-lif3kl9mtmkw6b"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1687646524,
            "sold": 1,
            "historical_sold": 250,
            "liked": false,
            "liked_count": 43,
            "catid": 100644,
            "brand": "",
            "cmt_count": 67,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 2100000000,
            "price_min": 2100000000,
            "price_max": 2100000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.72463768115942,
              "rating_count": [
                69,
                4,
                0,
                1,
                1,
                63
              ],
              "rcount_with_context": 8,
              "rcount_with_image": 6
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.001090},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 250,
              "rounded_display_sold_count": 250,
              "display_sold_count_text": "250",
              "rounded_local_monthly_sold_count": 1,
              "local_monthly_sold_count_text": "1",
              "rounded_local_historical_sold_count": 250,
              "local_historical_sold_count_text": "250",
              "rounded_global_historical_sold_count": 250,
              "global_historical_sold_count_text": "250"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 26605629031,
            "shopid": 24843249,
            "name": "Lifetime Bein Sports Premium Full Garansi 1-12 Bulan",
            "label_ids": [
              700025282,
              1049122,
              1059152,
              822059908662278,
              822120592853526,
              1400285055,
              1718087960,
              1428713,
              1015914,
              700190087,
              2018619,
              298933384,
              700810080
            ],
            "image": "id-11134207-7r98u-lxuv1ikc60bi10",
            "images": [
              "id-11134207-7r98u-lxuv1ikc60bi10"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1721289440,
            "sold": 0,
            "historical_sold": 3000,
            "liked": false,
            "liked_count": 798,
            "catid": 100642,
            "brand": "",
            "cmt_count": 1016,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 2100000000,
            "price_min": 2100000000,
            "price_max": 2100000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.796309439318666,
              "rating_count": [
                1409,
                29,
                14,
                28,
                73,
                1265
              ],
              "rcount_with_context": 181,
              "rcount_with_image": 65
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.001065},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 3000,
              "rounded_display_sold_count": 3000,
              "display_sold_count_text": "3RB+",
              "rounded_local_monthly_sold_count": 0,
              "rounded_local_historical_sold_count": 3000,
              "local_historical_sold_count_text": "3RB+",
              "rounded_global_historical_sold_count": 3000,
              "global_historical_sold_count_text": "3RB+"
            },
            "global_cat": {
              "catid": [
                100642,
                100773
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 25038913025,
            "shopid": 24843249,
            "name": "Lifetime StardustTV Premiume Dengan Akun Lifetime",
            "label_ids": [
              700025282,
              1718087960,
              1428713,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              2018619,
              298933384
            ],
            "image": "id-11134207-82252-mhoi4txma68315",
            "images": [
              "id-11134207-82252-mhoi4txma68315"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1732883889,
            "sold": 3,
            "historical_sold": 112,
            "liked": false,
            "liked_count": 9,
            "catid": 100642,
            "brand": "",
            "cmt_count": 36,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3500000000,
            "price_min": 3500000000,
            "price_max": 3500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Garansi",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.638888888888889,
              "rating_count": [
                36,
                3,
                0,
                0,
                1,
                32
              ],
              "rcount_with_context": 3,
              "rcount_with_image": 0
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.000787},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 112,
              "rounded_display_sold_count": 112,
              "display_sold_count_text": "112",
              "rounded_local_monthly_sold_count": 3,
              "local_monthly_sold_count_text": "3",
              "rounded_local_historical_sold_count": 112,
              "local_historical_sold_count_text": "112",
              "rounded_global_historical_sold_count": 112,
              "global_historical_sold_count_text": "112"
            },
            "global_cat": {
              "catid": [
                100642,
                100764,
                101514
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 21178635945,
            "shopid": 24843249,
            "name": "FULL GARANSI MLB TV PREMIUM | M4JOR LE4GUE B4SEBALL",
            "label_ids": [
              700025282,
              1718087960,
              1428713,
              1049122,
              1059152,
              822059908662278,
              822120592853526,
              2018619
            ],
            "image": "id-11134207-7qula-lfn1tgdxhswy25",
            "images": [
              "id-11134207-7qula-lfn1tgdxhswy25"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1681590377,
            "sold": 0,
            "historical_sold": 102,
            "liked": false,
            "liked_count": 34,
            "catid": 100644,
            "brand": "",
            "cmt_count": 38,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 3500000000,
            "price_min": 3500000000,
            "price_max": 3500000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.82051282051282,
              "rating_count": [
                39,
                1,
                0,
                1,
                1,
                36
              ],
              "rcount_with_context": 4,
              "rcount_with_image": 0
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.000705},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 102,
              "rounded_display_sold_count": 102,
              "display_sold_count_text": "102",
              "rounded_local_monthly_sold_count": 0,
              "rounded_local_historical_sold_count": 102,
              "local_historical_sold_count_text": "102",
              "rounded_global_historical_sold_count": 102,
              "global_historical_sold_count_text": "102"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          },
          {
            "itemid": 29700312281,
            "shopid": 24843249,
            "name": "Lifetime Aithor Premium AI Dengan Akun Lifetime",
            "label_ids": [
              700025282,
              1059152,
              1049122,
              822059908662278,
              822120592853526,
              1400285055,
              1428713,
              1718087960,
              2018619,
              298933384
            ],
            "image": "id-11134207-7r98s-lvg4f0rw6sg861",
            "images": [
              "id-11134207-7r98s-lvg4f0rw6sg861"
            ],
            "currency": "IDR",
            "stock": 1,
            "status": 1,
            "ctime": 1716039237,
            "sold": 2,
            "historical_sold": 190,
            "liked": false,
            "liked_count": 36,
            "catid": 100644,
            "brand": "",
            "cmt_count": 79,
            "flag": 0,
            "cb_option": 0,
            "item_status": "normal",
            "price": 2000000000,
            "price_min": 2000000000,
            "price_max": 2000000000,
            "price_min_before_discount": -1,
            "price_max_before_discount": -1,
            "price_before_discount": 0,
            "has_lowest_price_guarantee": false,
            "show_discount": 0,
            "raw_discount": 0,
            "tier_variations": [
              {
                "name": "Tipe",
                "options": [
                  "1 Bulan",
                  "3 Bulan",
                  "6 Bulan",
                  "Lifetime"
                ],
                "type": 0
              }
            ],
            "item_rating": {
              "rating_star": 4.887640449438202,
              "rating_count": [
                89,
                1,
                0,
                1,
                4,
                83
              ],
              "rcount_with_context": 19,
              "rcount_with_image": 3
            },
            "item_type": 0,
            "reference_item_id": "",
            "transparent_background_image": "",
            "is_adult": false,
            "badge_icon_type": 0,
            "shopee_verified": false,
            "is_official_shop": false,
            "show_official_shop_label": false,
            "show_shopee_verified_label": false,
            "show_official_shop_label_in_title": false,
            "is_cc_installment_payment_eligible": false,
            "is_non_cc_installment_payment_eligible": false,
            "show_free_shipping": false,
            "bundle_deal_id": 0,
            "can_use_bundle_deal": false,
            "welcome_package_type": 0,
            "can_use_wholesale": false,
            "is_preferred_plus_seller": false,
            "shop_location": "KOTA JAKARTA UTARA",
            "has_model_with_available_shopee_stock": false,
            "can_use_cod": false,
            "is_on_flash_sale": false,
            "is_service_by_shopee": false,
            "info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.000362},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
            "data_type": "item",
            "shop_rating": 4.841217,
            "flash_sale_ongoing_sold_count": 0,
            "shop_name": "tokojualbarangmurahbanget",
            "flash_sale_stock": 0,
            "need_kyc": false,
            "is_shopee_choice": false,
            "item_card_display_sold_count": {
              "display_sold_count": 190,
              "rounded_display_sold_count": 190,
              "display_sold_count_text": "190",
              "rounded_local_monthly_sold_count": 2,
              "local_monthly_sold_count_text": "2",
              "rounded_local_historical_sold_count": 190,
              "local_historical_sold_count_text": "190",
              "rounded_global_historical_sold_count": 190,
              "global_historical_sold_count_text": "190"
            },
            "global_cat": {
              "catid": [
                100644,
                101937
              ]
            },
            "is_mart": false,
            "deduction_info": "",
            "display_ad_tag": 0,
            "traffic_source": 0,
            "adsid": 0,
            "campaign_id": 0,
            "ctx_item_type": 0
          }
        ],
        "total_fetched": 94,
        "total_count": 94,
        "pages_fetched": 4,
        "has_more": false
      },
      "sold_out_items": {
        "items": [
          {
            "itemid": 18963694293,
            "shopid": 24843249,
            "item_basic": {
              "itemid": 18963694293,
              "shopid": 24843249,
              "name": "Lifetime Curiosity Stre4m Premium",
              "label_ids": [
                1400285055,
                700025282,
                1718087960,
                1428713,
                2018619
              ],
              "image": "sg-11134201-22110-mxiz5q6ay5jv80",
              "images": [
                "sg-11134201-22110-mxiz5q6ay5jv80"
              ],
              "currency": "IDR",
              "stock": 0,
              "status": 1,
              "ctime": 1668976313,
              "sold": 0,
              "historical_sold": 179,
              "liked": false,
              "liked_count": 52,
              "catid": 100644,
              "brand": "",
              "cmt_count": 80,
              "flag": 0,
              "cb_option": 0,
              "item_status": "sold_out",
              "price": 2000000000,
              "price_min": 2000000000,
              "price_max": 2000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "tier_variations": [
                {
                  "name": "Garansi",
                  "options": [
                    "1 Bulan",
                    "3 Bulan",
                    "6 Bulan",
                    "Lifetime"
                  ],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  81,
                  0,
                  0,
                  0,
                  0,
                  81
                ],
                "rcount_with_context": 27,
                "rcount_with_image": 7
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": 0,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": false,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "show_free_shipping": false,
              "bundle_deal_id": 0,
              "can_use_bundle_deal": false,
              "welcome_package_type": 0,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "KOTA JAKARTA UTARA",
              "has_model_with_available_shopee_stock": false,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "is_service_by_shopee": false,
              "shop_rating": 4.841217,
              "flash_sale_ongoing_sold_count": 0,
              "shop_name": "tokojualbarangmurahbanget",
              "flash_sale_stock": 0,
              "need_kyc": false,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "display_sold_count": 179,
                "rounded_display_sold_count": 179,
                "display_sold_count_text": "179",
                "rounded_local_monthly_sold_count": 0,
                "rounded_local_historical_sold_count": 179,
                "local_historical_sold_count_text": "179",
                "rounded_global_historical_sold_count": 179,
                "global_historical_sold_count_text": "179"
              },
              "global_cat": {
                "catid": [
                  100644,
                  101937
                ]
              },
              "is_mart": false
            }
          },
          {
            "itemid": 28428658559,
            "shopid": 24843249,
            "item_basic": {
              "itemid": 28428658559,
              "shopid": 24843249,
              "name": "Lifetime Wink Premium Ios Dengan Akun Lifetime",
              "label_ids": [
                700025282,
                1718087960,
                1428713,
                2018619,
                1400285055,
                1015914,
                700190087,
                298933384
              ],
              "image": "id-11134207-7rbk9-m70szmcj1r8q4e",
              "images": [
                "id-11134207-7rbk9-m70szmcj1r8q4e"
              ],
              "currency": "IDR",
              "stock": 0,
              "status": 1,
              "ctime": 1741262134,
              "sold": 0,
              "historical_sold": 1000,
              "liked": false,
              "liked_count": 147,
              "catid": 100642,
              "brand": "",
              "cmt_count": 412,
              "flag": 0,
              "cb_option": 0,
              "item_status": "sold_out",
              "price": 4900000000,
              "price_min": 4900000000,
              "price_max": 4900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "tier_variations": [
                {
                  "name": "Garansi",
                  "options": [
                    "1 Bulan",
                    "3 Bulan",
                    "6 Bulan",
                    "Lifetime"
                  ],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.398058252427185,
                "rating_count": [
                  412,
                  49,
                  6,
                  13,
                  8,
                  336
                ],
                "rcount_with_context": 63,
                "rcount_with_image": 11
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": 0,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": false,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "show_free_shipping": false,
              "bundle_deal_id": 0,
              "can_use_bundle_deal": false,
              "welcome_package_type": 0,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "KOTA JAKARTA UTARA",
              "has_model_with_available_shopee_stock": false,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "is_service_by_shopee": false,
              "shop_rating": 4.841217,
              "flash_sale_ongoing_sold_count": 0,
              "shop_name": "tokojualbarangmurahbanget",
              "flash_sale_stock": 0,
              "need_kyc": false,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "display_sold_count": 1000,
                "rounded_display_sold_count": 1000,
                "display_sold_count_text": "1RB+",
                "rounded_local_monthly_sold_count": 0,
                "rounded_local_historical_sold_count": 1000,
                "local_historical_sold_count_text": "1RB+",
                "rounded_global_historical_sold_count": 1000,
                "global_historical_sold_count_text": "1RB+"
              },
              "global_cat": {
                "catid": [
                  100642,
                  100764,
                  101514
                ]
              },
              "is_mart": false
            }
          },
          {
            "itemid": 27655356650,
            "shopid": 24843249,
            "item_basic": {
              "itemid": 27655356650,
              "shopid": 24843249,
              "name": "Lifetime Wink Premium IOS Akun Lifetime Gratis Panduan",
              "label_ids": [
                700025282,
                1428713,
                1718087960,
                1400285055,
                1015914,
                700190087,
                2018619,
                298933384
              ],
              "image": "id-11134207-7r98v-lxqom2g6wtml3e",
              "images": [
                "id-11134207-7r98v-lxqom2g6wtml3e"
              ],
              "currency": "IDR",
              "stock": 0,
              "status": 1,
              "ctime": 1721037188,
              "sold": 0,
              "historical_sold": 565,
              "liked": false,
              "liked_count": 200,
              "catid": 100642,
              "brand": "",
              "cmt_count": 174,
              "flag": 0,
              "cb_option": 0,
              "item_status": "sold_out",
              "price": 2800000000,
              "price_min": 2800000000,
              "price_max": 2800000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "tier_variations": [
                {
                  "name": "Garansi",
                  "options": [
                    "1 Bulan",
                    "3 Bulan",
                    "6 Bulan",
                    "Lifetime"
                  ],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.704761904761905,
                "rating_count": [
                  210,
                  9,
                  4,
                  2,
                  10,
                  185
                ],
                "rcount_with_context": 46,
                "rcount_with_image": 12
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": 0,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": false,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "show_free_shipping": false,
              "bundle_deal_id": 0,
              "can_use_bundle_deal": false,
              "welcome_package_type": 0,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "KOTA JAKARTA UTARA",
              "has_model_with_available_shopee_stock": false,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "is_service_by_shopee": false,
              "shop_rating": 4.841217,
              "flash_sale_ongoing_sold_count": 0,
              "shop_name": "tokojualbarangmurahbanget",
              "flash_sale_stock": 0,
              "need_kyc": false,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "display_sold_count": 565,
                "rounded_display_sold_count": 565,
                "display_sold_count_text": "565",
                "rounded_local_monthly_sold_count": 0,
                "rounded_local_historical_sold_count": 565,
                "local_historical_sold_count_text": "565",
                "rounded_global_historical_sold_count": 565,
                "global_historical_sold_count_text": "565"
              },
              "global_cat": {
                "catid": [
                  100642,
                  100764,
                  101514
                ]
              },
              "is_mart": false
            }
          },
          {
            "itemid": 27007361678,
            "shopid": 24843249,
            "item_basic": {
              "itemid": 27007361678,
              "shopid": 24843249,
              "name": "LIFETIME MEITU PREMIUM IOS Dengan Akun Baru Gratis",
              "label_ids": [
                700025282,
                1428713,
                1718087960,
                1015914,
                700190087,
                1400285055,
                2018619,
                298933384
              ],
              "image": "id-11134207-7r98x-lyorxul6ueq0ea",
              "images": [
                "id-11134207-7r98x-lyorxul6ueq0ea"
              ],
              "currency": "IDR",
              "stock": 0,
              "status": 1,
              "ctime": 1723101682,
              "sold": 0,
              "historical_sold": 583,
              "liked": false,
              "liked_count": 210,
              "catid": 100642,
              "brand": "",
              "cmt_count": 230,
              "flag": 0,
              "cb_option": 0,
              "item_status": "sold_out",
              "price": 2800000000,
              "price_min": 2800000000,
              "price_max": 2800000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "tier_variations": [
                {
                  "name": "Tipe",
                  "options": [
                    "1 Bulan",
                    "3 Bulan",
                    "6 Bulan",
                    "Lifetime"
                  ],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.6059322033898304,
                "rating_count": [
                  236,
                  15,
                  5,
                  7,
                  4,
                  205
                ],
                "rcount_with_context": 47,
                "rcount_with_image": 14
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": 0,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": false,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "show_free_shipping": false,
              "bundle_deal_id": 0,
              "can_use_bundle_deal": false,
              "welcome_package_type": 0,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "KOTA JAKARTA UTARA",
              "has_model_with_available_shopee_stock": false,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "is_service_by_shopee": false,
              "shop_rating": 4.841217,
              "flash_sale_ongoing_sold_count": 0,
              "shop_name": "tokojualbarangmurahbanget",
              "flash_sale_stock": 0,
              "need_kyc": false,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "display_sold_count": 583,
                "rounded_display_sold_count": 583,
                "display_sold_count_text": "583",
                "rounded_local_monthly_sold_count": 0,
                "rounded_local_historical_sold_count": 583,
                "local_historical_sold_count_text": "583",
                "rounded_global_historical_sold_count": 583,
                "global_historical_sold_count_text": "583"
              },
              "global_cat": {
                "catid": [
                  100642,
                  100764,
                  101514
                ]
              },
              "is_mart": false
            }
          },
          {
            "itemid": 26234469530,
            "shopid": 24843249,
            "item_basic": {
              "itemid": 26234469530,
              "shopid": 24843249,
              "name": "LIFETIME STUDYX AI PREMIUM",
              "label_ids": [
                2018619,
                700025282,
                1428713,
                1718087960,
                1015914,
                700190087,
                1400285055
              ],
              "image": "id-11134207-7rbk9-m8vxim02cgsxa8",
              "images": [
                "id-11134207-7rbk9-m8vxim02cgsxa8"
              ],
              "currency": "IDR",
              "stock": 0,
              "status": 1,
              "ctime": 1745327806,
              "sold": 0,
              "historical_sold": 52,
              "liked": false,
              "liked_count": 8,
              "catid": 100642,
              "brand": "",
              "cmt_count": 15,
              "flag": 0,
              "cb_option": 0,
              "item_status": "sold_out",
              "price": 7000000000,
              "price_min": 7000000000,
              "price_max": 7000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "tier_variations": [
                {
                  "name": "Tipe",
                  "options": [
                    "1 Bulan",
                    "3 Bulan",
                    "6 Bulan",
                    "Lifetime"
                  ],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.733333333333333,
                "rating_count": [
                  15,
                  1,
                  0,
                  0,
                  0,
                  14
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": 0,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": false,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "show_free_shipping": false,
              "bundle_deal_id": 0,
              "can_use_bundle_deal": false,
              "welcome_package_type": 0,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "KOTA JAKARTA UTARA",
              "has_model_with_available_shopee_stock": false,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "is_service_by_shopee": false,
              "shop_rating": 4.841217,
              "flash_sale_ongoing_sold_count": 0,
              "shop_name": "tokojualbarangmurahbanget",
              "flash_sale_stock": 0,
              "need_kyc": false,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "display_sold_count": 52,
                "rounded_display_sold_count": 52,
                "display_sold_count_text": "52",
                "rounded_local_monthly_sold_count": 0,
                "rounded_local_historical_sold_count": 52,
                "local_historical_sold_count_text": "52",
                "rounded_global_historical_sold_count": 52,
                "global_historical_sold_count_text": "52"
              },
              "global_cat": {
                "catid": [
                  100642,
                  100764,
                  101514
                ]
              },
              "is_mart": false
            }
          },
          {
            "itemid": 23759130212,
            "shopid": 24843249,
            "item_basic": {
              "itemid": 23759130212,
              "shopid": 24843249,
              "name": "LIFETIME ELEVEN LABS PREMIUM",
              "label_ids": [
                700025282,
                1400285055,
                1718087960,
                1428713,
                2018619,
                700810080
              ],
              "image": "id-11134207-7r992-lo71mrlaqsdg1c",
              "images": [
                "id-11134207-7r992-lo71mrlaqsdg1c"
              ],
              "currency": "IDR",
              "stock": 0,
              "status": 1,
              "ctime": 1698272001,
              "sold": 0,
              "historical_sold": 3000,
              "liked": false,
              "liked_count": 1099,
              "catid": 100642,
              "brand": "",
              "cmt_count": 1651,
              "flag": 0,
              "cb_option": 0,
              "item_status": "sold_out",
              "price": 12600000000,
              "price_min": 12600000000,
              "price_max": 12600000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "tier_variations": [
                {
                  "name": "Garansi",
                  "options": [
                    "1 Bulan",
                    "3 Bulan",
                    "6 Bulan",
                    "Lifetime"
                  ],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.806433721575153,
                "rating_count": [
                  1803,
                  40,
                  13,
                  40,
                  70,
                  1640
                ],
                "rcount_with_context": 388,
                "rcount_with_image": 65
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": 0,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": false,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "show_free_shipping": false,
              "bundle_deal_id": 0,
              "can_use_bundle_deal": false,
              "welcome_package_type": 0,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "KOTA JAKARTA UTARA",
              "has_model_with_available_shopee_stock": false,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "is_service_by_shopee": false,
              "shop_rating": 4.841217,
              "flash_sale_ongoing_sold_count": 0,
              "shop_name": "tokojualbarangmurahbanget",
              "flash_sale_stock": 0,
              "need_kyc": false,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "display_sold_count": 3000,
                "rounded_display_sold_count": 3000,
                "display_sold_count_text": "3RB+",
                "rounded_local_monthly_sold_count": 0,
                "rounded_local_historical_sold_count": 3000,
                "local_historical_sold_count_text": "3RB+",
                "rounded_global_historical_sold_count": 3000,
                "global_historical_sold_count_text": "3RB+"
              },
              "global_cat": {
                "catid": [
                  100642,
                  100773
                ]
              },
              "is_mart": false
            }
          }
        ],
        "total_fetched": 6,
        "total_count": 6,
        "pages_fetched": 1,
        "has_more": false
      }
    },
    "https://shopee.co.id/search?keyword=ac%20window": {
      "page_url": "https://shopee.co.id/search?keyword=ac%20window",
      "page_type": "search",
      "page_params": {
        "keyword": "ac window",
        "filters": {}
      },
      "items": {
        "items": [
          {
            "item_basic": {
              "itemid": 24075913288,
              "shopid": 1084191383,
              "name": "PROMO AC Sharp 1/2 PK A5BEY STANDARD FREE PASANG + AKSESORIS Raja AC Bekasi",
              "label_ids": [
                1049112,
                822059908662278,
                298458395,
                1718087960,
                1428713,
                1015914,
                700190087,
                1400285055,
                822120592853526,
                298463379,
                1059151,
                1718093079,
                2018619,
                2023641,
                298893311,
                825465608497696,
                700830032,
                298933384,
                700810080,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7ras9-m0oicw8ybxp2fc",
              "images": [
                "id-11134207-7ras9-m0oicw8ybxp2fc",
                "id-11134207-7rasb-m0oicw8ydc9id0",
                "id-11134207-7ra0q-md5koeebmtsz32",
                "id-11134207-7r98y-lw5lqak60fcc5c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1713778218,
              "sold": 38,
              "historical_sold": 458,
              "liked": false,
              "liked_count": 587,
              "view_count": null,
              "catid": 100010,
              "brand": "Sharp",
              "cmt_count": 254,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 259300000000,
              "price_min": 259300000000,
              "price_max": 259300000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Pembelian",
                  "options": [
                    "UNIT ONLY",
                    "Unit Only + Material",
                    "+ PASANG",
                    "+ Pasang Tradein"
                  ],
                  "images": [
                    "id-11134207-7r991-lw5lqak61twscf",
                    "id-11134207-7ra0u-mc66ettl19y911",
                    "id-11134207-7ra0s-md5koeebo8dfc9",
                    "id-11134207-7ra0k-mc66ettkzvdt13"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.833976833976834,
                "rating_count": [
                  259,
                  3,
                  2,
                  5,
                  15,
                  234
                ],
                "rcount_with_context": 88,
                "rcount_with_image": 82
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 258300000000,
                "strikethrough_price": 259300000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1303365536858112,
                "discount_text": null,
                "model_id": 166435872497,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1303365536858112,
                  "voucher_code": "RAJAVPB2",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1764833040,
                    "end_time": 1772902740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 200000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 259300000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 458,
                "rounded_local_monthly_sold_count": 38,
                "local_monthly_sold_count_text": "38",
                "rounded_display_sold_count": 458,
                "display_sold_count_text": "458"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Raja AC Bekasi",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 355937842,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWia5mjbrfMRG6A2PLwcexvwO2wNjZQKTiHKiwSqS9Yk4T3J68TbuyYnvZ0P1yGwNS5uKF6eGNLFeHZjYSWdCsDcfzt+t5Rk00PO9AvsidTLG5eQN7FChJQIUvHwd74k3PjCWMIRu9RYlP8GdP05U9R+0pyPpWKI5upIWVLpFscASddDox1RlC9HxfXRneal3ewK6kwqhWhFv8E/L0nLOBhrK6MQImCFlpOePeDUTW9SJi8b81xIAzKhEo3FA0YfNjrXZSFg7qL7C5pKugVm0Z7cX0ohxFB6y3m2r7eDIxrG0Uc79KLilikc4iGKjlXadQF/z6Yzy2nQK+8vZICqi6Y3sRO/o5GflugSzW3IzFKBLVXQmd057bZYpoUSkoUWXidPrmv8+xpC74UMLT/0r4D8j9EhlIgf/k4DnmMEi4+cxKomcEHHmlRHBAKd/zXNyeL14JsijQH+z0L/KCN/D0xeLp+GSxhY/QORR18QW1+3+RA==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELLc3KkBGIiU/IoBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYTVtamJyZk1SRzZBMlBMd2NleHZ3TzJ3TmpaUUtUaUhLaXdTcVM5WWs0VDNKNjhUYnV5WW52WjBQMXlHd05TNXVLRjZlR05MRmVIWmpZU1dkQ3NEY2Z6dCt0NVJrMDBQTzlBdnNpZFRMRzVlUU43RkNoSlFJVXZId2Q3NGszUGpDV01JUnU5UllsUDhHZFAwNVU5UiswcHlQcFdLSTV1cElXVkxwRnNjQVNkZERveDFSbEM5SHhmWFJuZWFsM2V3SzZrd3FoV2hGdjhFL0wwbkxPQmhySzZNUUltQ0ZscE9lUGVEVVRXOVNKaThiODF4SUF6S2hFbzNGQTBZZk5qclhaU0ZnN3FMN0M1cEt1Z1ZtMFo3Y1gwb2h4RkI2eTNtMnI3ZURJeHJHMFVjNzlLTGlsaWtjNGlHS2psWGFkUUYvejZZenkyblFLKzh2WklDcWk2WTNzUk8vbzVHZmx1Z1N6VzNJekZLQkxWWFFtZDA1N2JaWXBvVVNrb1VXWGlkUHJtdjgreHBDNzRVTUxULzByNEQ4ajlFaGxJZ2YvazREbm1NRWk0K2N4S29tY0VISG1sUkhCQUtkL3pYTnllTDE0SnNpalFIK3owTC9LQ04vRDB4ZUxwK0dTeGhZL1FPUlIxOFFXMSszK1JBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABmPP+vMMH6QEAAACgxB3xP/EBAAAAYHn49D/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENexSuR6qwMUGhDQAAABAKpItB+A2AgI6f+QiwDoLh6JwB4g4Mqo0Gx40G1Y4G8JAGyA8B4hnECkVtVXhMakUwT0RRc0xURXNMVEVzTFRFc0xURXNNUzR4Tml3eExEQXVPREkxTXpjek5EUTFOek0yT1RJMU9Dd3dMamtzTFRFc01TNHdNREF3TVRJekxEYzBOall1TkRjM056RTVPRGMzT1RjM0xERXVNVE13TVRRME1EVTRNRFV6T1RjMk5pd3RNUjA2OGxWTUlNR0MwaHN0eGY2U1B6VUFBSUEvT1oySWhRMWJzU0pDUVRCd3owdTg4MnBDU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBY1FBQUFJQlR2Z2MvZVFBQUFDQUh1dmsrZ1FFQUFBQkFIV2h0UVlrQkFBQUFvTVZ4WDBHUkFRQUFBQWlBa0haQm1RRUFBQUFnZXRselFhRUJBQUFBb0pnNVpVR3BBUUFBQUhCR2RuNUI2QUVCZ0FLVUE0b0NQakF1TURBMU5qVXlMREV1TURBd01EQXdMREV1TURBd01EQXdMREV1TWpFd09EVTVMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUtQd3ZVb1hJL3lQNkVDN1JDNGdleTIwRUhCQWdBQUFBQUFBQUNBeWdJTENBRVJBQUFBQUFBQUFBREtBZ3NJQWhFQUFBQUFBQUFBZ05rQ2dJcFB3dzlHVVVIaEFzRDZFZWhFQmtWQjZRSm11VTZZY25PMFFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDVrRG5ZaUZEVnV4SWtLaEF6Qnd6MHU4ODJwQ3VRT2RjdGR1eTI3Z1A4RUQyZS9QZmVydDRqL0pBNHdWNWlpd2l1WS8wUU42bGZaOXNOZnNQL29EQ1FvRlNYTk9VRUlRQVBvREN3b0hVbTlwVkdsbGNoQUQrZ01OQ2dsUGNtUmxjbFJwWlhJUUEvb0RFUW9OU1hSbGJWQnlhV05sVkdsbGNoQURnUVFBQUFBQW03QUJQNGtFQUFBQUFEZ2QrejZRQkpzRG1BVEsvK3VqcGg2Z0JLU0wzL0JrdUFTc2lQR280UXpBQk5DVDBKbkdEY2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFCQVdpWjNQNkVGQUFBQUFBQUE4RCtwQlFBQUFBQUFBUEEvc1FVQUFBQmdyVi96UDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQS6TcJN+hmTBgoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChIKDHZvdWNoZXJfbGVucxICEAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoNCgdpc192c2t1EgIoAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI0MDc1OTEzMjg4ChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHOwH8+CgICAgICogAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySXtELiB7LbQQfIlBlNFQVJDSA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 24075913288,
            "shopid": 1084191383,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":57966914,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m0oicw8ybxp2fc\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1049112,822059908662278,298458395,1718087960,1428713,1015914,700190087,1400285055,822120592853526,298463379,1059151,1718093079,2018619,2023641,298893311,825465608497696,700830032,298933384,700810080,298468389,1718088045],\"merge_rank\":0,\"model_id\":166435872497,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":57966914,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m0oicw8ybxp2fc\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1049112,822059908662278,298458395,1718087960,1428713,1015914,700190087,1400285055,822120592853526,298463379,1059151,1718093079,2018619,2023641,298893311,825465608497696,700830032,298933384,700810080,298468389,1718088045],\"merge_rank\":0,\"model_id\":166435872497,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELLc3KkBGIiU/IoBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYTVtamJyZk1SRzZBMlBMd2NleHZ3TzJ3TmpaUUtUaUhLaXdTcVM5WWs0VDNKNjhUYnV5WW52WjBQMXlHd05TNXVLRjZlR05MRmVIWmpZU1dkQ3NEY2Z6dCt0NVJrMDBQTzlBdnNpZFRMRzVlUU43RkNoSlFJVXZId2Q3NGszUGpDV01JUnU5UllsUDhHZFAwNVU5UiswcHlQcFdLSTV1cElXVkxwRnNjQVNkZERveDFSbEM5SHhmWFJuZWFsM2V3SzZrd3FoV2hGdjhFL0wwbkxPQmhySzZNUUltQ0ZscE9lUGVEVVRXOVNKaThiODF4SUF6S2hFbzNGQTBZZk5qclhaU0ZnN3FMN0M1cEt1Z1ZtMFo3Y1gwb2h4RkI2eTNtMnI3ZURJeHJHMFVjNzlLTGlsaWtjNGlHS2psWGFkUUYvejZZenkyblFLKzh2WklDcWk2WTNzUk8vbzVHZmx1Z1N6VzNJekZLQkxWWFFtZDA1N2JaWXBvVVNrb1VXWGlkUHJtdjgreHBDNzRVTUxULzByNEQ4ajlFaGxJZ2YvazREbm1NRWk0K2N4S29tY0VISG1sUkhCQUtkL3pYTnllTDE0SnNpalFIK3owTC9LQ04vRDB4ZUxwK0dTeGhZL1FPUlIxOFFXMSszK1JBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABmPP+vMMH6QEAAACgxB3xP/EBAAAAYHn49D/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENexSuR6qwMUGhDQAAABAKpItB+A2AgI6f+QiwDoLh6JwB4g4Mqo0Gx40G1Y4G8JAGyA8B4hnECkVtVXhMakUwT0RRc0xURXNMVEVzTFRFc0xURXNNUzR4Tml3eExEQXVPREkxTXpjek5EUTFOek0yT1RJMU9Dd3dMamtzTFRFc01TNHdNREF3TVRJekxEYzBOall1TkRjM056RTVPRGMzT1RjM0xERXVNVE13TVRRME1EVTRNRFV6T1RjMk5pd3RNUjA2OGxWTUlNR0MwaHN0eGY2U1B6VUFBSUEvT1oySWhRMWJzU0pDUVRCd3owdTg4MnBDU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBY1FBQUFJQlR2Z2MvZVFBQUFDQUh1dmsrZ1FFQUFBQkFIV2h0UVlrQkFBQUFvTVZ4WDBHUkFRQUFBQWlBa0haQm1RRUFBQUFnZXRselFhRUJBQUFBb0pnNVpVR3BBUUFBQUhCR2RuNUI2QUVCZ0FLVUE0b0NQakF1TURBMU5qVXlMREV1TURBd01EQXdMREV1TURBd01EQXdMREV1TWpFd09EVTVMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUtQd3ZVb1hJL3lQNkVDN1JDNGdleTIwRUhCQWdBQUFBQUFBQUNBeWdJTENBRVJBQUFBQUFBQUFBREtBZ3NJQWhFQUFBQUFBQUFBZ05rQ2dJcFB3dzlHVVVIaEFzRDZFZWhFQmtWQjZRSm11VTZZY25PMFFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDVrRG5ZaUZEVnV4SWtLaEF6Qnd6MHU4ODJwQ3VRT2RjdGR1eTI3Z1A4RUQyZS9QZmVydDRqL0pBNHdWNWlpd2l1WS8wUU42bGZaOXNOZnNQL29EQ1FvRlNYTk9VRUlRQVBvREN3b0hVbTlwVkdsbGNoQUQrZ01OQ2dsUGNtUmxjbFJwWlhJUUEvb0RFUW9OU1hSbGJWQnlhV05sVkdsbGNoQURnUVFBQUFBQW03QUJQNGtFQUFBQUFEZ2QrejZRQkpzRG1BVEsvK3VqcGg2Z0JLU0wzL0JrdUFTc2lQR280UXpBQk5DVDBKbkdEY2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFCQVdpWjNQNkVGQUFBQUFBQUE4RCtwQlFBQUFBQUFBUEEvc1FVQUFBQmdyVi96UDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQS6TcJN+hmTBgoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChIKDHZvdWNoZXJfbGVucxICEAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoNCgdpc192c2t1EgIoAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI0MDc1OTEzMjg4ChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHOwH8+CgICAgICogAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySXtELiB7LbQQfIlBlNFQVJDSA==",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24075913288",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25975909087,
              "shopid": 1084191383,
              "name": "AC Sharp 1/2 PK A5ZCY LOW WATT FREE PASANG + AKSESORIS Raja AC Bekasi",
              "label_ids": [
                298458395,
                1718087960,
                1428713,
                1400285055,
                1015914,
                700190087,
                298463379,
                1718093079,
                2018619,
                2023641,
                298893311,
                1049112,
                1059151,
                822059908662278,
                825465608497696,
                837860934119952,
                822120592853526,
                700830032,
                298933384,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7ras8-m0oicw8yhjyu53",
              "images": [
                "id-11134207-7ras8-m0oicw8yhjyu53",
                "id-11134207-7rasa-m0oicw8yiyjaa7",
                "id-11134207-7ra0u-md5j9eqw2zsl79",
                "id-11134207-7ra0t-md5j9eqw4ed17d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1713778639,
              "sold": 25,
              "historical_sold": 346,
              "liked": false,
              "liked_count": 538,
              "view_count": null,
              "catid": 100010,
              "brand": "Sharp",
              "cmt_count": 181,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 290700000000,
              "price_min": 290700000000,
              "price_max": 290700000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "pembelian",
                  "options": [
                    "UNIT ONLY",
                    "Unit Only + Material",
                    "+ PASANG",
                    "+ Pasang Tradein"
                  ],
                  "images": [
                    "id-11134207-7ra0g-md5j9eqw5sxh08",
                    "id-11134207-7ra0q-mc66ettkygtd7a",
                    "id-11134207-7r990-luesfru5a4h798",
                    "id-11134207-7ra0k-mc66ettkzvdt13"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.897849462365591,
                "rating_count": [
                  186,
                  1,
                  1,
                  1,
                  10,
                  173
                ],
                "rcount_with_context": 56,
                "rcount_with_image": 42
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 289700000000,
                "strikethrough_price": 290700000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1303365536858112,
                "discount_text": null,
                "model_id": 207455751507,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1303365536858112,
                  "voucher_code": "RAJAVPB2",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1764833040,
                    "end_time": 1772902740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 200000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 290700000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 346,
                "rounded_local_monthly_sold_count": 25,
                "local_monthly_sold_count_text": "25",
                "rounded_display_sold_count": 346,
                "display_sold_count_text": "346"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Raja AC Bekasi",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 355937836,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiYi8a4c72FOgo+f12u1uqBGdugkPBo/QJ+gO7K7SmAoJe7spix+atHiZMznnybpCLNM5Ut0c04QFVQRkirvL/2qqxofKqKBAaVYrkO1HPLWjFc5i6zfX2oE4xiPVkxFU1217sBt78bH4nqB6E7DpBODw5rTm/GNLl7wXT/U0+UTxA8FVB/u73uOM9dea5l76oKOkaNvG6SPOd0nXmq3zQ4FGEf8sCUfZbV+0r4/as0moF/ssWYzuYxNSa1UoegKrdk0vonzEotz0iY0UNMEwLxM57mL0Iy5FG+v1FwB/iPP0/4ckhEUvsyjckxZiMTFpSE9VTSR/ul6uf+Y2dH9iS6bKeayplMjtxRwGT+M8LNcUPYr2qRQaJmBwsZ8zbLJin6NHP1ApqDFvrt5cJOg788hcG5mXZ8pvTZlg7D5qA4Oiu50guTEr7VJgBifT+G2Uz8S4/A5Lg/pmybuGeIb0Vgg0SgpAzhAeJFcJZ5IhKeyiQ==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EKzc3KkBGICU/IoBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWWk4YTRjNzJGT2dvK2YxMnUxdXFCR2R1Z2tQQm8vUUorZ083SzdTbUFvSmU3c3BpeCthdEhpWk16bm55YnBDTE5NNVV0MGMwNFFGVlFSa2lydkwvMnFxeG9mS3FLQkFhVllya08xSFBMV2pGYzVpNnpmWDJvRTR4aVBWa3hGVTEyMTdzQnQ3OGJING5xQjZFN0RwQk9EdzVyVG0vR05MbDd3WFQvVTArVVR4QThGVkIvdTczdU9NOWRlYTVsNzZvS09rYU52RzZTUE9kMG5YbXEzelE0RkdFZjhzQ1VmWmJWKzByNC9hczBtb0Yvc3NXWXp1WXhOU2ExVW9lZ0tyZGswdm9uekVvdHowaVkwVU5NRXdMeE01N21MMEl5NUZHK3YxRndCL2lQUDAvNGNraEVVdnN5amNreFppTVRGcFNFOVZUU1IvdWw2dWYrWTJkSDlpUzZiS2VheXBsTWp0eFJ3R1QrTThMTmNVUFlyMnFSUWFKbUJ3c1o4emJMSmluNk5IUDFBcHFERnZydDVjSk9nNzg4aGNHNW1YWjhwdlRabGc3RDVxQTRPaXU1MGd1VEVyN1ZKZ0JpZlQrRzJVejhTNC9BNUxnL3BteWJ1R2VJYjBWZ2cwU2dwQXpoQWVKRmNKWjVJaEtleWlRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB7qqlp48H6QEAAACgxB3xP/EBAAAAIJor9T/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENXI/C9dp2I0GhDQAAACC2aX5B+A2AgKKu5QmwDujgz6sB4g4Mqo0Gx40G1Y4G8JAGyA8C4hnICkVtY3dMall5TVRjeUxDMHhMQzB4TEMweExDMHhMREF1TmpJNExERXNNQzQyTWprd01ERXdOelF6TURjME56TXpMREF1T1N3dE1Td3hMakF3TURBeE1qTXNNVE0xTnpFdU9EQTNPVFl6TlRnMk16TXNNUzR4TkRnME5EVXdORFk1T1RFMU1qQTJMQzB4SFNacFdVd2c0YmFhRHkwTEtSOC9OUUFBZ0Q4NWgzV1BXcVdyRTBKQmx0eWVNQW9rWjBKS0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJTRGdpcjg1WURFUUFBQUFBQUFBQUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFXZ2tJZ0lDQWdJQUVFQUJhQndpcTg1WURFQUJpRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJpRGdpcTg1WURFUUFBQUFBQUFQQS9ZZzRJclBPV0F4RUFBQUFBQUFBQUFHSU9DS3Z6bGdNUkFBQUFBQUFBQUFCeEFBQUFvQzNpQno5NUFBQUFJRkRSQkQrQkFRQUFBTURpTG5CQmlRRUFBQUJnamo1b1FaRUJBQUFBOENsT2ZFR1pBUUFBQUdEbDJIVkJvUUVBQUFEZ2JGMXdRYWtCQUFBQUlDa2JnMEhvQVFHQUFwUURpZ0krTUM0d01EUTVNelVzTVM0d01EQXdNREFzTVM0d01URTFPRElzTVM0eU1UZzFOamtzTVM0ek1EQXdNREFzTVM0ME1EQXdNREFzTVM0MU1EQXdNRENaQW45cXZIU1RHT1Evb1FJaVFkSHdOdnpRUWNFQ0FBQUFBQUFBQUlES0Fnc0lBUkVBQUFBQUFBQUFBTW9DQ3dnQ0VRQUFBQUFBQUFDQTJRSUFEdUxRRC9GUVFlRUNRSE1PeDdwRFRrSHBBdktVTDNyS3pySkJpZ013QUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL21RT0hkWTlhcGFzVFFxRURsdHllTUFva1owSzVBMkc2M0UrVzZlQS93UU9HZG54V2NrWGpQOGtEdXpCUDBsZnM1ai9SQTk2am1LaWdXKzAvK2dNSkNnVkpjMDVRUWhBQStnTUxDZ2RTYjJsVWFXVnlFQVA2QXcwS0NVOXlaR1Z5VkdsbGNoQUQrZ01SQ2cxSmRHVnRVSEpwWTJWVWFXVnlFQU9CQkFBQUFJQ3QwQUUvaVFRQUFBQkE2cGY3UHBBRW13T1lCTXIvNjZPbUhxQUV2L3lua0lzQnVBVHNwN20wNlF6QUJLdWs0Y1QwRGNrRWV4U3VSK0Y2bEQvaEJIc1Vya2ZoZXBRLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBQ0E2RFowUDZFRkFBQUFBQUFBOEQrcEJRQUFBS0J3TC9BL3NRVUFBQUJBUW4velA3a0ZBQUFBd016TTlEL0JCUUFBQUdCbVp2WS95UVVBQUFBQUFBRDRQdz096hkEuU3BTfoZnQYKFAoOc2hvcF9ibGFja2xpc3QSAigACikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDEwMTA0LDYxMTAyMDMwNAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigAChIKDHZvdWNoZXJfbGVucxICEAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KFAoOdXNlcl9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKDQoHaXNfdnNrdRICKAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMjU5NzU5MDkwODcKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAALAfz4KAgICAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJSJB0fA2/NBB8iUGU0VBUkNI",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 25975909087,
            "shopid": 1084191383,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":31890274,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras8-m0oicw8yhjyu53\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[298458395,1718087960,1428713,1400285055,1015914,700190087,298463379,1718093079,2018619,2023641,298893311,1049112,1059151,822059908662278,825465608497696,837860934119952,822120592853526,700830032,298933384,1718088045,298468389],\"merge_rank\":0,\"model_id\":207455751507,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":31890274,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras8-m0oicw8yhjyu53\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[298458395,1718087960,1428713,1400285055,1015914,700190087,298463379,1718093079,2018619,2023641,298893311,1049112,1059151,822059908662278,825465608497696,837860934119952,822120592853526,700830032,298933384,1718088045,298468389],\"merge_rank\":0,\"model_id\":207455751507,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EKzc3KkBGICU/IoBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWWk4YTRjNzJGT2dvK2YxMnUxdXFCR2R1Z2tQQm8vUUorZ083SzdTbUFvSmU3c3BpeCthdEhpWk16bm55YnBDTE5NNVV0MGMwNFFGVlFSa2lydkwvMnFxeG9mS3FLQkFhVllya08xSFBMV2pGYzVpNnpmWDJvRTR4aVBWa3hGVTEyMTdzQnQ3OGJING5xQjZFN0RwQk9EdzVyVG0vR05MbDd3WFQvVTArVVR4QThGVkIvdTczdU9NOWRlYTVsNzZvS09rYU52RzZTUE9kMG5YbXEzelE0RkdFZjhzQ1VmWmJWKzByNC9hczBtb0Yvc3NXWXp1WXhOU2ExVW9lZ0tyZGswdm9uekVvdHowaVkwVU5NRXdMeE01N21MMEl5NUZHK3YxRndCL2lQUDAvNGNraEVVdnN5amNreFppTVRGcFNFOVZUU1IvdWw2dWYrWTJkSDlpUzZiS2VheXBsTWp0eFJ3R1QrTThMTmNVUFlyMnFSUWFKbUJ3c1o4emJMSmluNk5IUDFBcHFERnZydDVjSk9nNzg4aGNHNW1YWjhwdlRabGc3RDVxQTRPaXU1MGd1VEVyN1ZKZ0JpZlQrRzJVejhTNC9BNUxnL3BteWJ1R2VJYjBWZ2cwU2dwQXpoQWVKRmNKWjVJaEtleWlRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB7qqlp48H6QEAAACgxB3xP/EBAAAAIJor9T/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENXI/C9dp2I0GhDQAAACC2aX5B+A2AgKKu5QmwDujgz6sB4g4Mqo0Gx40G1Y4G8JAGyA8C4hnICkVtY3dMall5TVRjeUxDMHhMQzB4TEMweExDMHhMREF1TmpJNExERXNNQzQyTWprd01ERXdOelF6TURjME56TXpMREF1T1N3dE1Td3hMakF3TURBeE1qTXNNVE0xTnpFdU9EQTNPVFl6TlRnMk16TXNNUzR4TkRnME5EVXdORFk1T1RFMU1qQTJMQzB4SFNacFdVd2c0YmFhRHkwTEtSOC9OUUFBZ0Q4NWgzV1BXcVdyRTBKQmx0eWVNQW9rWjBKS0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJTRGdpcjg1WURFUUFBQUFBQUFBQUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFXZ2tJZ0lDQWdJQUVFQUJhQndpcTg1WURFQUJpRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJpRGdpcTg1WURFUUFBQUFBQUFQQS9ZZzRJclBPV0F4RUFBQUFBQUFBQUFHSU9DS3Z6bGdNUkFBQUFBQUFBQUFCeEFBQUFvQzNpQno5NUFBQUFJRkRSQkQrQkFRQUFBTURpTG5CQmlRRUFBQUJnamo1b1FaRUJBQUFBOENsT2ZFR1pBUUFBQUdEbDJIVkJvUUVBQUFEZ2JGMXdRYWtCQUFBQUlDa2JnMEhvQVFHQUFwUURpZ0krTUM0d01EUTVNelVzTVM0d01EQXdNREFzTVM0d01URTFPRElzTVM0eU1UZzFOamtzTVM0ek1EQXdNREFzTVM0ME1EQXdNREFzTVM0MU1EQXdNRENaQW45cXZIU1RHT1Evb1FJaVFkSHdOdnpRUWNFQ0FBQUFBQUFBQUlES0Fnc0lBUkVBQUFBQUFBQUFBTW9DQ3dnQ0VRQUFBQUFBQUFDQTJRSUFEdUxRRC9GUVFlRUNRSE1PeDdwRFRrSHBBdktVTDNyS3pySkJpZ013QUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL21RT0hkWTlhcGFzVFFxRURsdHllTUFva1owSzVBMkc2M0UrVzZlQS93UU9HZG54V2NrWGpQOGtEdXpCUDBsZnM1ai9SQTk2am1LaWdXKzAvK2dNSkNnVkpjMDVRUWhBQStnTUxDZ2RTYjJsVWFXVnlFQVA2QXcwS0NVOXlaR1Z5VkdsbGNoQUQrZ01SQ2cxSmRHVnRVSEpwWTJWVWFXVnlFQU9CQkFBQUFJQ3QwQUUvaVFRQUFBQkE2cGY3UHBBRW13T1lCTXIvNjZPbUhxQUV2L3lua0lzQnVBVHNwN20wNlF6QUJLdWs0Y1QwRGNrRWV4U3VSK0Y2bEQvaEJIc1Vya2ZoZXBRLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBQ0E2RFowUDZFRkFBQUFBQUFBOEQrcEJRQUFBS0J3TC9BL3NRVUFBQUJBUW4velA3a0ZBQUFBd016TTlEL0JCUUFBQUdCbVp2WS95UVVBQUFBQUFBRDRQdz096hkEuU3BTfoZnQYKFAoOc2hvcF9ibGFja2xpc3QSAigACikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDEwMTA0LDYxMTAyMDMwNAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigAChIKDHZvdWNoZXJfbGVucxICEAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KFAoOdXNlcl9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKDQoHaXNfdnNrdRICKAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMjU5NzU5MDkwODcKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAALAfz4KAgICAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJSJB0fA2/NBB8iUGU0VBUkNI",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25975909087",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52053072191,
              "shopid": 592127666,
              "name": "AC DAIKIN STV15CXV / FTV15CXV14 ,STANDAR 0,5 PK MALAYSIA",
              "label_ids": [
                2018619,
                844931064601283,
                298463379,
                1718093079,
                1049127,
                1049112,
                822059908662278,
                834403089593352,
                825465608497696,
                822120592853526,
                298488495,
                2023641,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82252-mi8iruolce8395",
              "images": [
                "id-11134207-82252-mi8iruolce8395",
                "id-11134207-8224r-mi8iruolf7cz27",
                "id-11134207-8224w-mi8iruoldssj8f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765708840,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100010,
              "brand": "Daikin",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 384900000000,
              "price_min": 384900000000,
              "price_max": 384900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 384900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 335296117529,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 384900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "A1 ELECTRONIC",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 665159997,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiY/9Il/XoZbI+53wSL5rVV8klUnvegRtpyQRK8lj26Kvf0ZsJdwESCQAx2FoEvj0zLKIbKg3pNiqLe0ivEazpvW/DdKf+ktnP8sLCjkqNJE67xYmGLAyqbybFSm82wzi8UrHF10wI80OiveaFMDBNSLJdunoSDfJtyDCEptimaHRtfCPqVNWUSWfSH20majBAwWx/J+7u837BiBQ8mfloBEUrcNmTHMVJabc9IMn1Pz1r2pGkIkrCmLIYHdysybPPVyaJ8sQasdgjvDV25HiPf4C6MwiW2d3ikYbtrGOwyNEKLMl/wpRzQnfpQzRsdTU2vyDx4zwyMn/5Xx/XWXGLiNSVzPul33ETt37/eAzOv0zSzYIy4dQx8XOH30LQ7S+QYAoA74zifp0r3ahKdxzK7Q5Vym2CdUufb/rqUN7TSKyeadQuQ/iqVfEsvv1HIXzws2L0NeyW5KLImRTe1eO14AQgXF6owAu4o754dxWPalgg==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EL2Slr0CGMmoitYBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWS85SWwvWG9aYkkrNTN3U0w1clZWOGtsVW52ZWdSdHB5UVJLOGxqMjZLdmYwWnNKZHdFU0NRQXgyRm9FdmowekxLSWJLZzNwTmlxTGUwaXZFYXpwdlcvRGRLZitrdG5QOHNMQ2prcU5KRTY3eFltR0xBeXFieWJGU204Mnd6aThVckhGMTB3STgwT2l2ZWFGTURCTlNMSmR1bm9TRGZKdHlEQ0VwdGltYUhSdGZDUHFWTldVU1dmU0gyMG1hakJBd1d4L0orN3U4MzdCaUJROG1mbG9CRVVyY05tVEhNVkphYmM5SU1uMVB6MXIycEdrSWtyQ21MSVlIZHlzeWJQUFZ5YUo4c1Fhc2RnanZEVjI1SGlQZjRDNk13aVcyZDNpa1lidHJHT3d5TkVLTE1sL3dwUnpRbmZwUXpSc2RUVTJ2eUR4NHp3eU1uLzVYeC9YV1hHTGlOU1Z6UHVsMzNFVHQzNy9lQXpPdjB6U3pZSXk0ZFF4OFhPSDMwTFE3UytRWUFvQTc0emlmcDByM2FoS2R4eks3UTVWeW0yQ2RVdWZiL3JxVU43VFNLeWVhZFF1US9pcVZmRXN2djFISVh6d3MyTDBOZXlXNUtMSW1SVGUxZU8xNEFRZ1hGNm93QXU0bzc1NGR4V1BhbGdnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABkqGLoaoB6QEAAADglSXxP/EBAAAA4Ob48z/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5EN7FG4HlEjBUGhDQAAAGCXg2BB+A2AgNDumQuwDvyC28MB4g4Mqo0Gx40G1Y4G8JAGyA8D4hncCkVtQXdMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTVM0d05UWXlNRE00T1RNNE1EZzBOeklzTFRFc0xURXNNUzR3TURBd01USXpMREV6Tnk0MU56TXhOemd3T0RZMk16VTJOaXd3TGpVNE1UVTFOVEk1TlRjek5UazJOeklzTFRFZDRpL2NTeUM2dVpBRUxacVptVDQxQUFDQVAwb09DTUNINGdRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJTRGdpcjg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJd0lmaUJCRUFBQUFBQUFBQUFGb0hDTUNINGdRUUFGb0hDS3J6bGdNUUFGb0hDS3p6bGdNUUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJd0lmaUJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBWWc0SXEvT1dBeEVBQUFBQUFBQUFBSEVBQUFCQUZQSUpQM2tBQUFDZ2puWWdQNEVCQUFBQWdNRWRkRUdKQVFBQUFHQy9WVnRCa1FFQUFBQllNZk42UVprQkFBQUFvQ3NvZTBHaEFRQUFBTUI2YzJKQnFRRUFBQUNBOURDQ1FlZ0JBWUFDbEFPS0FqNHdMakF3TlRZd055d3hMakF3TURBd01Dd3hMakEwTnpFMk55d3hMakl6TXpNMk9Dd3hMak13TURBd01Dd3hMalF3TURBd01Dd3hMalV3TURBd01Ka0NNek16TXpNejB6K2hBcTN2TkhqQ1NjRkJ3UUlBQUFBQUFBQUFnTW9DQ3dnQkVRQUFBQUFBQUFBQXlnSUxDQUlSQUFBQUFBQUFBSURaQWdBL3A0M21RMVpCNFFLZ1o4dzFURXBFUWVrQ0JKZFNjQllZcFVHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCs1QXl1UnQrT21IdDgvd1FOSyt1SE92MmZpUDhrRDZxeEJNUzVGNWovUkEyL05Jc0JWdGV3LytnTU5DZ2xQY21SbGNsUnBaWElRQS9vREVRb05TWFJsYlZCeWFXTmxWR2xsY2hBRCtnTUpDZ1ZKYzA1UVFoQUIrZ01MQ2dkU2IybFVhV1Z5RUFPQkJBQUFBT0F6NEFNL2lRUUFBQUFncjlYOFBwQUVtd09ZQk1hYWtlVlVvQVR3dTVuc0JLZ0VnUEtMcUFtNEJKQzI4cnNFd0FTQThvdW9DY2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFEZ2N2ZDJQNkVGQUFBQUFBQUE4RCtwQlFBQUFPQXh3ZkEvc1FVQUFBQkE0THZ6UDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQIKFvoZkwYKEgoMdm91Y2hlcl9sZW5zEgIQAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF81MjA1MzA3MjE5MQoNCgdpc192c2t1EgIoAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoYChJyYXBpZF9ib29zdF90b2dnbGUSAigAsB+AgICAoICBLsgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 52053072191,
            "shopid": 592127666,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":8658107,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mi8iruolce8395\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,844931064601283,298463379,1718093079,1049127,1049112,822059908662278,834403089593352,825465608497696,822120592853526,298488495,2023641,298468389,1718088045],\"merge_rank\":0,\"model_id\":335296117529,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":8658107,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mi8iruolce8395\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,844931064601283,298463379,1718093079,1049127,1049112,822059908662278,834403089593352,825465608497696,822120592853526,298488495,2023641,298468389,1718088045],\"merge_rank\":0,\"model_id\":335296117529,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EL2Slr0CGMmoitYBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWS85SWwvWG9aYkkrNTN3U0w1clZWOGtsVW52ZWdSdHB5UVJLOGxqMjZLdmYwWnNKZHdFU0NRQXgyRm9FdmowekxLSWJLZzNwTmlxTGUwaXZFYXpwdlcvRGRLZitrdG5QOHNMQ2prcU5KRTY3eFltR0xBeXFieWJGU204Mnd6aThVckhGMTB3STgwT2l2ZWFGTURCTlNMSmR1bm9TRGZKdHlEQ0VwdGltYUhSdGZDUHFWTldVU1dmU0gyMG1hakJBd1d4L0orN3U4MzdCaUJROG1mbG9CRVVyY05tVEhNVkphYmM5SU1uMVB6MXIycEdrSWtyQ21MSVlIZHlzeWJQUFZ5YUo4c1Fhc2RnanZEVjI1SGlQZjRDNk13aVcyZDNpa1lidHJHT3d5TkVLTE1sL3dwUnpRbmZwUXpSc2RUVTJ2eUR4NHp3eU1uLzVYeC9YV1hHTGlOU1Z6UHVsMzNFVHQzNy9lQXpPdjB6U3pZSXk0ZFF4OFhPSDMwTFE3UytRWUFvQTc0emlmcDByM2FoS2R4eks3UTVWeW0yQ2RVdWZiL3JxVU43VFNLeWVhZFF1US9pcVZmRXN2djFISVh6d3MyTDBOZXlXNUtMSW1SVGUxZU8xNEFRZ1hGNm93QXU0bzc1NGR4V1BhbGdnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABkqGLoaoB6QEAAADglSXxP/EBAAAA4Ob48z/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5EN7FG4HlEjBUGhDQAAAGCXg2BB+A2AgNDumQuwDvyC28MB4g4Mqo0Gx40G1Y4G8JAGyA8D4hncCkVtQXdMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTVM0d05UWXlNRE00T1RNNE1EZzBOeklzTFRFc0xURXNNUzR3TURBd01USXpMREV6Tnk0MU56TXhOemd3T0RZMk16VTJOaXd3TGpVNE1UVTFOVEk1TlRjek5UazJOeklzTFRFZDRpL2NTeUM2dVpBRUxacVptVDQxQUFDQVAwb09DTUNINGdRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJTRGdpcjg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJd0lmaUJCRUFBQUFBQUFBQUFGb0hDTUNINGdRUUFGb0hDS3J6bGdNUUFGb0hDS3p6bGdNUUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJd0lmaUJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBWWc0SXEvT1dBeEVBQUFBQUFBQUFBSEVBQUFCQUZQSUpQM2tBQUFDZ2puWWdQNEVCQUFBQWdNRWRkRUdKQVFBQUFHQy9WVnRCa1FFQUFBQllNZk42UVprQkFBQUFvQ3NvZTBHaEFRQUFBTUI2YzJKQnFRRUFBQUNBOURDQ1FlZ0JBWUFDbEFPS0FqNHdMakF3TlRZd055d3hMakF3TURBd01Dd3hMakEwTnpFMk55d3hMakl6TXpNMk9Dd3hMak13TURBd01Dd3hMalF3TURBd01Dd3hMalV3TURBd01Ka0NNek16TXpNejB6K2hBcTN2TkhqQ1NjRkJ3UUlBQUFBQUFBQUFnTW9DQ3dnQkVRQUFBQUFBQUFBQXlnSUxDQUlSQUFBQUFBQUFBSURaQWdBL3A0M21RMVpCNFFLZ1o4dzFURXBFUWVrQ0JKZFNjQllZcFVHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCs1QXl1UnQrT21IdDgvd1FOSyt1SE92MmZpUDhrRDZxeEJNUzVGNWovUkEyL05Jc0JWdGV3LytnTU5DZ2xQY21SbGNsUnBaWElRQS9vREVRb05TWFJsYlZCeWFXTmxWR2xsY2hBRCtnTUpDZ1ZKYzA1UVFoQUIrZ01MQ2dkU2IybFVhV1Z5RUFPQkJBQUFBT0F6NEFNL2lRUUFBQUFncjlYOFBwQUVtd09ZQk1hYWtlVlVvQVR3dTVuc0JLZ0VnUEtMcUFtNEJKQzI4cnNFd0FTQThvdW9DY2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFEZ2N2ZDJQNkVGQUFBQUFBQUE4RCtwQlFBQUFPQXh3ZkEvc1FVQUFBQkE0THZ6UDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQIKFvoZkwYKEgoMdm91Y2hlcl9sZW5zEgIQAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF81MjA1MzA3MjE5MQoNCgdpc192c2t1EgIoAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoYChJyYXBpZF9ib29zdF90b2dnbGUSAigAsB+AgICAoICBLsgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52053072191",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26970879014,
              "shopid": 85961994,
              "name": "Midea AC Inverter 1 PK MSIAF-09CRDN2X / 1PK MSIAF-09CRDN2",
              "label_ids": [
                844931064601283,
                13,
                38,
                39,
                47,
                1000501,
                1000509,
                1400095067,
                1400285005,
                1400066568,
                1718093079,
                2018618,
                2018619,
                1012729,
                2153644,
                1718087960,
                1428713,
                2213652,
                298463379,
                825465608497696,
                822059908662278,
                834403089593352,
                822120592853526,
                700005490,
                1049120,
                1049122,
                1059152,
                700005495,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7rash-m4qyzy3xyepq11",
              "images": [
                "id-11134207-7rash-m4qyzy3xyepq11",
                "id-11134207-7rase-m3vmh23n1skuf8",
                "id-11134207-7rash-m4qyzy3xzta6d3",
                "sg-11134201-7rfi0-m3vm8ls8c9eede",
                "sg-11134201-7rfif-m3vm8lyc3bbv6e",
                "sg-11134201-7rfid-m3vm8m3lvnh9b4",
                "sg-11134201-7rfgn-m3vm8m9znnyzbc",
                "sg-11134201-7rfig-m3vm8mhhbcx3ab",
                "sg-11134201-7rfi9-m3vm8mn1384n99"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1734409964,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100010,
              "brand": "Midea",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 379900000000,
              "price_min": 379900000000,
              "price_max": 379900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmit-m4qz0yt84l6ibe.16000081736308041.mp4",
                  "thumb_url": "id-11110105-6kmit-m4qz0yt84l6ibe_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6kmit-m4qz0yt84l6ibe",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmit-m4qz0yt84l6ibe.16000081736308041.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmit-m4qz0yt84l6ibe.16000081736308041.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmit-m4qz0yt84l6ibe.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Pemasangan",
                  "options": [
                    "Tanpa Pasang",
                    "Plus Pasang"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 379900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 247270633032,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 379900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": " Sajun Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 677385979,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWia1P0U88bf08Dk1KPyfv0nMQk1698VRLn1vV4De1QEe6Li0gR32VjLPAnFY2if+uBSvSx7jS0MVA+cHkPvp4eWFfXWUobR5PhpK5BFGdk7PT5Vd/H4W9VOfhvuLHlQNGus4f2VqtDNx22rH0wS1w7a9AURPdXcNYUb3oJrxEREn2sweisEmUl89dg6BmBKHfWskeRo558bPxki/EF2WqNkb7i7itLKmlscnd/E3U12iq4nsZGK5f/XbyclxKhdgUDJevk6XMqKUP2k+g4e/Qh2fId1DirvpcwkFg3A10iy5D2bGbP47aXz+l1FZVaSHJdnTJZ8uA8yVzCDWVDeqs6zxwUt3m0Wc0QkxmcIcuxofI49DlwzKVeF4OavQ4Bb/tMMSGXC2gIbL401DfF3Mvu8moTxrqhrasEFCCcSC3pG7uPU4+N6kEziTzWBlkGK32fw3rJHlibz7dETu891T8tH8GWIYK+SwZW6xmMeOBPVcyw==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EPutgMMCGLag1tcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYTFQMFU4OGJmMDhEazFLUHlmdjBuTVFrMTY5OFZSTG4xdlY0RGUxUUVlNkxpMGdSMzJWakxQQW5GWTJpZit1QlN2U3g3alMwTVZBK2NIa1B2cDRlV0ZmWFdVb2JSNVBocEs1QkZHZGs3UFQ1VmQvSDRXOVZPZmh2dUxIbFFOR3VzNGYyVnF0RE54MjJySDB3UzF3N2E5QVVSUGRYY05ZVWIzb0pyeEVSRW4yc3dlaXNFbVVsODlkZzZCbUJLSGZXc2tlUm81NThiUHhraS9FRjJXcU5rYjdpN2l0TEttbHNjbmQvRTNVMTJpcTRuc1pHSzVmL1hieWNseEtoZGdVREpldms2WE1xS1VQMmsrZzRlL1FoMmZJZDFEaXJ2cGN3a0ZnM0ExMGl5NUQyYkdiUDQ3YVh6K2wxRlpWYVNISmRuVEpaOHVBOHlWekNEV1ZEZXFzNnp4d1V0M20wV2MwUWt4bWNJY3V4b2ZJNDlEbHd6S1ZlRjRPYXZRNEJiL3RNTVNHWEMyZ0liTDQwMURmRjNNdnU4bW9UeHJxaHJhc0VGQ0NjU0MzcEc3dVBVNCtONmtFemlUeldCbGtHSzMyZnczckpIbGliejdkRVR1ODkxVDh0SDhHV0lZSytTd1pXNnhtTWVPQlBWY3l3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB4qDlod4B6QEAAADglSXxP/EBAAAAQKKL8j/IDA/gDAHpDAAAAEDQ3Ko/iQ17FK5H4XqUP5ENSOF6FJZKBkGhDQAAAEBFamFB+A2AgK6v5AuwDq7TjtkB4g4Mqo0Gx40G1Y4G8JAGyA8E4hnYCkVtc3dMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTUM0ME1EWTROemt3TnpZMk5EazNNVGt6TkN3dE1Td3RNU3d3TGpVMU56WXhPRFkzTmpBeE1qazNNamNzTVRJdU1qUXdNalUxTURZME5EVTBPRFkyTERBdU5qRXpNamczT0Rnek56QTJPVFkzTkN3dE1SMmFNK2hMSUtta3JRUXRtcG1aUGpVQUFJQS9TZzRJcS9PV0F4RUFBQUFBQUFBQUFFb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0Rnanc5K0VFRVFBQUFBQUFBQUFBU2c0SWlJbmlCQkVBQUFBQUFBQUFBRW9PQ0tyemxnTVJBQUFBQUFBQUFBQktEZ2lzODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNEluUHJoQkJFQUFBQUFBQUFBQUZJT0NQRDM0UVFSQUFBQUFBQUFBQUJTRGdpSWllSUVFUUFBQUFBQUFBQUFVZzRJcXZPV0F4RUFBQUFBQUFBQUFGSU9DS3p6bGdNUkFBQUFBQUFBQUFCU0RnaXI4NVlERVFBQUFBQUFBQUFBV2djSWlJbmlCQkFBV2djSXF2T1dBeEFBV2djSXJQT1dBeEFBV2djSXEvT1dBeEFBV2drSWdJQ0FnSUFFRUFCYUJ3aWMrdUVFRUFCYUJ3anc5K0VFRUFCaURnanc5K0VFRVFBQUFBQUFBQUFBWWc0SWlJbmlCQkVBQUFBQUFBQUFBR0lPQ0tyemxnTVJBQUFBQUFBQThEOWlEZ2lzODVZREVRQUFBQUFBQUFBQVlnNElxL09XQXhFQUFBQUFBQUFBQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NKejY0UVFSQUFBQUFBQUFBQUJwU0hrV01RZXdBc0Z4QUFBQUlMdWxEajk1QUFBQWdFL0hGeitCQVFBQUFBQU8vM2hCaVFFQUFBQmc3ZTFYUVpFQkFBQUFXSW42ZmtHWkFRQUFBS0JjMzRCQm9RRUFBQUJBQUNkZ1Fha0JBQUFBc0J6cGhFR0tBajR3TGpBd05UZzVOeXd4TGpBd01EQXdNQ3d4TGpBd09UY3hNaXd4TGpJek1qZzJPU3d4TGpNd01EQXdNQ3d4TGpRd01EQXdNQ3d4TGpVd01EQXdNSmtDTXpNek16TXoweitoQXEzdk5IakNTY0ZCd1FKSWVSWXhCN0FDd2NvQ0N3Z0JFVWg1RmpFSHNBTEJ5Z0lMQ0FJUkFBQUFBQUFBQUlEWkFnQ2F1Q01ML0dCQjRRSUFkRUVLakh4RVFla0NJbjhoNW9KVHFVRzVBMlFOU0kzZ0JlQS93UU8xdmMzdmlFM2lQOGtEdmZvMEc1Qjc1VC9SQTlZRDZsV285ZXMvZ1FRQUFBQWdVZzBHUDRrRUFBQUE0S0xrQUQrUUJKc0RtQVQrM3FlQ2dsT2dCSmJNNXZJSXFBU0E4b3VvQ2JnRTZxV2xOY0FFZ1BLTHFBbkpCSHNVcmtmaGVwUS80UVI3Rks1SDRYcVVQK2tFQUFBQUFBQUE4RC94QkFBQUFBQUFBUEEvK1FRQUFBQUFBQUR3UDRFRkFBQUFBQUFBOEQrSkJRQUFBQUFBQVBBL2tRVUFBQUFBQUFEd1A1a0ZBQUFBQUk0bmVEK2hCUUFBQUFBQUFQQS9xUVVBQUFBQXlDZndQN0VGQUFBQTROUzU4eis1QlFBQUFNRE16UFEvd1FVQUFBQmdabWIyUDhrRkFBQUFBQUFBK0Q4PeoZAgoZ+hmTBgoUCg51c2VyX2JsYWNrbGlzdBICKAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yNjk3MDg3OTAxNAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChQKDnNob3BfYmxhY2tsaXN0EgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAGwH4CAgIDogIGYgAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 26970879014,
            "shopid": 85961994,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":1476094,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rash-m4qyzy3xyepq11\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,13,38,39,47,1000501,1000509,1400095067,1400285005,1400066568,1718093079,2018618,2018619,1012729,2153644,1718087960,1428713,2213652,298463379,825465608497696,822059908662278,834403089593352,822120592853526,700005490,1049120,1049122,1059152,700005495,298468389,1718088045],\"merge_rank\":0,\"model_id\":247270633032,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":1476094,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rash-m4qyzy3xyepq11\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,13,38,39,47,1000501,1000509,1400095067,1400285005,1400066568,1718093079,2018618,2018619,1012729,2153644,1718087960,1428713,2213652,298463379,825465608497696,822059908662278,834403089593352,822120592853526,700005490,1049120,1049122,1059152,700005495,298468389,1718088045],\"merge_rank\":0,\"model_id\":247270633032,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EPutgMMCGLag1tcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYTFQMFU4OGJmMDhEazFLUHlmdjBuTVFrMTY5OFZSTG4xdlY0RGUxUUVlNkxpMGdSMzJWakxQQW5GWTJpZit1QlN2U3g3alMwTVZBK2NIa1B2cDRlV0ZmWFdVb2JSNVBocEs1QkZHZGs3UFQ1VmQvSDRXOVZPZmh2dUxIbFFOR3VzNGYyVnF0RE54MjJySDB3UzF3N2E5QVVSUGRYY05ZVWIzb0pyeEVSRW4yc3dlaXNFbVVsODlkZzZCbUJLSGZXc2tlUm81NThiUHhraS9FRjJXcU5rYjdpN2l0TEttbHNjbmQvRTNVMTJpcTRuc1pHSzVmL1hieWNseEtoZGdVREpldms2WE1xS1VQMmsrZzRlL1FoMmZJZDFEaXJ2cGN3a0ZnM0ExMGl5NUQyYkdiUDQ3YVh6K2wxRlpWYVNISmRuVEpaOHVBOHlWekNEV1ZEZXFzNnp4d1V0M20wV2MwUWt4bWNJY3V4b2ZJNDlEbHd6S1ZlRjRPYXZRNEJiL3RNTVNHWEMyZ0liTDQwMURmRjNNdnU4bW9UeHJxaHJhc0VGQ0NjU0MzcEc3dVBVNCtONmtFemlUeldCbGtHSzMyZnczckpIbGliejdkRVR1ODkxVDh0SDhHV0lZSytTd1pXNnhtTWVPQlBWY3l3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB4qDlod4B6QEAAADglSXxP/EBAAAAQKKL8j/IDA/gDAHpDAAAAEDQ3Ko/iQ17FK5H4XqUP5ENSOF6FJZKBkGhDQAAAEBFamFB+A2AgK6v5AuwDq7TjtkB4g4Mqo0Gx40G1Y4G8JAGyA8E4hnYCkVtc3dMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTUM0ME1EWTROemt3TnpZMk5EazNNVGt6TkN3dE1Td3RNU3d3TGpVMU56WXhPRFkzTmpBeE1qazNNamNzTVRJdU1qUXdNalUxTURZME5EVTBPRFkyTERBdU5qRXpNamczT0Rnek56QTJPVFkzTkN3dE1SMmFNK2hMSUtta3JRUXRtcG1aUGpVQUFJQS9TZzRJcS9PV0F4RUFBQUFBQUFBQUFFb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0Rnanc5K0VFRVFBQUFBQUFBQUFBU2c0SWlJbmlCQkVBQUFBQUFBQUFBRW9PQ0tyemxnTVJBQUFBQUFBQUFBQktEZ2lzODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNEluUHJoQkJFQUFBQUFBQUFBQUZJT0NQRDM0UVFSQUFBQUFBQUFBQUJTRGdpSWllSUVFUUFBQUFBQUFBQUFVZzRJcXZPV0F4RUFBQUFBQUFBQUFGSU9DS3p6bGdNUkFBQUFBQUFBQUFCU0RnaXI4NVlERVFBQUFBQUFBQUFBV2djSWlJbmlCQkFBV2djSXF2T1dBeEFBV2djSXJQT1dBeEFBV2djSXEvT1dBeEFBV2drSWdJQ0FnSUFFRUFCYUJ3aWMrdUVFRUFCYUJ3anc5K0VFRUFCaURnanc5K0VFRVFBQUFBQUFBQUFBWWc0SWlJbmlCQkVBQUFBQUFBQUFBR0lPQ0tyemxnTVJBQUFBQUFBQThEOWlEZ2lzODVZREVRQUFBQUFBQUFBQVlnNElxL09XQXhFQUFBQUFBQUFBQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NKejY0UVFSQUFBQUFBQUFBQUJwU0hrV01RZXdBc0Z4QUFBQUlMdWxEajk1QUFBQWdFL0hGeitCQVFBQUFBQU8vM2hCaVFFQUFBQmc3ZTFYUVpFQkFBQUFXSW42ZmtHWkFRQUFBS0JjMzRCQm9RRUFBQUJBQUNkZ1Fha0JBQUFBc0J6cGhFR0tBajR3TGpBd05UZzVOeXd4TGpBd01EQXdNQ3d4TGpBd09UY3hNaXd4TGpJek1qZzJPU3d4TGpNd01EQXdNQ3d4TGpRd01EQXdNQ3d4TGpVd01EQXdNSmtDTXpNek16TXoweitoQXEzdk5IakNTY0ZCd1FKSWVSWXhCN0FDd2NvQ0N3Z0JFVWg1RmpFSHNBTEJ5Z0lMQ0FJUkFBQUFBQUFBQUlEWkFnQ2F1Q01ML0dCQjRRSUFkRUVLakh4RVFla0NJbjhoNW9KVHFVRzVBMlFOU0kzZ0JlQS93UU8xdmMzdmlFM2lQOGtEdmZvMEc1Qjc1VC9SQTlZRDZsV285ZXMvZ1FRQUFBQWdVZzBHUDRrRUFBQUE0S0xrQUQrUUJKc0RtQVQrM3FlQ2dsT2dCSmJNNXZJSXFBU0E4b3VvQ2JnRTZxV2xOY0FFZ1BLTHFBbkpCSHNVcmtmaGVwUS80UVI3Rks1SDRYcVVQK2tFQUFBQUFBQUE4RC94QkFBQUFBQUFBUEEvK1FRQUFBQUFBQUR3UDRFRkFBQUFBQUFBOEQrSkJRQUFBQUFBQVBBL2tRVUFBQUFBQUFEd1A1a0ZBQUFBQUk0bmVEK2hCUUFBQUFBQUFQQS9xUVVBQUFBQXlDZndQN0VGQUFBQTROUzU4eis1QlFBQUFNRE16UFEvd1FVQUFBQmdabWIyUDhrRkFBQUFBQUFBK0Q4PeoZAgoZ+hmTBgoUCg51c2VyX2JsYWNrbGlzdBICKAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yNjk3MDg3OTAxNAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChQKDnNob3BfYmxhY2tsaXN0EgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAGwH4CAgIDogIGYgAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26970879014",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28704559702,
              "shopid": 85961994,
              "name": "[FREE PACKING KAYU KARGO] Sharp AC Split 1PK AH-A9ZEY / AC Sharp Standard 1 PK AHA9ZEY",
              "label_ids": [
                13,
                38,
                39,
                47,
                1000501,
                1000509,
                1400095067,
                1400285005,
                844931064601283,
                1400066568,
                1718093079,
                1918643,
                1428713,
                1718087960,
                2018618,
                2018619,
                1012729,
                1015914,
                700190087,
                2153644,
                700830032,
                1400285055,
                2213652,
                298463379,
                1059152,
                1049122,
                822059908662278,
                834403089593352,
                825465608497696,
                822120592853526,
                298468389,
                1718088045
              ],
              "image": "id-11134207-81ztj-mfhqixml30264b",
              "images": [
                "id-11134207-81ztj-mfhqixml30264b",
                "sg-11134201-7rdye-lxc1a0fa29nq7a",
                "sg-11134201-7rdwy-lxc1a0y5anns55",
                "sg-11134201-7rd6l-lwgppgttutmyc5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1720149121,
              "sold": 26,
              "historical_sold": 79,
              "liked": false,
              "liked_count": 75,
              "view_count": null,
              "catid": 100010,
              "brand": "Sharp",
              "cmt_count": 17,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 303900000000,
              "price_min": 303900000000,
              "price_max": 303900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Pemasangan",
                  "options": [
                    "Tanpa Pasang",
                    "Plus Pasang"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.647058823529412,
                "rating_count": [
                  17,
                  0,
                  0,
                  3,
                  0,
                  14
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 303900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 260684884016,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 303900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 79,
                "rounded_local_monthly_sold_count": 26,
                "local_monthly_sold_count_text": "26",
                "rounded_display_sold_count": 79,
                "display_sold_count_text": "79"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": " Sajun Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 640532205,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiZzA3StcncznUIqz2AqLjVS2Q7rEtU6Qbtts5g5uaFBe1PEAbx6dXVv3ZRYaP5IMl6b1tmIe5h0AdtLWkXhiAdcfOa/3Pq0tI2c7ntB+3txMrBdHQmjwJ75f9oNBsuJ2Luk80/G18KpldcwIO1zn0e6TNj5YcvH1nNDe0kFpuhcmbyqmsg+gRkQf3r/Ng+Un4pRH5n53J0ykxkuWfJ5O+r4M9Uy5axEIHu7zdh7IryuqcLzY4oKeEebyLFBQk5fqA7gg3gn7Gjw+pnzpDT3LnLOxWP9+2foRSZKtxe4ct4JtpzwZTlr7185hGEpuFCB31Du+9JLQejtq9Z1vL3Ls+Kqkj4TmJ7AnKifaNRmiyCgwA8J8EwYj6IuFuiR04ugm87YnelwrHZxC/CIcMGWCIdc2dMCWPLy6UTjYusceaad7Jo0SqSyu3aGBIoJtOUmIyBKqi2UFAMEm+HOpwt5e6LKr1shNifOcxL7FAYpZh/yFg==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EO39trECGNqYy9ABMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWnpBM1N0Y25jem5VSXF6MkFxTGpWUzJRN3JFdFU2UWJ0dHM1ZzV1YUZCZTFQRUFieDZkWFZ2M1pSWWFQNUlNbDZiMXRtSWU1aDBBZHRMV2tYaGlBZGNmT2EvM1BxMHRJMmM3bnRCKzN0eE1yQmRIUW1qd0o3NWY5b05Cc3VKMkx1azgwL0cxOEtwbGRjd0lPMXpuMGU2VE5qNVljdkgxbk5EZTBrRnB1aGNtYnlxbXNnK2dSa1FmM3IvTmcrVW40cFJINW41M0oweWt4a3VXZko1TytyNE05VXk1YXhFSUh1N3pkaDdJcnl1cWNMelk0b0tlRWVieUxGQlFrNWZxQTdnZzNnbjdHancrcG56cERUM0xuTE94V1A5KzJmb1JTWkt0eGU0Y3Q0SnRwendaVGxyNzE4NWhHRXB1RkNCMzFEdSs5SkxRZWp0cTlaMXZMM0xzK0txa2o0VG1KN0FuS2lmYU5SbWl5Q2d3QThKOEV3WWo2SXVGdWlSMDR1Z204N1luZWx3ckhaeEMvQ0ljTUdXQ0lkYzJkTUNXUEx5NlVUall1c2NlYWFkN0pvMFNxU3l1M2FHQklvSnRPVW1JeUJLcWkyVUZBTUVtK0hPcHd0NWU2TEtyMXNoTmlmT2N4TDdGQVlwWmgveUZnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB5YDN3dgB6QEAAADglSXxP/EBAAAAwGui8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENPgrX42CeQ0GhDQAAAGR3p55B+A2AgNTB5giwDsml4ZkB4g4Mqo0Gx40G1Y4G8JAGyA8F4hncCkVtdzBMamsxTEMweExDMHhMQzB4TEMweExEVXNNU3d3TGpjeE1URTJNRFk1TVRBMk9EUTRPVFFzTUM0NUxDMHhMREF1TXpnMk1qWXpPVEF4T0RZeU9EVXpPRFlzTUM0d01UUXlOVEUwTVRBek5qRTVPRFV3TWl3d0xqVTRNVFUxTlRJNU5UY3pOVGsyTnpJc0xURWQ0aS9jU3lEWXU2YzlMV1ptbmtBMUFBQ0FQemtBWUVwNFdwSVdRa0ZNQlJaQWU0dHRRa29RQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRW9PQ0tyemxnTVJBQUFBQUFBQUFBQktEZ2lzODVZREVRQUFBQUFBQUFBQVNnNEluUHJoQkJFQUFBQUFBQUFBQUVvT0NLdnpsZ01SQUFBQUFBQUFBQUJTRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJTRGdpcTg1WURFUUFBQUFBQUFBQUFVZzRJclBPV0F4RUFBQUFBQUFBQUFGSU9DS3Z6bGdNUkFBQUFBQUFBQUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCYUNRaUFnSUNBZ0FRUUFHSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBWWc0SXEvT1dBeEVBQUFBQUFBQUFBR2tQck1nb1c1bER3WEVBQUFEZ2NORU9QM2tBQUFBQWlYQUVQNEVCQUFBQTRMUEZja0dKQVFBQUFPQkxKMFJCa1FFQUFBQmNuVXAxUVprQkFBQUE0TEpYZVVHaEFRQUFBT0FNTlV0QnFRRUFBQUI4Vkw1OFFlZ0JBWUFDbEFPS0FqNHdMakF3TlRnMU1pd3hMakF3TURBd01Dd3hMakF4TXpJd01Dd3hMakkwTXpVNE15d3hMak13TURBd01Dd3hMalF3TURBd01Dd3hMalV3TURBd01Ka0NBQUFBQUFBQUZFQ2hBcTN2TkhqQ1NjRkJ3UUlQck1nb1c1bER3Y29DQ3dnQkVRK3N5Q2hibVVQQnlnSUxDQUlSckxyUklCNWxROEhaQWdBYnZLay9ZbFpCNFFMQWtUcWhiRFVzUWVrQytzNWorSFN3cFVHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCtaQXdCZ1NuaGFraFpDb1FOTUJSWkFlNHR0UXJrREl1L1NKczBJNGovQkF6YnlYK25QLytNL3lRT2RpeXZLK3FQbVA5RUR2VEF5Uk1ocDdELzZBd2tLQlVselRsQkNFQUQ2QXdzS0IxSnZhVlJwWlhJUUEvb0REUW9KVDNKa1pYSlVhV1Z5RUFMNkF4RUtEVWwwWlcxUWNtbGpaVlJwWlhJUUE0RUVBQUFBSUVYUkJqK0pCQUFBQUNETGVBSS9rQVNiQTVnRS90Nm5nb0pUb0FUbjBOR1ZDNmdFZ0x6QmxndTRCSm5yYjhBRWdMekJsZ3ZKQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQVFJZjRkeitoQlFBQUFBQUFBUEEvcVFVQUFBQmdFVGJ3UDdFRkFBQUE0TGJsOHorNUJRQUFBTURNelBRL3dRVUFBQUJnWm1iMlA4a0ZBQUFBQUFBQStEOD3qGQS2TcRN8hkDmr48+hmTBgogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KEgoMdm91Y2hlcl9sZW5zEgIQAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yODcwNDU1OTcwMgoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoNCgdpc192c2t1EgIoAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0ChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKACwH4CAgICggIAoyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 28704559702,
            "shopid": 85961994,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":128574,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztj-mfhqixml30264b\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1718093079,1918643,1428713,1718087960,2018618,2018619,1012729,1015914,700190087,2153644,700830032,1400285055,2213652,298463379,1059152,1049122,822059908662278,834403089593352,825465608497696,822120592853526,298468389,1718088045],\"merge_rank\":0,\"model_id\":260684884016,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":128574,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztj-mfhqixml30264b\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1718093079,1918643,1428713,1718087960,2018618,2018619,1012729,1015914,700190087,2153644,700830032,1400285055,2213652,298463379,1059152,1049122,822059908662278,834403089593352,825465608497696,822120592853526,298468389,1718088045],\"merge_rank\":0,\"model_id\":260684884016,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EO39trECGNqYy9ABMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWnpBM1N0Y25jem5VSXF6MkFxTGpWUzJRN3JFdFU2UWJ0dHM1ZzV1YUZCZTFQRUFieDZkWFZ2M1pSWWFQNUlNbDZiMXRtSWU1aDBBZHRMV2tYaGlBZGNmT2EvM1BxMHRJMmM3bnRCKzN0eE1yQmRIUW1qd0o3NWY5b05Cc3VKMkx1azgwL0cxOEtwbGRjd0lPMXpuMGU2VE5qNVljdkgxbk5EZTBrRnB1aGNtYnlxbXNnK2dSa1FmM3IvTmcrVW40cFJINW41M0oweWt4a3VXZko1TytyNE05VXk1YXhFSUh1N3pkaDdJcnl1cWNMelk0b0tlRWVieUxGQlFrNWZxQTdnZzNnbjdHancrcG56cERUM0xuTE94V1A5KzJmb1JTWkt0eGU0Y3Q0SnRwendaVGxyNzE4NWhHRXB1RkNCMzFEdSs5SkxRZWp0cTlaMXZMM0xzK0txa2o0VG1KN0FuS2lmYU5SbWl5Q2d3QThKOEV3WWo2SXVGdWlSMDR1Z204N1luZWx3ckhaeEMvQ0ljTUdXQ0lkYzJkTUNXUEx5NlVUall1c2NlYWFkN0pvMFNxU3l1M2FHQklvSnRPVW1JeUJLcWkyVUZBTUVtK0hPcHd0NWU2TEtyMXNoTmlmT2N4TDdGQVlwWmgveUZnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB5YDN3dgB6QEAAADglSXxP/EBAAAAwGui8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENPgrX42CeQ0GhDQAAAGR3p55B+A2AgNTB5giwDsml4ZkB4g4Mqo0Gx40G1Y4G8JAGyA8F4hncCkVtdzBMamsxTEMweExDMHhMQzB4TEMweExEVXNNU3d3TGpjeE1URTJNRFk1TVRBMk9EUTRPVFFzTUM0NUxDMHhMREF1TXpnMk1qWXpPVEF4T0RZeU9EVXpPRFlzTUM0d01UUXlOVEUwTVRBek5qRTVPRFV3TWl3d0xqVTRNVFUxTlRJNU5UY3pOVGsyTnpJc0xURWQ0aS9jU3lEWXU2YzlMV1ptbmtBMUFBQ0FQemtBWUVwNFdwSVdRa0ZNQlJaQWU0dHRRa29RQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRW9PQ0tyemxnTVJBQUFBQUFBQUFBQktEZ2lzODVZREVRQUFBQUFBQUFBQVNnNEluUHJoQkJFQUFBQUFBQUFBQUVvT0NLdnpsZ01SQUFBQUFBQUFBQUJTRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJTRGdpcTg1WURFUUFBQUFBQUFBQUFVZzRJclBPV0F4RUFBQUFBQUFBQUFGSU9DS3Z6bGdNUkFBQUFBQUFBQUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCYUNRaUFnSUNBZ0FRUUFHSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBWWc0SXEvT1dBeEVBQUFBQUFBQUFBR2tQck1nb1c1bER3WEVBQUFEZ2NORU9QM2tBQUFBQWlYQUVQNEVCQUFBQTRMUEZja0dKQVFBQUFPQkxKMFJCa1FFQUFBQmNuVXAxUVprQkFBQUE0TEpYZVVHaEFRQUFBT0FNTlV0QnFRRUFBQUI4Vkw1OFFlZ0JBWUFDbEFPS0FqNHdMakF3TlRnMU1pd3hMakF3TURBd01Dd3hMakF4TXpJd01Dd3hMakkwTXpVNE15d3hMak13TURBd01Dd3hMalF3TURBd01Dd3hMalV3TURBd01Ka0NBQUFBQUFBQUZFQ2hBcTN2TkhqQ1NjRkJ3UUlQck1nb1c1bER3Y29DQ3dnQkVRK3N5Q2hibVVQQnlnSUxDQUlSckxyUklCNWxROEhaQWdBYnZLay9ZbFpCNFFMQWtUcWhiRFVzUWVrQytzNWorSFN3cFVHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCtaQXdCZ1NuaGFraFpDb1FOTUJSWkFlNHR0UXJrREl1L1NKczBJNGovQkF6YnlYK25QLytNL3lRT2RpeXZLK3FQbVA5RUR2VEF5Uk1ocDdELzZBd2tLQlVselRsQkNFQUQ2QXdzS0IxSnZhVlJwWlhJUUEvb0REUW9KVDNKa1pYSlVhV1Z5RUFMNkF4RUtEVWwwWlcxUWNtbGpaVlJwWlhJUUE0RUVBQUFBSUVYUkJqK0pCQUFBQUNETGVBSS9rQVNiQTVnRS90Nm5nb0pUb0FUbjBOR1ZDNmdFZ0x6QmxndTRCSm5yYjhBRWdMekJsZ3ZKQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQVFJZjRkeitoQlFBQUFBQUFBUEEvcVFVQUFBQmdFVGJ3UDdFRkFBQUE0TGJsOHorNUJRQUFBTURNelBRL3dRVUFBQUJnWm1iMlA4a0ZBQUFBQUFBQStEOD3qGQS2TcRN8hkDmr48+hmTBgogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KEgoMdm91Y2hlcl9sZW5zEgIQAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yODcwNDU1OTcwMgoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoNCgdpc192c2t1EgIoAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0ChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKACwH4CAgICggIAoyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28704559702",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25225901596,
              "shopid": 1084191383,
              "name": "AC Midea 1/2 PK 05CRN STANDARD FREE PASANG + AKSESORIS Raja AC Bekasi",
              "label_ids": [
                298458395,
                1015914,
                700190087,
                1718087960,
                1428713,
                1049112,
                822059908662278,
                822120592853526,
                298463379,
                1400285055,
                1718093079,
                837860934119952,
                1918643,
                2018619,
                2023641,
                298893311,
                825465608497696,
                1059151,
                700830032,
                298933384,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7rasc-m0oiln79cvvg07",
              "images": [
                "id-11134207-7rasc-m0oiln79cvvg07",
                "id-11134207-7rase-m0oiln79eafw77",
                "id-11134207-7ra0i-md5l15xliensb0",
                "id-11134207-7r992-lw5miv392snee8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1713777082,
              "sold": 9,
              "historical_sold": 90,
              "liked": false,
              "liked_count": 131,
              "view_count": null,
              "catid": 100010,
              "brand": "Midea",
              "cmt_count": 56,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 248400000000,
              "price_min": 248400000000,
              "price_max": 248400000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Pembelian",
                  "options": [
                    "UNIT ONLY",
                    "Unit Only + Material",
                    "+ PASANG",
                    "+ Pasang Tradein"
                  ],
                  "images": [
                    "id-11134207-7r98z-lw5miv39477u88",
                    "id-11134207-7ra0u-mc66ettl19y911",
                    "id-11134207-7ra0s-md5l15xljt8815",
                    "id-11134207-7ra0k-mc66ettkzvdt13"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.894736842105263,
                "rating_count": [
                  57,
                  0,
                  0,
                  2,
                  2,
                  53
                ],
                "rcount_with_context": 20,
                "rcount_with_image": 20
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 247400000000,
                "strikethrough_price": 248400000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1303365536858112,
                "discount_text": null,
                "model_id": 59415414470,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1303365536858112,
                  "voucher_code": "RAJAVPB2",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1764833040,
                    "end_time": 1772902740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 200000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 248400000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 90,
                "rounded_local_monthly_sold_count": 9,
                "local_monthly_sold_count_text": "9",
                "rounded_display_sold_count": 90,
                "display_sold_count_text": "90"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Raja AC Bekasi",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 671496965,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiZEGDSXdClF5GoO63eIOnmEyf3U50h5pLDshxFoO4I/6h3pHE9yPrM2YMhTcyDbdTSPcw6GJneE4bR+RsIDFJzf/Dn3dwYpqrqo6Dyo+66kcxEzl7MAv/+CTlZZlbsVyzSZtUPcB9oYQPfHlM5IXOxc7UEOAscBdvMdxQVA/ToUw+TBTa2vWYctCseLvRo40RDCaldy0VD7PvosMyAc4tOYakaOyjZuARhps/2JfG7nAGTvB2xL/vZDPmG/7D7DfIRYYFeMJ1fjvQMnr27iXozoj/e8xoSDs+A+L/SzJUQPRfRwEgAKzKU5vJSyznfGz/+V2m8/DIdxVGuxFdL8OwWTPnM2X4m4BlJ5ujSJJE4tLgQKkaOCWgA7KzRrGJ01nlHBlGaYVOIPzALsFeZ5/nga53f4ETvjco9jNiSFeiTSazoTo/bESYxRd5TNcBpzx9ex9kUvpbKxDlxJUzD90XUtjYxwZ47SoqX4m0YLQ4mz1A==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EIX2mMACGM/JjtcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWkVHRFNYZENsRjVHb082M2VJT25tRXlmM1U1MGg1cExEc2h4Rm9PNEkvNmgzcEhFOXlQck0yWU1oVGN5RGJkVFNQY3c2R0puZUU0YlIrUnNJREZKemYvRG4zZHdZcHFycW82RHlvKzY2a2N4RXpsN01Bdi8rQ1RsWlpsYnNWeXpTWnRVUGNCOW9ZUVBmSGxNNUlYT3hjN1VFT0FzY0Jkdk1keFFWQS9Ub1V3K1RCVGEydldZY3RDc2VMdlJvNDBSRENhbGR5MFZEN1B2b3NNeUFjNHRPWWFrYU95alp1QVJocHMvMkpmRzduQUdUdkIyeEwvdlpEUG1HLzdEN0RmSVJZWUZlTUoxZmp2UU1ucjI3aVhvem9qL2U4eG9TRHMrQStML1N6SlVRUFJmUndFZ0FLektVNXZKU3l6bmZHei8rVjJtOC9ESWR4Vkd1eEZkTDhPd1dUUG5NMlg0bTRCbEo1dWpTSkpFNHRMZ1FLa2FPQ1dnQTdLelJyR0owMW5sSEJsR2FZVk9JUHpBTHNGZVo1L25nYTUzZjRFVHZqY285ak5pU0ZlaVRTYXpvVG8vYkVTWXhSZDVUTmNCcHp4OWV4OWtVdnBiS3hEbHhKVXpEOTBYVXRqWXh3WjQ3U29xWDRtMFlMUTRtejFBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAButGHqKQI6QEAAACgxB3xP/EBAAAAgACu8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5EN4XoUrvLHKUGhDQAAAJg1JIRB+A2AgKLjzAiwDq+x/ZUB4g4Mqo0Gx40G1Y4G8JAGyA8G4hnsCkVuOHhMall5TmpJd09EY3dNemsxTURrM01qY3NMVEVzTFRFc0xURXNMVEVzTVM0Mk5ESTJNelV3TlRRME9UVTVNeklzTVN3d0xqSTROVGczT0RRMk56YzJORGc1TlRZM0xEQXVPU3d0TVN3eExqQXdNREF4TWpNc016UXVPVGM1T1RZNE5ETTBPVEk0Tnprc01DNDFPREUxTlRVeU9UVTNNelU1TmpjeUxDMHhIZUl2M0VzZ3NvMlNGQzJiSjlBL05RQUFnRDg1cS9pU1BWYnZFMEpCQ1JxZ1JMMjNWMEpLRGdpczg1WURFUUFBQUFBQUFBQUFTZzRJblByaEJCRUFBQUFBQUFBQUFFb09DS3Z6bGdNUkFBQUFBQUFBQUFCS0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SXF2T1dBeEVBQUFBQUFBQUFBRklPQ0t6emxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVdna0lnSUNBZ0lBRUVBQmFCd2lxODVZREVBQmFCd2lzODVZREVBQmFCd2lyODVZREVBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2lxODVZREVRQUFBQUFBQVBBL1lnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJ4QUFBQW9BQ0FCejk1QUFBQTRNU2FBeitCQVFBQUFFQUo4V3RCaVFFQUFBREFabXRuUVpFQkFBQUFBRGl1ZVVHWkFRQUFBS0JNM0hKQm9RRUFBQURBeXAxdlFha0JBQUFBQUpsVmdVSG9BUUdBQXBRRGlnSStNQzR3TURVeU1ETXNNUzR3TURBd01EQXNNUzR3TVRjNU5UUXNNUzR5TXpreE5UVXNNUzR6TURBd01EQXNNUzR6T0RVME1USXNNUzQxTURBd01EQ1pBdG9yNWJFN1NQby9vUUt0N3pSNHdrbkJRY0VDQUFBQUFBQUFBSURLQWdzSUFSRUFBQUFBQUFBQUFNb0NDd2dDRVFBQUFBQUFBQUNBMlFKQWR4UDgxT1ZMUWVFQ0FHOUt6WUI0VEVIcEFwYnVoejlHWTZKQmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvbVFPV0ZpeElkM01VUXFFRGxvUmxKWTllV1VLNUF5UVR0bitZMStFL3dRTmdJZmE0WXZ6alA4a0R2cDcwRms0ZDV6L1JBN2ZITkVkbkNPMC8rZ01KQ2dWSmMwNVFRaEFBK2dNTENnZFNiMmxVYVdWeUVBUDZBdzBLQ1U5eVpHVnlWR2xsY2hBRCtnTVJDZzFKZEdWdFVISnBZMlZVYVdWeUVBT0JCQUFBQUFBS1J3SS9pUVFBQUFCZ1JQbjlQcEFFbXdPWUJNci82Nk9tSHFBRTZZS1M0eHVvQktEVnRhQWx1QVMzMHFPOUNjQUVvTlcxb0NYSkJIc1Vya2ZoZXBRLzRRUjdGSzVINFhxVVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFnTlZQZFQraEJRQUFBQUFBQVBBL3FRVUFBQURnaVVud1A3RUZBQUFBQUpUVDh6KzVCUUFBQU1ETXpQUS93UVVBQUFEZ3BTcjJQOGtGQUFBQUFBQUErRDg96hkEtk3CTfIZA5q+PPoZkwYKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoSCgx2b3VjaGVyX2xlbnMSAhAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoNCgdpc192c2t1EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI1MjI1OTAxNTk2CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAsB+AgICAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 25225901596,
            "shopid": 1084191383,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":42239667,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasc-m0oiln79cvvg07\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[298458395,1015914,700190087,1718087960,1428713,1049112,822059908662278,822120592853526,298463379,1400285055,1718093079,837860934119952,1918643,2018619,2023641,298893311,825465608497696,1059151,700830032,298933384,1718088045,298468389],\"merge_rank\":0,\"model_id\":59415414470,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":42239667,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasc-m0oiln79cvvg07\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[298458395,1015914,700190087,1718087960,1428713,1049112,822059908662278,822120592853526,298463379,1400285055,1718093079,837860934119952,1918643,2018619,2023641,298893311,825465608497696,1059151,700830032,298933384,1718088045,298468389],\"merge_rank\":0,\"model_id\":59415414470,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EIX2mMACGM/JjtcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWkVHRFNYZENsRjVHb082M2VJT25tRXlmM1U1MGg1cExEc2h4Rm9PNEkvNmgzcEhFOXlQck0yWU1oVGN5RGJkVFNQY3c2R0puZUU0YlIrUnNJREZKemYvRG4zZHdZcHFycW82RHlvKzY2a2N4RXpsN01Bdi8rQ1RsWlpsYnNWeXpTWnRVUGNCOW9ZUVBmSGxNNUlYT3hjN1VFT0FzY0Jkdk1keFFWQS9Ub1V3K1RCVGEydldZY3RDc2VMdlJvNDBSRENhbGR5MFZEN1B2b3NNeUFjNHRPWWFrYU95alp1QVJocHMvMkpmRzduQUdUdkIyeEwvdlpEUG1HLzdEN0RmSVJZWUZlTUoxZmp2UU1ucjI3aVhvem9qL2U4eG9TRHMrQStML1N6SlVRUFJmUndFZ0FLektVNXZKU3l6bmZHei8rVjJtOC9ESWR4Vkd1eEZkTDhPd1dUUG5NMlg0bTRCbEo1dWpTSkpFNHRMZ1FLa2FPQ1dnQTdLelJyR0owMW5sSEJsR2FZVk9JUHpBTHNGZVo1L25nYTUzZjRFVHZqY285ak5pU0ZlaVRTYXpvVG8vYkVTWXhSZDVUTmNCcHp4OWV4OWtVdnBiS3hEbHhKVXpEOTBYVXRqWXh3WjQ3U29xWDRtMFlMUTRtejFBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAButGHqKQI6QEAAACgxB3xP/EBAAAAgACu8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5EN4XoUrvLHKUGhDQAAAJg1JIRB+A2AgKLjzAiwDq+x/ZUB4g4Mqo0Gx40G1Y4G8JAGyA8G4hnsCkVuOHhMall5TmpJd09EY3dNemsxTURrM01qY3NMVEVzTFRFc0xURXNMVEVzTVM0Mk5ESTJNelV3TlRRME9UVTVNeklzTVN3d0xqSTROVGczT0RRMk56YzJORGc1TlRZM0xEQXVPU3d0TVN3eExqQXdNREF4TWpNc016UXVPVGM1T1RZNE5ETTBPVEk0Tnprc01DNDFPREUxTlRVeU9UVTNNelU1TmpjeUxDMHhIZUl2M0VzZ3NvMlNGQzJiSjlBL05RQUFnRDg1cS9pU1BWYnZFMEpCQ1JxZ1JMMjNWMEpLRGdpczg1WURFUUFBQUFBQUFBQUFTZzRJblByaEJCRUFBQUFBQUFBQUFFb09DS3Z6bGdNUkFBQUFBQUFBQUFCS0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SXF2T1dBeEVBQUFBQUFBQUFBRklPQ0t6emxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVdna0lnSUNBZ0lBRUVBQmFCd2lxODVZREVBQmFCd2lzODVZREVBQmFCd2lyODVZREVBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2lxODVZREVRQUFBQUFBQVBBL1lnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJ4QUFBQW9BQ0FCejk1QUFBQTRNU2FBeitCQVFBQUFFQUo4V3RCaVFFQUFBREFabXRuUVpFQkFBQUFBRGl1ZVVHWkFRQUFBS0JNM0hKQm9RRUFBQURBeXAxdlFha0JBQUFBQUpsVmdVSG9BUUdBQXBRRGlnSStNQzR3TURVeU1ETXNNUzR3TURBd01EQXNNUzR3TVRjNU5UUXNNUzR5TXpreE5UVXNNUzR6TURBd01EQXNNUzR6T0RVME1USXNNUzQxTURBd01EQ1pBdG9yNWJFN1NQby9vUUt0N3pSNHdrbkJRY0VDQUFBQUFBQUFBSURLQWdzSUFSRUFBQUFBQUFBQUFNb0NDd2dDRVFBQUFBQUFBQUNBMlFKQWR4UDgxT1ZMUWVFQ0FHOUt6WUI0VEVIcEFwYnVoejlHWTZKQmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvbVFPV0ZpeElkM01VUXFFRGxvUmxKWTllV1VLNUF5UVR0bitZMStFL3dRTmdJZmE0WXZ6alA4a0R2cDcwRms0ZDV6L1JBN2ZITkVkbkNPMC8rZ01KQ2dWSmMwNVFRaEFBK2dNTENnZFNiMmxVYVdWeUVBUDZBdzBLQ1U5eVpHVnlWR2xsY2hBRCtnTVJDZzFKZEdWdFVISnBZMlZVYVdWeUVBT0JCQUFBQUFBS1J3SS9pUVFBQUFCZ1JQbjlQcEFFbXdPWUJNci82Nk9tSHFBRTZZS1M0eHVvQktEVnRhQWx1QVMzMHFPOUNjQUVvTlcxb0NYSkJIc1Vya2ZoZXBRLzRRUjdGSzVINFhxVVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFnTlZQZFQraEJRQUFBQUFBQVBBL3FRVUFBQURnaVVud1A3RUZBQUFBQUpUVDh6KzVCUUFBQU1ETXpQUS93UVVBQUFEZ3BTcjJQOGtGQUFBQUFBQUErRDg96hkEtk3CTfIZA5q+PPoZkwYKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoSCgx2b3VjaGVyX2xlbnMSAhAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoNCgdpc192c2t1EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI1MjI1OTAxNTk2CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAsB+AgICAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25225901596",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 18781397042,
              "shopid": 85961994,
              "name": "Midea AC Portable 1 PK MPF2-09CRN1 Self-Diagnosis and Auto Protection (Free Packing Kayu)",
              "label_ids": [
                13,
                38,
                39,
                47,
                1000501,
                1000509,
                1400095067,
                1400285005,
                844931064601283,
                1400066568,
                1134053,
                1015914,
                700190087,
                1718093079,
                1918643,
                1718087960,
                1428713,
                822059908662278,
                822120592853526,
                834403089593352,
                2018618,
                2018619,
                1012729,
                825465608497696,
                2153644,
                2213652,
                298463379,
                700005490,
                700005495,
                1049120,
                1059152,
                1049122,
                2008656,
                298468389,
                1718088045
              ],
              "image": "id-11134201-7qul6-ljo03lyxoghr60",
              "images": [
                "id-11134201-7qul6-ljo03lyxoghr60",
                "id-11134207-7qukz-ljurk36cyb8nb9",
                "id-11134201-7qukz-ljo03m33xtjj1c",
                "id-11134201-7qukz-ljo03m3nhjxm31",
                "id-11134201-7qukx-ljo03mmspjbv15",
                "id-11134201-7qul4-ljo03m33z83z5e",
                "id-11134201-7qula-ljo03mh90gtm39",
                "id-11134201-7qul4-ljo03m4hgc5b3a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1688178657,
              "sold": 0,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 29,
              "view_count": null,
              "catid": 100010,
              "brand": "Midea",
              "cmt_count": 3,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 389900000000,
              "price_min": 389900000000,
              "price_max": 389900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1n-m27z5r28122o25.16000081730799632.mp4",
                  "thumb_url": "id-11110105-7rasa-m27z5zchwxhdbe",
                  "duration": 40,
                  "version": 2,
                  "vid": "id-11110105-6ke1n-m27z5r28122o25",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1n-m27z5r28122o25.16000081730799632.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m27z5r28122o25.16000081730799632.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m27z5r28122o25.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 389900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 235363166233,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 389900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": " Sajun Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 653344564,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiY/9Il/XoZbI+53wSL5rVV8klUnvegRtpyQRK8lj26Kvf0ZsJdwESCQAx2FoEvj0zLKIbKg3pNiqLe0ivEazpvW/DdKf+ktnP8sLCjkqNJE67xYmGLAyqbybFSm82wzi8UrHF10wI80OiveaFMDBNSLJdunoSDfJtyDCEptimaHRtfCPqVNWUSWfSH20majBAwWx/J+7u837BiBQ8mfloBEUrcNmTHMVJabc9IMn1Pz1r2pGkIkrCmLIYHdysybPPVyaJ8sQasdgjvDV25HiPf4C6MwiW2d3ikYbtrGOwyNEKLMl/wpRzQnfpQzRsdTU2vyDx4zwyMn/5Xx/XWXGLiNSVzPul33ETt37/eAzOv0zSzYIy4dQx8XOH30LQ7S+QYAoA74zifp0r3ahKdxzK7Q5Vym2CdUufb/rqUN7TSKyeadQuQ/iqVfEsvv1HIXzws2L0NeyW5KLImRTe1eO14AnK1mITMzWjropXupglILTw==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELT+xLcCGJSnwdIBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWS85SWwvWG9aYkkrNTN3U0w1clZWOGtsVW52ZWdSdHB5UVJLOGxqMjZLdmYwWnNKZHdFU0NRQXgyRm9FdmowekxLSWJLZzNwTmlxTGUwaXZFYXpwdlcvRGRLZitrdG5QOHNMQ2prcU5KRTY3eFltR0xBeXFieWJGU204Mnd6aThVckhGMTB3STgwT2l2ZWFGTURCTlNMSmR1bm9TRGZKdHlEQ0VwdGltYUhSdGZDUHFWTldVU1dmU0gyMG1hakJBd1d4L0orN3U4MzdCaUJROG1mbG9CRVVyY05tVEhNVkphYmM5SU1uMVB6MXIycEdrSWtyQ21MSVlIZHlzeWJQUFZ5YUo4c1Fhc2RnanZEVjI1SGlQZjRDNk13aVcyZDNpa1lidHJHT3d5TkVLTE1sL3dwUnpRbmZwUXpSc2RUVTJ2eUR4NHp3eU1uLzVYeC9YV1hHTGlOU1Z6UHVsMzNFVHQzNy9lQXpPdjB6U3pZSXk0ZFF4OFhPSDMwTFE3UytRWUFvQTc0emlmcDByM2FoS2R4eks3UTVWeW0yQ2RVdWZiL3JxVU43VFNLeWVhZFF1US9pcVZmRXN2djFISVh6d3MyTDBOZXlXNUtMSW1SVGUxZU8xNEFuSzFtSVRNeldqcm9wWHVwZ2xJTFR3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABqbaywN4B6QEAAADglSXxP/EBAAAAAMOK8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5EN7FG4HlEjBUGhDQAAAGCXg2BB+A2AgIqnnQuwDpKSl8QB4g4Mqo0Gx40G1Y4G8ZAGyA8H4hmMCkVtRXdMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTUM0eU16Y3pOVGczTXpBMU9UVXdORFEwT0N3dE1Td3RNU3d4TGpBd01EQXhNak1zTVRJM0xqRXhOVEk0T1RnM09UUTROalVzTUM0MU9ERTFOVFV5T1RVM016VTVOamN5TEMweEhlSXYzRXNndXJtUUJDMmFtWmsrTlFBQWdEOUtFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQktEZ2p3OStFRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUVvT0NLenpsZ01SQUFBQUFBQUFBQUJLRGdpYyt1RUVFUUFBQUFBQUFBQUFTZzRJcS9PV0F4RUFBQUFBQUFBQUFGSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DUEQzNFFRUkFBQUFBQUFBQUFCU0RnaXE4NVlERVFBQUFBQUFBQUFBVWc0SXJQT1dBeEVBQUFBQUFBQUFBRklPQ0t2emxnTVJBQUFBQUFBQUFBQmFDUWlBZ0lDQWdBUVFBRm9IQ1BEMzRRUVFBRm9IQ0tyemxnTVFBRm9IQ0t6emxnTVFBRm9IQ0t2emxnTVFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2p3OStFRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJ4QUFBQW9DY1FFVDk1QUFBQUFCY2FJRCtCQVFBQUFFQzNoWHBCaVFFQUFBQmc4RGRnUVpFQkFBQUF1TmRRZ1VHWkFRQUFBT0FPNTRGQm9RRUFBQUFnSHVWbFFha0JBQUFBYUZaZ2gwSG9BUUdBQXBRRGlnSStNQzR3TURRM05Ea3NNUzR3TURBd01EQXNNUzR3TURBd01EQXNNUzR5TlRBd01EQXNNUzR6TURBd01EQXNNUzQwTURBd01EQXNNUzQxTURBd01EQ1pBak16TXpNek05TS9vUUt0N3pSNHdrbkJRY0VDQUFBQUFBQUFBSURLQWdzSUFoRUFBQUFBQUFBQWdNb0NDd2dCRVFBQUFBQUFBQUFBMlFLQWV6Z1IvSnhqUWVFQ1FIaHBqOThQVUVIcEFud0QzNFRQSzZ4QmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvdVFPSmJiYzU0VjdoUDhFRHg5dGFmVDZONHovSkE1ay9MT25UZCtZLzBRUHhDT2pyVHA3clA0RUVBQUFBNFByQUNUK0pCQUFBQUNBc2tnUS9rQVNiQTVnRS90Nm5nb0pUb0FTQjZyaURBcWdFZ1BLTHFBbTRCUCtIMDZRSHdBU0E4b3VvQ2NrRWV4U3VSK0Y2bEQvaEJIc1Vya2ZoZXBRLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBRGd3bk56UDZFRkFBQUFBQUFBOEQrcEJRQUFBQUFBQVBBL3NRVUFBQUFBQUFEMFA3a0ZBQUFBd016TTlEL0JCUUFBQUdCbVp2WS95UVVBQUFBQUFBRDRQdz096hkCDBT6GZMGChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKEgoMdm91Y2hlcl9sZW5zEgIQAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KDQoHaXNfdnNrdRICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMTg3ODEzOTcwNDIKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0ChQKDnNob3BfYmxhY2tsaXN0EgIoALAfgICAgKiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 18781397042,
            "shopid": 85961994,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":8658107,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul6-ljo03lyxoghr60\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1134053,1015914,700190087,1718093079,1918643,1718087960,1428713,822059908662278,822120592853526,834403089593352,2018618,2018619,1012729,825465608497696,2153644,2213652,298463379,700005490,700005495,1049120,1059152,1049122,2008656,298468389,1718088045],\"merge_rank\":0,\"model_id\":235363166233,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":8658107,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul6-ljo03lyxoghr60\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1134053,1015914,700190087,1718093079,1918643,1718087960,1428713,822059908662278,822120592853526,834403089593352,2018618,2018619,1012729,825465608497696,2153644,2213652,298463379,700005490,700005495,1049120,1059152,1049122,2008656,298468389,1718088045],\"merge_rank\":0,\"model_id\":235363166233,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELT+xLcCGJSnwdIBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWS85SWwvWG9aYkkrNTN3U0w1clZWOGtsVW52ZWdSdHB5UVJLOGxqMjZLdmYwWnNKZHdFU0NRQXgyRm9FdmowekxLSWJLZzNwTmlxTGUwaXZFYXpwdlcvRGRLZitrdG5QOHNMQ2prcU5KRTY3eFltR0xBeXFieWJGU204Mnd6aThVckhGMTB3STgwT2l2ZWFGTURCTlNMSmR1bm9TRGZKdHlEQ0VwdGltYUhSdGZDUHFWTldVU1dmU0gyMG1hakJBd1d4L0orN3U4MzdCaUJROG1mbG9CRVVyY05tVEhNVkphYmM5SU1uMVB6MXIycEdrSWtyQ21MSVlIZHlzeWJQUFZ5YUo4c1Fhc2RnanZEVjI1SGlQZjRDNk13aVcyZDNpa1lidHJHT3d5TkVLTE1sL3dwUnpRbmZwUXpSc2RUVTJ2eUR4NHp3eU1uLzVYeC9YV1hHTGlOU1Z6UHVsMzNFVHQzNy9lQXpPdjB6U3pZSXk0ZFF4OFhPSDMwTFE3UytRWUFvQTc0emlmcDByM2FoS2R4eks3UTVWeW0yQ2RVdWZiL3JxVU43VFNLeWVhZFF1US9pcVZmRXN2djFISVh6d3MyTDBOZXlXNUtMSW1SVGUxZU8xNEFuSzFtSVRNeldqcm9wWHVwZ2xJTFR3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABqbaywN4B6QEAAADglSXxP/EBAAAAAMOK8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5EN7FG4HlEjBUGhDQAAAGCXg2BB+A2AgIqnnQuwDpKSl8QB4g4Mqo0Gx40G1Y4G8ZAGyA8H4hmMCkVtRXdMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTUM0eU16Y3pOVGczTXpBMU9UVXdORFEwT0N3dE1Td3RNU3d4TGpBd01EQXhNak1zTVRJM0xqRXhOVEk0T1RnM09UUTROalVzTUM0MU9ERTFOVFV5T1RVM016VTVOamN5TEMweEhlSXYzRXNndXJtUUJDMmFtWmsrTlFBQWdEOUtFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQktEZ2p3OStFRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUVvT0NLenpsZ01SQUFBQUFBQUFBQUJLRGdpYyt1RUVFUUFBQUFBQUFBQUFTZzRJcS9PV0F4RUFBQUFBQUFBQUFGSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DUEQzNFFRUkFBQUFBQUFBQUFCU0RnaXE4NVlERVFBQUFBQUFBQUFBVWc0SXJQT1dBeEVBQUFBQUFBQUFBRklPQ0t2emxnTVJBQUFBQUFBQUFBQmFDUWlBZ0lDQWdBUVFBRm9IQ1BEMzRRUVFBRm9IQ0tyemxnTVFBRm9IQ0t6emxnTVFBRm9IQ0t2emxnTVFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2p3OStFRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJ4QUFBQW9DY1FFVDk1QUFBQUFCY2FJRCtCQVFBQUFFQzNoWHBCaVFFQUFBQmc4RGRnUVpFQkFBQUF1TmRRZ1VHWkFRQUFBT0FPNTRGQm9RRUFBQUFnSHVWbFFha0JBQUFBYUZaZ2gwSG9BUUdBQXBRRGlnSStNQzR3TURRM05Ea3NNUzR3TURBd01EQXNNUzR3TURBd01EQXNNUzR5TlRBd01EQXNNUzR6TURBd01EQXNNUzQwTURBd01EQXNNUzQxTURBd01EQ1pBak16TXpNek05TS9vUUt0N3pSNHdrbkJRY0VDQUFBQUFBQUFBSURLQWdzSUFoRUFBQUFBQUFBQWdNb0NDd2dCRVFBQUFBQUFBQUFBMlFLQWV6Z1IvSnhqUWVFQ1FIaHBqOThQVUVIcEFud0QzNFRQSzZ4QmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvdVFPSmJiYzU0VjdoUDhFRHg5dGFmVDZONHovSkE1ay9MT25UZCtZLzBRUHhDT2pyVHA3clA0RUVBQUFBNFByQUNUK0pCQUFBQUNBc2tnUS9rQVNiQTVnRS90Nm5nb0pUb0FTQjZyaURBcWdFZ1BLTHFBbTRCUCtIMDZRSHdBU0E4b3VvQ2NrRWV4U3VSK0Y2bEQvaEJIc1Vya2ZoZXBRLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBRGd3bk56UDZFRkFBQUFBQUFBOEQrcEJRQUFBQUFBQVBBL3NRVUFBQUFBQUFEMFA3a0ZBQUFBd016TTlEL0JCUUFBQUdCbVp2WS95UVVBQUFBQUFBRDRQdz096hkCDBT6GZMGChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKEgoMdm91Y2hlcl9sZW5zEgIQAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KDQoHaXNfdnNrdRICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMTg3ODEzOTcwNDIKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0ChQKDnNob3BfYmxhY2tsaXN0EgIoALAfgICAgKiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_18781397042",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 6082397995,
              "shopid": 85961994,
              "name": "Changhong AC Split 1/2 PK CSC-05NVC4 Air Conditioner 0.5 PK Gold Fin R32 CSC05NVC4",
              "label_ids": [
                13,
                38,
                39,
                47,
                1000501,
                1000509,
                1400095067,
                1400285005,
                1002164,
                844931046478970,
                844931026694327,
                844931064601283,
                1918643,
                1718087960,
                1428713,
                2018618,
                2018619,
                1718093079,
                1015914,
                700190087,
                1400285055,
                1012729,
                298893311,
                298933384,
                1400066568,
                2153644,
                2213652,
                298463379,
                2008656,
                1059152,
                1049122,
                822059908662278,
                825465608497696,
                822120592853526,
                834403089593352,
                700005490,
                1049120,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7r98o-ls9lhjmbx37had",
              "images": [
                "id-11134207-7r98o-ls9lhjmbx37had",
                "id-11134207-7r98q-lr9pb0aikeppc0",
                "id-11134207-7r98r-lr9pb0airfjx75",
                "id-11134201-7qul5-ljo0l9b5xpuj32",
                "id-11134201-7qukw-ljo0kwk8lap33e",
                "id-11134207-7r98p-lr9pb0aiq0zheb",
                "id-11134201-7qukw-ljo0l90md5j775",
                "id-11134201-7qukx-ljo0l9b5xpuy2a",
                "id-11134201-7qul3-ljo0l8w6jn6j6c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1616057616,
              "sold": 9,
              "historical_sold": 33,
              "liked": false,
              "liked_count": 53,
              "view_count": null,
              "catid": 100010,
              "brand": "Changhong",
              "cmt_count": 13,
              "flag": 917506,
              "cb_option": 0,
              "item_status": "normal",
              "price": 234900000000,
              "price_min": 234900000000,
              "price_max": 234900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "PEMASANGAN",
                  "options": [
                    "TANPA PASANG",
                    "PLUS PASANG"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.230769230769231,
                "rating_count": [
                  13,
                  2,
                  0,
                  1,
                  0,
                  10
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": true,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 234900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 85138005786,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 234900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 33,
                "rounded_local_monthly_sold_count": 9,
                "local_monthly_sold_count_text": "9",
                "rounded_display_sold_count": 33,
                "display_sold_count_text": "33"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": " Sajun Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 658572416,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT1Bt/eTt45r8FwNprdKbuY7rTi4NRTJfdgA2tQ1HuadkRTvo9I7OYle0cuSWkC3S3Gj/IwnwjsD3UzOURQCICo+1eDssmvzKh/yUjd9Ho/ZFgRSpCHX8wzXCsJYVtv1o/NXxHSeg3IEC04wR3UE9owxh4MH9E7lSF79IiIweK23vEZnQfRMI8yZi5KkaruMtsonHNo+hL7ixtqYN0kxfhM8/6o0QUN++0mA62CEu314mcbRj3uG6kPwXki+4mBh0lWDOgIwuM9dSmX+AGKux7frpG/UK0iRzK0Jg1i/KSSju40cHqnWN5kVEKZc8y1oDL0us6xyG5hQxC815Qcql0MfVo+XpgqyiZqvjxS+BF8xh/et2Vwy11qW8r0xtlTVm8mjzF/hxHwqa1/BsnUjJI9zg4Lpdi3sd5o1JHpYUJs+RQYlbx4GpGZHHRi5PzXDExdTxbfFp7FZEuyvqcOW/t2dgfk9s3Ga2FfsCk+t7bz6lbxtFtwQl1kAVMoqAHwNxww==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EICJhLoCGIaFyNQBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUMUJ0L2VUdDQ1cjhGd05wcmRLYnVZN3JUaTROUlRKZmRnQTJ0UTFIdWFka1JUdm85STdPWWxlMGN1U1drQzNTM0dqL0l3bndqc0QzVXpPVVJRQ0lDbysxZURzc212ektoL3lVamQ5SG8vWkZnUlNwQ0hYOHd6WENzSllWdHYxby9OWHhIU2VnM0lFQzA0d1IzVUU5b3d4aDRNSDlFN2xTRjc5SWlJd2VLMjN2RVpuUWZSTUk4eVppNUtrYXJ1TXRzb25ITm8raEw3aXh0cVlOMGt4ZmhNOC82bzBRVU4rKzBtQTYyQ0V1MzE0bWNiUmozdUc2a1B3WGtpKzRtQmgwbFdET2dJd3VNOWRTbVgrQUdLdXg3ZnJwRy9VSzBpUnpLMEpnMWkvS1NTanU0MGNIcW5XTjVrVkVLWmM4eTFvREwwdXM2eHlHNWhReEM4MTVRY3FsME1mVm8rWHBncXlpWnF2anhTK0JGOHhoL2V0MlZ3eTExcVc4cjB4dGxUVm04bWp6Ri9oeEh3cWExL0JzblVqSkk5emc0THBkaTNzZDVvMUpIcFlVSnMrUlFZbGJ4NEdwR1pISFJpNVB6WERFeGRUeGJmRnA3RlpFdXl2cWNPVy90MmRnZms5czNHYTJGZnNDayt0N2J6NmxieHRGdHdRbDFrQVZNb3FBSHdOeHd3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABt5jNntsB6QEAAADglSXxP/EBAAAAYOCX8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENw/UoXAP5WkGhDQAAAKCKErVB+A2AgP316gawDrDftXfiDgyqjQbHjQbVjgbwkAbIDwjiGfgKRW9BQk1pNHlNREUzTml3dE1Td3RNU3d0TVN3dE1Td3lMakl5TkRBd01EQXdNREF3TURBd01EWXNNU3d6TGpjd09EUXhOVFF5TkRVek5ERTRPVFlzTUM0NUxDMHhMREF1TXpnNE5EUTFOams1TmpBMk16VTBNU3d3TGpBd016a3lNakUzT0RZNE9ERTVNakE0T0N3ekxqVTVOVEV3TWpjeE9Ua3lNVFF3TWpNc0xURWRhU1VxVFNDZmxjcW9BUzJqNlF4QU5RQUFnRDg1SEdpL3pDcUc2a0ZCT2RNQWFhY0hVRUpLRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFTZzRJclBPV0F4RUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SXF2T1dBeEVBQUFBQUFBQUFBRklPQ0t6emxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVdna0lnSUNBZ0lBRUVBQmFCd2lxODVZREVBQmFCd2lzODVZREVBQmFCd2lyODVZREVBQmlEZ2lzODVZREVRQUFBQUFBQUFBQVlnNElxL09XQXhFQUFBQUFBQUFBQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlwR3k3UDBsampXc0Z4QUFBQUFQNHpFRDk1QUFBQW9IMGlERCtCQVFBQUFNQ3RxVzVCaVFFQUFBREErZjlMUVpFQkFBQUFHTmJVY2tHWkFRQUFBSUNJc25SQm9RRUFBQUJBWXVaU1Fha0JBQUFBRUNGc2VVSG9BUUdBQXBRRGlnSStNQzR3TURVNU5UUXNNUzR3TURBd01EQXNNUzR3TVRFd01qTXNNUzR5TXpBME9UTXNNUzR6TURBd01EQXNNUzQwTURBd01EQXNNUzQxTURBd01EQ1pBcGx1RW9QQXlnRkFvUUx0TjhUVDM3ZnFRY0VDR3k3UDBsampXc0hLQWdzSUFSRk0wQzZieHJWVHdjb0NDd2dDRVJzdXo5Slk0MXJCMlFLQTFPdDZWclJTUWVFQ1FMZVdWclNzTkVIcEFtTktySERIVTlGQmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvbVFNY2FML01Lb2JxUWFFRE9kTUFhYWNIVUVLNUF6ZDg2L3JBbk44L3dRTjNJVGIrbXV2aFA4a0RXZEIrV0RUNzVEL1JBODNhNUZmRmJPcy8rZ01MQ2dkU2IybFVhV1Z5RUFQNkF3MEtDVTl5WkdWeVZHbGxjaEFEK2dNUkNnMUpkR1Z0VUhKcFkyVlVhV1Z5RUFQNkF3a0tCVWx6VGxCQ0VBQ0JCQUFBQUtDdjlBWS9pUVFBQUFCQU84Z0JQNUFFbXdPWUJQN2VwNEtDVTZBRTl1cnNsUXVvQklDOHdaWUx1QVNLMFZUQUJJQzh3WllMeVFSN0ZLNUg0WHFVUCtFRWV4U3VSK0Y2bEQvcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFFQS9ZM2cvb1FVQUFBQUFBQUR3UDZrRkFBQUFBQ1l0OEQreEJRQUFBS0Fac1BNL3VRVUFBQURBek16MFA4RUZBQUFBWUdabTlqL0pCUUFBQUFBQUFQZy/qGQS8TcBN+hmcBgoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF82MDgyMzk3OTk1CikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDIwMzA0LDYxMTAxMDEwNAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoNCgdpc192c2t1EgIoAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAACwH4CAgICAgIAoyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMkl7TfE09+36kHyJQZTRUFSQ0g=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 6082397995,
            "shopid": 85961994,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":1109308,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98o-ls9lhjmbx37had\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,1002164,844931046478970,844931026694327,844931064601283,1918643,1718087960,1428713,2018618,2018619,1718093079,1015914,700190087,1400285055,1012729,298893311,298933384,1400066568,2153644,2213652,298463379,2008656,1059152,1049122,822059908662278,825465608497696,822120592853526,834403089593352,700005490,1049120,298468389,1718088045],\"merge_rank\":0,\"model_id\":85138005786,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":1109308,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98o-ls9lhjmbx37had\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,1002164,844931046478970,844931026694327,844931064601283,1918643,1718087960,1428713,2018618,2018619,1718093079,1015914,700190087,1400285055,1012729,298893311,298933384,1400066568,2153644,2213652,298463379,2008656,1059152,1049122,822059908662278,825465608497696,822120592853526,834403089593352,700005490,1049120,298468389,1718088045],\"merge_rank\":0,\"model_id\":85138005786,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EICJhLoCGIaFyNQBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUMUJ0L2VUdDQ1cjhGd05wcmRLYnVZN3JUaTROUlRKZmRnQTJ0UTFIdWFka1JUdm85STdPWWxlMGN1U1drQzNTM0dqL0l3bndqc0QzVXpPVVJRQ0lDbysxZURzc212ektoL3lVamQ5SG8vWkZnUlNwQ0hYOHd6WENzSllWdHYxby9OWHhIU2VnM0lFQzA0d1IzVUU5b3d4aDRNSDlFN2xTRjc5SWlJd2VLMjN2RVpuUWZSTUk4eVppNUtrYXJ1TXRzb25ITm8raEw3aXh0cVlOMGt4ZmhNOC82bzBRVU4rKzBtQTYyQ0V1MzE0bWNiUmozdUc2a1B3WGtpKzRtQmgwbFdET2dJd3VNOWRTbVgrQUdLdXg3ZnJwRy9VSzBpUnpLMEpnMWkvS1NTanU0MGNIcW5XTjVrVkVLWmM4eTFvREwwdXM2eHlHNWhReEM4MTVRY3FsME1mVm8rWHBncXlpWnF2anhTK0JGOHhoL2V0MlZ3eTExcVc4cjB4dGxUVm04bWp6Ri9oeEh3cWExL0JzblVqSkk5emc0THBkaTNzZDVvMUpIcFlVSnMrUlFZbGJ4NEdwR1pISFJpNVB6WERFeGRUeGJmRnA3RlpFdXl2cWNPVy90MmRnZms5czNHYTJGZnNDayt0N2J6NmxieHRGdHdRbDFrQVZNb3FBSHdOeHd3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABt5jNntsB6QEAAADglSXxP/EBAAAAYOCX8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENw/UoXAP5WkGhDQAAAKCKErVB+A2AgP316gawDrDftXfiDgyqjQbHjQbVjgbwkAbIDwjiGfgKRW9BQk1pNHlNREUzTml3dE1Td3RNU3d0TVN3dE1Td3lMakl5TkRBd01EQXdNREF3TURBd01EWXNNU3d6TGpjd09EUXhOVFF5TkRVek5ERTRPVFlzTUM0NUxDMHhMREF1TXpnNE5EUTFOams1TmpBMk16VTBNU3d3TGpBd016a3lNakUzT0RZNE9ERTVNakE0T0N3ekxqVTVOVEV3TWpjeE9Ua3lNVFF3TWpNc0xURWRhU1VxVFNDZmxjcW9BUzJqNlF4QU5RQUFnRDg1SEdpL3pDcUc2a0ZCT2RNQWFhY0hVRUpLRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFTZzRJclBPV0F4RUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SXF2T1dBeEVBQUFBQUFBQUFBRklPQ0t6emxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVdna0lnSUNBZ0lBRUVBQmFCd2lxODVZREVBQmFCd2lzODVZREVBQmFCd2lyODVZREVBQmlEZ2lzODVZREVRQUFBQUFBQUFBQVlnNElxL09XQXhFQUFBQUFBQUFBQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlwR3k3UDBsampXc0Z4QUFBQUFQNHpFRDk1QUFBQW9IMGlERCtCQVFBQUFNQ3RxVzVCaVFFQUFBREErZjlMUVpFQkFBQUFHTmJVY2tHWkFRQUFBSUNJc25SQm9RRUFBQUJBWXVaU1Fha0JBQUFBRUNGc2VVSG9BUUdBQXBRRGlnSStNQzR3TURVNU5UUXNNUzR3TURBd01EQXNNUzR3TVRFd01qTXNNUzR5TXpBME9UTXNNUzR6TURBd01EQXNNUzQwTURBd01EQXNNUzQxTURBd01EQ1pBcGx1RW9QQXlnRkFvUUx0TjhUVDM3ZnFRY0VDR3k3UDBsampXc0hLQWdzSUFSRk0wQzZieHJWVHdjb0NDd2dDRVJzdXo5Slk0MXJCMlFLQTFPdDZWclJTUWVFQ1FMZVdWclNzTkVIcEFtTktySERIVTlGQmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvbVFNY2FML01Lb2JxUWFFRE9kTUFhYWNIVUVLNUF6ZDg2L3JBbk44L3dRTjNJVGIrbXV2aFA4a0RXZEIrV0RUNzVEL1JBODNhNUZmRmJPcy8rZ01MQ2dkU2IybFVhV1Z5RUFQNkF3MEtDVTl5WkdWeVZHbGxjaEFEK2dNUkNnMUpkR1Z0VUhKcFkyVlVhV1Z5RUFQNkF3a0tCVWx6VGxCQ0VBQ0JCQUFBQUtDdjlBWS9pUVFBQUFCQU84Z0JQNUFFbXdPWUJQN2VwNEtDVTZBRTl1cnNsUXVvQklDOHdaWUx1QVNLMFZUQUJJQzh3WllMeVFSN0ZLNUg0WHFVUCtFRWV4U3VSK0Y2bEQvcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFFQS9ZM2cvb1FVQUFBQUFBQUR3UDZrRkFBQUFBQ1l0OEQreEJRQUFBS0Fac1BNL3VRVUFBQURBek16MFA4RUZBQUFBWUdabTlqL0pCUUFBQUFBQUFQZy/qGQS8TcBN+hmcBgoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF82MDgyMzk3OTk1CikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDIwMzA0LDYxMTAxMDEwNAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoNCgdpc192c2t1EgIoAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAACwH4CAgICAgIAoyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMkl7TfE09+36kHyJQZTRUFSQ0g=",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_6082397995",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26324327187,
              "shopid": 85961994,
              "name": "GREE AC Deluxe Standard N1A Series - 1 PK - GWC-09N1A GWC-09N1 Black Diamond Fin",
              "label_ids": [
                13,
                38,
                39,
                47,
                1000501,
                1000509,
                1400095067,
                1400285005,
                844931064601283,
                1400066568,
                1718093079,
                2018618,
                2018619,
                1012729,
                822059908662278,
                822120592853526,
                834403089593352,
                825465608497696,
                700005490,
                2153644,
                1718087960,
                1428713,
                1015914,
                700190087,
                2213652,
                298463379,
                1049120,
                2008656,
                700005495,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7ra0t-mdgxxrj7u7d7bf",
              "images": [
                "id-11134207-7ra0t-mdgxxrj7u7d7bf",
                "id-11134207-7rash-m5ccv3pw1cn452",
                "sg-11134201-7ra1w-m5cfatucfclca6",
                "sg-11134201-7ra11-m5cfau2y2rmz3e",
                "sg-11134201-7ra1b-m5cfau91v8mj94",
                "sg-11134201-7ra1o-m5cfaue1mklced",
                "sg-11134201-7ra1f-m5cfauihg2l3f6",
                "sg-11134201-7ra3y-m5cfaup56a970f",
                "sg-11134201-7ra1u-m5cfauv8yr8r80"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1737606624,
              "sold": 1,
              "historical_sold": 7,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100010,
              "brand": "Gree",
              "cmt_count": 2,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 413900000000,
              "price_min": 413900000000,
              "price_max": 413900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Type",
                  "options": [
                    "GWC-09N1A",
                    "GWC-09N1"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Instalasi",
                  "options": [
                    "Tanpa Pasang",
                    "Plus Pasang"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 413900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 296425339147,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 413900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 7,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 7,
                "display_sold_count_text": "7"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": " Sajun Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 655834328,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiYBttyccoal1VpJwLV8a2W0VhdQW8uF8xozP4UKUSgHvXVhWa0/TLP55euUB211VYynLnDNHVsoUmN1D7uSwkXw1HIn1B8P7yJcUFUTAxtr1rEhpDfijC7hfwoQllSGzTGa3TeWUgYSYiwMX8u+OSm1PvdegTZRzv1xTNZt0PL+W9kEX+u0RItvnpahwAVqhX4810DYw5vy0jHF6KFLupdYx+4hXdjZWwKFEDuZIOkJEwCov/mq4pdKqfS5EtailMCJJfnYUzbi7SyEKkx9WpYYztQLvdIivSf+844c/3uxZ3vQMzBXUjsULtkeUWF/pvWI2X2oeYt4tHMUBIinMBTg/B4sRuwezuTKxogjRVhHYKnfyIZTHD7JEFsbQ/Em6q4salj+i44ngiuau9GStXAhl6zoEVe1ycGHpXFC60N4XCOFzoYuFOj5XnzjkLAgxfz9ejebq7fqdodDeZG99wKplCFjGSSADJlQzVb6+IUhiQ==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ENj53LgCGMTihdMBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWUJ0dHljY29hbDFWcEp3TFY4YTJXMFZoZFFXOHVGOHhvelA0VUtVU2dIdlhWaFdhMC9UTFA1NWV1VUIyMTFWWXluTG5ETkhWc29VbU4xRDd1U3drWHcxSEluMUI4UDd5SmNVRlVUQXh0cjFyRWhwRGZpakM3aGZ3b1FsbFNHelRHYTNUZVdVZ1lTWWl3TVg4dStPU20xUHZkZWdUWlJ6djF4VE5adDBQTCtXOWtFWCt1MFJJdHZucGFod0FWcWhYNDgxMERZdzV2eTBqSEY2S0ZMdXBkWXgrNGhYZGpaV3dLRkVEdVpJT2tKRXdDb3YvbXE0cGRLcWZTNUV0YWlsTUNKSmZuWVV6Ymk3U3lFS2t4OVdwWVl6dFFMdmRJaXZTZis4NDRjLzN1eFozdlFNekJYVWpzVUx0a2VVV0YvcHZXSTJYMm9lWXQ0dEhNVUJJaW5NQlRnL0I0c1J1d2V6dVRLeG9nalJWaEhZS25meUlaVEhEN0pFRnNiUS9FbTZxNHNhbGoraTQ0bmdpdWF1OUdTdFhBaGw2em9FVmUxeWNHSHBYRkM2ME40WENPRnpvWXVGT2o1WG56amtMQWd4Zno5ZWplYnE3ZnFkb2REZVpHOTl3S3BsQ0ZqR1NTQURKbFF6VmI2K0lVaGlRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABrtnMn94B6QEAAADglSXxP/EBAAAAQKKL8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENUrgehZtKB0GhDQAAAIBJMmJB+A2AgNKz0AywDviU0NwB4g4Mqo0Gx40G1Y4G8JAGyA8J4hnkCUVuMHdMak16TURVMk16RTNORFEwTXpFek1pd3RNU3d0TVN3dE1Td3RNU3d3TGpNek1EVTJNekUzTkRRME16RXpNaXd4TERFdU1EWXlPVEV4TlRjd05ETXpPVE0yTlN3dE1Td3RNU3d4TGpBd01EQXhNak1zTVRZMUxqTTRPVFF3T1RJeE56YzRNell5TERBdU5UZ3hOVFUxTWprMU56TTFPVFkzTWl3dE1SM2lMOXhMSU11a3hnUXRsRCtwUGpVQUFJQS9TaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFjUUFBQUFCT0ZBMC9lUUFBQUNCdUxDby9nUUVBQUFBQWhHcDVRWWtCQUFBQWdEMVFha0dSQVFBQUFHQlJTWU5CbVFFQUFBRGc1U2VCUWFFQkFBQUFZUGJDY1VHcEFRQUFBQkJoQ1lwQjZBRUJnQUtVQTRvQ1BqQXVNREExTVRrMkxERXVNREF3TURBd0xERXVNREUzTlRrMUxERXVNakkwT1RReUxERXVNekF3TURBd0xERXVOREF3TURBd0xERXVOVEF3TURBd21RSkdzZDl4OGlmVlA2RUNyZTgwZU1KSndVSEJBZ0FBQUFBQUFBQ0F5Z0lMQ0FFUkFBQUFBQUFBQUFES0Fnc0lBaEVBQUFBQUFBQUFnTmtDQU9nL1VyT2VYVUhoQW9BWHJsc2xjRlJCNlFMZUJmUVkvQ2ltUVlvRE1BQUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQN2tEcWJpQXdPYjUzai9CQTlqKzBmT00rdUUveVFNQjJwVjBUWHJsUDlFRExOc2Z6OGlvNnorQkJBQUFBR0RobkFVL2lRUUFBQUFnUUVzQVA1QUVtd09ZQlA3ZXA0S0NVNkFFL3J2SXBnT29CSUR5aTZnSnVBU0N0c09CQnNBRWdQS0xxQW5KQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQUlFSklkVCtoQlFBQUFBQUFBUEEvcVFVQUFBQ2dFVWp3UDdFRkFBQUFRRjJaOHorNUJRQUFBTURNelBRL3dRVUFBQUJnWm1iMlA4a0ZBQUFBQUFBQStEOD3qGQIMFPoZkwYKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAyMDMwNAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoSCgx2b3VjaGVyX2xlbnMSAhAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9Cg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yNjMyNDMyNzE4NwoYChJyYXBpZF9ib29zdF90b2dnbGUSAigAsB+AgICAoICBqCDIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 26324327187,
            "shopid": 85961994,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":9540172,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0t-mdgxxrj7u7d7bf\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1718093079,2018618,2018619,1012729,822059908662278,822120592853526,834403089593352,825465608497696,700005490,2153644,1718087960,1428713,1015914,700190087,2213652,298463379,1049120,2008656,700005495,298468389,1718088045],\"merge_rank\":0,\"model_id\":296425339147,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":9540172,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0t-mdgxxrj7u7d7bf\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1718093079,2018618,2018619,1012729,822059908662278,822120592853526,834403089593352,825465608497696,700005490,2153644,1718087960,1428713,1015914,700190087,2213652,298463379,1049120,2008656,700005495,298468389,1718088045],\"merge_rank\":0,\"model_id\":296425339147,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ENj53LgCGMTihdMBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWUJ0dHljY29hbDFWcEp3TFY4YTJXMFZoZFFXOHVGOHhvelA0VUtVU2dIdlhWaFdhMC9UTFA1NWV1VUIyMTFWWXluTG5ETkhWc29VbU4xRDd1U3drWHcxSEluMUI4UDd5SmNVRlVUQXh0cjFyRWhwRGZpakM3aGZ3b1FsbFNHelRHYTNUZVdVZ1lTWWl3TVg4dStPU20xUHZkZWdUWlJ6djF4VE5adDBQTCtXOWtFWCt1MFJJdHZucGFod0FWcWhYNDgxMERZdzV2eTBqSEY2S0ZMdXBkWXgrNGhYZGpaV3dLRkVEdVpJT2tKRXdDb3YvbXE0cGRLcWZTNUV0YWlsTUNKSmZuWVV6Ymk3U3lFS2t4OVdwWVl6dFFMdmRJaXZTZis4NDRjLzN1eFozdlFNekJYVWpzVUx0a2VVV0YvcHZXSTJYMm9lWXQ0dEhNVUJJaW5NQlRnL0I0c1J1d2V6dVRLeG9nalJWaEhZS25meUlaVEhEN0pFRnNiUS9FbTZxNHNhbGoraTQ0bmdpdWF1OUdTdFhBaGw2em9FVmUxeWNHSHBYRkM2ME40WENPRnpvWXVGT2o1WG56amtMQWd4Zno5ZWplYnE3ZnFkb2REZVpHOTl3S3BsQ0ZqR1NTQURKbFF6VmI2K0lVaGlRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABrtnMn94B6QEAAADglSXxP/EBAAAAQKKL8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENUrgehZtKB0GhDQAAAIBJMmJB+A2AgNKz0AywDviU0NwB4g4Mqo0Gx40G1Y4G8JAGyA8J4hnkCUVuMHdMak16TURVMk16RTNORFEwTXpFek1pd3RNU3d0TVN3dE1Td3RNU3d3TGpNek1EVTJNekUzTkRRME16RXpNaXd4TERFdU1EWXlPVEV4TlRjd05ETXpPVE0yTlN3dE1Td3RNU3d4TGpBd01EQXhNak1zTVRZMUxqTTRPVFF3T1RJeE56YzRNell5TERBdU5UZ3hOVFUxTWprMU56TTFPVFkzTWl3dE1SM2lMOXhMSU11a3hnUXRsRCtwUGpVQUFJQS9TaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFjUUFBQUFCT0ZBMC9lUUFBQUNCdUxDby9nUUVBQUFBQWhHcDVRWWtCQUFBQWdEMVFha0dSQVFBQUFHQlJTWU5CbVFFQUFBRGc1U2VCUWFFQkFBQUFZUGJDY1VHcEFRQUFBQkJoQ1lwQjZBRUJnQUtVQTRvQ1BqQXVNREExTVRrMkxERXVNREF3TURBd0xERXVNREUzTlRrMUxERXVNakkwT1RReUxERXVNekF3TURBd0xERXVOREF3TURBd0xERXVOVEF3TURBd21RSkdzZDl4OGlmVlA2RUNyZTgwZU1KSndVSEJBZ0FBQUFBQUFBQ0F5Z0lMQ0FFUkFBQUFBQUFBQUFES0Fnc0lBaEVBQUFBQUFBQUFnTmtDQU9nL1VyT2VYVUhoQW9BWHJsc2xjRlJCNlFMZUJmUVkvQ2ltUVlvRE1BQUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQN2tEcWJpQXdPYjUzai9CQTlqKzBmT00rdUUveVFNQjJwVjBUWHJsUDlFRExOc2Z6OGlvNnorQkJBQUFBR0RobkFVL2lRUUFBQUFnUUVzQVA1QUVtd09ZQlA3ZXA0S0NVNkFFL3J2SXBnT29CSUR5aTZnSnVBU0N0c09CQnNBRWdQS0xxQW5KQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQUlFSklkVCtoQlFBQUFBQUFBUEEvcVFVQUFBQ2dFVWp3UDdFRkFBQUFRRjJaOHorNUJRQUFBTURNelBRL3dRVUFBQUJnWm1iMlA4a0ZBQUFBQUFBQStEOD3qGQIMFPoZkwYKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAyMDMwNAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoSCgx2b3VjaGVyX2xlbnMSAhAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9Cg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yNjMyNDMyNzE4NwoYChJyYXBpZF9ib29zdF90b2dnbGUSAigAsB+AgICAoICBqCDIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26324327187",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40258917131,
              "shopid": 117080411,
              "name": "AC DAIKIN BETA INVERTER 1/2 PK 1/2PK FTKE15 Nusantara Prestige",
              "label_ids": [
                2018618,
                1012729,
                2018619,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                822120592853526,
                1015914,
                700190087,
                2153644,
                1718093065,
                2213652,
                298468389
              ],
              "image": "id-11134207-81ztl-meo0qvz6n18j34",
              "images": [
                "id-11134207-81ztl-meo0qvz6n18j34",
                "id-11134207-7ra0q-mcaf3n7zd3r6a9",
                "id-11134207-81ztj-meo0qvz6lmo3d6",
                "id-11134207-81ztl-meo0qvz6k83n9f",
                "id-11134207-81ztq-meo0qvz6bsozdd",
                "id-11134207-81ztp-meo0qvz6g0eb27",
                "id-11134207-81ztd-meo0qvz6itj7a3",
                "id-11134207-7ra0r-mcaf3n7zeibmc7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1752806222,
              "sold": 3,
              "historical_sold": 7,
              "liked": false,
              "liked_count": 93,
              "view_count": null,
              "catid": 100010,
              "brand": "Daikin",
              "cmt_count": 3,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 492900000000,
              "price_min": 492900000000,
              "price_max": 492900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 492900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 285748299788,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 492900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 7,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 7,
                "display_sold_count_text": "7"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "INDO COOL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 519812211,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWibLQ55Pxvt5m3XJZngce+6w+fi9yb4y/r18HfgL/BVG5rfJgpocNkxHUj1i/10bBMPmC48M5b+kmxDMg5AMhaM+WGqGPaLjPo7ECSQWMn/nZLuGoZXLDljK3BazjuPySv9cT9WCeyHCjF+dFON8aWeayiD6dCUWmpl8DovTK4u+s1Y7tH5NujMfQJSZOhQf5mTPwFeuxqNnhkAJmoc4KDemWyz6l44XDCYE1RM8CNP31XuwKVw1lTpHSi4BpShlNRcn2My+P6xDJvN/w4zRqc45RJSqBJwNBx3hZvn5e3UY4gSQljtlWlNv7ug5rZD7J9ygA+8COlES4pMOBNC7xm28ez/5QJzDC59R6Chk+Dwjs6Ygm7C7daJ+sRqog4PodemMlNHZ3We0PiSgS7K4nWZ/icV/9DhOoF7wCxvefBMtYhelBOhE6EIMb4tADr27AAqGrKs+c0htEBJeoRxxq0bOel5acU6FEeRh9xFG3gCvEg==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EPPo7vcBGOjyw8MBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYkxRNTVQeHZ0NW0zWEpabmdjZSs2dytmaTl5YjR5L3IxOEhmZ0wvQlZHNXJmSmdwb2NOa3hIVWoxaS8xMGJCTVBtQzQ4TTViK2tteERNZzVBTWhhTStXR3FHUGFMalBvN0VDU1FXTW4vblpMdUdvWlhMRGxqSzNCYXpqdVB5U3Y5Y1Q5V0NleUhDakYrZEZPTjhhV2VheWlENmRDVVdtcGw4RG92VEs0dStzMVk3dEg1TnVqTWZRSlNaT2hRZjVtVFB3RmV1eHFObmhrQUptb2M0S0RlbVd5ejZsNDRYRENZRTFSTThDTlAzMVh1d0tWdzFsVHBIU2k0QnBTaGxOUmNuMk15K1A2eERKdk4vdzR6UnFjNDVSSlNxQkp3TkJ4M2hadm41ZTNVWTRnU1FsanRsV2xOdjd1ZzVyWkQ3Sjl5Z0ErOENPbEVTNHBNT0JOQzd4bTI4ZXovNVFKekRDNTlSNkNoaytEd2pzNllnbTdDN2RhSitzUnFvZzRQb2RlbU1sTkhaM1dlMFBpU2dTN0s0bldaL2ljVi85RGhPb0Y3d0N4dmVmQk10WWhlbEJPaEU2RUlNYjR0QURyMjdBQXFHcktzK2MwaHRFQkplb1J4eHEwYk9lbDVhY1U2RkVlUmg5eEZHM2dDdkVnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABmvf8sckK6QEAAACgxB3xP/EBAAAAAGWb8T/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5EN7FG4HqUcCUGhDQAAAABhnmNB+A2AgISZrA6wDqGCl/oB4g4Mqo0Gx40G1Y4G8JAGyA8K4hngCkVtNHdMak01Tml3dE1Td3RNU3d0TVN3dE1Td3dMalFzTVN3d0xqZ3pOemc0TmpjMU16QTFNalUyTkRFc01DNDVMQzB4TERBdU16ZzRORFExTmprNU5qQTJNelUwTVN3d0xqTXlOREE0T0Rjek5UZ3pNak01TmpVMkxEQXVOVGd4TlRVMU1qazFOek0xT1RZM01pd3RNUjNpTDl4TElJZm04d1F0ZzhES1BqVUFBSUEvT1FCZ0g2UHV3Sk5CUVRvRjVHbnJtaFZDU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBWWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBYVJTQWNUNDNGZ25CY1FBQUFHQjRHZ1EvZVFBQUFNQTFIQVUvZ1FFQUFBRGd5ZlZ6UVlrQkFBQUFvRzcrYmtHUkFRQUFBSmlBdW9GQm1RRUFBQUFBTi9KNlFhRUJBQUFBd1A2bWRFR3BBUUFBQU9DYXpJZEI2QUVCZ0FLVUE0b0NQakF1TURBME5USXlMREV1TURBd01EQXdMREV1TURBd01EQXdMREV1TVRrM05qVTFMREV1TVRrM05qVTFMREV1TVRrM05qVTFMREV1TXpBMU5UZ3htUUthbVptWm1ablpQNkVDcmU4MGVNSkp3VUhCQWhTQWNUNDNGZ25CeWdJTENBRVJGSUJ4UGpjV0NjSEtBZ3NJQWhHSmZ6QXA0cGtDd2RrQ0lMbGdOTzRuVWtIaEFnREVjWjRRcTFKQjZRSTJ6VXVOY1VHaFFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDVrREFHQWZvKzdBazBHaEF6b0Y1R25ybWhWQ3VRUHJyeGdoWEtIalA4RUQ3SWlxdi9MYTVUL0pBK0dvZGZQM3orZy8wUVBXZ2FDdVZESHRQL29EQ1FvRlNYTk9VRUlRQVBvREN3b0hVbTlwVkdsbGNoQUQrZ01OQ2dsUGNtUmxjbFJwWlhJUUEvb0RFUW9OU1hSbGJWQnlhV05sVkdsbGNoQURnUVFBQUFDZzJhQUFQNGtFQUFBQW9EYlQrejZRQkpzRG1BU04vUGZPOFFPZ0JPN1luOXNEcUFTQWxPdmNBN2dFa3J2TEFjQUVnSlRyM0FQSkJIc1Vya2ZoZXBRLzRRUjdGSzVINFhxVVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFBSk9GY2oraEJRQUFBQUFBQVBBL3FRVUFBQUFBQUFEd1A3RUZBQUFBNEpjcDh6KzVCUUFBQU9DWEtmTS93UVVBQUFEZ2x5bnpQOGtGQUFBQUFLbmo5RDg96hkEuU3DTfoZkwYKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChIKDHZvdWNoZXJfbGVucxICEAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQwMjU4OTE3MTMxCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoNCgdpc192c2t1EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigAsB/AgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 40258917131,
            "shopid": 117080411,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":10287,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-meo0qvz6n18j34\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018618,1012729,2018619,844931064601283,298463379,1059152,1059154,822059908662278,822120592853526,1015914,700190087,2153644,1718093065,2213652,298468389],\"merge_rank\":0,\"model_id\":285748299788,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":10287,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-meo0qvz6n18j34\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018618,1012729,2018619,844931064601283,298463379,1059152,1059154,822059908662278,822120592853526,1015914,700190087,2153644,1718093065,2213652,298468389],\"merge_rank\":0,\"model_id\":285748299788,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EPPo7vcBGOjyw8MBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYkxRNTVQeHZ0NW0zWEpabmdjZSs2dytmaTl5YjR5L3IxOEhmZ0wvQlZHNXJmSmdwb2NOa3hIVWoxaS8xMGJCTVBtQzQ4TTViK2tteERNZzVBTWhhTStXR3FHUGFMalBvN0VDU1FXTW4vblpMdUdvWlhMRGxqSzNCYXpqdVB5U3Y5Y1Q5V0NleUhDakYrZEZPTjhhV2VheWlENmRDVVdtcGw4RG92VEs0dStzMVk3dEg1TnVqTWZRSlNaT2hRZjVtVFB3RmV1eHFObmhrQUptb2M0S0RlbVd5ejZsNDRYRENZRTFSTThDTlAzMVh1d0tWdzFsVHBIU2k0QnBTaGxOUmNuMk15K1A2eERKdk4vdzR6UnFjNDVSSlNxQkp3TkJ4M2hadm41ZTNVWTRnU1FsanRsV2xOdjd1ZzVyWkQ3Sjl5Z0ErOENPbEVTNHBNT0JOQzd4bTI4ZXovNVFKekRDNTlSNkNoaytEd2pzNllnbTdDN2RhSitzUnFvZzRQb2RlbU1sTkhaM1dlMFBpU2dTN0s0bldaL2ljVi85RGhPb0Y3d0N4dmVmQk10WWhlbEJPaEU2RUlNYjR0QURyMjdBQXFHcktzK2MwaHRFQkplb1J4eHEwYk9lbDVhY1U2RkVlUmg5eEZHM2dDdkVnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABmvf8sckK6QEAAACgxB3xP/EBAAAAAGWb8T/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5EN7FG4HqUcCUGhDQAAAABhnmNB+A2AgISZrA6wDqGCl/oB4g4Mqo0Gx40G1Y4G8JAGyA8K4hngCkVtNHdMak01Tml3dE1Td3RNU3d0TVN3dE1Td3dMalFzTVN3d0xqZ3pOemc0TmpjMU16QTFNalUyTkRFc01DNDVMQzB4TERBdU16ZzRORFExTmprNU5qQTJNelUwTVN3d0xqTXlOREE0T0Rjek5UZ3pNak01TmpVMkxEQXVOVGd4TlRVMU1qazFOek0xT1RZM01pd3RNUjNpTDl4TElJZm04d1F0ZzhES1BqVUFBSUEvT1FCZ0g2UHV3Sk5CUVRvRjVHbnJtaFZDU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBWWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBYVJTQWNUNDNGZ25CY1FBQUFHQjRHZ1EvZVFBQUFNQTFIQVUvZ1FFQUFBRGd5ZlZ6UVlrQkFBQUFvRzcrYmtHUkFRQUFBSmlBdW9GQm1RRUFBQUFBTi9KNlFhRUJBQUFBd1A2bWRFR3BBUUFBQU9DYXpJZEI2QUVCZ0FLVUE0b0NQakF1TURBME5USXlMREV1TURBd01EQXdMREV1TURBd01EQXdMREV1TVRrM05qVTFMREV1TVRrM05qVTFMREV1TVRrM05qVTFMREV1TXpBMU5UZ3htUUthbVptWm1ablpQNkVDcmU4MGVNSkp3VUhCQWhTQWNUNDNGZ25CeWdJTENBRVJGSUJ4UGpjV0NjSEtBZ3NJQWhHSmZ6QXA0cGtDd2RrQ0lMbGdOTzRuVWtIaEFnREVjWjRRcTFKQjZRSTJ6VXVOY1VHaFFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDVrREFHQWZvKzdBazBHaEF6b0Y1R25ybWhWQ3VRUHJyeGdoWEtIalA4RUQ3SWlxdi9MYTVUL0pBK0dvZGZQM3orZy8wUVBXZ2FDdVZESHRQL29EQ1FvRlNYTk9VRUlRQVBvREN3b0hVbTlwVkdsbGNoQUQrZ01OQ2dsUGNtUmxjbFJwWlhJUUEvb0RFUW9OU1hSbGJWQnlhV05sVkdsbGNoQURnUVFBQUFDZzJhQUFQNGtFQUFBQW9EYlQrejZRQkpzRG1BU04vUGZPOFFPZ0JPN1luOXNEcUFTQWxPdmNBN2dFa3J2TEFjQUVnSlRyM0FQSkJIc1Vya2ZoZXBRLzRRUjdGSzVINFhxVVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFBSk9GY2oraEJRQUFBQUFBQVBBL3FRVUFBQUFBQUFEd1A3RUZBQUFBNEpjcDh6KzVCUUFBQU9DWEtmTS93UVVBQUFEZ2x5bnpQOGtGQUFBQUFLbmo5RDg96hkEuU3DTfoZkwYKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChIKDHZvdWNoZXJfbGVucxICEAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQwMjU4OTE3MTMxCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoNCgdpc192c2t1EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigAsB/AgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40258917131",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43014882109,
              "shopid": 1294678510,
              "name": "AC Gree GWC-05N1A - 1/2 PK | 0.5 PK - N1A Series - Non Inverter - R32",
              "label_ids": [
                2018619,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1049120,
                700005490,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                822120592853526,
                1718093065,
                1015914,
                700190087,
                1400285055,
                834403089593352,
                2068629,
                298938357,
                2023641,
                1718088045,
                298468389,
                2098629,
                298938368,
                2098628
              ],
              "image": "id-11134207-7ra0n-mdskthst6cnj5f",
              "images": [
                "id-11134207-7ra0n-mdskthst6cnj5f",
                "id-11134207-7ra0k-mdskthst95sf29",
                "id-11134207-7ra0g-mdskthst24y7bb",
                "id-11134207-7ra0p-mdskthst3jin82",
                "id-11134207-7ra0o-mdskthst4y333f",
                "id-11134207-7ra0i-mdskthst7r7z78"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1756019383,
              "sold": 2,
              "historical_sold": 10,
              "liked": false,
              "liked_count": 13,
              "view_count": null,
              "catid": 100010,
              "brand": "Gree",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 347900000000,
              "price_min": 347900000000,
              "price_max": 347900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Package",
                  "options": [
                    "Unit Only",
                    "+Packing Kayu",
                    "+Paket 3M",
                    "+Paket 5M",
                    "+Paket 3M (Tebal)",
                    "+Paket 5M (Tebal)"
                  ],
                  "images": [
                    "id-11134207-8224w-miwqt74xthqb9c",
                    "id-11134207-8224w-miwqt74xuwar15",
                    "id-11134207-8224w-miwqt74xwav768",
                    "id-11134207-82252-miwqt74xxpfn2b",
                    "id-11134207-8224t-miwqt74xz403cc",
                    "id-11134207-8224u-miwqt74xs35vaa"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp1,1JT X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 347900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 248791371833,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 347900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 10,
                "display_sold_count_text": "10"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp1,2JT x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Wulitonย Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 606284621,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiY/9Il/XoZbI+53wSL5rVV8klUnvegRtpyQRK8lj26Kvf0ZsJdwESCQAx2FoEvj0zLKIbKg3pNiqLe0ivEazpvW/DdKf+ktnP8sLCjkqNJE67xYmGLAyqbybFSm82wzi8UrHF10wI80OiveaFMDBNSLJdunoSDfJtyDCEptimaHRtfCPqVNWUSWfSH20majBAwWx/J+7u837BiBQ8mfloBEUrcNmTHMVJabc9IMn1Pz1r2pGkIkrCmLIYHdysybPPVyaJ8sQasdgjvDV25HiPf4C6MwiW2d3ikYbtrGOwyNEKLMl/wpRzQnfpQzRsdTU2vyDx4zwyMn/5Xx/XWXGLiNSVzPul33ETt37/eAzOv0zSzYIy4dQx8XOH30LQ7S+QYAoA74zifp0r3ahKdxzK7Q5Vym2CdUufb/rqUN7TSKyeadQuQ/iqVfEsvv1HIXzws2L0NeyW5KLImRTe1eO14AB7IJr+UBvSVSuyE0StWe1Q==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EM3WjKECGL+T/M0BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWS85SWwvWG9aYkkrNTN3U0w1clZWOGtsVW52ZWdSdHB5UVJLOGxqMjZLdmYwWnNKZHdFU0NRQXgyRm9FdmowekxLSWJLZzNwTmlxTGUwaXZFYXpwdlcvRGRLZitrdG5QOHNMQ2prcU5KRTY3eFltR0xBeXFieWJGU204Mnd6aThVckhGMTB3STgwT2l2ZWFGTURCTlNMSmR1bm9TRGZKdHlEQ0VwdGltYUhSdGZDUHFWTldVU1dmU0gyMG1hakJBd1d4L0orN3U4MzdCaUJROG1mbG9CRVVyY05tVEhNVkphYmM5SU1uMVB6MXIycEdrSWtyQ21MSVlIZHlzeWJQUFZ5YUo4c1Fhc2RnanZEVjI1SGlQZjRDNk13aVcyZDNpa1lidHJHT3d5TkVLTE1sL3dwUnpRbmZwUXpSc2RUVTJ2eUR4NHp3eU1uLzVYeC9YV1hHTGlOU1Z6UHVsMzNFVHQzNy9lQXpPdjB6U3pZSXk0ZFF4OFhPSDMwTFE3UytRWUFvQTc0emlmcDByM2FoS2R4eks3UTVWeW0yQ2RVdWZiL3JxVU43VFNLeWVhZFF1US9pcVZmRXN2djFISVh6d3MyTDBOZXlXNUtMSW1SVGUxZU8xNEFCN0lKcitVQnZTVlN1eUUwU3RXZTFRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB6ZCWxUbpAQAAAOCVJfE/8QEAAACArMAIQMgMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ3sUbgeUSMFQaENAAAAYJeDYEH4DYCA6pL+CbAO8L66rgHiDgyqjQbHjQbVjgbwkAbIDwviGZQKRW1Bd0xqTXNMVEVzTFRFc0xURXNMVEVzTUM0ekxERXNNaTQ1T1RVNU9UVTJNekExT1RJNE1USXNMVEVzTFRFc01TNHdNREF3TVRJekxERXVNakF4TVRnek5UZzFOVGN3TlRjME1Td3dMalU0TVRVMU5USTVOVGN6TlRrMk56SXNMVEVkNGkvY1N5QzZ1WkFFTFpxWm1UNDFBQUNBUDBvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpcjg1WURFUUFBQUFBQUFBQUFTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJOFBmaEJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SThQZmhCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0k4UGZoQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVlnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJpRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJpRGdqdzkrRUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AybWFQV1FaaG1xNndIRUFBQUNBYWJRRFAza0FBQUFBRVdZUlA0RUJBQUFBZ0o0OGEwR0pBUUFBQUFEelJFcEJrUUVBQUFDZzdlWndRWmtCQUFBQW9JUmlja0doQVFBQUFFQlh1MUZCcVFFQUFBQndXdEYyUWVnQkFZQUNsQU9LQWo0d0xqQXdNemt3Tml3eExqQXdNREF3TUN3eExqQXdNVGMwTVN3eExqSXpOVEUxTml3eExqTXdNREF3TUN3eExqTXpNelE1TVN3eExqVXdNREF3TUprQ016TXpNek16MHoraEFxM3ZOSGpDU2NGQndRS2FQV1FaaG1xNndNb0NDd2dCRVFBQUFBQUFBQUFBeWdJTENBSVJtajFrR1lacXVzRFpBb0N3L1Z6M25sSkI0UUlBQ09NNDU1RTJRZWtDZm5ORDVZNTFxVUdLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEKzVBKys3TU5DNk1lRS93UU1vNEFHSCs2RGpQOGtER3MyOEdLZ3M1ei9SQThRa2Z5WXVPdTAvZ1FRQUFBRGd6ejM5UG9rRUFBQUFvT2dkOWo2UUJKc0RtQVM0dVorcjN3R2dCTStuOWVVQnFBU0F5clh1QWJnRXNhTEFDTUFFZ01xMTdnSEpCSHNVcmtmaGVwUS80UVI3Rks1SDRYcVVQK2tFQUFBQUFBQUE4RC94QkFBQUFBQUFBUEEvK1FRQUFBQUFBQUR3UDRFRkFBQUFBQUFBOEQrSkJRQUFBQUFBQVBBL2tRVUFBQUFBQUFEd1A1a0ZBQUFBQUJBQWNEK2hCUUFBQUFBQUFQQS9xUVVBQUFEQUlRZndQN0VGQUFBQUlEUEQ4eis1QlFBQUFNRE16UFEvd1FVQUFBQWcrMVgxUDhrRkFBQUFBQUFBK0Q4PeoZAgsU8hkCzQj6GZMGCh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0CiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF80MzAxNDg4MjEwOQoNCgdpc192c2t1EgIoAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoSCgx2b3VjaGVyX2xlbnMSAhAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoWCg1iaXpfcXVldWVfaWRzEgUiA2Fkc7AfgICAgIiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 43014882109,
            "shopid": 1294678510,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":8319981,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0n-mdskthst6cnj5f\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,1718093079,1049120,700005490,822059908662278,825465608497696,825465608494624,825465608499232,822120592853526,1718093065,1015914,700190087,1400285055,834403089593352,2068629,298938357,2023641,1718088045,298468389,2098629,298938368,2098628],\"merge_rank\":0,\"model_id\":248791371833,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":8319981,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0n-mdskthst6cnj5f\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,1718093079,1049120,700005490,822059908662278,825465608497696,825465608494624,825465608499232,822120592853526,1718093065,1015914,700190087,1400285055,834403089593352,2068629,298938357,2023641,1718088045,298468389,2098629,298938368,2098628],\"merge_rank\":0,\"model_id\":248791371833,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EM3WjKECGL+T/M0BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWS85SWwvWG9aYkkrNTN3U0w1clZWOGtsVW52ZWdSdHB5UVJLOGxqMjZLdmYwWnNKZHdFU0NRQXgyRm9FdmowekxLSWJLZzNwTmlxTGUwaXZFYXpwdlcvRGRLZitrdG5QOHNMQ2prcU5KRTY3eFltR0xBeXFieWJGU204Mnd6aThVckhGMTB3STgwT2l2ZWFGTURCTlNMSmR1bm9TRGZKdHlEQ0VwdGltYUhSdGZDUHFWTldVU1dmU0gyMG1hakJBd1d4L0orN3U4MzdCaUJROG1mbG9CRVVyY05tVEhNVkphYmM5SU1uMVB6MXIycEdrSWtyQ21MSVlIZHlzeWJQUFZ5YUo4c1Fhc2RnanZEVjI1SGlQZjRDNk13aVcyZDNpa1lidHJHT3d5TkVLTE1sL3dwUnpRbmZwUXpSc2RUVTJ2eUR4NHp3eU1uLzVYeC9YV1hHTGlOU1Z6UHVsMzNFVHQzNy9lQXpPdjB6U3pZSXk0ZFF4OFhPSDMwTFE3UytRWUFvQTc0emlmcDByM2FoS2R4eks3UTVWeW0yQ2RVdWZiL3JxVU43VFNLeWVhZFF1US9pcVZmRXN2djFISVh6d3MyTDBOZXlXNUtMSW1SVGUxZU8xNEFCN0lKcitVQnZTVlN1eUUwU3RXZTFRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB6ZCWxUbpAQAAAOCVJfE/8QEAAACArMAIQMgMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ3sUbgeUSMFQaENAAAAYJeDYEH4DYCA6pL+CbAO8L66rgHiDgyqjQbHjQbVjgbwkAbIDwviGZQKRW1Bd0xqTXNMVEVzTFRFc0xURXNMVEVzTUM0ekxERXNNaTQ1T1RVNU9UVTJNekExT1RJNE1USXNMVEVzTFRFc01TNHdNREF3TVRJekxERXVNakF4TVRnek5UZzFOVGN3TlRjME1Td3dMalU0TVRVMU5USTVOVGN6TlRrMk56SXNMVEVkNGkvY1N5QzZ1WkFFTFpxWm1UNDFBQUNBUDBvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpcjg1WURFUUFBQUFBQUFBQUFTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJOFBmaEJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SThQZmhCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0k4UGZoQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVlnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJpRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJpRGdqdzkrRUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AybWFQV1FaaG1xNndIRUFBQUNBYWJRRFAza0FBQUFBRVdZUlA0RUJBQUFBZ0o0OGEwR0pBUUFBQUFEelJFcEJrUUVBQUFDZzdlWndRWmtCQUFBQW9JUmlja0doQVFBQUFFQlh1MUZCcVFFQUFBQndXdEYyUWVnQkFZQUNsQU9LQWo0d0xqQXdNemt3Tml3eExqQXdNREF3TUN3eExqQXdNVGMwTVN3eExqSXpOVEUxTml3eExqTXdNREF3TUN3eExqTXpNelE1TVN3eExqVXdNREF3TUprQ016TXpNek16MHoraEFxM3ZOSGpDU2NGQndRS2FQV1FaaG1xNndNb0NDd2dCRVFBQUFBQUFBQUFBeWdJTENBSVJtajFrR1lacXVzRFpBb0N3L1Z6M25sSkI0UUlBQ09NNDU1RTJRZWtDZm5ORDVZNTFxVUdLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEKzVBKys3TU5DNk1lRS93UU1vNEFHSCs2RGpQOGtER3MyOEdLZ3M1ei9SQThRa2Z5WXVPdTAvZ1FRQUFBRGd6ejM5UG9rRUFBQUFvT2dkOWo2UUJKc0RtQVM0dVorcjN3R2dCTStuOWVVQnFBU0F5clh1QWJnRXNhTEFDTUFFZ01xMTdnSEpCSHNVcmtmaGVwUS80UVI3Rks1SDRYcVVQK2tFQUFBQUFBQUE4RC94QkFBQUFBQUFBUEEvK1FRQUFBQUFBQUR3UDRFRkFBQUFBQUFBOEQrSkJRQUFBQUFBQVBBL2tRVUFBQUFBQUFEd1A1a0ZBQUFBQUJBQWNEK2hCUUFBQUFBQUFQQS9xUVVBQUFEQUlRZndQN0VGQUFBQUlEUEQ4eis1QlFBQUFNRE16UFEvd1FVQUFBQWcrMVgxUDhrRkFBQUFBQUFBK0Q4PeoZAgsU8hkCzQj6GZMGCh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0CiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF80MzAxNDg4MjEwOQoNCgdpc192c2t1EgIoAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoSCgx2b3VjaGVyX2xlbnMSAhAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoWCg1iaXpfcXVldWVfaWRzEgUiA2Fkc7AfgICAgIiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43014882109",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29735457407,
              "shopid": 191316346,
              "name": "AC MITSUBISHI YYP Series 1PK 1.5PK 2PK EON Inverter Low Watt 1 1.5 2 PK Air Conditioner",
              "label_ids": [
                1400066568,
                1002164,
                2018618,
                1400095067,
                1400285005,
                844931064601283,
                298933384,
                2153644,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                822120592853526,
                2068629,
                298938357,
                2213652,
                298463379,
                700700063,
                298938368,
                298468389,
                2098628,
                2098629,
                1718088045
              ],
              "image": "id-11134207-7rbka-m974nj7pupld7c",
              "images": [
                "id-11134207-7rbka-m974nj7pupld7c",
                "id-11134207-7rbk1-m974nj7pw45t05",
                "id-11134207-7rbke-m95ocjouucf287",
                "id-11134207-7rbk3-m95ocjourja682",
                "id-11134207-7rbk7-m95ocjouq4pq5c",
                "id-11134207-7rbk0-m95ocjouj3vi52",
                "id-11134207-7rbk4-m95ocjousxum90",
                "id-11134207-7rbk2-m95ocjoukify58",
                "id-11134207-7rbkb-m95ocjoulx0e63"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1745942814,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 12,
              "view_count": null,
              "catid": 100010,
              "brand": "MITSUBISHI",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 751900000000,
              "price_min": 751900000000,
              "price_max": 751900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmiu-m964nqkq7psu2f.16000031745942487.mp4",
                  "thumb_url": "id-11110105-6kmiu-m964nqkq7psu2f_cover",
                  "duration": 23,
                  "version": 2,
                  "vid": "id-11110105-6kmiu-m964nqkq7psu2f",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmiu-m964nqkq7psu2f.16000031745942487.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiu-m964nqkq7psu2f.16000031745942487.mp4",
                      "width": 1052,
                      "height": 480
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiu-m964nqkq7psu2f.default.mp4",
                    "width": 1052,
                    "height": 480
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "UKURAN",
                  "options": [
                    "1PK - SR 10 YYP",
                    "1.5PK - SR 13 YYP",
                    "2PK - SR 18 YYP"
                  ],
                  "images": [
                    "id-11134207-7rbk0-m974nj7pxiq9c1",
                    "id-11134207-7rbk6-m974nj7pyxap40",
                    "id-11134207-7rbk7-m975df6zqo9q94"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "PAKET",
                  "options": [
                    "AC",
                    "AC+PASANG+STANDARD3M",
                    "AC+PASANG+STANDARD5M",
                    "AC+PASANG+SAEKI3M",
                    "AC+PASANG+SAEKI5M"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp2,5JT X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 751900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 253336726222,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 751900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp2,5JT x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Setia Mandiri Elektronik Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 666276180,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWia+1qidcl2ia8uyp1rSgnKVGf3eaRyIo09zakalmuNlaPY1u0kNs3XkC7sdXFRFhsLpUsIMOyLTFRqMJp8XOM39jr8ZI7E8QQElk/dhYz945LKoj3g3GnLAKvwu4MvKQZbFz0ycd7ydI6CEniL3v33llMZFnKkqYLjy1tHEYRZCRRYjFnP6urVB57ihGwaJWP4/qYlVXGh70rO/DIPq7Q632yMR3wB3Do6FRrjQZNNMSGQoH/faMRWs6K3MKQ8qIQ74dCxj/UOn2lpPivsl3XXFHQ0CtcOL4L7h2qRXniwye8EQ14Vzija93WQdO7aMKW8bsEMQ/I5P6S/CIvlBl3ucLzuWR8DbGSOyDi34BX2fehktaI76I6a/dQ7sfjas5wOXmdtklYCmtHIjFvcUCOUJUPsPsHor9NSOcFOLouFjjnzIPPUmQ1Xjml0QWG3IxZNAfSnC+s23dO9v4UfESG9AzcXoSt3oUpPX517xXtpX6g==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ENSi2r0CGI6vmNYBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYSsxcWlkY2wyaWE4dXlwMXJTZ25LVkdmM2VhUnlJbzA5emFrYWxtdU5sYVBZMXUwa05zM1hrQzdzZFhGUkZoc0xwVXNJTU95TFRGUnFNSnA4WE9NMzlqcjhaSTdFOFFRRWxrL2RoWXo5NDVMS29qM2czR25MQUt2d3U0TXZLUVpiRnoweWNkN3lkSTZDRW5pTDN2MzNsbE1aRm5La3FZTGp5MXRIRVlSWkNSUllqRm5QNnVyVkI1N2loR3dhSldQNC9xWWxWWEdoNzByTy9ESVBxN1E2MzJ5TVIzd0IzRG82RlJyalFaTk5NU0dRb0gvZmFNUldzNkszTUtROHFJUTc0ZEN4ai9VT24ybHBQaXZzbDNYWEZIUTBDdGNPTDRMN2gycVJYbml3eWU4RVExNFZ6aWphOTNXUWRPN2FNS1c4YnNFTVEvSTVQNlMvQ0l2bEJsM3VjTHp1V1I4RGJHU095RGkzNEJYMmZlaGt0YUk3Nkk2YS9kUTdzZmphczV3T1htZHRrbFlDbXRISWpGdmNVQ09VSlVQc1BzSG9yOU5TT2NGT0xvdUZqam56SVBQVW1RMVhqbWwwUVdHM0l4Wk5BZlNuQytzMjNkTzl2NFVmRVNHOUF6Y1hvU3Qzb1VwUFg1MTd4WHRwWDZnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABuIab6+kD6QEAAADglSXxP/EBAAAAwEbE8D/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENFa5H4fxQJUGhDQAAAJBFp4BB+A2AgLz83RawDt2LmI0D4g4Mqo0Gx40G1Y4G8JAGyA8M4hm0CkVuNHhMakl4TURFeU56ZzNNVEk1TmpVNU56VXNMVEVzTFRFc0xURXNMVEVzTVM0eU1UQXhNamM0TnpFeU9UWTFPVGMxTERFc01pNHdPRE01T1RjME5UVTVNRFV5TmpVMkxDMHhMQzB4TERFdU1EQXdNREV5TXl3ME9EQXVNakF6TnpZd01EQTJNVFUzT1N3d0xqVTRNVFUxTlRJNU5UY3pOVGsyTnpJc0xURWQ0aS9jU3lDeDBkTVFMWGpsbWo4MUFBQ0FQMG9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUVvUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUVvT0NQRDM0UVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFVZzRJOFBmaEJCRUFBQUFBQUFBQUFGSU9DS3J6bGdNUkFBQUFBQUFBQUFCU0RnaXM4NVlERVFBQUFBQUFBQUFBVWc0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRm9IQ1BEMzRRUVFBRm9IQ0tyemxnTVFBRm9IQ0t6emxnTVFBRm9IQ0t2emxnTVFBRm9KQ0lDQWdJQ0FCQkFBWWc0SXF2T1dBeEVBQUFBQUFBRHdQMklPQ0t6emxnTVJBQUFBQUFBQUFBQmlEZ2lyODVZREVRQUFBQUFBQUFBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNEk4UGZoQkJFQUFBQUFBQUFBQUhFQUFBQ2drV1VXUDNrQUFBQ2d1dFVFUDRFQkFBQUFvTm1la1VHSkFRQUFBS0RkMkZSQmtRRUFBQUI2Wit5U1Faa0JBQUFBNEtYSmwwR2hBUUFBQU9ERUpGeEJxUUVBQUFBdThvdVpRZWdCQVlBQ2xBT0tBajR3TGpBd01UY3dPQ3d4TGpBd01EQXdNQ3d4TGpBd01EQXdNQ3d4TGpJMU1EQXdNQ3d4TGpNd01EQXdNQ3d4TGpNM01USTROQ3d4TGpVd01EQXdNSmtDMkNiekNxOWM4eitoQXEzdk5IakNTY0ZCd1FJQUFBQUFBQUFBZ01vQ0N3Z0JFUUFBQUFBQUFBQUF5Z0lMQ0FJUkFBQUFBQUFBQUlEWkFvQUF1ZFhKYjJkQjRRTEFBcFlOdWtFMVFla0MxQzdiWUVLc21rR0tBekFBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQrNUE1MDBPR2ZMQStVL3dRTTB2NFdodlJ2blA4a0RUdFpPUGVRZjZqL1JBeUZtN3c2TmxPNC9nUVFBQUFEQXJIc1NQNGtFQUFBQVlBZnNEVCtRQkpzRG1BU2lpYzZ5cnFRSm9BVDJ5TnVEREtnRWdKRGZ3RXE0QklySGc3MCt3QVNBa04vQVNza0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUNBcy94YlA2RUZBQUFBQUFBQThEK3BCUUFBQUFBQUFQQS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFDREg4UFUveVFVQUFBQUFBQUQ0UHc9PeoZAgwW+hmdBgoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigACikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDIwMzA0LDYxMTAxMDEwNAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9Cg0KB2lzX3Zza3USAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI5NzM1NDU3NDA3ChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChIKDHZvdWNoZXJfbGVucxICEAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAsB+AgICAqICBoCDIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 29735457407,
            "shopid": 191316346,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":34924722,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbka-m974nj7pupld7c\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1400066568,1002164,2018618,1400095067,1400285005,844931064601283,298933384,2153644,1718093079,1059152,1059154,822059908662278,825465608497696,822120592853526,2068629,298938357,2213652,298463379,700700063,298938368,298468389,2098628,2098629,1718088045],\"merge_rank\":0,\"model_id\":253336726222,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":34924722,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbka-m974nj7pupld7c\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1400066568,1002164,2018618,1400095067,1400285005,844931064601283,298933384,2153644,1718093079,1059152,1059154,822059908662278,825465608497696,822120592853526,2068629,298938357,2213652,298463379,700700063,298938368,298468389,2098628,2098629,1718088045],\"merge_rank\":0,\"model_id\":253336726222,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ENSi2r0CGI6vmNYBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYSsxcWlkY2wyaWE4dXlwMXJTZ25LVkdmM2VhUnlJbzA5emFrYWxtdU5sYVBZMXUwa05zM1hrQzdzZFhGUkZoc0xwVXNJTU95TFRGUnFNSnA4WE9NMzlqcjhaSTdFOFFRRWxrL2RoWXo5NDVMS29qM2czR25MQUt2d3U0TXZLUVpiRnoweWNkN3lkSTZDRW5pTDN2MzNsbE1aRm5La3FZTGp5MXRIRVlSWkNSUllqRm5QNnVyVkI1N2loR3dhSldQNC9xWWxWWEdoNzByTy9ESVBxN1E2MzJ5TVIzd0IzRG82RlJyalFaTk5NU0dRb0gvZmFNUldzNkszTUtROHFJUTc0ZEN4ai9VT24ybHBQaXZzbDNYWEZIUTBDdGNPTDRMN2gycVJYbml3eWU4RVExNFZ6aWphOTNXUWRPN2FNS1c4YnNFTVEvSTVQNlMvQ0l2bEJsM3VjTHp1V1I4RGJHU095RGkzNEJYMmZlaGt0YUk3Nkk2YS9kUTdzZmphczV3T1htZHRrbFlDbXRISWpGdmNVQ09VSlVQc1BzSG9yOU5TT2NGT0xvdUZqam56SVBQVW1RMVhqbWwwUVdHM0l4Wk5BZlNuQytzMjNkTzl2NFVmRVNHOUF6Y1hvU3Qzb1VwUFg1MTd4WHRwWDZnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABuIab6+kD6QEAAADglSXxP/EBAAAAwEbE8D/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENFa5H4fxQJUGhDQAAAJBFp4BB+A2AgLz83RawDt2LmI0D4g4Mqo0Gx40G1Y4G8JAGyA8M4hm0CkVuNHhMakl4TURFeU56ZzNNVEk1TmpVNU56VXNMVEVzTFRFc0xURXNMVEVzTVM0eU1UQXhNamM0TnpFeU9UWTFPVGMxTERFc01pNHdPRE01T1RjME5UVTVNRFV5TmpVMkxDMHhMQzB4TERFdU1EQXdNREV5TXl3ME9EQXVNakF6TnpZd01EQTJNVFUzT1N3d0xqVTRNVFUxTlRJNU5UY3pOVGsyTnpJc0xURWQ0aS9jU3lDeDBkTVFMWGpsbWo4MUFBQ0FQMG9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUVvUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUVvT0NQRDM0UVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFVZzRJOFBmaEJCRUFBQUFBQUFBQUFGSU9DS3J6bGdNUkFBQUFBQUFBQUFCU0RnaXM4NVlERVFBQUFBQUFBQUFBVWc0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRm9IQ1BEMzRRUVFBRm9IQ0tyemxnTVFBRm9IQ0t6emxnTVFBRm9IQ0t2emxnTVFBRm9KQ0lDQWdJQ0FCQkFBWWc0SXF2T1dBeEVBQUFBQUFBRHdQMklPQ0t6emxnTVJBQUFBQUFBQUFBQmlEZ2lyODVZREVRQUFBQUFBQUFBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNEk4UGZoQkJFQUFBQUFBQUFBQUhFQUFBQ2drV1VXUDNrQUFBQ2d1dFVFUDRFQkFBQUFvTm1la1VHSkFRQUFBS0RkMkZSQmtRRUFBQUI2Wit5U1Faa0JBQUFBNEtYSmwwR2hBUUFBQU9ERUpGeEJxUUVBQUFBdThvdVpRZWdCQVlBQ2xBT0tBajR3TGpBd01UY3dPQ3d4TGpBd01EQXdNQ3d4TGpBd01EQXdNQ3d4TGpJMU1EQXdNQ3d4TGpNd01EQXdNQ3d4TGpNM01USTROQ3d4TGpVd01EQXdNSmtDMkNiekNxOWM4eitoQXEzdk5IakNTY0ZCd1FJQUFBQUFBQUFBZ01vQ0N3Z0JFUUFBQUFBQUFBQUF5Z0lMQ0FJUkFBQUFBQUFBQUlEWkFvQUF1ZFhKYjJkQjRRTEFBcFlOdWtFMVFla0MxQzdiWUVLc21rR0tBekFBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQrNUE1MDBPR2ZMQStVL3dRTTB2NFdodlJ2blA4a0RUdFpPUGVRZjZqL1JBeUZtN3c2TmxPNC9nUVFBQUFEQXJIc1NQNGtFQUFBQVlBZnNEVCtRQkpzRG1BU2lpYzZ5cnFRSm9BVDJ5TnVEREtnRWdKRGZ3RXE0QklySGc3MCt3QVNBa04vQVNza0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUNBcy94YlA2RUZBQUFBQUFBQThEK3BCUUFBQUFBQUFQQS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFDREg4UFUveVFVQUFBQUFBQUQ0UHc9PeoZAgwW+hmdBgoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigACikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDIwMzA0LDYxMTAxMDEwNAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9Cg0KB2lzX3Zza3USAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI5NzM1NDU3NDA3ChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChIKDHZvdWNoZXJfbGVucxICEAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAsB+AgICAqICBoCDIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29735457407",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 6242949088,
              "shopid": 211468201,
              "name": "AC MIDEA MSAF-09CRN2X + PASANG AC SPLIT 1 PK STANDARD",
              "label_ids": [
                1002164,
                1400095067,
                1400285005,
                1000961,
                844931026694327,
                844931046478970,
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                700585046,
                822120592853526,
                2018618,
                1012763,
                1015914,
                700190087,
                2153644,
                2213652,
                1400066568,
                825465608497696,
                298463379,
                1718093079,
                2008656,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82250-mhu7q4tyfuva5f",
              "images": [
                "id-11134207-82250-mhu7q4tyfuva5f",
                "id-11134207-7r98r-ln8d7fe1kop8b6",
                "id-11134207-7r98o-lxauz505qer28b",
                "id-11134207-7r98s-lxauz505rtbice",
                "id-11134207-7r991-lxauz505p06m89",
                "id-11134207-7r98o-lxauz505nlm696"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1595232488,
              "sold": 1,
              "historical_sold": 11,
              "liked": false,
              "liked_count": 59,
              "view_count": null,
              "catid": 100010,
              "brand": "Midea",
              "cmt_count": 5,
              "flag": 917504,
              "cb_option": 0,
              "item_status": "normal",
              "price": 347400000000,
              "price_min": 347400000000,
              "price_max": 347400000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Paket",
                  "options": [
                    "PASANG 0.5mm",
                    "PASANG 0.6mm",
                    "PASANG 0.76mm"
                  ],
                  "images": [
                    "id-11134207-7r98y-ln8d8lck68d945",
                    "id-11134207-7r98z-ln8d8n39mguv6c",
                    "id-11134207-7r98u-ln8d8ov312t2e9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.8,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  1,
                  4
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 347400000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 98809464403,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 347400000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 11,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 11,
                "display_sold_count_text": "11"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SELKA.id Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 409295052,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWibibJYhHIfhoWiqd/DV0ZNLiSLt2d02htmBor186cqyaDpfUPlUZBBxNOfy6MVF6ydxmuMk7RcdcFYsYVdtIESPSIOy+87/r/XV6I49YkBPJtZ2D22qhiPBwG9BlKgCY2IS5wz73K5l2CE4m48u/B0gH/+KJyUH2CWJJnyex5pkXHdKfswJYHJlrYcRzFLf6D3rx3sKIytQW8BJVzd4ff7/NQ89ibVwWzJK7rR6jrN9PWeJEXr8RwgxBgNq01AU/3ZU6ncA7V9SEQnDsFc5dXE853ygKdCs13gvYvyTMsgf3hLX8KEK7hygblh/eRkBWA4KtZmrpMf+TzO0wf/WP9FIAf4f+zvBtbxu92Z5PdnlBw1zIxlVm7aQqIoP97wVBfcnUSQFiIbO6t651G2w79xUClHOQJC2iDqXbhc+yYXnUNtFAP5iz985HM+2WrobY9FxWp4MCGgu7sgqx4TTLD3RrVr+m+LMZ0dLxI+UO23IIA==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EMyxlcMBGK374JcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYmliSlloSElmaG9XaXFkL0RWMFpOTGlTTHQyZDAyaHRtQm9yMTg2Y3F5YURwZlVQbFVaQkJ4Tk9meTZNVkY2eWR4bXVNazdSY2RjRllzWVZkdElFU1BTSU95Kzg3L3IvWFY2STQ5WWtCUEp0WjJEMjJxaGlQQndHOUJsS2dDWTJJUzV3ejczSzVsMkNFNG00OHUvQjBnSC8rS0p5VUgyQ1dKSm55ZXg1cGtYSGRLZnN3SllISmxyWWNSekZMZjZEM3J4M3NLSXl0UVc4QkpWemQ0ZmY3L05RODlpYlZ3V3pKSzdyUjZqck45UFdlSkVYcjhSd2d4QmdOcTAxQVUvM1pVNm5jQTdWOVNFUW5Ec0ZjNWRYRTg1M3lnS2RDczEzZ3ZZdnlUTXNnZjNoTFg4S0VLN2h5Z2JsaC9lUmtCV0E0S3RabXJwTWYrVHpPMHdmL1dQOUZJQWY0Zit6dkJ0Ynh1OTJaNVBkbmxCdzF6SXhsVm03YVFxSW9QOTd3VkJmY25VU1FGaUliTzZ0NjUxRzJ3Nzl4VUNsSE9RSkMyaURxWGJoYyt5WVhuVU50RkFQNWl6OTg1SE0rMldyb2JZOUZ4V3A0TUNHZ3U3c2dxeDRUVExEM1JyVnIrbStMTVowZEx4SStVTzIzSUlBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB2tHao/cK6QEAAADglSXxP/EBAAAA4FAc8T/IDA/gDAHpDAAAAOCDTqU/iQ17FK5H4XqUP5ENzczMzHzzBEGhDQAAAIA5XmBB+A2AgP6/gQqwDvyn1YUB4g4Mqo0Gx40G1Y4G8JAGyA8N4hnsCUVvSUJNQzR6TlRVME9EWTJNamN5TXpjeE16Z3lOU3d0TVN3dE1Td3RNU3d0TVN3d0xqTTFOVFE0TmpZeU56SXpOekV6T0RJMUxERXNNQzQxTURJeE5EQTBORGt5TURBME16QTBMQzB4TEMweExERXVNREF3TURFeU15d3lNeTR3T1RRMk1EWTJORGs0TlRNMk5UWXNNQzQwT0RZME5EUTBPVEk1TmpnMU5qZ3lNeXd0TVIwckxiaExJTXZqaXdRdFdBSzJQalVBQUlBL1NoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUVvT0NLenpsZ01SQUFBQUFBQUFBQUJLRGdpYyt1RUVFUUFBQUFBQUFBQUFTZzRJcS9PV0F4RUFBQUFBQUFBQUFGSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DS3J6bGdNUkFBQUFBQUFBQUFCU0RnaXM4NVlERVFBQUFBQUFBQUFBVWc0SXEvT1dBeEVBQUFBQUFBQUFBRm9KQ0lDQWdJQ0FCQkFBV2djSXF2T1dBeEFBV2djSXJQT1dBeEFBV2djSXEvT1dBeEFBWWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBWWc0SXF2T1dBeEVBQUFBQUFBRHdQMklPQ0t6emxnTVJBQUFBQUFBQUFBQmlEZ2lyODVZREVRQUFBQUFBQUFBQWNRQUFBT0JLcEFJL2VRQUFBS0NBWVJFL2dRRUFBQUJBeWRWcFFZa0JBQUFBNERabWVVR1JBUUFBQU1DTktJTkJtUUVBQUFCQVRuQnhRYUVCQUFBQXdLTitnRUdwQVFBQUFPREtOb2xCNkFFQmdBS1VBNG9DUGpBdU1EQXpOVFV6TERFdU1EQXdNREF3TERFdU1ESXlNalExTERFdU1qVXdNREF3TERFdU16QXdNREF3TERFdU5EQXdNREF3TERFdU5UQXdNREF3bVFMSmhvbjdTc0RXUDZFQ3JlODBlTUpKd1VIQkFnQUFBQUFBQUFDQXlnSUxDQUVSQUFBQUFBQUFBQURLQWdzSUFoRUFBQUFBQUFBQWdOa0NBRDhGdXBYcFRFSGhBdUJ3bzZtQTNXSkI2UUszblhpdVlqK2xRWW9ETUFBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1A3a0RWTVFCRGlFbTRqL0JBNktkOE1xdHR1US95UU9pZmdZd2E2M29QOUVEV0YzL1lTdVc3VCtCQkFBQUFLREVLZjQraVFRQUFBQ0FHSkgzUHBBRW13T1lCUGludVA3a0JLQUUyNEw4QnFnRWdNcTE3Z0c0QktYSHVlY0J3QVNBeXJYdUFja0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQURBaEJ0dFA2RUZBQUFBQUFBQThEK3BCUUFBQUNBZFcvQS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQUFBQUQ0UHc9PeoZAgsW8hkCzQj6GZwGCmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoUCg51c2VyX2JsYWNrbGlzdBICKAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KEgoMdm91Y2hlcl9sZW5zEgIQAAoNCgdpc192c2t1EgIoAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACiEKD3Zza3VfdW5pcXVlX2tleRIOIgwwXzYyNDI5NDkwODgKFAoOc2hvcF9ibGFja2xpc3QSAigACikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDEwMTA0LDYxMTAyMDMwNAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYALAfz4KAgKCAgaggyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 6242949088,
            "shopid": 211468201,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":8581580,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhu7q4tyfuva5f\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,1400095067,1400285005,1000961,844931026694327,844931046478970,844931064601283,1059152,1059154,822059908662278,700585046,822120592853526,2018618,1012763,1015914,700190087,2153644,2213652,1400066568,825465608497696,298463379,1718093079,2008656,1718088045,298468389],\"merge_rank\":0,\"model_id\":98809464403,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":8581580,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhu7q4tyfuva5f\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,1400095067,1400285005,1000961,844931026694327,844931046478970,844931064601283,1059152,1059154,822059908662278,700585046,822120592853526,2018618,1012763,1015914,700190087,2153644,2213652,1400066568,825465608497696,298463379,1718093079,2008656,1718088045,298468389],\"merge_rank\":0,\"model_id\":98809464403,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EMyxlcMBGK374JcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYmliSlloSElmaG9XaXFkL0RWMFpOTGlTTHQyZDAyaHRtQm9yMTg2Y3F5YURwZlVQbFVaQkJ4Tk9meTZNVkY2eWR4bXVNazdSY2RjRllzWVZkdElFU1BTSU95Kzg3L3IvWFY2STQ5WWtCUEp0WjJEMjJxaGlQQndHOUJsS2dDWTJJUzV3ejczSzVsMkNFNG00OHUvQjBnSC8rS0p5VUgyQ1dKSm55ZXg1cGtYSGRLZnN3SllISmxyWWNSekZMZjZEM3J4M3NLSXl0UVc4QkpWemQ0ZmY3L05RODlpYlZ3V3pKSzdyUjZqck45UFdlSkVYcjhSd2d4QmdOcTAxQVUvM1pVNm5jQTdWOVNFUW5Ec0ZjNWRYRTg1M3lnS2RDczEzZ3ZZdnlUTXNnZjNoTFg4S0VLN2h5Z2JsaC9lUmtCV0E0S3RabXJwTWYrVHpPMHdmL1dQOUZJQWY0Zit6dkJ0Ynh1OTJaNVBkbmxCdzF6SXhsVm03YVFxSW9QOTd3VkJmY25VU1FGaUliTzZ0NjUxRzJ3Nzl4VUNsSE9RSkMyaURxWGJoYyt5WVhuVU50RkFQNWl6OTg1SE0rMldyb2JZOUZ4V3A0TUNHZ3U3c2dxeDRUVExEM1JyVnIrbStMTVowZEx4SStVTzIzSUlBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB2tHao/cK6QEAAADglSXxP/EBAAAA4FAc8T/IDA/gDAHpDAAAAOCDTqU/iQ17FK5H4XqUP5ENzczMzHzzBEGhDQAAAIA5XmBB+A2AgP6/gQqwDvyn1YUB4g4Mqo0Gx40G1Y4G8JAGyA8N4hnsCUVvSUJNQzR6TlRVME9EWTJNamN5TXpjeE16Z3lOU3d0TVN3dE1Td3RNU3d0TVN3d0xqTTFOVFE0TmpZeU56SXpOekV6T0RJMUxERXNNQzQxTURJeE5EQTBORGt5TURBME16QTBMQzB4TEMweExERXVNREF3TURFeU15d3lNeTR3T1RRMk1EWTJORGs0TlRNMk5UWXNNQzQwT0RZME5EUTBPVEk1TmpnMU5qZ3lNeXd0TVIwckxiaExJTXZqaXdRdFdBSzJQalVBQUlBL1NoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUVvT0NLenpsZ01SQUFBQUFBQUFBQUJLRGdpYyt1RUVFUUFBQUFBQUFBQUFTZzRJcS9PV0F4RUFBQUFBQUFBQUFGSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DS3J6bGdNUkFBQUFBQUFBQUFCU0RnaXM4NVlERVFBQUFBQUFBQUFBVWc0SXEvT1dBeEVBQUFBQUFBQUFBRm9KQ0lDQWdJQ0FCQkFBV2djSXF2T1dBeEFBV2djSXJQT1dBeEFBV2djSXEvT1dBeEFBWWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBWWc0SXF2T1dBeEVBQUFBQUFBRHdQMklPQ0t6emxnTVJBQUFBQUFBQUFBQmlEZ2lyODVZREVRQUFBQUFBQUFBQWNRQUFBT0JLcEFJL2VRQUFBS0NBWVJFL2dRRUFBQUJBeWRWcFFZa0JBQUFBNERabWVVR1JBUUFBQU1DTktJTkJtUUVBQUFCQVRuQnhRYUVCQUFBQXdLTitnRUdwQVFBQUFPREtOb2xCNkFFQmdBS1VBNG9DUGpBdU1EQXpOVFV6TERFdU1EQXdNREF3TERFdU1ESXlNalExTERFdU1qVXdNREF3TERFdU16QXdNREF3TERFdU5EQXdNREF3TERFdU5UQXdNREF3bVFMSmhvbjdTc0RXUDZFQ3JlODBlTUpKd1VIQkFnQUFBQUFBQUFDQXlnSUxDQUVSQUFBQUFBQUFBQURLQWdzSUFoRUFBQUFBQUFBQWdOa0NBRDhGdXBYcFRFSGhBdUJ3bzZtQTNXSkI2UUszblhpdVlqK2xRWW9ETUFBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1A3a0RWTVFCRGlFbTRqL0JBNktkOE1xdHR1US95UU9pZmdZd2E2M29QOUVEV0YzL1lTdVc3VCtCQkFBQUFLREVLZjQraVFRQUFBQ0FHSkgzUHBBRW13T1lCUGludVA3a0JLQUUyNEw4QnFnRWdNcTE3Z0c0QktYSHVlY0J3QVNBeXJYdUFja0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQURBaEJ0dFA2RUZBQUFBQUFBQThEK3BCUUFBQUNBZFcvQS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQUFBQUQ0UHc9PeoZAgsW8hkCzQj6GZwGCmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoUCg51c2VyX2JsYWNrbGlzdBICKAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KEgoMdm91Y2hlcl9sZW5zEgIQAAoNCgdpc192c2t1EgIoAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACiEKD3Zza3VfdW5pcXVlX2tleRIOIgwwXzYyNDI5NDkwODgKFAoOc2hvcF9ibGFja2xpc3QSAigACikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDEwMTA0LDYxMTAyMDMwNAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYALAfz4KAgKCAgaggyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_6242949088",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 1793757129,
              "shopid": 117080411,
              "name": "AC DAIKIN STANDART 1/2 PK 1/2PK FTC15 FTC15Y Nusantara Prestige",
              "label_ids": [
                21,
                71,
                22,
                1059152,
                1059154,
                822059908662278,
                844931026694327,
                844931046478970,
                844931064601283,
                1400285055,
                822120592853526,
                2018618,
                2018619,
                1012763,
                1012729,
                1015914,
                700190087,
                298463379,
                2153644,
                2213652,
                2008656,
                298468389
              ],
              "image": "id-11134207-81ztf-meo0nelv4uthe0",
              "images": [
                "id-11134207-81ztf-meo0nelv4uthe0",
                "id-11134207-7ra0g-mcbizi7642u863",
                "id-11134207-81ztm-meo0nelv3g9146",
                "id-11134207-81ztc-meo0nelv21old6",
                "id-11134207-81ztc-meo0nelv0n45b9",
                "id-11134207-7ra0o-mcbizi7619pc44"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1546083320,
              "sold": 3,
              "historical_sold": 43,
              "liked": false,
              "liked_count": 169,
              "view_count": null,
              "catid": 100010,
              "brand": "Daikin",
              "cmt_count": 26,
              "flag": 917506,
              "cb_option": 0,
              "item_status": "normal",
              "price": 406900000000,
              "price_min": 406900000000,
              "price_max": 406900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  26,
                  0,
                  0,
                  0,
                  0,
                  26
                ],
                "rcount_with_context": 7,
                "rcount_with_image": 5
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": true,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 406900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 32651252674,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 406900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 43,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 43,
                "display_sold_count_text": "43"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "INDO COOL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 518676940,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiYb5DKO2TieDIe6SG2/vdwyCk3pmNeejga4zfF+/1KTgb+nvl4glioxtRrJS3Me81r7ll+CZYVPiQ7GOF3P+ZoHQ5lDCPBxCwLu9KvdFsq9mntOMuVItwIbFZpCOci1BzVzclVnP62nZUDJUui56zK4L87UPOlxc54RTF8pJyhlJPPUCQAIAE3Y6s1egpeWu6217waVGga+VSFWDg4I6wYV9+sI3staI4tKpnJurL0Ig6REvFGn//lURA9018ol8HPP6eLoRAzvPws0xTDEMCcBe9igp3P/nHnm+ctO1x+QjSpzZgsE/gt+WmzXSrzIFVDyJxl2F1v8LrjZp4sv9cP97qkN8pJPJ0Z+2ACO2YfPARTZk/9HX614aPT3r1DBMKOKWOFtMooohsNHFEuEOFcCd58xVkfgmopxQHr8a1AUmpG+li4Fd2KCa9GLAVW5x7BdbiU5JCYucHrwEeVpfVHvRC8uh7ytCXVuzwij9KO6dA==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EMzDqfcBGOCgocMBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWWI1REtPMlRpZURJZTZTRzIvdmR3eUNrM3BtTmVlamdhNHpmRisvMUtUZ2IrbnZsNGdsaW94dFJySlMzTWU4MXI3bGwrQ1pZVlBpUTdHT0YzUCtab0hRNWxEQ1BCeEN3THU5S3ZkRnNxOW1udE9NdVZJdHdJYkZacENPY2kxQnpWemNsVm5QNjJuWlVESlV1aTU2eks0TDg3VVBPbHhjNTRSVEY4cEp5aGxKUFBVQ1FBSUFFM1k2czFlZ3BlV3U2MjE3d2FWR2dhK1ZTRldEZzRJNndZVjkrc0kzc3RhSTR0S3BuSnVyTDBJZzZSRXZGR24vL2xVUkE5MDE4b2w4SFBQNmVMb1JBenZQd3MweFRERU1DY0JlOWlncDNQL25Ibm0rY3RPMXgrUWpTcHpaZ3NFL2d0K1dtelhTcnpJRlZEeUp4bDJGMXY4THJqWnA0c3Y5Y1A5N3FrTjhwSlBKMForMkFDTzJZZlBBUlRaay85SFg2MTRhUFQzcjFEQk1LT0tXT0Z0TW9vb2hzTkhGRXVFT0ZjQ2Q1OHhWa2ZnbW9weFFIcjhhMUFVbXBHK2xpNEZkMktDYTlHTEFWVzV4N0JkYmlVNUpDWXVjSHJ3RWVWcGZWSHZSQzh1aDd5dENYVnV6d2lqOUtPNmRBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB8Ki35eUK6QEAAACgxB3xP/EBAAAAAGWb8T/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENCtejcPC+IEGhDQAAALBXKnpB+A2AgIbp6wuwDoTcw84B4g4Mqo0Gx40G1Y4G8JAGyA8O4hnMCkVva0JNQzQ1TlRBMk5qQTRNakUyTWprME9UQTBMQzB4TEMweExDMHhMQzB4TERBdU9UWXdNall6TkRVMk1Ua3hOREEwTkN3eExERXVPVEEwTkRFek9EWTBOall6TnpjMU5pd3RNU3d0TVN3d0xqTTRPRFEwTlRZNU9UWXdOak0xTkRFc01DNHlOakE0TnpVMU1qWTJNelk1TURRNU5Dd3dMalU0TVRVMU5USTVOVGN6TlRrMk56SXNMVEVkNGkvY1N5RDZ5b29OTFlKZWN6ODFBQUNBUDBvT0NLenpsZ01SQUFBQUFBQUFBQUJLRGdpYyt1RUVFUUFBQUFBQUFBQUFTZzRJcS9PV0F4RUFBQUFBQUFBQUFFb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DUEQzNFFRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBVWc0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ1BEMzRRUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0k4UGZoQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNEk4UGZoQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFHa1RrUzMxcHJvZ3dYRUFBQURBN1BZRFAza0FBQUNBR0MvMVBvRUJBQUFBWUJ4ZGNFR0pBUUFBQUdCbkxtQkJrUUVBQUFBUVVIUjRRWmtCQUFBQXdFd1hka0doQVFBQUFNQSsyR1ZCcVFFQUFBQVF0b0dBUWVnQkFZQUNsQU9LQWo0d0xqQXdNelV3TlN3eExqQXdNREF3TUN3eExqQXhPVEF5Tnl3eExqSTFNREF3TUN3eExqSTRNamcwTnl3eExqTXhNamszTml3eExqVXdNREF3TUprQ00xcDhiWHE2N2oraEFxM3ZOSGpDU2NGQndRSVRrUzMxcHJvZ3djb0NDd2dCRVJPUkxmV211aURCeWdJTENBSVJTT1dsbUlHQUdzSFpBa0FqeE11S3VVcEI0UUxBc1hEQyt6ZENRZWtDMEJva2lHNXhuMEdLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEKzVBL1p0TXRFQjQrRS93UU5aUWlDd016SGtQOGtEcnNNczBrdy81ei9SQTJxcUZyQ293T3cvZ1FRQUFBQUE1SFAvUG9rRUFBQUE0R2hiK1Q2UUJKc0RtQVNLL011cDh3T2dCSkNtdHRrRHFBU0FsT3ZjQTdnRThPMjBBOEFFZ0pUcjNBUEpCSHNVcmtmaGVwUS80UVI3Rks1SDRYcVVQK2tFQUFBQUFBQUE4RC94QkFBQUFBQUFBUEEvK1FRQUFBQUFBQUR3UDRFRkFBQUFBQUFBOEQrSkJRQUFBQUFBQVBBL2tRVUFBQUFBQUFEd1A1a0ZBQUFBb0EyMmJEK2hCUUFBQUFBQUFQQS9xUVVBQUFEQTdrM3dQN0VGQUFBQUFBQUE5RCs1QlFBQUFFQ0todlEvd1FVQUFBQmc4d0gxUDhrRkFBQUFBQUFBK0Q4PeoZAgsW8hkCzQj6GZIGCmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9CiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF8xNzkzNzU3MTI5CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChIKDHZvdWNoZXJfbGVucxICEAAKDQoHaXNfdnNrdRICKAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0sB/AgoCAiICBqCDIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 1793757129,
            "shopid": 117080411,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":27438,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztf-meo0nelv4uthe0\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[21,71,22,1059152,1059154,822059908662278,844931026694327,844931046478970,844931064601283,1400285055,822120592853526,2018618,2018619,1012763,1012729,1015914,700190087,298463379,2153644,2213652,2008656,298468389],\"merge_rank\":0,\"model_id\":32651252674,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":27438,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztf-meo0nelv4uthe0\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[21,71,22,1059152,1059154,822059908662278,844931026694327,844931046478970,844931064601283,1400285055,822120592853526,2018618,2018619,1012763,1012729,1015914,700190087,298463379,2153644,2213652,2008656,298468389],\"merge_rank\":0,\"model_id\":32651252674,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EMzDqfcBGOCgocMBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWWI1REtPMlRpZURJZTZTRzIvdmR3eUNrM3BtTmVlamdhNHpmRisvMUtUZ2IrbnZsNGdsaW94dFJySlMzTWU4MXI3bGwrQ1pZVlBpUTdHT0YzUCtab0hRNWxEQ1BCeEN3THU5S3ZkRnNxOW1udE9NdVZJdHdJYkZacENPY2kxQnpWemNsVm5QNjJuWlVESlV1aTU2eks0TDg3VVBPbHhjNTRSVEY4cEp5aGxKUFBVQ1FBSUFFM1k2czFlZ3BlV3U2MjE3d2FWR2dhK1ZTRldEZzRJNndZVjkrc0kzc3RhSTR0S3BuSnVyTDBJZzZSRXZGR24vL2xVUkE5MDE4b2w4SFBQNmVMb1JBenZQd3MweFRERU1DY0JlOWlncDNQL25Ibm0rY3RPMXgrUWpTcHpaZ3NFL2d0K1dtelhTcnpJRlZEeUp4bDJGMXY4THJqWnA0c3Y5Y1A5N3FrTjhwSlBKMForMkFDTzJZZlBBUlRaay85SFg2MTRhUFQzcjFEQk1LT0tXT0Z0TW9vb2hzTkhGRXVFT0ZjQ2Q1OHhWa2ZnbW9weFFIcjhhMUFVbXBHK2xpNEZkMktDYTlHTEFWVzV4N0JkYmlVNUpDWXVjSHJ3RWVWcGZWSHZSQzh1aDd5dENYVnV6d2lqOUtPNmRBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB8Ki35eUK6QEAAACgxB3xP/EBAAAAAGWb8T/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENCtejcPC+IEGhDQAAALBXKnpB+A2AgIbp6wuwDoTcw84B4g4Mqo0Gx40G1Y4G8JAGyA8O4hnMCkVva0JNQzQ1TlRBMk5qQTRNakUyTWprME9UQTBMQzB4TEMweExDMHhMQzB4TERBdU9UWXdNall6TkRVMk1Ua3hOREEwTkN3eExERXVPVEEwTkRFek9EWTBOall6TnpjMU5pd3RNU3d0TVN3d0xqTTRPRFEwTlRZNU9UWXdOak0xTkRFc01DNHlOakE0TnpVMU1qWTJNelk1TURRNU5Dd3dMalU0TVRVMU5USTVOVGN6TlRrMk56SXNMVEVkNGkvY1N5RDZ5b29OTFlKZWN6ODFBQUNBUDBvT0NLenpsZ01SQUFBQUFBQUFBQUJLRGdpYyt1RUVFUUFBQUFBQUFBQUFTZzRJcS9PV0F4RUFBQUFBQUFBQUFFb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DUEQzNFFRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBVWc0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ1BEMzRRUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0k4UGZoQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNEk4UGZoQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFHa1RrUzMxcHJvZ3dYRUFBQURBN1BZRFAza0FBQUNBR0MvMVBvRUJBQUFBWUJ4ZGNFR0pBUUFBQUdCbkxtQkJrUUVBQUFBUVVIUjRRWmtCQUFBQXdFd1hka0doQVFBQUFNQSsyR1ZCcVFFQUFBQVF0b0dBUWVnQkFZQUNsQU9LQWo0d0xqQXdNelV3TlN3eExqQXdNREF3TUN3eExqQXhPVEF5Tnl3eExqSTFNREF3TUN3eExqSTRNamcwTnl3eExqTXhNamszTml3eExqVXdNREF3TUprQ00xcDhiWHE2N2oraEFxM3ZOSGpDU2NGQndRSVRrUzMxcHJvZ3djb0NDd2dCRVJPUkxmV211aURCeWdJTENBSVJTT1dsbUlHQUdzSFpBa0FqeE11S3VVcEI0UUxBc1hEQyt6ZENRZWtDMEJva2lHNXhuMEdLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEKzVBL1p0TXRFQjQrRS93UU5aUWlDd016SGtQOGtEcnNNczBrdy81ei9SQTJxcUZyQ293T3cvZ1FRQUFBQUE1SFAvUG9rRUFBQUE0R2hiK1Q2UUJKc0RtQVNLL011cDh3T2dCSkNtdHRrRHFBU0FsT3ZjQTdnRThPMjBBOEFFZ0pUcjNBUEpCSHNVcmtmaGVwUS80UVI3Rks1SDRYcVVQK2tFQUFBQUFBQUE4RC94QkFBQUFBQUFBUEEvK1FRQUFBQUFBQUR3UDRFRkFBQUFBQUFBOEQrSkJRQUFBQUFBQVBBL2tRVUFBQUFBQUFEd1A1a0ZBQUFBb0EyMmJEK2hCUUFBQUFBQUFQQS9xUVVBQUFEQTdrM3dQN0VGQUFBQUFBQUE5RCs1QlFBQUFFQ0todlEvd1FVQUFBQmc4d0gxUDhrRkFBQUFBQUFBK0Q4PeoZAgsW8hkCzQj6GZIGCmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9CiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF8xNzkzNzU3MTI5CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChIKDHZvdWNoZXJfbGVucxICEAAKDQoHaXNfdnNrdRICKAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0sB/AgoCAiICBqCDIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_1793757129",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29220887058,
              "shopid": 85961994,
              "name": "Midea AC Inverter 1/2 PK MSIAF-05CRDN2X / 0.5 PK MSIAF-05CRDN2 R32",
              "label_ids": [
                13,
                38,
                39,
                47,
                1000501,
                1000509,
                1400095067,
                1400285005,
                844931064601283,
                1400066568,
                1718093079,
                2018618,
                2018619,
                1012729,
                2153644,
                1428713,
                1718087960,
                2213652,
                298463379,
                700005490,
                700005495,
                1049120,
                825465608497696,
                822059908662278,
                834403089593352,
                822120592853526,
                1059152,
                1049122,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7rask-m4qyzy3y2mf265",
              "images": [
                "id-11134207-7rask-m4qyzy3y2mf265",
                "id-11134207-7ras9-m3vmh23n0e0e44",
                "id-11134207-7rasg-m4qyzy3y17um24",
                "sg-11134201-7rfft-m3vlzn1omli8fc",
                "sg-11134201-7rff1-m3vlzmrf1mcg2c",
                "sg-11134201-7rfge-m3vlzmhfgaav40",
                "sg-11134201-7rfgi-m3vlzndc6y6u59",
                "sg-11134201-7rfg7-m3vlzm7puhlp32",
                "sg-11134201-7rfgn-m3vlzlvicbc010"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1734409546,
              "sold": 0,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100010,
              "brand": "Midea",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 350900000000,
              "price_min": 350900000000,
              "price_max": 350900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6knaj-m4qz1v8ir7fy87.16000081736308081.mp4",
                  "thumb_url": "id-11110105-6knaj-m4qz1v8ir7fy87_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6knaj-m4qz1v8ir7fy87",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knaj-m4qz1v8ir7fy87.16000081736308081.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knaj-m4qz1v8ir7fy87.16000081736308081.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knaj-m4qz1v8ir7fy87.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Pemasangan",
                  "options": [
                    "Tanpa Pasang",
                    "Plus Pasang"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 350900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 223596774530,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 350900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": " Sajun Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 677367188,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWia4P2zqizPk/RfEM/hxdG/Fw7T5I7rw9kIpQY97VVs2XvyBaxV6nJUYPRNNvgSyK4KWgTMY2w34cVRndATdUXPM4fBIPGLUkGNJ4gpJmK3DBba8PwqfniYeN/m6vnNM+yvU6vp5YtTUIP/DpZfi1JDIiuP/HLstMXV1+eaM+f8OkmOC+3kqyRkjY1/eDI7RxSizJj7nAoW0IKv3eq399IINIj+Rrvtnk8UtkrCdGBrSoU4s/JHf4gITadv3S1SzjEjLX9XN0oiQ8r/txrUjpshylzknxNGk1ufl9lhlKCR9wjaw3S6tHeMhWiwe4TD3ocqEVfdmW2CgrNMxdWXhAoKvrz4dNod9bqWbpP3Iy76r/7E3OVxAD4FuCbZNPiuk55Zl5+LaEVGopg3nKzEyylQ/e6pJBx3y7WPhRJmJsuUF7CTLB6p2lwuMfqhLw2FiPOXC2s9qdL0WK3Z9BsKWkKmYj9FGLTicCtmv0xVLW3Wyxg==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EJSb/8ICGPuI1tcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYTRQMnpxaXpQay9SZkVNL2h4ZEcvRnc3VDVJN3J3OWtJcFFZOTdWVnMyWHZ5QmF4VjZuSlVZUFJOTnZnU3lLNEtXZ1RNWTJ3MzRjVlJuZEFUZFVYUE00ZkJJUEdMVWtHTko0Z3BKbUszREJiYThQd3FmbmlZZU4vbTZ2bk5NK3l2VTZ2cDVZdFRVSVAvRHBaZmkxSkRJaXVQL0hMc3RNWFYxK2VhTStmOE9rbU9DKzNrcXlSa2pZMS9lREk3UnhTaXpKajduQW9XMElLdjNlcTM5OUlJTklqK1JydnRuazhVdGtyQ2RHQnJTb1U0cy9KSGY0Z0lUYWR2M1MxU3pqRWpMWDlYTjBvaVE4ci90eHJVanBzaHlsemtueE5HazF1Zmw5bGhsS0NSOXdqYXczUzZ0SGVNaFdpd2U0VEQzb2NxRVZmZG1XMkNnck5NeGRXWGhBb0t2cno0ZE5vZDlicVdicFAzSXk3NnIvN0UzT1Z4QUQ0RnVDYlpOUGl1azU1Wmw1K0xhRVZHb3BnM25LekV5eWxRL2U2cEpCeDN5N1dQaFJKbUpzdVVGN0NUTEI2cDJsd3VNZnFoTHcyRmlQT1hDMnM5cWRMMFdLM1o5QnNLV2tLbVlqOUZHTFRpY0N0bXYweFZMVzNXeXhnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABqbaywN4B6QEAAADglSXxP/EBAAAAAMOK8j/IDA/gDAHpDAAAAEDQ3Ko/iQ17FK5H4XqUP5ENMzMzM7dmC0GhDQAAACA/aGVB+A2AgJSamwqwDriolLwB4g4Mqo0Gx40G1Y4G8JAGyA8P4hm0CkVvWUJNQzR6TmpnM05qazBOekEzTkRNeE16Y3NMVEVzTFRFc0xURXNMVEVzTUM0ek5qZzNOamswTnpBM05ETXhNemNzTVN3eExqQXlNVE0xT0RnM05qVTNNamcwTnprc0xURXNMVEVzTUM0ek9EZzBORFUyT1RrMk1EWXpOVFF4TERJNUxqUTVNVGsxTnpZNU9USTROamd6TWl3d0xqWXhNekk0TnpnNE16Y3dOamsyTnpRc0xURWRtalBvU3lENGc2MEZMVnJQdkQ0MUFBQ0FQMG9PQ0tyemxnTVJBQUFBQUFBQUFBQktEZ2lzODVZREVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUVvUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUVvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpSWllSUVFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJblByaEJCRUFBQUFBQUFBQUFGSU9DSWlKNGdRUkFBQUFBQUFBQUFCU0RnaXE4NVlERVFBQUFBQUFBQUFBVWc0SXJQT1dBeEVBQUFBQUFBQUFBRklPQ0t2emxnTVJBQUFBQUFBQUFBQmFCd2lxODVZREVBQmFCd2lzODVZREVBQmFCd2lyODVZREVBQmFDUWlBZ0lDQWdBUVFBRm9IQ0p6NjRRUVFBRm9IQ0lpSjRnUVFBR0lPQ0tyemxnTVJBQUFBQUFBQThEOWlEZ2lzODVZREVRQUFBQUFBQUFBQVlnNElxL09XQXhFQUFBQUFBQUFBQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NKejY0UVFSQUFBQUFBQUFBQUJpRGdpSWllSUVFUUFBQUFBQUFBQUFhZklUa0dTelh3dkJjUUFBQUFDYkx3OC9lUUFBQUVET3pTRS9nUUVBQUFCZ0Z3dDJRWWtCQUFBQVlNL3VZVUdSQVFBQUFCQi9BbjlCbVFFQUFBQmdMTUo5UWFFQkFBQUFBSmcxYUVHcEFRQUFBREI4N29SQmlnSStNQzR3TURVeU56VXNNUzR3TURBd01EQXNNUzR3TWpNMU5UUXNNUzR5TlRBd01EQXNNUzR6TURBd01EQXNNUzQwTURBd01EQXNNUzQxTURBd01EQ1pBbHU0SmtUcm1kYy9vUUt0N3pSNHdrbkJRY0VDOGhPUVpMTmZDOEhLQWdzSUFoRUFBQUFBQUFBQWdNb0NDd2dCRWZJVGtHU3pYd3ZCMlFLQWpLeE9aaE5lUWVFQ0FBZFhSUzR0VDBIcEFuZFBRaFExaDZsQnVRT1gxUzFGWTNYZlA4RUQrcnFDSkVjcDRqL0pBMWVPYzBqUGxlVS8wUU9LK3ExaU4vbnJQNEVFQUFBQXdDUHFCaitKQkFBQUFHQ1lYUUUva0FTYkE1Z0UvdDZuZ29KVG9BU1N4TkhOQjZnRWdQS0xxQW00Qk82dHV0b0J3QVNBOG91b0Nja0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUNnTzV0MVA2RUZBQUFBQUFBQThEK3BCUUFBQUNCNllQQS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQUFBQUQ0UHc9PeoZAgoU+hmTBgoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABChIKDHZvdWNoZXJfbGVucxICEAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACg0KB2lzX3Zza3USAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI5MjIwODg3MDU4ChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAyMDMwNApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWSwH4CAgIDggIGYgAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 29220887058,
            "shopid": 85961994,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":11224,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m4qyzy3y2mf265\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1718093079,2018618,2018619,1012729,2153644,1428713,1718087960,2213652,298463379,700005490,700005495,1049120,825465608497696,822059908662278,834403089593352,822120592853526,1059152,1049122,1718088045,298468389],\"merge_rank\":0,\"model_id\":223596774530,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":11224,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m4qyzy3y2mf265\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1718093079,2018618,2018619,1012729,2153644,1428713,1718087960,2213652,298463379,700005490,700005495,1049120,825465608497696,822059908662278,834403089593352,822120592853526,1059152,1049122,1718088045,298468389],\"merge_rank\":0,\"model_id\":223596774530,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EJSb/8ICGPuI1tcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYTRQMnpxaXpQay9SZkVNL2h4ZEcvRnc3VDVJN3J3OWtJcFFZOTdWVnMyWHZ5QmF4VjZuSlVZUFJOTnZnU3lLNEtXZ1RNWTJ3MzRjVlJuZEFUZFVYUE00ZkJJUEdMVWtHTko0Z3BKbUszREJiYThQd3FmbmlZZU4vbTZ2bk5NK3l2VTZ2cDVZdFRVSVAvRHBaZmkxSkRJaXVQL0hMc3RNWFYxK2VhTStmOE9rbU9DKzNrcXlSa2pZMS9lREk3UnhTaXpKajduQW9XMElLdjNlcTM5OUlJTklqK1JydnRuazhVdGtyQ2RHQnJTb1U0cy9KSGY0Z0lUYWR2M1MxU3pqRWpMWDlYTjBvaVE4ci90eHJVanBzaHlsemtueE5HazF1Zmw5bGhsS0NSOXdqYXczUzZ0SGVNaFdpd2U0VEQzb2NxRVZmZG1XMkNnck5NeGRXWGhBb0t2cno0ZE5vZDlicVdicFAzSXk3NnIvN0UzT1Z4QUQ0RnVDYlpOUGl1azU1Wmw1K0xhRVZHb3BnM25LekV5eWxRL2U2cEpCeDN5N1dQaFJKbUpzdVVGN0NUTEI2cDJsd3VNZnFoTHcyRmlQT1hDMnM5cWRMMFdLM1o5QnNLV2tLbVlqOUZHTFRpY0N0bXYweFZMVzNXeXhnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABqbaywN4B6QEAAADglSXxP/EBAAAAAMOK8j/IDA/gDAHpDAAAAEDQ3Ko/iQ17FK5H4XqUP5ENMzMzM7dmC0GhDQAAACA/aGVB+A2AgJSamwqwDriolLwB4g4Mqo0Gx40G1Y4G8JAGyA8P4hm0CkVvWUJNQzR6TmpnM05qazBOekEzTkRNeE16Y3NMVEVzTFRFc0xURXNMVEVzTUM0ek5qZzNOamswTnpBM05ETXhNemNzTVN3eExqQXlNVE0xT0RnM05qVTNNamcwTnprc0xURXNMVEVzTUM0ek9EZzBORFUyT1RrMk1EWXpOVFF4TERJNUxqUTVNVGsxTnpZNU9USTROamd6TWl3d0xqWXhNekk0TnpnNE16Y3dOamsyTnpRc0xURWRtalBvU3lENGc2MEZMVnJQdkQ0MUFBQ0FQMG9PQ0tyemxnTVJBQUFBQUFBQUFBQktEZ2lzODVZREVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUVvUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUVvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpSWllSUVFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJblByaEJCRUFBQUFBQUFBQUFGSU9DSWlKNGdRUkFBQUFBQUFBQUFCU0RnaXE4NVlERVFBQUFBQUFBQUFBVWc0SXJQT1dBeEVBQUFBQUFBQUFBRklPQ0t2emxnTVJBQUFBQUFBQUFBQmFCd2lxODVZREVBQmFCd2lzODVZREVBQmFCd2lyODVZREVBQmFDUWlBZ0lDQWdBUVFBRm9IQ0p6NjRRUVFBRm9IQ0lpSjRnUVFBR0lPQ0tyemxnTVJBQUFBQUFBQThEOWlEZ2lzODVZREVRQUFBQUFBQUFBQVlnNElxL09XQXhFQUFBQUFBQUFBQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NKejY0UVFSQUFBQUFBQUFBQUJpRGdpSWllSUVFUUFBQUFBQUFBQUFhZklUa0dTelh3dkJjUUFBQUFDYkx3OC9lUUFBQUVET3pTRS9nUUVBQUFCZ0Z3dDJRWWtCQUFBQVlNL3VZVUdSQVFBQUFCQi9BbjlCbVFFQUFBQmdMTUo5UWFFQkFBQUFBSmcxYUVHcEFRQUFBREI4N29SQmlnSStNQzR3TURVeU56VXNNUzR3TURBd01EQXNNUzR3TWpNMU5UUXNNUzR5TlRBd01EQXNNUzR6TURBd01EQXNNUzQwTURBd01EQXNNUzQxTURBd01EQ1pBbHU0SmtUcm1kYy9vUUt0N3pSNHdrbkJRY0VDOGhPUVpMTmZDOEhLQWdzSUFoRUFBQUFBQUFBQWdNb0NDd2dCRWZJVGtHU3pYd3ZCMlFLQWpLeE9aaE5lUWVFQ0FBZFhSUzR0VDBIcEFuZFBRaFExaDZsQnVRT1gxUzFGWTNYZlA4RUQrcnFDSkVjcDRqL0pBMWVPYzBqUGxlVS8wUU9LK3ExaU4vbnJQNEVFQUFBQXdDUHFCaitKQkFBQUFHQ1lYUUUva0FTYkE1Z0UvdDZuZ29KVG9BU1N4TkhOQjZnRWdQS0xxQW00Qk82dHV0b0J3QVNBOG91b0Nja0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUNnTzV0MVA2RUZBQUFBQUFBQThEK3BCUUFBQUNCNllQQS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQUFBQUQ0UHc9PeoZAgoU+hmTBgoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABChIKDHZvdWNoZXJfbGVucxICEAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACg0KB2lzX3Zza3USAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI5MjIwODg3MDU4ChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAyMDMwNApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWSwH4CAgIDggIGYgAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29220887058",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 4840791945,
              "shopid": 57328541,
              "name": "GREE AC F1S SERIES - INVERTER 1 PK - GWC-09F1(S) - WHITE PEARL (Unit Indoor & Outdoor)",
              "label_ids": [
                27,
                48,
                1000109,
                1002164,
                1013565,
                1400095067,
                1400285005,
                1000606,
                22,
                1001024,
                700020158,
                1015914,
                700190087,
                844931026694327,
                844931046478970,
                844931064601283,
                825249635454464,
                1400285055,
                298458335,
                298458334,
                1668726,
                700585046,
                298458395,
                1718087960,
                1428713,
                1718093079,
                2018618,
                1059152,
                1049122,
                822059908662278,
                837860934119952,
                825465608499232,
                825465608497696,
                298893311,
                2068629,
                298938357,
                298933384,
                298463379,
                1400095022,
                2153644,
                700830032,
                2213652,
                2008656,
                2098628,
                298938368,
                2098629,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7r98x-lr3udrcnp5z12c",
              "images": [
                "id-11134207-7r98x-lr3udrcnp5z12c",
                "id-11134201-7r991-lllniw3n76mu12",
                "id-11134201-7r992-lllnj7rg4v5826",
                "id-11134201-7r992-lllnj71d70nb43"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1593844718,
              "sold": 10,
              "historical_sold": 228,
              "liked": false,
              "liked_count": 1269,
              "view_count": null,
              "catid": 100010,
              "brand": "Gree",
              "cmt_count": 106,
              "flag": 917504,
              "cb_option": 0,
              "item_status": "normal",
              "price": 576900000000,
              "price_min": 576900000000,
              "price_max": 576900000000,
              "price_min_before_discount": 619900000000,
              "price_max_before_discount": 619900000000,
              "hidden_price_display": null,
              "price_before_discount": 619900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-7%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.9363636363636365,
                "rating_count": [
                  110,
                  0,
                  1,
                  0,
                  4,
                  105
                ],
                "rcount_with_context": 47,
                "rcount_with_image": 38
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "cb9237bcf00e64d59a2d31a847cbe02b",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp1,9JT X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 817277306470400,
                "price": 576900000000,
                "strikethrough_price": 619900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-7%",
                "model_id": 50183188972,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 619900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 228,
                "rounded_local_monthly_sold_count": 10,
                "local_monthly_sold_count_text": "10",
                "rounded_display_sold_count": 228,
                "display_sold_count_text": "228"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp1,9JT x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gree Official Store",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 344156939,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWibx1Hs4ppcq5WxtjIKjH65RbheRLUId0WuDbntSa0DRdc7aas0rf41JZ3PM7fGc440q0pe4Re8MAUbPmuRPZhpuQNgTbWJpClA6oPoOMXJgB6aWWPhb1q8QLKg3/2eFe7pD2P+bDH9eD0hR3FPjAJnYsvqBXuGFvWdvw7hkLjXxYSAkU/OYtKIbW2yiK6hA+vG4OduF29VK3sstnfdWrIKGmKf8WvKqmYQl9vlP0+wwA8BSWZ9ldfne7i3+hk1zegtRgpJJQrc5n4hoOWUS8Rma25CfRsgix/gYZkZOGj3J9CacVCWymT61XdqKC+n+F8Zta2UdgIREfYbW3wpMHvj1+NYOAVpYP/JpRfBjcyraT4OKPc4MhjvkXpHVz2rm8FWVe614CyiEvU6V0b5J95uE8I8GY7YJ920b5DEE5/2LszEUaLzYQIZIU7p7IRoA9f8t18ZXlWV7P27iMPU2zOalyFmNGewY0o5uBk0mbZ826A==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EIvWjaQBGOX2u4gBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYngxSHM0cHBjcTVXeHRqSUtqSDY1UmJoZVJMVUlkMFd1RGJudFNhMERSZGM3YWFzMHJmNDFKWjNQTTdmR2M0NDBxMHBlNFJlOE1BVWJQbXVSUFpocHVRTmdUYldKcENsQTZvUG9PTVhKZ0I2YVdXUGhiMXE4UUxLZzMvMmVGZTdwRDJQK2JESDllRDBoUjNGUGpBSm5Zc3ZxQlh1R0Z2V2R2dzdoa0xqWHhZU0FrVS9PWXRLSWJXMnlpSzZoQSt2RzRPZHVGMjlWSzNzc3RuZmRXcklLR21LZjhXdktxbVlRbDl2bFAwK3d3QThCU1daOWxkZm5lN2kzK2hrMXplZ3RSZ3BKSlFyYzVuNGhvT1dVUzhSbWEyNUNmUnNnaXgvZ1laa1pPR2ozSjlDYWNWQ1d5bVQ2MVhkcUtDK24rRjhadGEyVWRnSVJFZlliVzN3cE1IdmoxK05ZT0FWcFlQL0pwUmZCamN5cmFUNE9LUGM0TWhqdmtYcEhWejJybThGV1ZlNjE0Q3lpRXZVNlYwYjVKOTV1RThJOEdZN1lKOTIwYjVERUU1LzJMc3pFVWFMellRSVpJVTdwN0lSb0E5Zjh0MThaWGxXVjdQMjdpTVBVMnpPYWx5Rm1OR2V3WTBvNXVCazBtYlo4MjZBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABrdu4wfkJ6QEAAADglSXxP/EBAAAAQLSn8D/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENmpmZmfFpEUGhDQAAAICJNWtB+A2AgISBwxCwDqOEkKIC4g4Mqo0Gx40G1Y4G8JAGyA8Q4hnoCkVuSXdMalUwTmpRNExDMHhMQzB4TEMweExDMHhMREF1TlRVeUxERXNNQzQwTURrek1USXpNVE15TVRnME56VTJOeXd3TGprc0xURXNNQzR6T0RZM01ESTJOVGd4TkRZeU1USXpOU3d4TURndU9EVTJNRGswTmprMk1USTRNRGNzTUM0MU9EUTBOak13TnpJMk5UQXhNRFlzTFRFZHVVbmRTeURMMk9ZR0xSM21DejgxQUFDQVB6blRZRU5yY0Izd1FVSGZhSFJKTk9SRFFrb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRW9PQ0t2emxnTVJBQUFBQUFBQUFBQktFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUZvSENLenpsZ01RQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFHblVwNTVNZkdVUndYRUFBQUFBcG00S1Aza0FBQUNnTEhiK1BvRUJBQUFBUUN4QWZrR0pBUUFBQUFEd3hHTkJrUUVBQUFBZ1VoR0VRWmtCQUFBQUlGRnJoRUdoQVFBQUFBQkVzR3BCcVFFQUFBQWdZaGVMUWVnQkFZQUNsQU9LQWo0d0xqQXdORFUyTVN3eExqQXdNREF3TUN3eExqQXdNREF3TUN3eExqRTVOemcyTXl3eExqRTVOemcyTXl3eExqRTVOemcyTXl3eExqSTNOek00TVprQ1JJdHM1L3VwNFQraEFxM3ZOSGpDU2NGQndRTFVwNTVNZkdVUndjb0NDd2dCRWRTbm5reDhaUkhCeWdJTENBSVJBQUFBQUFBQUFJRFpBc0MwdDFZOUZGWkI0UUlBSUtEVHI1SkZRZWtDYTRYNkZBNzhuRUdLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEK1pBOU5nUTJ0d0hmQkJvUVBmYUhSSk5PUkRRcmtEV3VhNzRuSUY1RC9CQTlOMGZVT2krK1UveVFPbTR4SGRUSEhvUDlFRHk0Ym1LcSt1N1QvNkF3a0tCVWx6VGxCQ0VBRDZBd3NLQjFKdmFWUnBaWElRQS9vRERRb0pUM0prWlhKVWFXVnlFQUw2QXhFS0RVbDBaVzFRY21salpWUnBaWElRQTRFRUFBQUE0QndjQlQrSkJBQUFBSUNKN2dFL2tBU2JBNWdFdjhERzZKUzFBYUFFaGJienV4K29CSURJcjZBbHVBVDdrYnprQmNBRWdNaXZvQ1hKQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQW9NYXVjaitoQlFBQUFBQUFBUEEvcVFVQUFBQUFBQUR3UDdFRkFBQUE0SEVxOHorNUJRQUFBT0J4S3ZNL3dRVUFBQURnY1NyelA4a0ZBQUFBSUNkdzlEOD3qGQS4TcNN+hmSBgoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKEgoMdm91Y2hlcl9sZW5zEgIQAAohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF80ODQwNzkxOTQ1Cg0KB2lzX3Zza3USAigACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAALAfz4KAgICAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 4840791945,
            "shopid": 57328541,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":14267,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-lr3udrcnp5z12c\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1000606,22,1001024,700020158,1015914,700190087,844931026694327,844931046478970,844931064601283,825249635454464,1400285055,298458335,298458334,1668726,700585046,298458395,1718087960,1428713,1718093079,2018618,1059152,1049122,822059908662278,837860934119952,825465608499232,825465608497696,298893311,2068629,298938357,298933384,298463379,1400095022,2153644,700830032,2213652,2008656,2098628,298938368,2098629,298468389,1718088045],\"merge_rank\":0,\"model_id\":50183188972,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":14267,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-lr3udrcnp5z12c\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1000606,22,1001024,700020158,1015914,700190087,844931026694327,844931046478970,844931064601283,825249635454464,1400285055,298458335,298458334,1668726,700585046,298458395,1718087960,1428713,1718093079,2018618,1059152,1049122,822059908662278,837860934119952,825465608499232,825465608497696,298893311,2068629,298938357,298933384,298463379,1400095022,2153644,700830032,2213652,2008656,2098628,298938368,2098629,298468389,1718088045],\"merge_rank\":0,\"model_id\":50183188972,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EIvWjaQBGOX2u4gBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYngxSHM0cHBjcTVXeHRqSUtqSDY1UmJoZVJMVUlkMFd1RGJudFNhMERSZGM3YWFzMHJmNDFKWjNQTTdmR2M0NDBxMHBlNFJlOE1BVWJQbXVSUFpocHVRTmdUYldKcENsQTZvUG9PTVhKZ0I2YVdXUGhiMXE4UUxLZzMvMmVGZTdwRDJQK2JESDllRDBoUjNGUGpBSm5Zc3ZxQlh1R0Z2V2R2dzdoa0xqWHhZU0FrVS9PWXRLSWJXMnlpSzZoQSt2RzRPZHVGMjlWSzNzc3RuZmRXcklLR21LZjhXdktxbVlRbDl2bFAwK3d3QThCU1daOWxkZm5lN2kzK2hrMXplZ3RSZ3BKSlFyYzVuNGhvT1dVUzhSbWEyNUNmUnNnaXgvZ1laa1pPR2ozSjlDYWNWQ1d5bVQ2MVhkcUtDK24rRjhadGEyVWRnSVJFZlliVzN3cE1IdmoxK05ZT0FWcFlQL0pwUmZCamN5cmFUNE9LUGM0TWhqdmtYcEhWejJybThGV1ZlNjE0Q3lpRXZVNlYwYjVKOTV1RThJOEdZN1lKOTIwYjVERUU1LzJMc3pFVWFMellRSVpJVTdwN0lSb0E5Zjh0MThaWGxXVjdQMjdpTVBVMnpPYWx5Rm1OR2V3WTBvNXVCazBtYlo4MjZBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABrdu4wfkJ6QEAAADglSXxP/EBAAAAQLSn8D/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENmpmZmfFpEUGhDQAAAICJNWtB+A2AgISBwxCwDqOEkKIC4g4Mqo0Gx40G1Y4G8JAGyA8Q4hnoCkVuSXdMalUwTmpRNExDMHhMQzB4TEMweExDMHhMREF1TlRVeUxERXNNQzQwTURrek1USXpNVE15TVRnME56VTJOeXd3TGprc0xURXNNQzR6T0RZM01ESTJOVGd4TkRZeU1USXpOU3d4TURndU9EVTJNRGswTmprMk1USTRNRGNzTUM0MU9EUTBOak13TnpJMk5UQXhNRFlzTFRFZHVVbmRTeURMMk9ZR0xSM21DejgxQUFDQVB6blRZRU5yY0Izd1FVSGZhSFJKTk9SRFFrb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRW9PQ0t2emxnTVJBQUFBQUFBQUFBQktFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUZvSENLenpsZ01RQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFHblVwNTVNZkdVUndYRUFBQUFBcG00S1Aza0FBQUNnTEhiK1BvRUJBQUFBUUN4QWZrR0pBUUFBQUFEd3hHTkJrUUVBQUFBZ1VoR0VRWmtCQUFBQUlGRnJoRUdoQVFBQUFBQkVzR3BCcVFFQUFBQWdZaGVMUWVnQkFZQUNsQU9LQWo0d0xqQXdORFUyTVN3eExqQXdNREF3TUN3eExqQXdNREF3TUN3eExqRTVOemcyTXl3eExqRTVOemcyTXl3eExqRTVOemcyTXl3eExqSTNOek00TVprQ1JJdHM1L3VwNFQraEFxM3ZOSGpDU2NGQndRTFVwNTVNZkdVUndjb0NDd2dCRWRTbm5reDhaUkhCeWdJTENBSVJBQUFBQUFBQUFJRFpBc0MwdDFZOUZGWkI0UUlBSUtEVHI1SkZRZWtDYTRYNkZBNzhuRUdLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEK1pBOU5nUTJ0d0hmQkJvUVBmYUhSSk5PUkRRcmtEV3VhNzRuSUY1RC9CQTlOMGZVT2krK1UveVFPbTR4SGRUSEhvUDlFRHk0Ym1LcSt1N1QvNkF3a0tCVWx6VGxCQ0VBRDZBd3NLQjFKdmFWUnBaWElRQS9vRERRb0pUM0prWlhKVWFXVnlFQUw2QXhFS0RVbDBaVzFRY21salpWUnBaWElRQTRFRUFBQUE0QndjQlQrSkJBQUFBSUNKN2dFL2tBU2JBNWdFdjhERzZKUzFBYUFFaGJienV4K29CSURJcjZBbHVBVDdrYnprQmNBRWdNaXZvQ1hKQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQW9NYXVjaitoQlFBQUFBQUFBUEEvcVFVQUFBQUFBQUR3UDdFRkFBQUE0SEVxOHorNUJRQUFBT0J4S3ZNL3dRVUFBQURnY1NyelA4a0ZBQUFBSUNkdzlEOD3qGQS4TcNN+hmSBgoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKEgoMdm91Y2hlcl9sZW5zEgIQAAohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF80ODQwNzkxOTQ1Cg0KB2lzX3Zza3USAigACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAALAfz4KAgICAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_4840791945",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25262677217,
              "shopid": 1180551736,
              "name": "AC Sharp 1/2 PK A5ZCY LOW WATT FREE PASANG + AKSESORIS",
              "label_ids": [
                1400285055,
                844931064601283,
                1015914,
                700190087,
                1718087960,
                1428713,
                298458395,
                298463379,
                1918643,
                1718093079,
                2018619,
                2023641,
                298893311,
                1059152,
                700005489,
                822059908662278,
                822120592853526,
                825465608497696,
                837860934119952,
                700830032,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7r98x-lrygc1vxfwxpec",
              "images": [
                "id-11134207-7r98x-lrygc1vxfwxpec",
                "id-11134207-7rask-m54gb1w9e54yc9",
                "id-11134201-7r98u-lrwt5f88arhlc6",
                "id-11134201-7r98t-lrwt5f74cdyhc5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1707305334,
              "sold": 19,
              "historical_sold": 436,
              "liked": false,
              "liked_count": 795,
              "view_count": null,
              "catid": 100010,
              "brand": "Sharp",
              "cmt_count": 227,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 290700000000,
              "price_min": 290700000000,
              "price_max": 290700000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Pembelian",
                  "options": [
                    "Unit Only",
                    "Unit Only + Material",
                    "+pasang",
                    "+pasang TradeIn"
                  ],
                  "images": [
                    "id-11134201-7r98r-lrwt5fcy3vd279",
                    "id-11134201-7ra0h-mc61j0bf3y2h05",
                    "id-11134201-7r98r-lrwt5firvbry46",
                    "id-11134201-7ra0j-mc61m5ox73v5d1"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.873949579831932,
                "rating_count": [
                  238,
                  3,
                  1,
                  4,
                  7,
                  223
                ],
                "rcount_with_context": 77,
                "rcount_with_image": 72
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 289700000000,
                "strikethrough_price": 290700000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1303365091868672,
                "discount_text": null,
                "model_id": 250317891768,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1303365091868672,
                  "voucher_code": "RAJAVPB1",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1764832980,
                    "end_time": 1772902740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 200000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 290700000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 436,
                "rounded_local_monthly_sold_count": 19,
                "local_monthly_sold_count_text": "19",
                "rounded_display_sold_count": 436,
                "display_sold_count_text": "436"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Raja AC Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 351437037,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiYbhCSWldJ77sUPYS3UqQI78xXDLm28g1S05ENmWM7v+cHHG/7Tbfx3FQLfIm0eMp4TsJlKHyDzlU3+LPU8xhBEhpbafywa8XGJ0Em4/Rqxn8U/4Ly6Rp3jJbqaaA2sIJrQ0B3qEialyTJ64n0AcCA/t4GZUYgH46FFd8X36jk9DLPJLBI5rue/HSp7PFZoWIcd8caNmdM0CIjlN/H2A4IcAuyP6p0Yt8C4ibIjWPlplOzvTAkrgCLi59pLGyryzU0gioR2MFEtUCWjCg/ZXu5Zx0clFvKOGU6DQdQlHnlVbw4K8Z7Q9pGtq3YV012bkRl0uwJQ8V6QglLCcGWZQmyEH+GIR6I74Qz06FvC4Wc21TyQXV/wr9MZ5CwxIKSp4bHISO1nINTFZjUcabVctuXiEc5N7YHJFxzNv3bJoN9ybvOU3RHItbUQOQDNVdwoT1DRqznWdsj6RllQGvdJdaiV66NLSyGfJy6WWH100RbL0g==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EO2ByqcBGPiK+okBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWWJoQ1NXbGRKNzdzVVBZUzNVcVFJNzh4WERMbTI4ZzFTMDVFTm1XTTd2K2NISEcvN1RiZngzRlFMZkltMGVNcDRUc0psS0h5RHpsVTMrTFBVOHhoQkVocGJhZnl3YThYR0owRW00L1JxeG44VS80THk2UnAzakpicWFhQTJzSUpyUTBCM3FFaWFseVRKNjRuMEFjQ0EvdDRHWlVZZ0g0NkZGZDhYMzZqazlETFBKTEJJNXJ1ZS9IU3A3UEZab1dJY2Q4Y2FObWRNMENJamxOL0gyQTRJY0F1eVA2cDBZdDhDNGliSWpXUGxwbE96dlRBa3JnQ0xpNTlwTEd5cnl6VTBnaW9SMk1GRXRVQ1dqQ2cvWlh1NVp4MGNsRnZLT0dVNkRRZFFsSG5sVmJ3NEs4WjdROXBHdHEzWVYwMTJia1JsMHV3SlE4VjZRZ2xMQ2NHV1pRbXlFSCtHSVI2STc0UXowNkZ2QzRXYzIxVHlRWFYvd3I5TVo1Q3d4SUtTcDRiSElTTzFuSU5URlpqVWNhYlZjdHVYaUVjNU43WUhKRnh6TnYzYkpvTjl5YnZPVTNSSEl0YlVRT1FETlZkd29UMURScXpuV2RzajZSbGxRR3ZkSmRhaVY2Nk5MU3lHZkp5NldXSDEwMFJiTDBnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABtIST2OcH6QEAAADglSXxP/EBAAAAAOMZ9D/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENcT0K18QJIUGhDQAAAJBDn3pB+A2AgNqIqQiwDu7pjJIB4g4Mqo0Gx40G1Y4G8JAGyA8R4hmEC0VvZ0JNUzR3Tmprek9EQTNNamsxTXpNeU5EYzRMQzB4TEMweExDMHhMQzB4TERFdU1EZ3dNVGd5TlRVMU1EZzBNRGc0Tnl3eExEQXVOREUwTURjeU5EVXdNRGM1TXpreU15d3dMamtzTFRFc01DNDROVE14TmpJek5qQTVOelU1TkRneExERXhOeTR4T1RJd01Ua3pPVGswT1RjME55d3dMalU0TkRRMk16QTNNalkxTURFd05pd3RNUjI1U2QxTElMam9wdzB0ZU9HSVB6VUFBSUEvT1FFOWtDRTEzd0ZDUWZ3YzdRUUZ6VTFDU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBYWVNVVhKVUhBQVBCY1FBQUFDQUkvZ1kvZVFBQUFJQmdKL00rZ1FFQUFBQWdtM3RxUVlrQkFBQUFJUFY5VjBHUkFRQUFBTmhLSFhOQm1RRUFBQURnTytCeFFhRUJBQUFBd05lMlgwR3BBUUFBQU5EeHpYbEI2QUVCZ0FLVUE0b0NQakF1TURBME9UTTFMREV1TURBd01EQXdMREV1TURBd01EQXdMREV1TWpVd01EQXdMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUxzdTd5QWJVanhQNkVDcmU4MGVNSkp3VUhCQXVNVVhKVUhBQVBCeWdJTENBRVI0eFJjbFFjQUE4SEtBZ3NJQWhFQUFBQUFBQUFBZ05rQ3dHdW5IblhtUzBIaEFrQm1IRHVSL1QxQjZRSmhnbVliMmw2alFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDVrRDB0SlBRVnY0QWtLaEF5cGVFdEdBT2xCQ3VRUHpUTUpSN2lQaVA4RUQ4UjNsL2ZaUjVEL0pBMXlCSHNVSVIrYy8wUVBudjhkaTJ4bnRQL29EQ1FvRlNYTk9VRUlRQVBvREN3b0hVbTlwVkdsbGNoQUQrZ01OQ2dsUGNtUmxjbFJwWlhJUUEvb0RFUW9OU1hSbGJWQnlhV05sVkdsbGNoQURnUVFBQUFEQVl2b0JQNGtFQUFBQXdFZHkvVDZRQkpzRG1BU2UwZWIzOWppZ0JMcXVoZjBXcUFTZzFiV2dKYmdFNXFhd293N0FCS0RWdGFBbHlRUjdGSzVINFhxVVArRUVleFN1UitGNmxEL3BCQUFBQUFBQUFQQS84UVFBQUFBQUFBRHdQL2tFQUFBQUFBQUE4RCtCQlFBQUFBQUFBUEEvaVFVQUFBQUFBQUR3UDVFRkFBQUFBQUFBOEQrWkJRQUFBQ0N4Tm5RL29RVUFBQUFBQUFEd1A2a0ZBQUFBQUFBQThEK3hCUUFBQUFBQUFQUS91UVVBQUFEQXpNejBQOEVGQUFBQVlHWm05ai9KQlFBQUFBQUFBUGcv6hkEvk3ATfIZA7rEPPoZkwYKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMjUyNjI2NzcyMTcKDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoSCgx2b3VjaGVyX2xlbnMSAhAAsB/PgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 25262677217,
            "shopid": 1180551736,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":20132874,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-lrygc1vxfwxpec\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1400285055,844931064601283,1015914,700190087,1718087960,1428713,298458395,298463379,1918643,1718093079,2018619,2023641,298893311,1059152,700005489,822059908662278,822120592853526,825465608497696,837860934119952,700830032,1718088045,298468389],\"merge_rank\":0,\"model_id\":250317891768,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":20132874,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-lrygc1vxfwxpec\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1400285055,844931064601283,1015914,700190087,1718087960,1428713,298458395,298463379,1918643,1718093079,2018619,2023641,298893311,1059152,700005489,822059908662278,822120592853526,825465608497696,837860934119952,700830032,1718088045,298468389],\"merge_rank\":0,\"model_id\":250317891768,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EO2ByqcBGPiK+okBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWWJoQ1NXbGRKNzdzVVBZUzNVcVFJNzh4WERMbTI4ZzFTMDVFTm1XTTd2K2NISEcvN1RiZngzRlFMZkltMGVNcDRUc0psS0h5RHpsVTMrTFBVOHhoQkVocGJhZnl3YThYR0owRW00L1JxeG44VS80THk2UnAzakpicWFhQTJzSUpyUTBCM3FFaWFseVRKNjRuMEFjQ0EvdDRHWlVZZ0g0NkZGZDhYMzZqazlETFBKTEJJNXJ1ZS9IU3A3UEZab1dJY2Q4Y2FObWRNMENJamxOL0gyQTRJY0F1eVA2cDBZdDhDNGliSWpXUGxwbE96dlRBa3JnQ0xpNTlwTEd5cnl6VTBnaW9SMk1GRXRVQ1dqQ2cvWlh1NVp4MGNsRnZLT0dVNkRRZFFsSG5sVmJ3NEs4WjdROXBHdHEzWVYwMTJia1JsMHV3SlE4VjZRZ2xMQ2NHV1pRbXlFSCtHSVI2STc0UXowNkZ2QzRXYzIxVHlRWFYvd3I5TVo1Q3d4SUtTcDRiSElTTzFuSU5URlpqVWNhYlZjdHVYaUVjNU43WUhKRnh6TnYzYkpvTjl5YnZPVTNSSEl0YlVRT1FETlZkd29UMURScXpuV2RzajZSbGxRR3ZkSmRhaVY2Nk5MU3lHZkp5NldXSDEwMFJiTDBnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABtIST2OcH6QEAAADglSXxP/EBAAAAAOMZ9D/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENcT0K18QJIUGhDQAAAJBDn3pB+A2AgNqIqQiwDu7pjJIB4g4Mqo0Gx40G1Y4G8JAGyA8R4hmEC0VvZ0JNUzR3Tmprek9EQTNNamsxTXpNeU5EYzRMQzB4TEMweExDMHhMQzB4TERFdU1EZ3dNVGd5TlRVMU1EZzBNRGc0Tnl3eExEQXVOREUwTURjeU5EVXdNRGM1TXpreU15d3dMamtzTFRFc01DNDROVE14TmpJek5qQTVOelU1TkRneExERXhOeTR4T1RJd01Ua3pPVGswT1RjME55d3dMalU0TkRRMk16QTNNalkxTURFd05pd3RNUjI1U2QxTElMam9wdzB0ZU9HSVB6VUFBSUEvT1FFOWtDRTEzd0ZDUWZ3YzdRUUZ6VTFDU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBYWVNVVhKVUhBQVBCY1FBQUFDQUkvZ1kvZVFBQUFJQmdKL00rZ1FFQUFBQWdtM3RxUVlrQkFBQUFJUFY5VjBHUkFRQUFBTmhLSFhOQm1RRUFBQURnTytCeFFhRUJBQUFBd05lMlgwR3BBUUFBQU5EeHpYbEI2QUVCZ0FLVUE0b0NQakF1TURBME9UTTFMREV1TURBd01EQXdMREV1TURBd01EQXdMREV1TWpVd01EQXdMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUxzdTd5QWJVanhQNkVDcmU4MGVNSkp3VUhCQXVNVVhKVUhBQVBCeWdJTENBRVI0eFJjbFFjQUE4SEtBZ3NJQWhFQUFBQUFBQUFBZ05rQ3dHdW5IblhtUzBIaEFrQm1IRHVSL1QxQjZRSmhnbVliMmw2alFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDVrRDB0SlBRVnY0QWtLaEF5cGVFdEdBT2xCQ3VRUHpUTUpSN2lQaVA4RUQ4UjNsL2ZaUjVEL0pBMXlCSHNVSVIrYy8wUVBudjhkaTJ4bnRQL29EQ1FvRlNYTk9VRUlRQVBvREN3b0hVbTlwVkdsbGNoQUQrZ01OQ2dsUGNtUmxjbFJwWlhJUUEvb0RFUW9OU1hSbGJWQnlhV05sVkdsbGNoQURnUVFBQUFEQVl2b0JQNGtFQUFBQXdFZHkvVDZRQkpzRG1BU2UwZWIzOWppZ0JMcXVoZjBXcUFTZzFiV2dKYmdFNXFhd293N0FCS0RWdGFBbHlRUjdGSzVINFhxVVArRUVleFN1UitGNmxEL3BCQUFBQUFBQUFQQS84UVFBQUFBQUFBRHdQL2tFQUFBQUFBQUE4RCtCQlFBQUFBQUFBUEEvaVFVQUFBQUFBQUR3UDVFRkFBQUFBQUFBOEQrWkJRQUFBQ0N4Tm5RL29RVUFBQUFBQUFEd1A2a0ZBQUFBQUFBQThEK3hCUUFBQUFBQUFQUS91UVVBQUFEQXpNejBQOEVGQUFBQVlHWm05ai9KQlFBQUFBQUFBUGcv6hkEvk3ATfIZA7rEPPoZkwYKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMjUyNjI2NzcyMTcKDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoSCgx2b3VjaGVyX2xlbnMSAhAAsB/PgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25262677217",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 3440906108,
              "shopid": 57328541,
              "name": "GREE AC DELUXE LOW WATT - PUTIH 1PK - GWC-09C3E(S) (Unit Indoor & Outdoor)",
              "label_ids": [
                27,
                48,
                1000109,
                1002164,
                1013565,
                1400095067,
                1400285005,
                1000579,
                1000606,
                1000679,
                1001024,
                22,
                700020158,
                1015914,
                1400095065,
                844931026694327,
                844931046478970,
                844931064601283,
                825249635454464,
                1400285055,
                700190087,
                298458334,
                700300004,
                1668726,
                700585046,
                298458395,
                1718087960,
                1428713,
                1059152,
                1049122,
                822059908662278,
                825465608497696,
                837860934119952,
                825465608499232,
                1718093079,
                1823711,
                1988623,
                1718162994,
                2018618,
                298893311,
                2068629,
                298938357,
                298933384,
                298463379,
                2153644,
                700830032,
                2213652,
                2008656,
                298938368,
                2098628,
                1718088045,
                2098629,
                298468389
              ],
              "image": "id-11134207-7r98r-lx205vqmipt663",
              "images": [
                "id-11134207-7r98r-lx205vqmipt663",
                "id-11134201-7r98v-lllnj6ew3wpi89",
                "id-11134201-7r98v-lllnj6k5w701cf",
                "id-11134201-7r98u-lllnj6co75l3f3",
                "id-11134207-7r98p-lxuz2m5e8m240e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1593851045,
              "sold": 49,
              "historical_sold": 971,
              "liked": false,
              "liked_count": 2865,
              "view_count": null,
              "catid": 100010,
              "brand": "Gree",
              "cmt_count": 385,
              "flag": 917504,
              "cb_option": 0,
              "item_status": "normal",
              "price": 466900000000,
              "price_min": 466900000000,
              "price_max": 466900000000,
              "price_min_before_discount": 559900000000,
              "price_max_before_discount": 559900000000,
              "hidden_price_display": null,
              "price_before_discount": 559900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-17%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.924242424242424,
                "rating_count": [
                  396,
                  2,
                  0,
                  2,
                  18,
                  374
                ],
                "rcount_with_context": 115,
                "rcount_with_image": 98
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-7r98r-lx205vqmipt663",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp1,5JT X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227862468898817,
                "price": 466900000000,
                "strikethrough_price": 559900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-17%",
                "model_id": 70184482482,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 559900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 971,
                "rounded_local_monthly_sold_count": 49,
                "local_monthly_sold_count_text": "49",
                "rounded_display_sold_count": 971,
                "display_sold_count_text": "971"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp1,6JT x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gree Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 332689392,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWianhbk3bifBlwPNwlV4pHnZfVH+JLKXyAnCQtOX+Ox9GCmndG+2A2Vyu4a8+5w4owN3qYOD5gzB0xVTaj/ZlHvwevwXLBgIvNf2/puQWneSsFpeabWi2Gnr9jsfJCeLI44FE9Y8SJR6G5xoEpod91hcxwx1MvXNTYvEbVt04xper3Ltg9NDi9SjgQAXO0tc1Ix6euNK72wKwkR6YilLUHNfoO85BfRyP0XO6GJspzZQN4uZ9vcO066NM6c9DH7x7vbtY3NBHeyehTGS1K0zorrEN9kfVLssoD5wRacpgYtqoPDHnUs7mtkXIbc1OALB367LQo4OmwujHbd050Me6+wwHoE1/3vC4YASUM91gEn42S1XYmpQhnK2+lPBEavZn4M132aCJaWhWecWyMmRWrTqUsjsOdfvFm7tnHx3xHZPf9eiAIrN0yRe2w4UaG0nnD/wUzFa44nPLefG+nbiQVhCTezbdEu6tKjMBJYZevQQQA==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EPDf0Z4BGNLirIYBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYW5oYmszYmlmQmx3UE53bFY0cEhuWmZWSCtKTEtYeUFuQ1F0T1grT3g5R0NtbmRHKzJBMlZ5dTRhOCs1dzRvd04zcVlPRDVnekIweFZUYWovWmxIdndldndYTEJnSXZOZjIvcHVRV25lU3NGcGVhYldpMkducjlqc2ZKQ2VMSTQ0RkU5WThTSlI2RzV4b0Vwb2Q5MWhjeHd4MU12WE5UWXZFYlZ0MDR4cGVyM0x0ZzlORGk5U2pnUUFYTzB0YzFJeDZldU5LNzJ3S3drUjZZaWxMVUhOZm9PODVCZlJ5UDBYTzZHSnNwelpRTjR1Wjl2Y08wNjZOTTZjOURIN3g3dmJ0WTNOQkhleWVoVEdTMUswem9yckVOOWtmVkxzc29ENXdSYWNwZ1l0cW9QREhuVXM3bXRrWEliYzFPQUxCMzY3TFFvNE9td3VqSGJkMDUwTWU2K3d3SG9FMS8zdkM0WUFTVU05MWdFbjQyUzFYWW1wUWhuSzIrbFBCRWF2Wm40TTEzMmFDSmFXaFdlY1d5TW1SV3JUcVVzanNPZGZ2Rm03dG5IeDN4SFpQZjllaUFJck4weVJlMnc0VWFHMG5uRC93VXpGYTQ0blBMZWZHK25iaVFWaENUZXpiZEV1NnRLak1CSllaZXZRUVFBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABsv/XgsAJ6QEAAADglSXxP/EBAAAAgJ5F8T/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENw/UoXNFmHUGhDQAAAJBT+HZB+A2AgLCoqg2wDuKIiOoB4g4Mqo0Gx40G1Y4G8JAGyA8S4hncCkVuTXdMamt5TWpZNExDMHhMQzB4TEMweExDMHhMREF1T1RNeE9UazVPVGs1T1RrNU9UazVPQ3d4TERBdU1qZzJNemcwTWpFek16a3pORFUwTlN3d0xqa3NMVEVzTVM0d01EQXdNVEl6TERJM09DNDBNVFExTXpnMk56WTBOemM0TERBdU5UZzBORFl6TURjeU5qVXdNVEEyTEMweEhibEozVXNndUlxK0N5M0NOR3cvTlFBQWdEODU0NlVqMHN3UkNrSkJsQzhlT1ZIc1ZrSktEZ2lzODVZREVRQUFBQUFBQUFBQVNnNEluUHJoQkJFQUFBQUFBQUFBQUVvT0NLdnpsZ01SQUFBQUFBQUFBQUJLRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJcXZPV0F4RUFBQUFBQUFBQUFGSU9DS3p6bGdNUkFBQUFBQUFBQUFCU0RnaXI4NVlERVFBQUFBQUFBQUFBV2drSWdJQ0FnSUFFRUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCaUVBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCaURnaXE4NVlERVFBQUFBQUFBUEEvWWc0SXJQT1dBeEVBQUFBQUFBQUFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQnhBQUFBSU12d0J6OTVBQUFBUU5SMDlqNkJBUUFBQUtEZkhIWkJpUUVBQUFEQWtNbGNRWkVCQUFBQTBFTlBmVUdaQVFBQUFPQXQybjFCb1FFQUFBRGdkRzVqUWFrQkFBQUFLTFRJZzBIb0FRR0FBcFFEaWdJK01DNHdNRFE0TkRVc01TNHdNREF3TURBc01TNHdNREF3TURBc01TNHhOamt3TXpBc01TNHhOamt3TXpBc01TNHhOamt3TXpBc01TNHhPVFE1T0RPWkFtdm4rNm54MHUwL29RS3Q3elI0d2tuQlFjRUNBQUFBQUFBQUFJREtBZ3NJQVJFQUFBQUFBQUFBQU1vQ0N3Z0NFUUFBQUFBQUFBQ0EyUUxBOVZZd0FHMVNRZUVDd0FmUmhqdnBRRUhwQXVibVhSaHJMYUJCaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9tUVBqcFNQU3pCRUtRcUVEbEM4ZU9WSHNWa0s1QTVwc2ZsbjM5K0kvd1FQYXN5OEN2UWpsUDhrRDltR1lYTmpLNXovUkF5TzZqbjA4YSswLytnTU5DZ2xQY21SbGNsUnBaWElRQS9vREVRb05TWFJsYlZCeWFXTmxWR2xsY2hBRCtnTUpDZ1ZKYzA1UVFoQUErZ01MQ2dkU2IybFVhV1Z5RUFPQkJBQUFBSUMwWFFJL2lRUUFBQUFnNHp2K1BwQUVtd09ZQk5la3J0dVF0UUdnQko3VTBjczJxQVNBNEl1MFdiZ0U0b3U2NkNMQUJJRGdpN1JaeVFSN0ZLNUg0WHFVUCtFRWV4U3VSK0Y2bEQvcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFLQXAySE0vb1FVQUFBQUFBQUR3UDZrRkFBQUFBQUFBOEQreEJRQUFBQ0JadFBJL3VRVUFBQUFnV2JUeVA4RUZBQUFBSUZtMDhqL0pCUUFBQU1DbUh2TS/qGQS6TcBN+hmcBgoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDIwMzA0LDYxMTAzMDExMAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoNCgdpc192c2t1EgIoAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF8zNDQwOTA2MTA4ChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKACwH8+CgKCAgICogAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 3440906108,
            "shopid": 57328541,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":24085817,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98r-lx205vqmipt663\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1000579,1000606,1000679,1001024,22,700020158,1015914,1400095065,844931026694327,844931046478970,844931064601283,825249635454464,1400285055,700190087,298458334,700300004,1668726,700585046,298458395,1718087960,1428713,1059152,1049122,822059908662278,825465608497696,837860934119952,825465608499232,1718093079,1823711,1988623,1718162994,2018618,298893311,2068629,298938357,298933384,298463379,2153644,700830032,2213652,2008656,298938368,2098628,1718088045,2098629,298468389],\"merge_rank\":0,\"model_id\":70184482482,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":24085817,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98r-lx205vqmipt663\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1000579,1000606,1000679,1001024,22,700020158,1015914,1400095065,844931026694327,844931046478970,844931064601283,825249635454464,1400285055,700190087,298458334,700300004,1668726,700585046,298458395,1718087960,1428713,1059152,1049122,822059908662278,825465608497696,837860934119952,825465608499232,1718093079,1823711,1988623,1718162994,2018618,298893311,2068629,298938357,298933384,298463379,2153644,700830032,2213652,2008656,298938368,2098628,1718088045,2098629,298468389],\"merge_rank\":0,\"model_id\":70184482482,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EPDf0Z4BGNLirIYBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYW5oYmszYmlmQmx3UE53bFY0cEhuWmZWSCtKTEtYeUFuQ1F0T1grT3g5R0NtbmRHKzJBMlZ5dTRhOCs1dzRvd04zcVlPRDVnekIweFZUYWovWmxIdndldndYTEJnSXZOZjIvcHVRV25lU3NGcGVhYldpMkducjlqc2ZKQ2VMSTQ0RkU5WThTSlI2RzV4b0Vwb2Q5MWhjeHd4MU12WE5UWXZFYlZ0MDR4cGVyM0x0ZzlORGk5U2pnUUFYTzB0YzFJeDZldU5LNzJ3S3drUjZZaWxMVUhOZm9PODVCZlJ5UDBYTzZHSnNwelpRTjR1Wjl2Y08wNjZOTTZjOURIN3g3dmJ0WTNOQkhleWVoVEdTMUswem9yckVOOWtmVkxzc29ENXdSYWNwZ1l0cW9QREhuVXM3bXRrWEliYzFPQUxCMzY3TFFvNE9td3VqSGJkMDUwTWU2K3d3SG9FMS8zdkM0WUFTVU05MWdFbjQyUzFYWW1wUWhuSzIrbFBCRWF2Wm40TTEzMmFDSmFXaFdlY1d5TW1SV3JUcVVzanNPZGZ2Rm03dG5IeDN4SFpQZjllaUFJck4weVJlMnc0VWFHMG5uRC93VXpGYTQ0blBMZWZHK25iaVFWaENUZXpiZEV1NnRLak1CSllaZXZRUVFBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABsv/XgsAJ6QEAAADglSXxP/EBAAAAgJ5F8T/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENw/UoXNFmHUGhDQAAAJBT+HZB+A2AgLCoqg2wDuKIiOoB4g4Mqo0Gx40G1Y4G8JAGyA8S4hncCkVuTXdMamt5TWpZNExDMHhMQzB4TEMweExDMHhMREF1T1RNeE9UazVPVGs1T1RrNU9UazVPQ3d4TERBdU1qZzJNemcwTWpFek16a3pORFUwTlN3d0xqa3NMVEVzTVM0d01EQXdNVEl6TERJM09DNDBNVFExTXpnMk56WTBOemM0TERBdU5UZzBORFl6TURjeU5qVXdNVEEyTEMweEhibEozVXNndUlxK0N5M0NOR3cvTlFBQWdEODU0NlVqMHN3UkNrSkJsQzhlT1ZIc1ZrSktEZ2lzODVZREVRQUFBQUFBQUFBQVNnNEluUHJoQkJFQUFBQUFBQUFBQUVvT0NLdnpsZ01SQUFBQUFBQUFBQUJLRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJcXZPV0F4RUFBQUFBQUFBQUFGSU9DS3p6bGdNUkFBQUFBQUFBQUFCU0RnaXI4NVlERVFBQUFBQUFBQUFBV2drSWdJQ0FnSUFFRUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCaUVBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCaURnaXE4NVlERVFBQUFBQUFBUEEvWWc0SXJQT1dBeEVBQUFBQUFBQUFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQnhBQUFBSU12d0J6OTVBQUFBUU5SMDlqNkJBUUFBQUtEZkhIWkJpUUVBQUFEQWtNbGNRWkVCQUFBQTBFTlBmVUdaQVFBQUFPQXQybjFCb1FFQUFBRGdkRzVqUWFrQkFBQUFLTFRJZzBIb0FRR0FBcFFEaWdJK01DNHdNRFE0TkRVc01TNHdNREF3TURBc01TNHdNREF3TURBc01TNHhOamt3TXpBc01TNHhOamt3TXpBc01TNHhOamt3TXpBc01TNHhPVFE1T0RPWkFtdm4rNm54MHUwL29RS3Q3elI0d2tuQlFjRUNBQUFBQUFBQUFJREtBZ3NJQVJFQUFBQUFBQUFBQU1vQ0N3Z0NFUUFBQUFBQUFBQ0EyUUxBOVZZd0FHMVNRZUVDd0FmUmhqdnBRRUhwQXVibVhSaHJMYUJCaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9tUVBqcFNQU3pCRUtRcUVEbEM4ZU9WSHNWa0s1QTVwc2ZsbjM5K0kvd1FQYXN5OEN2UWpsUDhrRDltR1lYTmpLNXovUkF5TzZqbjA4YSswLytnTU5DZ2xQY21SbGNsUnBaWElRQS9vREVRb05TWFJsYlZCeWFXTmxWR2xsY2hBRCtnTUpDZ1ZKYzA1UVFoQUErZ01MQ2dkU2IybFVhV1Z5RUFPQkJBQUFBSUMwWFFJL2lRUUFBQUFnNHp2K1BwQUVtd09ZQk5la3J0dVF0UUdnQko3VTBjczJxQVNBNEl1MFdiZ0U0b3U2NkNMQUJJRGdpN1JaeVFSN0ZLNUg0WHFVUCtFRWV4U3VSK0Y2bEQvcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFLQXAySE0vb1FVQUFBQUFBQUR3UDZrRkFBQUFBQUFBOEQreEJRQUFBQ0JadFBJL3VRVUFBQUFnV2JUeVA4RUZBQUFBSUZtMDhqL0pCUUFBQU1DbUh2TS/qGQS6TcBN+hmcBgoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDIwMzA0LDYxMTAzMDExMAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoNCgdpc192c2t1EgIoAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF8zNDQwOTA2MTA4ChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKACwH8+CgKCAgICogAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_3440906108",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 6942976519,
              "shopid": 57328541,
              "name": "GREE AC Freair Wall Mounted 1PK with Air Purifier - GWC-09Freair",
              "label_ids": [
                27,
                48,
                1000109,
                1002164,
                1013565,
                1400095067,
                1400285005,
                1001024,
                844931064601283,
                844931026694327,
                844931046478970,
                825249635454464,
                1400285055,
                1015914,
                700190087,
                1668726,
                298458395,
                1718087960,
                1428713,
                1049122,
                1059152,
                822059908662278,
                837860934119952,
                825465608499232,
                1718093079,
                2018618,
                298893311,
                2068629,
                298938357,
                825465608497696,
                298933384,
                298463379,
                2153644,
                700830032,
                2213652,
                2098628,
                2098629,
                1718088045,
                298938368,
                298468389
              ],
              "image": "id-11134207-7r98x-lr4bf4kgctq5d0",
              "images": [
                "id-11134207-7r98x-lr4bf4kgctq5d0",
                "id-11134201-7r991-lllniw3n76mu12",
                "id-11134201-7r98u-lllnj7bmtegh08",
                "id-11134201-7r98t-lllnj6zf9v1226"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1595245613,
              "sold": 0,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 219,
              "view_count": null,
              "catid": 100010,
              "brand": "Gree",
              "cmt_count": 3,
              "flag": 917504,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1117900000000,
              "price_min": 1117900000000,
              "price_max": 1117900000000,
              "price_min_before_discount": 1299900000000,
              "price_max_before_discount": 1299900000000,
              "hidden_price_display": null,
              "price_before_discount": 1299900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-14%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 3.6666666666666665,
                "rating_count": [
                  3,
                  1,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp3,7JT X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 817277306470400,
                "price": 1117900000000,
                "strikethrough_price": 1299900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-14%",
                "model_id": 70349531058,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1299900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp3,7JT x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gree Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 413008698,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiYF4B9C43WLJSpWLs0Vvrbdn9bJwnQbbUXFAoT8I+G2O8/U/zcQAQhom6DPcsvoIzq3gfUCwjBzMbf/iQqfMETzR16urZlBGBdx7zpUmsAGTkse++ZVOK7jHIfXkQe/9kdB5oOztnpT22SIjNZW6ck/OIeckEbvcF263+gMRWPstjW6nHRyatZp5YPd8sMCqLPSpBJyG88HqambC2d8Sme5zIXxRjFxq4DFY7Bq8860Da9LSYAz1MwBzIedt8ByDEkMcKMII4nDGvPvMh35vJdvgK8f0qn/CKSzYWrDuE3KLF8rBpacSDI9VG7CBGXqGJqsV8ZFd9p/iOEZZyh9edYIHt15qkwGDSo7I1TEEU7VL4XzohpAeU60j4B7/k/qt0Z9gayFzqYgW/Gjcv+bzXQFLxO7tUcAq9HwjK1+GjYUGZk1pXClZ3C04+YmYk4OO9bP3ud/6UHZwC4YhPCHspgxUfiVclWi6Dk8rVdmWbJzQg==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELqG+MQBGK7DgH8ymARkV3RrVkdGUlFVRkJRVUp6V2pKR1Q5RE4rajBSVlUzY2ZseFIxZGxNV2lZRjRCOUM0M1dMSlNwV0xzMFZ2cmJkbjliSnduUWJiVVhGQW9UOEkrRzJPOC9VL3pjUUFRaG9tNkRQY3N2b0l6cTNnZlVDd2pCek1iZi9pUXFmTUVUelIxNnVyWmxCR0JkeDd6cFVtc0FHVGtzZSsrWlZPSzdqSElmWGtRZS85a2RCNW9PenRucFQyMlNJak5aVzZjay9PSWVja0VidmNGMjYzK2dNUldQc3RqVzZuSFJ5YXRacDVZUGQ4c01DcUxQU3BCSnlHODhIcWFtYkMyZDhTbWU1eklYeFJqRnhxNERGWTdCcTg4NjBEYTlMU1lBejFNd0J6SWVkdDhCeURFa01jS01JSTRuREd2UHZNaDM1dkpkdmdLOGYwcW4vQ0tTellXckR1RTNLTEY4ckJwYWNTREk5Vkc3Q0JHWHFHSnFzVjhaRmQ5cC9pT0VaWnloOWVkWUlIdDE1cWt3R0RTbzdJMVRFRVU3Vkw0WHpvaHBBZVU2MGo0Qjcvay9xdDBaOWdheUZ6cVlnVy9HamN2K2J6WFFGTHhPN3RVY0FxOUh3aksxK0dqWVVHWmsxcFhDbFozQzA0K1ltWWs0T085YlAzdWQvNlVIWndDNFloUENIc3BneFVmaVZjbFdpNkRrOHJWZG1XYkp6UWc9PUgyUqQBYmZmLXNlYXJjaF9pZF9zZzEyXzEwLjE0OC4xNzkuOTdfe2IxMWJhM2FmNDg1NTdjYTFjNzk1MGFlZDcwYjcxYzAwOjAyMDAwMDI2N2M5YWU3OWQ6MDEwMDAxODgxNzE0OGZiYX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMzI0NzE4MDFxexSuR+F6lD+CAQlhYyB3aW5kb3eQAaW7ncsG4AGX87byiwrpAQAAAOCVJfE/8QEAAAAgd4nwP8gMD+AMAekMAAAAoJmZqT+JDXsUrkfhepQ/kQ3hehSuXz4FQaENAAAAwLqYYEH4DYCAoMDEILAO/9+huwTiDgyqjQbHjQbVjgbwkAbIDxPiGdQJRW1nd0xqTXNMVEVzTFRFc0xURXNMVEVzTUM0ekxERXNNUzR3TkRRNE5EWXdNamcxTmpJeE9EZzJMQzB4TEMweExEQXVOVFkwT1Rrek5qazJORGs0T1RJM01pd3lNaTQxTkRZeE1UQXdNalV6TXprME55d3dMalU0TkRRMk16QTNNalkxTURFd05pd3RNUjI1U2QxTElOV0xrd1F0bXBtWlBqVUFBSUEvU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0hDS3p6bGdNUUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBYWZmb0J0SldRd0hCY1FBQUFHQUVHZ1kvZVFBQUFPQ1N0eHMvZ1FFQUFBRGcxSmlKUVlrQkFBQUFnQ2dTZ2tHUkFRQUFBTEIrMVpWQm1RRUFBQUJBS1VlUlFhRUJBQUFBUUZCbGlFR3BBUUFBQUdEUmVaMUI2QUVCZ0FLVUE0b0NQakF1TURBeU16VTNMREV1TURBd01EQXdMREV1TURBd01EQXdMREV1TWpVd01EQXdMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TkRBd01EazVtUUl6TXpNek16UFRQNkVDcmU4MGVNSkp3VUhCQXZmb0J0SldRd0hCeWdJTENBRVI5K2dHMGxaREFjSEtBZ3NJQWhFQUFBQUFBQUFBZ05rQ2dOVDg0enpWYTBIaEFnQ1oxQU9lT1cxQjZRTHZPVmJ2Nkl1bFFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDdrRGhBY1pXM0FwNWovQkE5RklRdjR2VStnL3lRT1pZQWhWQWZ2cVA5RUR5SG5iNFJTZDdqK0JCQUFBQUNBb1FnTS9pUVFBQUFEZ2VYTUFQNUFFbXdPWUJJekN6ZTd5dEFHZ0JQYWlrTndHcUFTQXFOYTVCN2dFaW9YR1hjQUVnS2pXdVFmSkJIc1Vya2ZoZXBRLzRRUjdGSzVINFhxVVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFnS1pQWXoraEJRQUFBQUFBQVBBL3FRVUFBQUFBQUFEd1A3RUZBQUFBQUFBQTlEKzVCUUFBQU1ETXpQUS93UVVBQUFCZ1ptYjJQOGtGQUFBQUlNNW05ajg96hkCDBX6GZIGCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF82OTQyOTc2NTE5ChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoNCgdpc192c2t1EgIoAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoSCgx2b3VjaGVyX2xlbnMSAhAAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDIwMzA0sB/PgoCAoICBiKgByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 6942976519,
            "shopid": 57328541,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":1630456,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-lr4bf4kgctq5d0\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1001024,844931064601283,844931026694327,844931046478970,825249635454464,1400285055,1015914,700190087,1668726,298458395,1718087960,1428713,1049122,1059152,822059908662278,837860934119952,825465608499232,1718093079,2018618,298893311,2068629,298938357,825465608497696,298933384,298463379,2153644,700830032,2213652,2098628,2098629,1718088045,298938368,298468389],\"merge_rank\":0,\"model_id\":70349531058,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":1630456,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-lr4bf4kgctq5d0\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1001024,844931064601283,844931026694327,844931046478970,825249635454464,1400285055,1015914,700190087,1668726,298458395,1718087960,1428713,1049122,1059152,822059908662278,837860934119952,825465608499232,1718093079,2018618,298893311,2068629,298938357,825465608497696,298933384,298463379,2153644,700830032,2213652,2098628,2098629,1718088045,298938368,298468389],\"merge_rank\":0,\"model_id\":70349531058,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELqG+MQBGK7DgH8ymARkV3RrVkdGUlFVRkJRVUp6V2pKR1Q5RE4rajBSVlUzY2ZseFIxZGxNV2lZRjRCOUM0M1dMSlNwV0xzMFZ2cmJkbjliSnduUWJiVVhGQW9UOEkrRzJPOC9VL3pjUUFRaG9tNkRQY3N2b0l6cTNnZlVDd2pCek1iZi9pUXFmTUVUelIxNnVyWmxCR0JkeDd6cFVtc0FHVGtzZSsrWlZPSzdqSElmWGtRZS85a2RCNW9PenRucFQyMlNJak5aVzZjay9PSWVja0VidmNGMjYzK2dNUldQc3RqVzZuSFJ5YXRacDVZUGQ4c01DcUxQU3BCSnlHODhIcWFtYkMyZDhTbWU1eklYeFJqRnhxNERGWTdCcTg4NjBEYTlMU1lBejFNd0J6SWVkdDhCeURFa01jS01JSTRuREd2UHZNaDM1dkpkdmdLOGYwcW4vQ0tTellXckR1RTNLTEY4ckJwYWNTREk5Vkc3Q0JHWHFHSnFzVjhaRmQ5cC9pT0VaWnloOWVkWUlIdDE1cWt3R0RTbzdJMVRFRVU3Vkw0WHpvaHBBZVU2MGo0Qjcvay9xdDBaOWdheUZ6cVlnVy9HamN2K2J6WFFGTHhPN3RVY0FxOUh3aksxK0dqWVVHWmsxcFhDbFozQzA0K1ltWWs0T085YlAzdWQvNlVIWndDNFloUENIc3BneFVmaVZjbFdpNkRrOHJWZG1XYkp6UWc9PUgyUqQBYmZmLXNlYXJjaF9pZF9zZzEyXzEwLjE0OC4xNzkuOTdfe2IxMWJhM2FmNDg1NTdjYTFjNzk1MGFlZDcwYjcxYzAwOjAyMDAwMDI2N2M5YWU3OWQ6MDEwMDAxODgxNzE0OGZiYX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMzI0NzE4MDFxexSuR+F6lD+CAQlhYyB3aW5kb3eQAaW7ncsG4AGX87byiwrpAQAAAOCVJfE/8QEAAAAgd4nwP8gMD+AMAekMAAAAoJmZqT+JDXsUrkfhepQ/kQ3hehSuXz4FQaENAAAAwLqYYEH4DYCAoMDEILAO/9+huwTiDgyqjQbHjQbVjgbwkAbIDxPiGdQJRW1nd0xqTXNMVEVzTFRFc0xURXNMVEVzTUM0ekxERXNNUzR3TkRRNE5EWXdNamcxTmpJeE9EZzJMQzB4TEMweExEQXVOVFkwT1Rrek5qazJORGs0T1RJM01pd3lNaTQxTkRZeE1UQXdNalV6TXprME55d3dMalU0TkRRMk16QTNNalkxTURFd05pd3RNUjI1U2QxTElOV0xrd1F0bXBtWlBqVUFBSUEvU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0hDS3p6bGdNUUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBYWZmb0J0SldRd0hCY1FBQUFHQUVHZ1kvZVFBQUFPQ1N0eHMvZ1FFQUFBRGcxSmlKUVlrQkFBQUFnQ2dTZ2tHUkFRQUFBTEIrMVpWQm1RRUFBQUJBS1VlUlFhRUJBQUFBUUZCbGlFR3BBUUFBQUdEUmVaMUI2QUVCZ0FLVUE0b0NQakF1TURBeU16VTNMREV1TURBd01EQXdMREV1TURBd01EQXdMREV1TWpVd01EQXdMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TkRBd01EazVtUUl6TXpNek16UFRQNkVDcmU4MGVNSkp3VUhCQXZmb0J0SldRd0hCeWdJTENBRVI5K2dHMGxaREFjSEtBZ3NJQWhFQUFBQUFBQUFBZ05rQ2dOVDg0enpWYTBIaEFnQ1oxQU9lT1cxQjZRTHZPVmJ2Nkl1bFFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDdrRGhBY1pXM0FwNWovQkE5RklRdjR2VStnL3lRT1pZQWhWQWZ2cVA5RUR5SG5iNFJTZDdqK0JCQUFBQUNBb1FnTS9pUVFBQUFEZ2VYTUFQNUFFbXdPWUJJekN6ZTd5dEFHZ0JQYWlrTndHcUFTQXFOYTVCN2dFaW9YR1hjQUVnS2pXdVFmSkJIc1Vya2ZoZXBRLzRRUjdGSzVINFhxVVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFnS1pQWXoraEJRQUFBQUFBQVBBL3FRVUFBQUFBQUFEd1A3RUZBQUFBQUFBQTlEKzVCUUFBQU1ETXpQUS93UVVBQUFCZ1ptYjJQOGtGQUFBQUlNNW05ajg96hkCDBX6GZIGCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF82OTQyOTc2NTE5ChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoNCgdpc192c2t1EgIoAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoSCgx2b3VjaGVyX2xlbnMSAhAAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDIwMzA0sB/PgoCAoICBiKgByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_6942976519",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42914890231,
              "shopid": 1294678510,
              "name": "AC Gree GWC-09N1A - 1 PK - N1A Series - Non Inverter - R32",
              "label_ids": [
                2018619,
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                1049120,
                822059908662278,
                825465608497696,
                1718093079,
                825465608494624,
                825465608499232,
                822120592853526,
                834403089593352,
                2068629,
                298938357,
                2023641,
                1718088045,
                2098629,
                298468389,
                298938368,
                2098628
              ],
              "image": "id-11134207-7ra0s-mdskthvb2owe87",
              "images": [
                "id-11134207-7ra0s-mdskthvb2owe87",
                "id-11134207-7ra0t-mdskthvb5i1a8e",
                "id-11134207-7ra0s-mdskthvayh72c6",
                "id-11134207-7ra0h-mdskthvazvri5e",
                "id-11134207-7ra0s-mdskthvb1abyb1",
                "id-11134207-7ra0u-mdskthvb43gu0a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1756020098,
              "sold": 5,
              "historical_sold": 16,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100010,
              "brand": "Gree",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 413900000000,
              "price_min": 413900000000,
              "price_max": 413900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Package",
                  "options": [
                    "Unit Only",
                    "+Packing Kayu",
                    "+Paket 3M",
                    "+Paket 5M",
                    "+Paket 3M (Tebal)",
                    "+Paket 5M (Tebal)"
                  ],
                  "images": [
                    "id-11134207-8224w-miwqt74xthqb9c",
                    "id-11134207-8224w-miwqt74xuwar15",
                    "id-11134207-8224w-miwqt74xwav768",
                    "id-11134207-82252-miwqt74xxpfn2b",
                    "id-11134207-8224t-miwqt74xz403cc",
                    "id-11134207-8224u-miwqt74xs35vaa"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp1,3JT X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 413900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 291232665995,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 413900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 16,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 16,
                "display_sold_count_text": "16"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp1,4JT x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Wulitonย Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 537861169,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWibLQ55Pxvt5m3XJZngce+6w+fi9yb4y/r18HfgL/BVG5rfJgpocNkxHUj1i/10bBMPmC48M5b+kmxDMg5AMhaM+WGqGPaLjPo7ECSQWMn/nZLuGoZXLDljK3BazjuPySv9cT9WCeyHCjF+dFON8aWeayiD6dCUWmpl8DovTK4u+s1Y7tH5NujMfQJSZOhQf5mTPwFeuxqNnhkAJmoc4KDemWyz6l44XDCYE1RM8CNP31XuwKVw1lTpHSi4BpShlNRcn2My+P6xDJvN/w4zRqc45RJSqBJwNBx3hZvn5e3UY4gSQljtlWlNv7ug5rZD7J9ygA+8COlES4pMOBNC7xm28ez/5QJzDC59R6Chk+Dwjs6Ygm7C7daJ+sRqog4PodemMlNHZ3We0PiSgS7K4nWZ/icV/9DhOoF7wCxvefBMtYhelBOhE6EIMb4tADr27AAqGrKs+c0htEBJeoRxxq0bOHhWRwPe7sgjwPKen3c/kug==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELG4vIACGI6H4scBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYkxRNTVQeHZ0NW0zWEpabmdjZSs2dytmaTl5YjR5L3IxOEhmZ0wvQlZHNXJmSmdwb2NOa3hIVWoxaS8xMGJCTVBtQzQ4TTViK2tteERNZzVBTWhhTStXR3FHUGFMalBvN0VDU1FXTW4vblpMdUdvWlhMRGxqSzNCYXpqdVB5U3Y5Y1Q5V0NleUhDakYrZEZPTjhhV2VheWlENmRDVVdtcGw4RG92VEs0dStzMVk3dEg1TnVqTWZRSlNaT2hRZjVtVFB3RmV1eHFObmhrQUptb2M0S0RlbVd5ejZsNDRYRENZRTFSTThDTlAzMVh1d0tWdzFsVHBIU2k0QnBTaGxOUmNuMk15K1A2eERKdk4vdzR6UnFjNDVSSlNxQkp3TkJ4M2hadm41ZTNVWTRnU1FsanRsV2xOdjd1ZzVyWkQ3Sjl5Z0ErOENPbEVTNHBNT0JOQzd4bTI4ZXovNVFKekRDNTlSNkNoaytEd2pzNllnbTdDN2RhSitzUnFvZzRQb2RlbU1sTkhaM1dlMFBpU2dTN0s0bldaL2ljVi85RGhPb0Y3d0N4dmVmQk10WWhlbEJPaEU2RUlNYjR0QURyMjdBQXFHcktzK2MwaHRFQkplb1J4eHEwYk9IaFdSd1BlN3NnandQS2VuM2Mva3VnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB9ar800XpAQAAAOCVJfE/8QEAAAAgo8oIQMgMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ3sUbgepRwJQaENAAAAAGGeY0H4DYCAoODsC7AOz5ODzwHiDgyqjQbHjQbVjgbwkAbIDxTiGcQKRW1Nd0xqTTVOaXd0TVN3dE1Td3RNU3d0TVN3d0xqUXNNU3d3TGpjNE1URTBOVFl3TkRJMk56WTNNVFFzTUM0NUxDMHhMREV1TURBd01ERXlNeXd6T0M0NU9UUTRPVGcxT1RNMU5EZ3lPQ3d3TGpVNE1UVTFOVEk1TlRjek5UazJOeklzTFRFZDRpL2NTeUNINXZNRUxZUEF5ajQxQUFDQVB6bmh1c2dwOUwra1FVSHhzWkNBREFWQ1Frb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRW9RQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRW9PQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUZvSENLenpsZ01RQUZvSENLdnpsZ01RQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFIRUFBQURnZDFJRlAza0FBQUJnVGdzS1A0RUJBQUFBUUxoOGNVR0pBUUFBQUdDU2IwTkJrUUVBQUFDTXF1cHpRWmtCQUFBQVlKS2JkMEdoQVFBQUFLQUZQVXBCcVFFQUFBQVVNK042UWVnQkFZQUNsQU9LQWo0d0xqQXdORGN3TWl3eExqQXdNREF3TUN3eExqQXdOalkyTkN3eExqSXpPREF5Tml3eExqTXdNREF3TUN3eExqTTRNakV5T1N3eExqVXdNREF3TUprQ21wbVptWm1aMlQraEFxM3ZOSGpDU2NGQndRSUFBQUFBQUFBQWdNb0NDd2dCRVFBQUFBQUFBQUFBeWdJTENBSVJBQUFBQUFBQUFJRFpBb0NTbjhLRG8xaEI0UUtnMWlJWmVnb3hRZWtDMzVEZGF6OGxxa0dLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEK1pBd1V0RGhBaDJLWkJvUVBJaGVOOENsMUFRcmtEMi84R0UxVzE0RC9CQTB5ZGJvSlNPZU0veVFNNjZVSktSUDdtUDlFRG9MSXM5WWNvN1QvNkF3c0tCMUp2YVZScFpYSVFBL29ERFFvSlQzSmtaWEpVYVdWeUVBTDZBeEVLRFVsMFpXMVFjbWxqWlZScFpYSVFBL29EQ1FvRlNYTk9VRUlRQUlFRUFBQUFnTnhkL3o2SkJBQUFBTUE1RlBjK2tBU2JBNWdFdUxtZnE5OEJvQVNKK2RNZnFBU0F5clh1QWJnRTk5RGh6Z0hBQklES3RlNEJ5UVI3Rks1SDRYcVVQK0VFZXhTdVIrRjZsRC9wQkFBQUFBQUFBUEEvOFFRQUFBQUFBQUR3UC9rRUFBQUFBQUFBOEQrQkJRQUFBQUFBQVBBL2lRVUFBQUFBQUFEd1A1RUZBQUFBQUFBQThEK1pCUUFBQUlDZVFuTS9vUVVBQUFBQUFBRHdQNmtGQUFBQW9Fc2I4RCt4QlFBQUFPRHp6dk0vdVFVQUFBREF6TXowUDhFRkFBQUE0RElkOWovSkJRQUFBQUFBQVBnL+oZBLdNw036GZMGChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChIKDHZvdWNoZXJfbGVucxICEAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoNCgdpc192c2t1EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9CiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQyOTE0ODkwMjMxChQKDnVzZXJfYmxhY2tsaXN0EgIoAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAxMDEwNLAfwIKAgKCAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 42914890231,
            "shopid": 1294678510,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":10285832,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0s-mdskthvb2owe87\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,700005490,1049120,822059908662278,825465608497696,1718093079,825465608494624,825465608499232,822120592853526,834403089593352,2068629,298938357,2023641,1718088045,2098629,298468389,298938368,2098628],\"merge_rank\":0,\"model_id\":291232665995,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":10285832,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0s-mdskthvb2owe87\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,700005490,1049120,822059908662278,825465608497696,1718093079,825465608494624,825465608499232,822120592853526,834403089593352,2068629,298938357,2023641,1718088045,2098629,298468389,298938368,2098628],\"merge_rank\":0,\"model_id\":291232665995,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELG4vIACGI6H4scBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYkxRNTVQeHZ0NW0zWEpabmdjZSs2dytmaTl5YjR5L3IxOEhmZ0wvQlZHNXJmSmdwb2NOa3hIVWoxaS8xMGJCTVBtQzQ4TTViK2tteERNZzVBTWhhTStXR3FHUGFMalBvN0VDU1FXTW4vblpMdUdvWlhMRGxqSzNCYXpqdVB5U3Y5Y1Q5V0NleUhDakYrZEZPTjhhV2VheWlENmRDVVdtcGw4RG92VEs0dStzMVk3dEg1TnVqTWZRSlNaT2hRZjVtVFB3RmV1eHFObmhrQUptb2M0S0RlbVd5ejZsNDRYRENZRTFSTThDTlAzMVh1d0tWdzFsVHBIU2k0QnBTaGxOUmNuMk15K1A2eERKdk4vdzR6UnFjNDVSSlNxQkp3TkJ4M2hadm41ZTNVWTRnU1FsanRsV2xOdjd1ZzVyWkQ3Sjl5Z0ErOENPbEVTNHBNT0JOQzd4bTI4ZXovNVFKekRDNTlSNkNoaytEd2pzNllnbTdDN2RhSitzUnFvZzRQb2RlbU1sTkhaM1dlMFBpU2dTN0s0bldaL2ljVi85RGhPb0Y3d0N4dmVmQk10WWhlbEJPaEU2RUlNYjR0QURyMjdBQXFHcktzK2MwaHRFQkplb1J4eHEwYk9IaFdSd1BlN3NnandQS2VuM2Mva3VnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB9ar800XpAQAAAOCVJfE/8QEAAAAgo8oIQMgMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ3sUbgepRwJQaENAAAAAGGeY0H4DYCAoODsC7AOz5ODzwHiDgyqjQbHjQbVjgbwkAbIDxTiGcQKRW1Nd0xqTTVOaXd0TVN3dE1Td3RNU3d0TVN3d0xqUXNNU3d3TGpjNE1URTBOVFl3TkRJMk56WTNNVFFzTUM0NUxDMHhMREV1TURBd01ERXlNeXd6T0M0NU9UUTRPVGcxT1RNMU5EZ3lPQ3d3TGpVNE1UVTFOVEk1TlRjek5UazJOeklzTFRFZDRpL2NTeUNINXZNRUxZUEF5ajQxQUFDQVB6bmh1c2dwOUwra1FVSHhzWkNBREFWQ1Frb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRW9RQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRW9PQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUZvSENLenpsZ01RQUZvSENLdnpsZ01RQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFIRUFBQURnZDFJRlAza0FBQUJnVGdzS1A0RUJBQUFBUUxoOGNVR0pBUUFBQUdDU2IwTkJrUUVBQUFDTXF1cHpRWmtCQUFBQVlKS2JkMEdoQVFBQUFLQUZQVXBCcVFFQUFBQVVNK042UWVnQkFZQUNsQU9LQWo0d0xqQXdORGN3TWl3eExqQXdNREF3TUN3eExqQXdOalkyTkN3eExqSXpPREF5Tml3eExqTXdNREF3TUN3eExqTTRNakV5T1N3eExqVXdNREF3TUprQ21wbVptWm1aMlQraEFxM3ZOSGpDU2NGQndRSUFBQUFBQUFBQWdNb0NDd2dCRVFBQUFBQUFBQUFBeWdJTENBSVJBQUFBQUFBQUFJRFpBb0NTbjhLRG8xaEI0UUtnMWlJWmVnb3hRZWtDMzVEZGF6OGxxa0dLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEK1pBd1V0RGhBaDJLWkJvUVBJaGVOOENsMUFRcmtEMi84R0UxVzE0RC9CQTB5ZGJvSlNPZU0veVFNNjZVSktSUDdtUDlFRG9MSXM5WWNvN1QvNkF3c0tCMUp2YVZScFpYSVFBL29ERFFvSlQzSmtaWEpVYVdWeUVBTDZBeEVLRFVsMFpXMVFjbWxqWlZScFpYSVFBL29EQ1FvRlNYTk9VRUlRQUlFRUFBQUFnTnhkL3o2SkJBQUFBTUE1RlBjK2tBU2JBNWdFdUxtZnE5OEJvQVNKK2RNZnFBU0F5clh1QWJnRTk5RGh6Z0hBQklES3RlNEJ5UVI3Rks1SDRYcVVQK0VFZXhTdVIrRjZsRC9wQkFBQUFBQUFBUEEvOFFRQUFBQUFBQUR3UC9rRUFBQUFBQUFBOEQrQkJRQUFBQUFBQVBBL2lRVUFBQUFBQUFEd1A1RUZBQUFBQUFBQThEK1pCUUFBQUlDZVFuTS9vUVVBQUFBQUFBRHdQNmtGQUFBQW9Fc2I4RCt4QlFBQUFPRHp6dk0vdVFVQUFBREF6TXowUDhFRkFBQUE0RElkOWovSkJRQUFBQUFBQVBnL+oZBLdNw036GZMGChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChIKDHZvdWNoZXJfbGVucxICEAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoNCgdpc192c2t1EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9CiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQyOTE0ODkwMjMxChQKDnVzZXJfYmxhY2tsaXN0EgIoAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAxMDEwNLAfwIKAgKCAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42914890231",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 4045084145,
              "shopid": 211468201,
              "name": "PANASONIC CS-ZN5YKP + PASANG AC SPLIT 1/2 PK STANDARD",
              "label_ids": [
                1002164,
                1400095067,
                1400285005,
                1000961,
                844931046478970,
                844931026694327,
                844931064601283,
                1400285055,
                700190087,
                1015914,
                1059152,
                1059154,
                822059908662278,
                700300004,
                822120592853526,
                700585046,
                2018618,
                1012763,
                298893311,
                2153644,
                700830032,
                2213652,
                298463379,
                2008656,
                298468389
              ],
              "image": "id-11134207-8224u-mhzw9in6la0xfe",
              "images": [
                "id-11134207-8224u-mhzw9in6la0xfe",
                "id-11134207-7r98o-ll0m57u1vkg022",
                "sg-11134201-22110-yg8yyybpzpjv07",
                "sg-11134201-22110-sf7v3zbpzpjv96",
                "sg-11134201-22110-t7dzszbpzpjva9",
                "sg-11134201-22110-ant38zdpzpjve7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1596598292,
              "sold": 0,
              "historical_sold": 164,
              "liked": false,
              "liked_count": 647,
              "view_count": null,
              "catid": 100010,
              "brand": "Panasonic",
              "cmt_count": 74,
              "flag": 917504,
              "cb_option": 0,
              "item_status": "normal",
              "price": 373300000000,
              "price_min": 373300000000,
              "price_max": 373300000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "e0aea65dd0442887f9a24c3685d33e71",
                  "thumb_url": "47a3d9c6b0d249b00946e769c9e61caf",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6ke1e-ln0zew3fqws6dc",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1e-ln0zew3fqws6dc.16003251747824692.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1e-ln0zew3fqws6dc.16003251747824692.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1e-ln0zew3fqws6dc.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Paket",
                  "options": [
                    "PASANG 0.5mm",
                    "PASANG 0.6mm",
                    "PASANG 0.76mm"
                  ],
                  "images": [
                    "id-11134207-7r98o-ll0ma479jtrz2c",
                    "id-11134207-7r98o-ll0ma479l8cf7d",
                    "id-11134207-7r98o-ll0ma479mmwvfe"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.92,
                "rating_count": [
                  75,
                  0,
                  0,
                  2,
                  2,
                  71
                ],
                "rcount_with_context": 36,
                "rcount_with_image": 33
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 373300000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 235311215328,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 373300000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 164,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 164,
                "display_sold_count_text": "164"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SELKA.id Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 410415572,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWia23OFz3MxX+HxwM5Umlo53TADBs+TgSbv0jWl/nNPvBRpNzh5ssJMwuHKzDZ3ZznWzGaXjLMrU+wLv8hU5IGQrnk1Fl2Z7GWAR2iKaczgWNVIiIpXEYgCOGmLEebNVNxtKvgukd3Pxq73WLNYye5FKLgULR4OgGQ2Ekzl5230aMKC+L9wT+w6uZF3wxJUFikpzrnzt+O+qLkUILG7X7cgO8qIBANbodjjLSA/orpKH1AzoBccUJFij9nRWVO4H4+CT5dYQ7Noc7WD5XmDF8rfCmzfFd2PZZrkM5YD2+vplZJXAjil4OP6+nDjheHUWIXvJC/QRW4HqGvwS2W0x0Euf4ne3wERIVpV9yI/M7arP4NTns095qAPNcl/lR61323WEtNptWqZUEjDB42xyEjErDmEdGhilzxrBSR5bXuq3lrK+tMfqcAXiwlwxCxGzpP/mutFqaE/GNfznLpuUZCAUICiUWFDtLnHjtTGs88tHRg==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ENTj2cMBGIHeg5gBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYTIzT0Z6M014WCtIeHdNNVVtbG81M1RBREJzK1RnU2J2MGpXbC9uTlB2QlJwTnpoNXNzSk13dUhLekRaM1p6bld6R2FYakxNclUrd0x2OGhVNUlHUXJuazFGbDJaN0dXQVIyaUthY3pnV05WSWlJcFhFWWdDT0dtTEVlYk5WTnh0S3ZndWtkM1B4cTczV0xOWXllNUZLTGdVTFI0T2dHUTJFa3psNTIzMGFNS0MrTDl3VCt3NnVaRjN3eEpVRmlrcHpybnp0K08rcUxrVUlMRzdYN2NnTzhxSUJBTmJvZGpqTFNBL29ycEtIMUF6b0JjY1VKRmlqOW5SV1ZPNEg0K0NUNWRZUTdOb2M3V0Q1WG1ERjhyZkNtemZGZDJQWlpya001WUQyK3ZwbFpKWEFqaWw0T1A2K25EamhlSFVXSVh2SkMvUVJXNEhxR3Z3UzJXMHgwRXVmNG5lM3dFUklWcFY5eUkvTTdhclA0TlRuczA5NXFBUE5jbC9sUjYxMzIzV0V0TnB0V3FaVUVqREI0Mnh5RWpFckRtRWRHaGlsenhyQlNSNWJYdXEzbHJLK3RNZnFjQVhpd2x3eEN4R3pwUC9tdXRGcWFFL0dOZnpuTHB1VVpDQVVJQ2lVV0ZEdExuSGp0VEdzODh0SFJnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB0O6GgfYK6QEAAADglSXxP/EBAAAA4FAc8T/IDA/gDAHpDAAAAOCDTqU/iQ17FK5H4XqUP5ENMzMzMweSEkGhDQAAAEArBG1B+A2AgJr0xwqwDrKtrJoB4g4Mqo0Gx40G1Y4G8JAGyA8V4hnoCkVuUXdMamN3TURJd05Td3RNU3d0TVN3dE1Td3RNU3d3TGpjd05Dd3hMRE11TXpNM01EVXpNamt5TWpVM09ESXlOQ3d3TGprc0xURXNNQzQ1T1RZM01qQTJOVE16TnprM01qazRMREF1TURjMk5ESTFOemcxT1RJMU9EVXlOVFlzTUM0ME9EWTBORFEwT1RJNU5qZzFOamd5TXl3dE1SMHJMYmhMSU5uQ29BY3RvMEF6UHpVQUFJQS9PZWE4a0MwRXE5QkJRUVZrbHhncXUwTkNTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFhY1BqOVJKZGJ4SEJjUUFBQUtBckxnUS9lUUFBQU1EV0Z3by9nUUVBQUFBZ1B1MXRRWWtCQUFBQUlFOE1jMEdSQVFBQUFCaDNBWUZCbVFFQUFBREFWak4wUWFFQkFBQUFJSlROZUVHcEFRQUFBSEIxZ0laQjZBRUJnQUtVQTRvQ1BqQXVNREF5TXprekxERXVNREF3TURBd0xERXVNREF3TURBd0xERXVNalV3TURBd0xERXVNekF3TURBd0xERXVOREF3TURBd0xERXVOVEF3TURBd21RSzZTUXdDSzRmbVA2RUNyZTgwZU1KSndVSEJBc1BqOVJKZGJ4SEJ5Z0lMQ0FFUm8xallwZ2swbk1ES0Fnc0lBaEhENC9VU1hXOFJ3ZGtDb0xpb1B3RGdTa0hoQW9EaEQxQS9IbGxCNlFMRzJaeWg4N1NoUVlvRE1BQUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQNWtENXJ5UUxRU3IwRUdoQXdWa2x4Z3F1ME5DdVFOR0EwWjB3NHZpUDhFRDZic2tJYXcwNVQvSkEvbmU2WWtuRStrLzBRUDBHQ216R0tMdFAvb0RFUW9OU1hSbGJWQnlhV05sVkdsbGNoQUQrZ01KQ2dWSmMwNVFRaEFBK2dNTENnZFNiMmxVYVdWeUVBUDZBdzBLQ1U5eVpHVnlWR2xsY2hBQ2dRUUFBQUNBN0ZFQVA0a0VBQUFBQUtSeitUNlFCSnNEbUFUNHhzem01QVNnQk4rWXBOd0RxQVNBbE92Y0E3Z0VvZnRHd0FTQWxPdmNBOGtFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFEQWM1bGpQNkVGQUFBQUFBQUE4RCtwQlFBQUFBQUFBUEEvc1FVQUFBQUFBQUQwUDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQS4TcJN+hmSBgoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKIQoPdnNrdV91bmlxdWVfa2V5Eg4iDDBfNDA0NTA4NDE0NQoNCgdpc192c2t1EgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChIKDHZvdWNoZXJfbGVucxICEAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigACh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0ChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAbAfz4KAgICAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 4045084145,
            "shopid": 211468201,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":930127,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mhzw9in6la0xfe\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,1400095067,1400285005,1000961,844931046478970,844931026694327,844931064601283,1400285055,700190087,1015914,1059152,1059154,822059908662278,700300004,822120592853526,700585046,2018618,1012763,298893311,2153644,700830032,2213652,298463379,2008656,298468389],\"merge_rank\":0,\"model_id\":235311215328,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":930127,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mhzw9in6la0xfe\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,1400095067,1400285005,1000961,844931046478970,844931026694327,844931064601283,1400285055,700190087,1015914,1059152,1059154,822059908662278,700300004,822120592853526,700585046,2018618,1012763,298893311,2153644,700830032,2213652,298463379,2008656,298468389],\"merge_rank\":0,\"model_id\":235311215328,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ENTj2cMBGIHeg5gBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYTIzT0Z6M014WCtIeHdNNVVtbG81M1RBREJzK1RnU2J2MGpXbC9uTlB2QlJwTnpoNXNzSk13dUhLekRaM1p6bld6R2FYakxNclUrd0x2OGhVNUlHUXJuazFGbDJaN0dXQVIyaUthY3pnV05WSWlJcFhFWWdDT0dtTEVlYk5WTnh0S3ZndWtkM1B4cTczV0xOWXllNUZLTGdVTFI0T2dHUTJFa3psNTIzMGFNS0MrTDl3VCt3NnVaRjN3eEpVRmlrcHpybnp0K08rcUxrVUlMRzdYN2NnTzhxSUJBTmJvZGpqTFNBL29ycEtIMUF6b0JjY1VKRmlqOW5SV1ZPNEg0K0NUNWRZUTdOb2M3V0Q1WG1ERjhyZkNtemZGZDJQWlpya001WUQyK3ZwbFpKWEFqaWw0T1A2K25EamhlSFVXSVh2SkMvUVJXNEhxR3Z3UzJXMHgwRXVmNG5lM3dFUklWcFY5eUkvTTdhclA0TlRuczA5NXFBUE5jbC9sUjYxMzIzV0V0TnB0V3FaVUVqREI0Mnh5RWpFckRtRWRHaGlsenhyQlNSNWJYdXEzbHJLK3RNZnFjQVhpd2x3eEN4R3pwUC9tdXRGcWFFL0dOZnpuTHB1VVpDQVVJQ2lVV0ZEdExuSGp0VEdzODh0SFJnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB0O6GgfYK6QEAAADglSXxP/EBAAAA4FAc8T/IDA/gDAHpDAAAAOCDTqU/iQ17FK5H4XqUP5ENMzMzMweSEkGhDQAAAEArBG1B+A2AgJr0xwqwDrKtrJoB4g4Mqo0Gx40G1Y4G8JAGyA8V4hnoCkVuUXdMamN3TURJd05Td3RNU3d0TVN3dE1Td3RNU3d3TGpjd05Dd3hMRE11TXpNM01EVXpNamt5TWpVM09ESXlOQ3d3TGprc0xURXNNQzQ1T1RZM01qQTJOVE16TnprM01qazRMREF1TURjMk5ESTFOemcxT1RJMU9EVXlOVFlzTUM0ME9EWTBORFEwT1RJNU5qZzFOamd5TXl3dE1SMHJMYmhMSU5uQ29BY3RvMEF6UHpVQUFJQS9PZWE4a0MwRXE5QkJRUVZrbHhncXUwTkNTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFhY1BqOVJKZGJ4SEJjUUFBQUtBckxnUS9lUUFBQU1EV0Z3by9nUUVBQUFBZ1B1MXRRWWtCQUFBQUlFOE1jMEdSQVFBQUFCaDNBWUZCbVFFQUFBREFWak4wUWFFQkFBQUFJSlROZUVHcEFRQUFBSEIxZ0laQjZBRUJnQUtVQTRvQ1BqQXVNREF5TXprekxERXVNREF3TURBd0xERXVNREF3TURBd0xERXVNalV3TURBd0xERXVNekF3TURBd0xERXVOREF3TURBd0xERXVOVEF3TURBd21RSzZTUXdDSzRmbVA2RUNyZTgwZU1KSndVSEJBc1BqOVJKZGJ4SEJ5Z0lMQ0FFUm8xallwZ2swbk1ES0Fnc0lBaEhENC9VU1hXOFJ3ZGtDb0xpb1B3RGdTa0hoQW9EaEQxQS9IbGxCNlFMRzJaeWg4N1NoUVlvRE1BQUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQNWtENXJ5UUxRU3IwRUdoQXdWa2x4Z3F1ME5DdVFOR0EwWjB3NHZpUDhFRDZic2tJYXcwNVQvSkEvbmU2WWtuRStrLzBRUDBHQ216R0tMdFAvb0RFUW9OU1hSbGJWQnlhV05sVkdsbGNoQUQrZ01KQ2dWSmMwNVFRaEFBK2dNTENnZFNiMmxVYVdWeUVBUDZBdzBLQ1U5eVpHVnlWR2xsY2hBQ2dRUUFBQUNBN0ZFQVA0a0VBQUFBQUtSeitUNlFCSnNEbUFUNHhzem01QVNnQk4rWXBOd0RxQVNBbE92Y0E3Z0VvZnRHd0FTQWxPdmNBOGtFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFEQWM1bGpQNkVGQUFBQUFBQUE4RCtwQlFBQUFBQUFBUEEvc1FVQUFBQUFBQUQwUDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQS4TcJN+hmSBgoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKIQoPdnNrdV91bmlxdWVfa2V5Eg4iDDBfNDA0NTA4NDE0NQoNCgdpc192c2t1EgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChIKDHZvdWNoZXJfbGVucxICEAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigACh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0ChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAbAfz4KAgICAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_4045084145",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40566553098,
              "shopid": 1294678510,
              "name": "AC Daikin FTC15YV14 - 1/2 PK | 0.5 PK - SMS Series - Non Inverter - R32",
              "label_ids": [
                844931064601283,
                844931086908638,
                298463379,
                2018619,
                700005490,
                1049120,
                1718093079,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                822120592853526,
                1015914,
                700190087,
                834403089593352,
                2068629,
                298938357,
                2023641,
                2098629,
                298938368,
                2098628,
                1718088045,
                298468389
              ],
              "image": "id-11134207-81ztl-me322gxb4u0w0c",
              "images": [
                "id-11134207-81ztl-me322gxb4u0w0c",
                "id-11134207-7ra0h-mdpqu6vncdp416",
                "id-11134207-7ra0m-mdpqu6vnds9k03",
                "id-11134207-7ra0h-mdpqu6vngleg40"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1756652628,
              "sold": 1,
              "historical_sold": 11,
              "liked": false,
              "liked_count": 19,
              "view_count": null,
              "catid": 100010,
              "brand": "Daikin",
              "cmt_count": 5,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 406900000000,
              "price_min": 406900000000,
              "price_max": 406900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Package",
                  "options": [
                    "Unit Only",
                    "+Packing Kayu",
                    "+Paket 3M",
                    "+Paket 5M",
                    "+Paket 3M (Tebal)",
                    "+Paket 5M (Tebal)"
                  ],
                  "images": [
                    "id-11134207-8224w-miwqt74xthqb9c",
                    "id-11134207-8224w-miwqt74xuwar15",
                    "id-11134207-8224w-miwqt74xwav768",
                    "id-11134207-82252-miwqt74xxpfn2b",
                    "id-11134207-8224t-miwqt74xz403cc",
                    "id-11134207-8224u-miwqt74xs35vaa"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp1,3JT X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 406900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 281364522232,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 406900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 11,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 11,
                "display_sold_count_text": "11"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp1,4JT x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Wulitonย Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 537861170,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiY/9Il/XoZbI+53wSL5rVV8klUnvegRtpyQRK8lj26Kvf0ZsJdwESCQAx2FoEvj0zLKIbKg3pNiqLe0ivEazpvW/DdKf+ktnP8sLCjkqNJE67xYmGLAyqbybFSm82wzi8UrHF10wI80OiveaFMDBNSLJdunoSDfJtyDCEptimaHRtfCPqVNWUSWfSH20majBAwWx/J+7u837BiBQ8mfloBEUrcNmTHMVJabc9IMn1Pz1r2pGkIkrCmLIYHdysybPPVyaJ8sQasdgjvDV25HiPf4C6MwiW2d3ikYbtrGOwyNEKLMl/wpRzQnfpQzRsdTU2vyDx4zwyMn/5Xx/XWXGLiNSVzPul33ETt37/eAzOv0zSzYIy4dQx8XOH30LQ7S+QYAoA74zifp0r3ahKdxzK7Q5Vym2CdUufb/rqUN7TSKyeadQuQ/iqVfEsvv1HIXzws2L0NeyW5KLImRTe1eO14ADA885Ydg4nlYEktGfSf/VQ==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELK4vIACGI+H4scBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWS85SWwvWG9aYkkrNTN3U0w1clZWOGtsVW52ZWdSdHB5UVJLOGxqMjZLdmYwWnNKZHdFU0NRQXgyRm9FdmowekxLSWJLZzNwTmlxTGUwaXZFYXpwdlcvRGRLZitrdG5QOHNMQ2prcU5KRTY3eFltR0xBeXFieWJGU204Mnd6aThVckhGMTB3STgwT2l2ZWFGTURCTlNMSmR1bm9TRGZKdHlEQ0VwdGltYUhSdGZDUHFWTldVU1dmU0gyMG1hakJBd1d4L0orN3U4MzdCaUJROG1mbG9CRVVyY05tVEhNVkphYmM5SU1uMVB6MXIycEdrSWtyQ21MSVlIZHlzeWJQUFZ5YUo4c1Fhc2RnanZEVjI1SGlQZjRDNk13aVcyZDNpa1lidHJHT3d5TkVLTE1sL3dwUnpRbmZwUXpSc2RUVTJ2eUR4NHp3eU1uLzVYeC9YV1hHTGlOU1Z6UHVsMzNFVHQzNy9lQXpPdjB6U3pZSXk0ZFF4OFhPSDMwTFE3UytRWUFvQTc0emlmcDByM2FoS2R4eks3UTVWeW0yQ2RVdWZiL3JxVU43VFNLeWVhZFF1US9pcVZmRXN2djFISVh6d3MyTDBOZXlXNUtMSW1SVGUxZU8xNEFEQTg4NVlkZzRubFlFa3RHZlNmL1ZRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABhpu5/kfpAQAAAOCVJfE/8QEAAABA16wIQMgMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ3sUbgeUSMFQaENAAAAYJeDYEH4DYCA3ODXDbAOn/OM7wHiDgyqjQbHjQbVjgbwkAbIDxbiGYgKRW1Bd0xqTXNMVEVzTFRFc0xURXNMVEVzTUM0ekxERXNNeTR4TkRjMU5qQTNOVFkyTkRjMU1ESXpMQzB4TEMweExERXVNREF3TURFeU15d3pPQzR6TmpnME5EazFNVFl5TlRRMU55d3dMalU0TVRVMU5USTVOVGN6TlRrMk56SXNMVEVkNGkvY1N5QzZ1WkFFTFpxWm1UNDFBQUNBUDBvUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUVvT0NQRDM0UVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFTZzRJclBPV0F4RUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SThQZmhCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSENQRDM0UVFRQUZvSENLcnpsZ01RQUZvSENLenpsZ01RQUZvSENLdnpsZ01RQUZvSkNJQ0FnSUNBQkJBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJOFBmaEJCRUFBQUFBQUFBQUFIRUFBQUFBa0lnSFAza0FBQUNBNlBYN1BvRUJBQUFBb0l4S2RrR0pBUUFBQUtDbGZqVkJrUUVBQUFENmRxSjNRWmtCQUFBQWdOY1hma0doQVFBQUFPQ1NCRDFCcVFFQUFBQ3VJT2gvUWVnQkFZQUNsQU9LQWo0d0xqQXdNelEzTkN3eExqQXdNREF3TUN3eExqQXdNREF3TUN3eExqSTFNREF3TUN3eExqSTRNamMzTUN3eExqTTFNVGN4TUN3eExqVXdNREF3TUprQ016TXpNek16MHoraEFxM3ZOSGpDU2NGQndRSUFBQUFBQUFBQWdNb0NDd2dDRVFBQUFBQUFBQUNBeWdJTENBRVJBQUFBQUFBQUFBRFpBc0JCeC94bTNsdEI0UUpBMStMYWllOGZRZWtDdlRjTzR0M1Zwa0dLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEKzVBMC8yM1pNanp1QS93UU00Yzl4bzdhM2pQOGtEcGhqS2VZK2s1ei9SQTZraS82ZHFDdTQvZ1FRQUFBQ0EyYVFCUDRrRUFBQUE0SEk1K1Q2UUJKc0RtQVM0dVorcjN3R2dCSVBvZ1ZDb0JJREt0ZTRCdUFUOTRiT2VBY0FFZ01xMTdnSEpCSHNVcmtmaGVwUS80UVI3Rks1SDRYcVVQK2tFQUFBQUFBQUE4RC94QkFBQUFBQUFBUEEvK1FRQUFBQUFBQUR3UDRFRkFBQUFBQUFBOEQrSkJRQUFBQUFBQVBBL2tRVUFBQUFBQUFEd1A1a0ZBQUFBb090MWJEK2hCUUFBQUFBQUFQQS9xUVVBQUFBQUFBRHdQN0VGQUFBQUFBQUE5RCs1QlFBQUFBQTZodlEvd1FVQUFBQkFtcUQxUDhrRkFBQUFBQUFBK0Q4PeoZAgsW8hkCzQj6GZMGChQKDnNob3BfYmxhY2tsaXN0EgIoAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9ChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAxMDEwNAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoSCgx2b3VjaGVyX2xlbnMSAhAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQwNTY2NTUzMDk4Cg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAALAfwIKAgIiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 40566553098,
            "shopid": 1294678510,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":8658107,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-me322gxb4u0w0c\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,844931086908638,298463379,2018619,700005490,1049120,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,822120592853526,1015914,700190087,834403089593352,2068629,298938357,2023641,2098629,298938368,2098628,1718088045,298468389],\"merge_rank\":0,\"model_id\":281364522232,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":8658107,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-me322gxb4u0w0c\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,844931086908638,298463379,2018619,700005490,1049120,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,822120592853526,1015914,700190087,834403089593352,2068629,298938357,2023641,2098629,298938368,2098628,1718088045,298468389],\"merge_rank\":0,\"model_id\":281364522232,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELK4vIACGI+H4scBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWS85SWwvWG9aYkkrNTN3U0w1clZWOGtsVW52ZWdSdHB5UVJLOGxqMjZLdmYwWnNKZHdFU0NRQXgyRm9FdmowekxLSWJLZzNwTmlxTGUwaXZFYXpwdlcvRGRLZitrdG5QOHNMQ2prcU5KRTY3eFltR0xBeXFieWJGU204Mnd6aThVckhGMTB3STgwT2l2ZWFGTURCTlNMSmR1bm9TRGZKdHlEQ0VwdGltYUhSdGZDUHFWTldVU1dmU0gyMG1hakJBd1d4L0orN3U4MzdCaUJROG1mbG9CRVVyY05tVEhNVkphYmM5SU1uMVB6MXIycEdrSWtyQ21MSVlIZHlzeWJQUFZ5YUo4c1Fhc2RnanZEVjI1SGlQZjRDNk13aVcyZDNpa1lidHJHT3d5TkVLTE1sL3dwUnpRbmZwUXpSc2RUVTJ2eUR4NHp3eU1uLzVYeC9YV1hHTGlOU1Z6UHVsMzNFVHQzNy9lQXpPdjB6U3pZSXk0ZFF4OFhPSDMwTFE3UytRWUFvQTc0emlmcDByM2FoS2R4eks3UTVWeW0yQ2RVdWZiL3JxVU43VFNLeWVhZFF1US9pcVZmRXN2djFISVh6d3MyTDBOZXlXNUtMSW1SVGUxZU8xNEFEQTg4NVlkZzRubFlFa3RHZlNmL1ZRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABhpu5/kfpAQAAAOCVJfE/8QEAAABA16wIQMgMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ3sUbgeUSMFQaENAAAAYJeDYEH4DYCA3ODXDbAOn/OM7wHiDgyqjQbHjQbVjgbwkAbIDxbiGYgKRW1Bd0xqTXNMVEVzTFRFc0xURXNMVEVzTUM0ekxERXNNeTR4TkRjMU5qQTNOVFkyTkRjMU1ESXpMQzB4TEMweExERXVNREF3TURFeU15d3pPQzR6TmpnME5EazFNVFl5TlRRMU55d3dMalU0TVRVMU5USTVOVGN6TlRrMk56SXNMVEVkNGkvY1N5QzZ1WkFFTFpxWm1UNDFBQUNBUDBvUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUVvT0NQRDM0UVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFTZzRJclBPV0F4RUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SThQZmhCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSENQRDM0UVFRQUZvSENLcnpsZ01RQUZvSENLenpsZ01RQUZvSENLdnpsZ01RQUZvSkNJQ0FnSUNBQkJBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJOFBmaEJCRUFBQUFBQUFBQUFIRUFBQUFBa0lnSFAza0FBQUNBNlBYN1BvRUJBQUFBb0l4S2RrR0pBUUFBQUtDbGZqVkJrUUVBQUFENmRxSjNRWmtCQUFBQWdOY1hma0doQVFBQUFPQ1NCRDFCcVFFQUFBQ3VJT2gvUWVnQkFZQUNsQU9LQWo0d0xqQXdNelEzTkN3eExqQXdNREF3TUN3eExqQXdNREF3TUN3eExqSTFNREF3TUN3eExqSTRNamMzTUN3eExqTTFNVGN4TUN3eExqVXdNREF3TUprQ016TXpNek16MHoraEFxM3ZOSGpDU2NGQndRSUFBQUFBQUFBQWdNb0NDd2dDRVFBQUFBQUFBQUNBeWdJTENBRVJBQUFBQUFBQUFBRFpBc0JCeC94bTNsdEI0UUpBMStMYWllOGZRZWtDdlRjTzR0M1Zwa0dLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEKzVBMC8yM1pNanp1QS93UU00Yzl4bzdhM2pQOGtEcGhqS2VZK2s1ei9SQTZraS82ZHFDdTQvZ1FRQUFBQ0EyYVFCUDRrRUFBQUE0SEk1K1Q2UUJKc0RtQVM0dVorcjN3R2dCSVBvZ1ZDb0JJREt0ZTRCdUFUOTRiT2VBY0FFZ01xMTdnSEpCSHNVcmtmaGVwUS80UVI3Rks1SDRYcVVQK2tFQUFBQUFBQUE4RC94QkFBQUFBQUFBUEEvK1FRQUFBQUFBQUR3UDRFRkFBQUFBQUFBOEQrSkJRQUFBQUFBQVBBL2tRVUFBQUFBQUFEd1A1a0ZBQUFBb090MWJEK2hCUUFBQUFBQUFQQS9xUVVBQUFBQUFBRHdQN0VGQUFBQUFBQUE5RCs1QlFBQUFBQTZodlEvd1FVQUFBQkFtcUQxUDhrRkFBQUFBQUFBK0Q4PeoZAgsW8hkCzQj6GZMGChQKDnNob3BfYmxhY2tsaXN0EgIoAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9ChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAxMDEwNAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoSCgx2b3VjaGVyX2xlbnMSAhAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQwNTY2NTUzMDk4Cg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAALAfwIKAgIiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40566553098",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 23776253311,
              "shopid": 727701368,
              "name": "GREE AC 1/2 PK DELUXE STANDARD - GWC-05N1A - 1/2 PK 05N1A Standard Series with Fitur smart cleaner",
              "label_ids": [
                1002164,
                844931064601283,
                700300004,
                1015914,
                700190087,
                1400025081,
                1400285055,
                298458395,
                1918643,
                2018618,
                1012763,
                1718087960,
                1428713,
                1012729,
                298933384,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                298463379,
                2153644,
                700830032,
                844931086908638,
                2213652,
                2068629,
                298938357,
                2008656,
                2098629,
                1718088045,
                2098628,
                298938368,
                298468389
              ],
              "image": "id-11134207-8224o-mgneve3ie8eh7d",
              "images": [
                "id-11134207-8224o-mgneve3ie8eh7d",
                "id-11134201-7qul5-lk4zkmzl8ffmfe",
                "id-11134201-7qul0-lk4zkn2x3k2v15",
                "id-11134201-7quky-lk4zkn6903dn3d",
                "id-11134201-7qul4-lk4zknhwhmyn65",
                "id-11134201-7qukx-lk4zknqi51vzee",
                "id-11134201-7qula-lk4zkntk0kwoce"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1691564079,
              "sold": 1,
              "historical_sold": 60,
              "liked": false,
              "liked_count": 217,
              "view_count": null,
              "catid": 100010,
              "brand": "Gree",
              "cmt_count": 18,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 361900000000,
              "price_min": 361900000000,
              "price_max": 361900000000,
              "price_min_before_discount": 699900000000,
              "price_max_before_discount": 699900000000,
              "hidden_price_display": null,
              "price_before_discount": 699900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-48%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "2d291f7470603490a710b26e0183c173",
                  "thumb_url": "3ce1d575159e373b4861d229b0c94085",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6jt79-lkhsx0jipnzt13",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6jt79-lkhsx0jipnzt13.16000081754217744.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6jt79-lkhsx0jipnzt13.16000081754217744.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6jt79-lkhsx0jipnzt13.16003251712532888.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6jt79-lkhsx0jipnzt13.16003251712532888.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6jt79-lkhsx0jipnzt13.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Tipe",
                  "options": [
                    "GWC-05N1",
                    "GWC-05N1A"
                  ],
                  "images": [
                    "id-11134207-8224x-mgneve3ifmyx6d",
                    "id-11134207-8224x-mgneve3ih1jd59"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.894736842105263,
                "rating_count": [
                  19,
                  0,
                  0,
                  0,
                  2,
                  17
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 6
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-7rbk2-m67unkgtx2u009",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp1,2JT X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 225743330361345,
                "price": 360900000000,
                "strikethrough_price": 699900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1326486502916096,
                "discount_text": "-48%",
                "model_id": 266052325538,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1326486502916096,
                  "voucher_code": "EURENEW1",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1767589200,
                    "end_time": 1774976340,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 699900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 60,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 60,
                "display_sold_count_text": "60"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp1,2JT x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Eroc Electronic Indonesia",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 541210543,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWibGUw0TdyScKTYQyEH1T+keZARjcWiJ6CnuN0Ggi/G+Jc058YBW+rWWv4HLXRXVaqZjSJJFuuTC3bYrYTWjwW01Ic1wK5mFh65+TbertZ8gBNHqrVZ+JKdSFUUgntZ6DNKpmw04yaSfUZMI0jCzRudrEV+W1FEM/B+nOjpGbRsGraD38FzPBeFH2U4/51DItJILISURKLf85Qa4rvagy0T+HlRPuw7/L9tt+fWXjU60u89o/Sf2dOnCaNEByzvD3TRcdbynVolQo2mpTa4vdl/7BYsIPaivmtOqEjMFWEQuCT6JIstAvTfPG+21ZyUulWo3AcjC7KAEatiDiVbhG9Enm/e/gNcuuq4HhvITGx8G4bFfGmCIbfho3INLK5+TeKga8Fd2tec3wTlZVHBX4S5l05TzxMM9U5AOWJnr9IsuiGphUCNGd2mNqoYzRPDmJ0bwSfleLYt3ZawFbVMXicr3bIt1kuqVlDqnhPWLahhd3Q==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EK/viIICGLjvxcgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYkdVdzBUZHlTY0tUWVF5RUgxVCtrZVpBUmpjV2lKNkNudU4wR2dpL0crSmMwNThZQlcrcldXdjRITFhSWFZhcVpqU0pKRnV1VEMzYllyWVRXandXMDFJYzF3SzVtRmg2NStUYmVydFo4Z0JOSHFyVlorSktkU0ZVVWdudFo2RE5LcG13MDR5YVNmVVpNSTBqQ3pSdWRyRVYrVzFGRU0vQituT2pwR2JSc0dyYUQzOEZ6UEJlRkgyVTQvNTFESXRKSUxJU1VSS0xmODVRYTRydmFneTBUK0hsUlB1dzcvTDl0dCtmV1hqVTYwdTg5by9TZjJkT25DYU5FQnl6dkQzVFJjZGJ5blZvbFFvMm1wVGE0dmRsLzdCWXNJUGFpdm10T3FFak1GV0VRdUNUNkpJc3RBdlRmUEcrMjFaeVV1bFdvM0FjakM3S0FFYXRpRGlWYmhHOUVubS9lL2dOY3V1cTRIaHZJVEd4OEc0YkZmR21DSWJmaG8zSU5MSzUrVGVLZ2E4RmQydGVjM3dUbFpWSEJYNFM1bDA1VHp4TU05VTVBT1dKbnI5SXN1aUdwaFVDTkdkMm1OcW9ZelJQRG1KMGJ3U2ZsZUxZdDNaYXdGYlZNWGljcjNiSXQxa3VxVmxEcW5oUFdMYWhoZDNRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABj5GS/a8E6QEAAADglSXxP/EBAAAAIBhD8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENCtejcF00G0GhDQAAAADpQHVB+A2AgLCHlQqwDrLhyrEB4g4Mqo0Gx40G1Y4G8JAGyA8X4hm4CkVub3dMamMzTWpJc0xURXNMVEVzTFRFc0xURXNNQzQzTnprNU9UazVPVGs1T1RrNU9UazVMREVzTUM0NE1qRXhOVFF6TVRReE1UTTBOekVzTFRFc0xURXNNQzQ1T0RRMU1EZzFNalV4TXpFNU56UTRMRE00TGpBMk9EWTFNek0zT1RJM05UWTFMREF1TlRneE5UVTFNamsxTnpNMU9UWTNNaXd0TVIzaUw5eExJSStkMEFvdDVxNUZQelVBQUlBL1NnNEk4UGZoQkJFQUFBQUFBQUFBQUVvT0NLcnpsZ01SQUFBQUFBQUFBQUJLRGdpczg1WURFUUFBQUFBQUFBQUFTZzRJblByaEJCRUFBQUFBQUFBQUFFb09DS3Z6bGdNUkFBQUFBQUFBQUFCS0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCU0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCU0Rnanc5K0VFRVFBQUFBQUFBQUFBVWc0SXF2T1dBeEVBQUFBQUFBQUFBRklPQ0t6emxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVdna0lnSUNBZ0lBRUVBQmFCd2p3OStFRUVBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2p3OStFRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFhYlpyNzJOaldzbkFjUUFBQUNERmNoQS9lUUFBQUdDM3J3SS9nUUVBQUFEZ3BTUjNRWWtCQUFBQVFLNVRWMEdSQVFBQUFIQ1IrWHhCbVFFQUFBQmdSajUvUWFFQkFBQUE0TVI5WDBHcEFRQUFBTXpiam9OQjZBRUJnQUtVQTRvQ1BqQXVNREF6T1RNMUxERXVNREF3TURBd0xERXVNREEzTURVMkxERXVNak14TkRneExERXVNekF3TURBd0xERXVNek0xTURjMExERXVOVEF3TURBd21RTDFLRnlQd3ZYb1A2RUNyZTgwZU1KSndVSEJBclpyNzJOaldzbkF5Z0lMQ0FJUkFBQUFBQUFBQUlES0Fnc0lBUkcyYSs5alkxckp3TmtDd0NVd3UrYndYRUhoQWdDcWRCUERORUZCNlFKclpUQy8xOGltUVlvRE1BQUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQN2tETDdMcUhIWVI1RC9CQTFBWDl5cURDdVkveVFQVEErUngwbVRvUDlFRHJFMG9pUHU0N1QrQkJBQUFBR0FIVVFvL2lRUUFBQUJnVDAwR1A1QUVtd09ZQlB1UXNiUDZVNkFFMFl1TjNRV29CSUR5aTZnSnVBU3Y1djdLQThBRWdQS0xxQW5KQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQUlOa2RjRCtoQlFBQUFBQUFBUEEvcVFVQUFBQ0E1aHp3UDdFRkFBQUFZQ1cwOHorNUJRQUFBTURNelBRL3dRVUFBQUJBZGx6MVA4a0ZBQUFBQUFBQStEOD3qGQIMFvoZkwYKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yMzc3NjI1MzMxMQoNCgdpc192c2t1EgIoAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9CioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigACh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDIwMzA0ChIKDHZvdWNoZXJfbGVucxICEAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAsB+AgoCAiICBqKAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 23776253311,
            "shopid": 727701368,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":21636930,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mgneve3ie8eh7d\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,844931064601283,700300004,1015914,700190087,1400025081,1400285055,298458395,1918643,2018618,1012763,1718087960,1428713,1012729,298933384,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,298463379,2153644,700830032,844931086908638,2213652,2068629,298938357,2008656,2098629,1718088045,2098628,298938368,298468389],\"merge_rank\":0,\"model_id\":266052325538,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":21636930,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mgneve3ie8eh7d\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,844931064601283,700300004,1015914,700190087,1400025081,1400285055,298458395,1918643,2018618,1012763,1718087960,1428713,1012729,298933384,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,298463379,2153644,700830032,844931086908638,2213652,2068629,298938357,2008656,2098629,1718088045,2098628,298938368,298468389],\"merge_rank\":0,\"model_id\":266052325538,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EK/viIICGLjvxcgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYkdVdzBUZHlTY0tUWVF5RUgxVCtrZVpBUmpjV2lKNkNudU4wR2dpL0crSmMwNThZQlcrcldXdjRITFhSWFZhcVpqU0pKRnV1VEMzYllyWVRXandXMDFJYzF3SzVtRmg2NStUYmVydFo4Z0JOSHFyVlorSktkU0ZVVWdudFo2RE5LcG13MDR5YVNmVVpNSTBqQ3pSdWRyRVYrVzFGRU0vQituT2pwR2JSc0dyYUQzOEZ6UEJlRkgyVTQvNTFESXRKSUxJU1VSS0xmODVRYTRydmFneTBUK0hsUlB1dzcvTDl0dCtmV1hqVTYwdTg5by9TZjJkT25DYU5FQnl6dkQzVFJjZGJ5blZvbFFvMm1wVGE0dmRsLzdCWXNJUGFpdm10T3FFak1GV0VRdUNUNkpJc3RBdlRmUEcrMjFaeVV1bFdvM0FjakM3S0FFYXRpRGlWYmhHOUVubS9lL2dOY3V1cTRIaHZJVEd4OEc0YkZmR21DSWJmaG8zSU5MSzUrVGVLZ2E4RmQydGVjM3dUbFpWSEJYNFM1bDA1VHp4TU05VTVBT1dKbnI5SXN1aUdwaFVDTkdkMm1OcW9ZelJQRG1KMGJ3U2ZsZUxZdDNaYXdGYlZNWGljcjNiSXQxa3VxVmxEcW5oUFdMYWhoZDNRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABj5GS/a8E6QEAAADglSXxP/EBAAAAIBhD8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENCtejcF00G0GhDQAAAADpQHVB+A2AgLCHlQqwDrLhyrEB4g4Mqo0Gx40G1Y4G8JAGyA8X4hm4CkVub3dMamMzTWpJc0xURXNMVEVzTFRFc0xURXNNQzQzTnprNU9UazVPVGs1T1RrNU9UazVMREVzTUM0NE1qRXhOVFF6TVRReE1UTTBOekVzTFRFc0xURXNNQzQ1T0RRMU1EZzFNalV4TXpFNU56UTRMRE00TGpBMk9EWTFNek0zT1RJM05UWTFMREF1TlRneE5UVTFNamsxTnpNMU9UWTNNaXd0TVIzaUw5eExJSStkMEFvdDVxNUZQelVBQUlBL1NnNEk4UGZoQkJFQUFBQUFBQUFBQUVvT0NLcnpsZ01SQUFBQUFBQUFBQUJLRGdpczg1WURFUUFBQUFBQUFBQUFTZzRJblByaEJCRUFBQUFBQUFBQUFFb09DS3Z6bGdNUkFBQUFBQUFBQUFCS0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCU0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCU0Rnanc5K0VFRVFBQUFBQUFBQUFBVWc0SXF2T1dBeEVBQUFBQUFBQUFBRklPQ0t6emxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVdna0lnSUNBZ0lBRUVBQmFCd2p3OStFRUVBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2p3OStFRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFhYlpyNzJOaldzbkFjUUFBQUNERmNoQS9lUUFBQUdDM3J3SS9nUUVBQUFEZ3BTUjNRWWtCQUFBQVFLNVRWMEdSQVFBQUFIQ1IrWHhCbVFFQUFBQmdSajUvUWFFQkFBQUE0TVI5WDBHcEFRQUFBTXpiam9OQjZBRUJnQUtVQTRvQ1BqQXVNREF6T1RNMUxERXVNREF3TURBd0xERXVNREEzTURVMkxERXVNak14TkRneExERXVNekF3TURBd0xERXVNek0xTURjMExERXVOVEF3TURBd21RTDFLRnlQd3ZYb1A2RUNyZTgwZU1KSndVSEJBclpyNzJOaldzbkF5Z0lMQ0FJUkFBQUFBQUFBQUlES0Fnc0lBUkcyYSs5alkxckp3TmtDd0NVd3UrYndYRUhoQWdDcWRCUERORUZCNlFKclpUQy8xOGltUVlvRE1BQUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQN2tETDdMcUhIWVI1RC9CQTFBWDl5cURDdVkveVFQVEErUngwbVRvUDlFRHJFMG9pUHU0N1QrQkJBQUFBR0FIVVFvL2lRUUFBQUJnVDAwR1A1QUVtd09ZQlB1UXNiUDZVNkFFMFl1TjNRV29CSUR5aTZnSnVBU3Y1djdLQThBRWdQS0xxQW5KQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQUlOa2RjRCtoQlFBQUFBQUFBUEEvcVFVQUFBQ0E1aHp3UDdFRkFBQUFZQ1cwOHorNUJRQUFBTURNelBRL3dRVUFBQUJBZGx6MVA4a0ZBQUFBQUFBQStEOD3qGQIMFvoZkwYKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yMzc3NjI1MzMxMQoNCgdpc192c2t1EgIoAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9CioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigACh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDIwMzA0ChIKDHZvdWNoZXJfbGVucxICEAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAsB+AgoCAiICBqKAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_23776253311",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 6044878443,
              "shopid": 211468201,
              "name": "MIDEA MSAFE-05CRN2X + PASANG AC SPLIT 1/2 PK STANDARD",
              "label_ids": [
                1002164,
                1400095067,
                1400285005,
                1000961,
                22,
                844931026694327,
                844931046478970,
                844931064601283,
                1015914,
                700190087,
                1400285055,
                1059152,
                1059154,
                822059908662278,
                700300004,
                822120592853526,
                700585046,
                2018618,
                1012763,
                298933384,
                2153644,
                700830032,
                2213652,
                1400066568,
                825465608497696,
                298463379,
                1718093079,
                2008656,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224s-mhu7q4tya8li64",
              "images": [
                "id-11134207-8224s-mhu7q4tya8li64",
                "id-11134207-7r98o-ll1swxuqu0zj5d",
                "id-11134207-7r98o-lxauz505nl973a",
                "id-11134207-7r98p-lxauz505oztn0c",
                "id-11134207-7r98w-lxauz505qee36e",
                "id-11134207-7r98o-lxauz505rsyj38"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1596506019,
              "sold": 1,
              "historical_sold": 183,
              "liked": false,
              "liked_count": 1194,
              "view_count": null,
              "catid": 100010,
              "brand": "Midea",
              "cmt_count": 97,
              "flag": 917504,
              "cb_option": 0,
              "item_status": "normal",
              "price": 313100000000,
              "price_min": 313100000000,
              "price_max": 313100000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Paket",
                  "options": [
                    "PASANG 0.5mm",
                    "PASANG 0.6mm",
                    "PASANG 0.76mm"
                  ],
                  "images": [
                    "id-11134207-7r98o-ll1t014hrnhw45",
                    "id-11134207-7r98o-ll1t014hugmsbe",
                    "id-11134207-7r98o-ll1t014hvv7837"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.895833333333333,
                "rating_count": [
                  97,
                  0,
                  3,
                  0,
                  4,
                  90
                ],
                "rcount_with_context": 45,
                "rcount_with_image": 39
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "48072f7e2893e5bb38330cc2007c274d",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 313100000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 235249534679,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 313100000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 183,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 183,
                "display_sold_count_text": "183"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SELKA.id Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 410416423,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiYZHeQVrPTLGZTWxc3LN8fJmw8JMMFInvYl6Yd744KxU7YrthVhDvxKc3hPU8svUfS+HNMyytSFXkfbvH31RMDkyPLW63wT4GaBtI2ZFFEQUMzA5YKPNN5Zl8t7ORAOkQ54189pA/YX6Lp0L7kIjHbnI4nq0YQ6xtwdGX4pvogyHmb7a4k2F83wum7lbswTSfkMtgBnABrYqJe7Wa/5n5UdvcZJV3RIkmJBwXSTsouwg58/hPoIcBIr6sCI+X7CR100Nm6WMY7c9/84jnvUJhJRZD7KF20TXpEtqPOcX9vm4rGB6sBE/gNXn25+ZHMa7HLtt0Vktl7Q3ldoK6Dmer6J+LHOvbjt7d35tqVCqnJOHT7ya8uzRaz8YYUnwY6zJ8V6WjZrc+8LUXKoLpVj13Hq+N6A2MV3U72mU92j1UHBJ9FvObcOJ6fgmQtufeJWGWo3tVEYE/+gbd1SHOkN/JmO+TDaMm8EbF5hE0w5NteAGg==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EKfq2cMBGIrzgpgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWVpIZVFWclBUTEdaVFd4YzNMTjhmSm13OEpNTUZJbnZZbDZZZDc0NEt4VTdZcnRoVmhEdnhLYzNoUFU4c3ZVZlMrSE5NeXl0U0ZYa2ZidkgzMVJNRGt5UExXNjN3VDRHYUJ0STJaRkZFUVVNekE1WUtQTk41Wmw4dDdPUkFPa1E1NDE4OXBBL1lYNkxwMEw3a0lqSGJuSTRucTBZUTZ4dHdkR1g0cHZvZ3lIbWI3YTRrMkY4M3d1bTdsYnN3VFNma010Z0JuQUJyWXFKZTdXYS81bjVVZHZjWkpWM1JJa21KQndYU1Rzb3V3ZzU4L2hQb0ljQklyNnNDSStYN0NSMTAwTm02V01ZN2M5Lzg0am52VUpoSlJaRDdLRjIwVFhwRXRxUE9jWDl2bTRyR0I2c0JFL2dOWG4yNStaSE1hN0hMdHQwVmt0bDdRM2xkb0s2RG1lcjZKK0xIT3ZianQ3ZDM1dHFWQ3FuSk9IVDd5YTh1elJhejhZWVVud1k2eko4VjZXalpyYys4TFVYS29McFZqMTNIcStONkEyTVYzVTcybVU5MmoxVUhCSjlGdk9iY09KNmZnbVF0dWZlSldHV28zdFZFWUUvK2diZDFTSE9rTi9KbU8rVERhTW04RWJGNWhFMHc1TnRlQUdnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB5/W0qYgL6QEAAADglSXxP/EBAAAAYHrf8D/IDA/gDAHpDAAAAOCDTqU/iQ17FK5H4XqUP5ENuB6F61GuAUGhDQAAAABgoFtB+A2AgJLRwwmwDqKsn4sB4g4Mqo0Gx40G1Y4G8JAGyA8Y4hmICkVtQXdMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTUM0eU16WTFNREExTXpjeE9USTNPVGNzTFRFc0xURXNNUzR3TURBd01USXpMREkyTGpVMU9URTBPVE13T1RRM01UQTNMREF1TkRnMk5EUTBORGt5T1RZNE5UWTRNak1zTFRFZEt5MjRTeUQvZ3JvRExacVptVDQxQUFDQVAwb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DUEQzNFFRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNEk4UGZoQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0hDS3J6bGdNUUFGb0hDS3p6bGdNUUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFXZ2NJOFBmaEJCQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJOFBmaEJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBWWc0SXEvT1dBeEVBQUFBQUFBQUFBSEVBQUFDZ0VxTUlQM2tBQUFBQWVJd09QNEVCQUFBQVFHay9jRUdKQVFBQUFLQnZSM1pCa1FFQUFBQndiRU9EUVprQkFBQUFnRFR2ZFVHaEFRQUFBSUJibEh4QnFRRUFBQUFBeUVHSlFlZ0JBWUFDbEFPS0FqNHdMakF3TXpNeU1pd3hMakF3TURBd01Dd3hMakF3TURBd01Dd3hMakkxTURBd01Dd3hMak13TURBd01Dd3hMalF3TURBd01Dd3hMalV3TURBd01Ka0NNek16TXpNejB6K2hBcTN2TkhqQ1NjRkJ3UUlBQUFBQUFBQUFnTW9DQ3dnQkVRQUFBQUFBQUFBQXlnSUxDQUlSQUFBQUFBQUFBSURaQWdBMUJFRUFpVTVCNFFKQWhOd0ZwOUJjUWVrQ0Y1NXEvMk1Vb2tHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCs1QTh0aHZOQ0hZK0kvd1FNY0VFMHRWdWZrUDhrRFlrVnhKVnErNkQvUkEyQnJjSk1VZCswL2dRUUFBQUFnSk13RFA0a0VBQUFBd01Mby9qNlFCSnNEbUFUNHc5UzM1UVNnQlBQbjJaSUJxQVNBeXJYdUFiZ0VqZUxiVzhBRWdNcTE3Z0hKQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQW9MQTNheitoQlFBQUFBQUFBUEEvcVFVQUFBQUFBQUR3UDdFRkFBQUFBQUFBOUQrNUJRQUFBTURNelBRL3dRVUFBQUJnWm1iMlA4a0ZBQUFBQUFBQStEOD3qGQILFPIZAs0I+hmSBgoSCgx2b3VjaGVyX2xlbnMSAhAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF82MDQ0ODc4NDQzCg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAALAfz4KAgKiAgaggyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 6044878443,
            "shopid": 211468201,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":7242112,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhu7q4tya8li64\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,1400095067,1400285005,1000961,22,844931026694327,844931046478970,844931064601283,1015914,700190087,1400285055,1059152,1059154,822059908662278,700300004,822120592853526,700585046,2018618,1012763,298933384,2153644,700830032,2213652,1400066568,825465608497696,298463379,1718093079,2008656,298468389,1718088045],\"merge_rank\":0,\"model_id\":235249534679,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":7242112,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhu7q4tya8li64\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,1400095067,1400285005,1000961,22,844931026694327,844931046478970,844931064601283,1015914,700190087,1400285055,1059152,1059154,822059908662278,700300004,822120592853526,700585046,2018618,1012763,298933384,2153644,700830032,2213652,1400066568,825465608497696,298463379,1718093079,2008656,298468389,1718088045],\"merge_rank\":0,\"model_id\":235249534679,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EKfq2cMBGIrzgpgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWVpIZVFWclBUTEdaVFd4YzNMTjhmSm13OEpNTUZJbnZZbDZZZDc0NEt4VTdZcnRoVmhEdnhLYzNoUFU4c3ZVZlMrSE5NeXl0U0ZYa2ZidkgzMVJNRGt5UExXNjN3VDRHYUJ0STJaRkZFUVVNekE1WUtQTk41Wmw4dDdPUkFPa1E1NDE4OXBBL1lYNkxwMEw3a0lqSGJuSTRucTBZUTZ4dHdkR1g0cHZvZ3lIbWI3YTRrMkY4M3d1bTdsYnN3VFNma010Z0JuQUJyWXFKZTdXYS81bjVVZHZjWkpWM1JJa21KQndYU1Rzb3V3ZzU4L2hQb0ljQklyNnNDSStYN0NSMTAwTm02V01ZN2M5Lzg0am52VUpoSlJaRDdLRjIwVFhwRXRxUE9jWDl2bTRyR0I2c0JFL2dOWG4yNStaSE1hN0hMdHQwVmt0bDdRM2xkb0s2RG1lcjZKK0xIT3ZianQ3ZDM1dHFWQ3FuSk9IVDd5YTh1elJhejhZWVVud1k2eko4VjZXalpyYys4TFVYS29McFZqMTNIcStONkEyTVYzVTcybVU5MmoxVUhCSjlGdk9iY09KNmZnbVF0dWZlSldHV28zdFZFWUUvK2diZDFTSE9rTi9KbU8rVERhTW04RWJGNWhFMHc1TnRlQUdnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB5/W0qYgL6QEAAADglSXxP/EBAAAAYHrf8D/IDA/gDAHpDAAAAOCDTqU/iQ17FK5H4XqUP5ENuB6F61GuAUGhDQAAAABgoFtB+A2AgJLRwwmwDqKsn4sB4g4Mqo0Gx40G1Y4G8JAGyA8Y4hmICkVtQXdMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTUM0eU16WTFNREExTXpjeE9USTNPVGNzTFRFc0xURXNNUzR3TURBd01USXpMREkyTGpVMU9URTBPVE13T1RRM01UQTNMREF1TkRnMk5EUTBORGt5T1RZNE5UWTRNak1zTFRFZEt5MjRTeUQvZ3JvRExacVptVDQxQUFDQVAwb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DUEQzNFFRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNEk4UGZoQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0hDS3J6bGdNUUFGb0hDS3p6bGdNUUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFXZ2NJOFBmaEJCQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJOFBmaEJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBWWc0SXEvT1dBeEVBQUFBQUFBQUFBSEVBQUFDZ0VxTUlQM2tBQUFBQWVJd09QNEVCQUFBQVFHay9jRUdKQVFBQUFLQnZSM1pCa1FFQUFBQndiRU9EUVprQkFBQUFnRFR2ZFVHaEFRQUFBSUJibEh4QnFRRUFBQUFBeUVHSlFlZ0JBWUFDbEFPS0FqNHdMakF3TXpNeU1pd3hMakF3TURBd01Dd3hMakF3TURBd01Dd3hMakkxTURBd01Dd3hMak13TURBd01Dd3hMalF3TURBd01Dd3hMalV3TURBd01Ka0NNek16TXpNejB6K2hBcTN2TkhqQ1NjRkJ3UUlBQUFBQUFBQUFnTW9DQ3dnQkVRQUFBQUFBQUFBQXlnSUxDQUlSQUFBQUFBQUFBSURaQWdBMUJFRUFpVTVCNFFKQWhOd0ZwOUJjUWVrQ0Y1NXEvMk1Vb2tHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCs1QTh0aHZOQ0hZK0kvd1FNY0VFMHRWdWZrUDhrRFlrVnhKVnErNkQvUkEyQnJjSk1VZCswL2dRUUFBQUFnSk13RFA0a0VBQUFBd01Mby9qNlFCSnNEbUFUNHc5UzM1UVNnQlBQbjJaSUJxQVNBeXJYdUFiZ0VqZUxiVzhBRWdNcTE3Z0hKQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQW9MQTNheitoQlFBQUFBQUFBUEEvcVFVQUFBQUFBQUR3UDdFRkFBQUFBQUFBOUQrNUJRQUFBTURNelBRL3dRVUFBQUJnWm1iMlA4a0ZBQUFBQUFBQStEOD3qGQILFPIZAs0I+hmSBgoSCgx2b3VjaGVyX2xlbnMSAhAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF82MDQ0ODc4NDQzCg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAALAfz4KAgKiAgaggyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_6044878443",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 21960705220,
              "shopid": 894671202,
              "name": "Terima Pasang AC DENPOO Split 1/2 PK & 1 PK BEST SELLER - DDS 05/09 CTL SNI",
              "label_ids": [
                844931064601283,
                822059908662278,
                1049112,
                1049127,
                1400285055,
                1015914,
                700190087,
                822120592853526,
                825465608499232,
                1000031,
                2018619,
                1428713,
                1718087960,
                834403089593352,
                298893311,
                825465608497696,
                1213641,
                1718093079,
                700830032,
                298463379,
                298933384,
                700810080,
                2068629,
                298938357,
                298468390,
                298938368,
                1718093084,
                1718088044,
                298468389,
                298458396,
                2098629,
                2098628,
                1718088045,
                298458398
              ],
              "image": "id-11134207-81zth-mfct5dutzu3236",
              "images": [
                "id-11134207-81zth-mfct5dutzu3236",
                "id-11134207-81ztg-mfct5duvh7nv5f",
                "id-11134207-7r991-lz7bgm4klr2d5e",
                "sg-11134201-22110-54r2lcixrljvc1",
                "sg-11134201-22110-94r2lcixrljvd6",
                "id-11134207-7r98v-llfad9wery302c",
                "id-11134207-7r990-lqf6lqlbqcu7f9",
                "sg-11134201-22110-12w2ot1xrljv4c",
                "id-11134207-7r98o-lni5l225wlli6b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1667814473,
              "sold": 21,
              "historical_sold": 798,
              "liked": false,
              "liked_count": 922,
              "view_count": null,
              "catid": 100010,
              "brand": "Denpoo",
              "cmt_count": 318,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 225900000000,
              "price_min": 225900000000,
              "price_max": 225900000000,
              "price_min_before_discount": 255000000000,
              "price_max_before_discount": 255000000000,
              "hidden_price_display": null,
              "price_before_discount": 255000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-11%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6ke18-lqf83dljwdad71.16000081705087507.mp4",
                  "thumb_url": "id-11110107-7r98y-lqf83hlk1zege5",
                  "duration": 52,
                  "version": 2,
                  "vid": "id-11110107-6ke18-lqf83dljwdad71",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ke18-lqf83dljwdad71.default.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke18-lqf83dljwdad71.default.mp4",
                      "width": 540,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke18-lqf83dljwdad71.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "TYPE",
                  "options": [
                    "1 PK DDS 09 CTL",
                    "1/2PK-DDS 05 CTL"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "OPSI",
                  "options": [
                    "PAKET PASANG",
                    "UNIT ONLY",
                    "+ BRACKET SET"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.865443425076452,
                "rating_count": [
                  327,
                  4,
                  0,
                  2,
                  24,
                  297
                ],
                "rcount_with_context": 100,
                "rcount_with_image": 76
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-81zth-mfct5dutzu3236",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp752RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228241105502209,
                "price": 225700000000,
                "strikethrough_price": 255000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1304763355119616,
                "discount_text": "-11%",
                "model_id": 258295617767,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1304763355119616,
                  "voucher_code": "DENPLOV",
                  "voucher_discount": 200000000,
                  "time_info": {
                    "start_time": 1764999660,
                    "end_time": 1772297940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 19900000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 255000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 798,
                "rounded_local_monthly_sold_count": 21,
                "local_monthly_sold_count_text": "21",
                "rounded_display_sold_count": 798,
                "display_sold_count_text": "798"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp752RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DENPOO Authorize Store Bandung",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 351094504,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9tbIGTwTTM9mmFQaSB5kZvAMLFN3o48UQMVovGWO6ZyC+olSpYW5XyZ4RDjupBRh3ODgBXTAivupJpInhE1qjTUPyZxg/VqMCvOxuMLDHB3XA946CGOIbNC2oz3EtFDNHMzR6QyH44ayWWo3uDzFq9ofZmM5iS7a2EAe2Q2H+ddrWLvKEWV05dJtCF7ofHp3KHgRWJuLvlPIlBRlqcWOwjSikivR3+6mq8/+OilzSuesyZLfqm4XiXSJZz4VmEuEWQn0hp8+WOf/+nLSS3fqSxI1lijJ5nADRRUZUwZe3mAlHO6KHgi+WaHJjU6ZZiop9Nbw+8GVS4ETniCHJUWOWjIT0yKelzt0rf0Nozs2o8cP0WwFS300+BhW1fw4E9JvYVxsZD/VK22k01STk5iX0ADqjvo4AqW0KgfMFe1kpDHvVpAlV28jCyuh00DoL6junfNBWlbK74piitGbiiQ0BmQmqAJ0FNWzwUIC83V9owlgPOmsz0ot3UQZwRswxPLHA==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EOiNtacBGJKn74kBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeUMrb2xTcFlXNVh5WjRSRGp1cEJSaDNPRGdCWFRBaXZ1cEpwSW5oRTFxalRVUHlaeGcvVnFNQ3ZPeHVNTERIQjNYQTk0NkNHT0liTkMyb3ozRXRGRE5ITXpSNlF5SDQ0YXlXV28zdUR6RnE5b2ZabU01aVM3YTJFQWUyUTJIK2RkcldMdktFV1YwNWRKdENGN29mSHAzS0hnUldKdUx2bFBJbEJSbHFjV093alNpa2l2UjMrNm1xOC8rT2lselN1ZXN5WkxmcW00WGlYU0paejRWbUV1RVdRbjBocDgrV09mLytuTFNTM2ZxU3hJMWxpako1bkFEUlJVWlV3WmUzbUFsSE82S0hnaStXYUhKalU2Wlppb3A5TmJ3KzhHVlM0RVRuaUNISlVXT1dqSVQweUtlbHp0MHJmME5venMybzhjUDBXd0ZTMzAwK0JoVzFmdzRFOUp2WVZ4c1pEL1ZLMjJrMDFTVGs1aVgwQURxanZvNEFxVzBLZ2ZNRmUxa3BESHZWcEFsVjI4akN5dWgwMERvTDZqdW5mTkJXbGJLNzRwaWl0R2JpaVEwQm1RbXFBSjBGTld6d1VJQzgzVjlvd2xnUE9tc3owb3QzVVFad1Jzd3hQTEhBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB+JST7P4B6QEAAADglSXxP/EBAAAAwI199T/IDA/gDAHpDAAAACARwKo/iQ17FK5H4XqUP5ENexSuR+F6lD+hDQAAAAAAAPA/+A2AgIS3kwiwDpyMyJUB4g4Mqo0Gx40G1Y4G8JAGyA8Z4hmgCkVsY3dMall5TVRjeUxDMHhMQzB4TEMweExDMHhMREF1TmpJNExERXNOaTQzTnpZNE9UUXhOall6T1RrNE1UTTFMREF1T1N3dE1Td3hMakF3TURBeE1qTXNMVEVzTmk0d09EY3dNVEkwT1Rrd01qRTBNallzTFRFZFpncVFUU0Rhdjh4UUxRc3BIejgxQUFDQVB6azBPVXViZUREWVFVSEk3VGFVYVlSUFFrb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRW9PQ0t2emxnTVJBQUFBQUFBQUFBQlNFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJhQndpczg1WURFQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFIRUFBQURBQk9zUlAza0FBQUFBdXZIZ1BvRUJBQUFBd0p0TGRFR0pBUUFBQUNEeHB5WkJrUUVBQUFCSjJ3QjFRWmtCQUFBQVFCSm1lMEdoQVFBQUFBRHNsUzVCcVFFQUFBQ2d3VnA4UWVnQkFZQUNsQU9LQWo0d0xqQXdOVFk1TXl3eExqQXdNREF3TUN3eExqQXhPREl4T0N3eExqSXhOVFExTml3eExqTXdNREF3TUN3eExqUXdNREF3TUN3eExqVXdNREF3TUprQ2YycThkSk1ZNUQraEFxY29JL0RmaWZWQnlnSUxDQUVSQUFBQUFBQUFBQURLQWdzSUFoSDdxZkhTVFdKd3Y5a0NnSkxLeGtZTldVSGhBcUNiY2lhNUJ4QkI2UUtKSytKN0ZjSGJRWW9ETUFBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1A1a0RORGxMbTNndzJFR2hBOGp0TnBScGhFOUN1UU5kZHU4V2g0VGhQOEVESzJ5UW9IajA0ei9KQTVrK0lMWmIvK1kvMFFPZDhJR0ZkOURzUC9vRENRb0ZTWE5PVUVJUUFQb0RDd29IVW05cFZHbGxjaEFEK2dNTkNnbFBjbVJsY2xScFpYSVFBL29ERVFvTlNYUmxiVkJ5YVdObFZHbGxjaEFEZ1FRQUFBQ0E5aUVLUDRrRUFBQUFvQlAvQXorUUJKc0RtQVR2L1BXd1pxQUVnTjZneXdXb0JJRGVvTXNGd0FTQTNxRExCY2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFCQVlWRjNQNkVGQUFBQUFBQUE4RCtwQlFBQUFDQ2ZTdkEvc1FVQUFBREFnWEx6UDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQS2TcRN8hkDmr48+hmdBgoUCg5zaG9wX2JsYWNrbGlzdBICKAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMjE5NjA3MDUyMjAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKKQoQcmVjYWxsX3F1ZXVlX2lkcxIVIhM2MTEwMTAxMDQsNjExMDIwMzA0CiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoNCgdpc192c2t1EgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KFAoOdXNlcl9ibGFja2xpc3QSAigAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKEgoMdm91Y2hlcl9sZW5zEgIQAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAsB/PgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklpygj8N+J9UHyJQZTRUFSQ0jIPgE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 21960705220,
            "shopid": 894671202,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zth-mfct5dutzu3236\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,822059908662278,1049112,1049127,1400285055,1015914,700190087,822120592853526,825465608499232,1000031,2018619,1428713,1718087960,834403089593352,298893311,825465608497696,1213641,1718093079,700830032,298463379,298933384,700810080,2068629,298938357,298468390,298938368,1718093084,1718088044,298468389,298458396,2098629,2098628,1718088045,298458398],\"merge_rank\":0,\"model_id\":258295617767,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zth-mfct5dutzu3236\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,822059908662278,1049112,1049127,1400285055,1015914,700190087,822120592853526,825465608499232,1000031,2018619,1428713,1718087960,834403089593352,298893311,825465608497696,1213641,1718093079,700830032,298463379,298933384,700810080,2068629,298938357,298468390,298938368,1718093084,1718088044,298468389,298458396,2098629,2098628,1718088045,298458398],\"merge_rank\":0,\"model_id\":258295617767,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EOiNtacBGJKn74kBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeUMrb2xTcFlXNVh5WjRSRGp1cEJSaDNPRGdCWFRBaXZ1cEpwSW5oRTFxalRVUHlaeGcvVnFNQ3ZPeHVNTERIQjNYQTk0NkNHT0liTkMyb3ozRXRGRE5ITXpSNlF5SDQ0YXlXV28zdUR6RnE5b2ZabU01aVM3YTJFQWUyUTJIK2RkcldMdktFV1YwNWRKdENGN29mSHAzS0hnUldKdUx2bFBJbEJSbHFjV093alNpa2l2UjMrNm1xOC8rT2lselN1ZXN5WkxmcW00WGlYU0paejRWbUV1RVdRbjBocDgrV09mLytuTFNTM2ZxU3hJMWxpako1bkFEUlJVWlV3WmUzbUFsSE82S0hnaStXYUhKalU2Wlppb3A5TmJ3KzhHVlM0RVRuaUNISlVXT1dqSVQweUtlbHp0MHJmME5venMybzhjUDBXd0ZTMzAwK0JoVzFmdzRFOUp2WVZ4c1pEL1ZLMjJrMDFTVGs1aVgwQURxanZvNEFxVzBLZ2ZNRmUxa3BESHZWcEFsVjI4akN5dWgwMERvTDZqdW5mTkJXbGJLNzRwaWl0R2JpaVEwQm1RbXFBSjBGTld6d1VJQzgzVjlvd2xnUE9tc3owb3QzVVFad1Jzd3hQTEhBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB+JST7P4B6QEAAADglSXxP/EBAAAAwI199T/IDA/gDAHpDAAAACARwKo/iQ17FK5H4XqUP5ENexSuR+F6lD+hDQAAAAAAAPA/+A2AgIS3kwiwDpyMyJUB4g4Mqo0Gx40G1Y4G8JAGyA8Z4hmgCkVsY3dMall5TVRjeUxDMHhMQzB4TEMweExDMHhMREF1TmpJNExERXNOaTQzTnpZNE9UUXhOall6T1RrNE1UTTFMREF1T1N3dE1Td3hMakF3TURBeE1qTXNMVEVzTmk0d09EY3dNVEkwT1Rrd01qRTBNallzTFRFZFpncVFUU0Rhdjh4UUxRc3BIejgxQUFDQVB6azBPVXViZUREWVFVSEk3VGFVYVlSUFFrb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRW9PQ0t2emxnTVJBQUFBQUFBQUFBQlNFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJhQndpczg1WURFQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFIRUFBQURBQk9zUlAza0FBQUFBdXZIZ1BvRUJBQUFBd0p0TGRFR0pBUUFBQUNEeHB5WkJrUUVBQUFCSjJ3QjFRWmtCQUFBQVFCSm1lMEdoQVFBQUFBRHNsUzVCcVFFQUFBQ2d3VnA4UWVnQkFZQUNsQU9LQWo0d0xqQXdOVFk1TXl3eExqQXdNREF3TUN3eExqQXhPREl4T0N3eExqSXhOVFExTml3eExqTXdNREF3TUN3eExqUXdNREF3TUN3eExqVXdNREF3TUprQ2YycThkSk1ZNUQraEFxY29JL0RmaWZWQnlnSUxDQUVSQUFBQUFBQUFBQURLQWdzSUFoSDdxZkhTVFdKd3Y5a0NnSkxLeGtZTldVSGhBcUNiY2lhNUJ4QkI2UUtKSytKN0ZjSGJRWW9ETUFBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1A1a0RORGxMbTNndzJFR2hBOGp0TnBScGhFOUN1UU5kZHU4V2g0VGhQOEVESzJ5UW9IajA0ei9KQTVrK0lMWmIvK1kvMFFPZDhJR0ZkOURzUC9vRENRb0ZTWE5PVUVJUUFQb0RDd29IVW05cFZHbGxjaEFEK2dNTkNnbFBjbVJsY2xScFpYSVFBL29ERVFvTlNYUmxiVkJ5YVdObFZHbGxjaEFEZ1FRQUFBQ0E5aUVLUDRrRUFBQUFvQlAvQXorUUJKc0RtQVR2L1BXd1pxQUVnTjZneXdXb0JJRGVvTXNGd0FTQTNxRExCY2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFCQVlWRjNQNkVGQUFBQUFBQUE4RCtwQlFBQUFDQ2ZTdkEvc1FVQUFBREFnWEx6UDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQS2TcRN8hkDmr48+hmdBgoUCg5zaG9wX2JsYWNrbGlzdBICKAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMjE5NjA3MDUyMjAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKKQoQcmVjYWxsX3F1ZXVlX2lkcxIVIhM2MTEwMTAxMDQsNjExMDIwMzA0CiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoNCgdpc192c2t1EgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KFAoOdXNlcl9ibGFja2xpc3QSAigAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKEgoMdm91Y2hlcl9sZW5zEgIQAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAsB/PgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklpygj8N+J9UHyJQZTRUFSQ0jIPgE=",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_21960705220",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 7453161211,
              "shopid": 142041734,
              "name": "AC MIDEA MSAF 05 CRN / MSAFE 05 CRN2 / 05 ESA / KR 05 FQ / AN 05 CDG / KIOS 05  1/2 PK + PASANG R32 STANDARD LOW SUPER COOL AC ANTI KARAT HEMAT LISTRIK DAN AWET",
              "label_ids": [
                1000544,
                1400095067,
                1400285005,
                22,
                1002164,
                1400095065,
                700195025,
                844931026694327,
                844931064601283,
                844931046478970,
                1068760,
                1015914,
                700190087,
                1400285055,
                1049112,
                1059151,
                822059908662278,
                834403089593352,
                822120592853526,
                1718093079,
                298463379,
                2018619,
                2023641,
                298893311,
                825465608497696,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7rbk9-ma7zhcw9npp91b",
              "images": [
                "id-11134207-7rbk9-ma7zhcw9npp91b",
                "8efa10220097841f1fdf8e456affb0a1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1600426852,
              "sold": 8,
              "historical_sold": 1000,
              "liked": false,
              "liked_count": 1969,
              "view_count": null,
              "catid": 100010,
              "brand": "Midea",
              "cmt_count": 848,
              "flag": 917504,
              "cb_option": 0,
              "item_status": "normal",
              "price": 287500000000,
              "price_min": 287500000000,
              "price_max": 287500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6knas-mac8vpw2jkkc17.16000101748492032.mp4",
                  "thumb_url": "id-11110105-6knas-mac8vpw2jkkc17_cover",
                  "duration": 50,
                  "version": 2,
                  "vid": "id-11110105-6knas-mac8vpw2jkkc17",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knas-mac8vpw2jkkc17.16000101748492032.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knas-mac8vpw2jkkc17.16000101748492032.mp4",
                      "width": 540,
                      "height": 952
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knas-mac8vpw2jkkc17.default.mp4",
                    "width": 540,
                    "height": 952
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "TIPE",
                  "options": [
                    "MSAFE 05 CRN",
                    "SANKEN 05 ESA",
                    "AQUA 05 FQ",
                    "HISENSE AN 05 CDG",
                    "ARISTON KIOS 05"
                  ],
                  "images": [
                    "id-11134207-7rbk0-mazcg5rjpyop4d",
                    "id-11134207-7ra0t-mb3t0pv6no1k15",
                    "id-11134207-7rbk1-mazcg5rjrd9590",
                    "id-11134207-8224v-mhhkjxhx0rghd2",
                    "id-11134207-8224z-mhn5fswsd8g388"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "PACKING",
                  "options": [
                    "DUS BAWAAN",
                    "PACKING WRAPPING",
                    "PACKING KAYU"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.905202312138728,
                "rating_count": [
                  865,
                  1,
                  3,
                  9,
                  51,
                  801
                ],
                "rcount_with_context": 328,
                "rcount_with_image": 278
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "1c1ac62954c41b047210cf574b21da09",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 287500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 430225094667,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 287500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1000,
                "rounded_local_monthly_sold_count": 8,
                "local_monthly_sold_count_text": "8",
                "rounded_display_sold_count": 1000,
                "display_sold_count_text": "1RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "mj.grosir7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 505936931,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9tbIGTwTTM9mmFQaSB5kZvAMLFN3o48UQMVovGWO6ZyC+olSpYW5XyZ4RDjupBRh3ODgBXTAivupJpInhE1qjTUPyZxg/VqMCvOxuMLDHB3XA946CGOIbNC2oz3EtFDNHMzR6QyH44ayWWo3uDzFq9ofZmM5iS7a2EAe2Q2H+ddrWLvKEWV05dJtCF7ofHp3KHgRWJuLvlPIlBRlqcWOwjSikivR3+6mq8/+OilzSuesyZLfqm4XiXSJZz4VmEuEWQn0hp8+WOf/+nLSS3fqSxI1lijJ5nADRRUZUwZe3mAlHO6KHgi+WaHJjU6ZZiop9Nbw+8GVS4ETniCHJUWOWjIT0yKelzt0rf0Nozs2o8cP0WwFS300+BhW1fw4E9JvYVxsZD/VK22k01STk5iX0ADqjvo4AqW0KgfMFe1kpDHvVpAlV28jCyuh00DoL6junfNBWlbK74piitGbiiQ0BmQmqAJ0FNWzwUIC83V9owl3Q46JVAjoNk9dzMI01Mwbg==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EKP4n/EBGIGMkcABMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeUMrb2xTcFlXNVh5WjRSRGp1cEJSaDNPRGdCWFRBaXZ1cEpwSW5oRTFxalRVUHlaeGcvVnFNQ3ZPeHVNTERIQjNYQTk0NkNHT0liTkMyb3ozRXRGRE5ITXpSNlF5SDQ0YXlXV28zdUR6RnE5b2ZabU01aVM3YTJFQWUyUTJIK2RkcldMdktFV1YwNWRKdENGN29mSHAzS0hnUldKdUx2bFBJbEJSbHFjV093alNpa2l2UjMrNm1xOC8rT2lselN1ZXN5WkxmcW00WGlYU0paejRWbUV1RVdRbjBocDgrV09mLytuTFNTM2ZxU3hJMWxpako1bkFEUlJVWlV3WmUzbUFsSE82S0hnaStXYUhKalU2Wlppb3A5TmJ3KzhHVlM0RVRuaUNISlVXT1dqSVQweUtlbHp0MHJmME5venMybzhjUDBXd0ZTMzAwK0JoVzFmdzRFOUp2WVZ4c1pEL1ZLMjJrMDFTVGs1aVgwQURxanZvNEFxVzBLZ2ZNRmUxa3BESHZWcEFsVjI4akN5dWgwMERvTDZqdW5mTkJXbGJLNzRwaWl0R2JpaVEwQm1RbXFBSjBGTld6d1VJQzgzVjlvd2wzUTQ2SlZBam9Oazlkek1JMDFNd2JnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABxZfJlIkI6QEAAADglSXxP/EBAAAAQHyD8D/IDA/gDAHpDAAAAKCtLKU/iQ17FK5H4XqUP5ENexSuR+F6lD+hDQAAAAAAAPA/+A2AgI7l/QiwDqO3uoIB4g4Mqo0Gx40G1Y4G8JAGyA8a4hnICkVuVTRMak0xTWpjNE9EY3lOVGs0T0RJMU9Dd3RNU3d0TVN3dE1Td3RNU3c0TGpRek56RTJNRE15T1RJNE1UQTJPU3d4TERFekxqVXhOams1TVRRME16ZzJNREV3Tnl3d0xqa3NMVEVzTUM0ek9EZzBORFUyT1RrMk1EWXpOVFF4TEMweExEa3VOakl4TURjME5EUTJNVFkyTVRjc0xURWRVNnZqVFNEOTNjQ3ZEUzBHcFFWQk5RQUFnRDg1RTBtU3J5R2k1VUZCb3YxOUpJTVFXMEpLRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFTZzRJclBPV0F4RUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SXF2T1dBeEVBQUFBQUFBQUFBRklPQ0t6emxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVdna0lnSUNBZ0lBRUVBQmFCd2lxODVZREVBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2lxODVZREVRQUFBQUFBQVBBL1lnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJ4QUFBQVlOS29CVDk1QUFBQVFPQWFKaitCQVFBQUFDQ2g2R3BCaVFFQUFBRGd4d1NIUVpFQkFBQUFLUEMralVHWkFRQUFBQ0RUS1hKQm9RRUFBQUFnUVJPUFFha0JBQUFBV0JVVWxFSG9BUUdBQXBRRGlnSStNQzR3TURVME9UQXNNUzR3TURBd01EQXNNUzR3TWpNME16Y3NNUzR5TXpZNE1qQXNNUzR6TURBd01EQXNNUzR6TmpBeE5ERXNNUzQwT0RNM05EV1pBdGU5aW5yVDN5QkFvUUl4SUIzTENvRUZRc29DQ3dnQkVUY09XY0x2VTN1L3lnSUxDQUlSKzZueDBrMWljTC9aQW1DZnpqc0tVbE5CNFFJQXAzZGgyTngxUWVrQ2xwTkEvbWp2OEVHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCtaQTQrYUdKaWZsdXBCb1FQOFpEdUxoNUpmUXJrREIxVGY0dEdtMlQvQkEyK0d1TFcza3Q0L3lRTWlzd2pQaUgzalA5RUREczNJdjEyeTZqLzZBd2tLQlVselRsQkNFQUQ2QXdzS0IxSnZhVlJwWlhJUUEvb0REUW9KVDNKa1pYSlVhV1Z5RUFQNkF4RUtEVWwwWlcxUWNtbGpaVlJwWlhJUUE0RUVBQUFBNEJqZC9qNkpCQUFBQUtBK0VmYytrQVNiQTVnRXkrRGY5ZDBJb0FTQWpJMmVBcWdFZ0l5Tm5nTEFCSUNNalo0Q3lRUjdGSzVINFhxVVArRUVleFN1UitGNmxEL3BCQUFBQUFBQUFQQS84UVFBQUFBQUFBRHdQL2tFQUFBQUFBQUE4RCtCQlFBQUFBQUFBUEEvaVFVQUFBQUFBQUR3UDVFRkFBQUFBQUFBOEQrWkJRQUFBT0N4ZkhZL29RVUFBQUFBQUFEd1A2a0ZBQUFBSVA5ZjhEK3hCUUFBQUNBRXl2TS91UVVBQUFEQXpNejBQOEVGQUFBQUFDUEQ5VC9KQlFBQUFDQnJ2ZmMv6hkEuE3ATfoZnAYKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKKQoQcmVjYWxsX3F1ZXVlX2lkcxIVIhM2MTEwMjAzMDQsNjExMDEwMTA0ChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiEKD3Zza3VfdW5pcXVlX2tleRIOIgwwXzc0NTMxNjEyMTEKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChIKDHZvdWNoZXJfbGVucxICEAAKDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigAsB/PgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklMSAdywqBBULyJQZTRUFSQ0jIPgE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 7453161211,
            "shopid": 142041734,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-ma7zhcw9npp91b\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1000544,1400095067,1400285005,22,1002164,1400095065,700195025,844931026694327,844931064601283,844931046478970,1068760,1015914,700190087,1400285055,1049112,1059151,822059908662278,834403089593352,822120592853526,1718093079,298463379,2018619,2023641,298893311,825465608497696,298933384,298468389,1718088045],\"merge_rank\":0,\"model_id\":430225094667,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-ma7zhcw9npp91b\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1000544,1400095067,1400285005,22,1002164,1400095065,700195025,844931026694327,844931064601283,844931046478970,1068760,1015914,700190087,1400285055,1049112,1059151,822059908662278,834403089593352,822120592853526,1718093079,298463379,2018619,2023641,298893311,825465608497696,298933384,298468389,1718088045],\"merge_rank\":0,\"model_id\":430225094667,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EKP4n/EBGIGMkcABMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeUMrb2xTcFlXNVh5WjRSRGp1cEJSaDNPRGdCWFRBaXZ1cEpwSW5oRTFxalRVUHlaeGcvVnFNQ3ZPeHVNTERIQjNYQTk0NkNHT0liTkMyb3ozRXRGRE5ITXpSNlF5SDQ0YXlXV28zdUR6RnE5b2ZabU01aVM3YTJFQWUyUTJIK2RkcldMdktFV1YwNWRKdENGN29mSHAzS0hnUldKdUx2bFBJbEJSbHFjV093alNpa2l2UjMrNm1xOC8rT2lselN1ZXN5WkxmcW00WGlYU0paejRWbUV1RVdRbjBocDgrV09mLytuTFNTM2ZxU3hJMWxpako1bkFEUlJVWlV3WmUzbUFsSE82S0hnaStXYUhKalU2Wlppb3A5TmJ3KzhHVlM0RVRuaUNISlVXT1dqSVQweUtlbHp0MHJmME5venMybzhjUDBXd0ZTMzAwK0JoVzFmdzRFOUp2WVZ4c1pEL1ZLMjJrMDFTVGs1aVgwQURxanZvNEFxVzBLZ2ZNRmUxa3BESHZWcEFsVjI4akN5dWgwMERvTDZqdW5mTkJXbGJLNzRwaWl0R2JpaVEwQm1RbXFBSjBGTld6d1VJQzgzVjlvd2wzUTQ2SlZBam9Oazlkek1JMDFNd2JnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABxZfJlIkI6QEAAADglSXxP/EBAAAAQHyD8D/IDA/gDAHpDAAAAKCtLKU/iQ17FK5H4XqUP5ENexSuR+F6lD+hDQAAAAAAAPA/+A2AgI7l/QiwDqO3uoIB4g4Mqo0Gx40G1Y4G8JAGyA8a4hnICkVuVTRMak0xTWpjNE9EY3lOVGs0T0RJMU9Dd3RNU3d0TVN3dE1Td3RNU3c0TGpRek56RTJNRE15T1RJNE1UQTJPU3d4TERFekxqVXhOams1TVRRME16ZzJNREV3Tnl3d0xqa3NMVEVzTUM0ek9EZzBORFUyT1RrMk1EWXpOVFF4TEMweExEa3VOakl4TURjME5EUTJNVFkyTVRjc0xURWRVNnZqVFNEOTNjQ3ZEUzBHcFFWQk5RQUFnRDg1RTBtU3J5R2k1VUZCb3YxOUpJTVFXMEpLRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFTZzRJclBPV0F4RUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SXF2T1dBeEVBQUFBQUFBQUFBRklPQ0t6emxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVdna0lnSUNBZ0lBRUVBQmFCd2lxODVZREVBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2lxODVZREVRQUFBQUFBQVBBL1lnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJ4QUFBQVlOS29CVDk1QUFBQVFPQWFKaitCQVFBQUFDQ2g2R3BCaVFFQUFBRGd4d1NIUVpFQkFBQUFLUEMralVHWkFRQUFBQ0RUS1hKQm9RRUFBQUFnUVJPUFFha0JBQUFBV0JVVWxFSG9BUUdBQXBRRGlnSStNQzR3TURVME9UQXNNUzR3TURBd01EQXNNUzR3TWpNME16Y3NNUzR5TXpZNE1qQXNNUzR6TURBd01EQXNNUzR6TmpBeE5ERXNNUzQwT0RNM05EV1pBdGU5aW5yVDN5QkFvUUl4SUIzTENvRUZRc29DQ3dnQkVUY09XY0x2VTN1L3lnSUxDQUlSKzZueDBrMWljTC9aQW1DZnpqc0tVbE5CNFFJQXAzZGgyTngxUWVrQ2xwTkEvbWp2OEVHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCtaQTQrYUdKaWZsdXBCb1FQOFpEdUxoNUpmUXJrREIxVGY0dEdtMlQvQkEyK0d1TFcza3Q0L3lRTWlzd2pQaUgzalA5RUREczNJdjEyeTZqLzZBd2tLQlVselRsQkNFQUQ2QXdzS0IxSnZhVlJwWlhJUUEvb0REUW9KVDNKa1pYSlVhV1Z5RUFQNkF4RUtEVWwwWlcxUWNtbGpaVlJwWlhJUUE0RUVBQUFBNEJqZC9qNkpCQUFBQUtBK0VmYytrQVNiQTVnRXkrRGY5ZDBJb0FTQWpJMmVBcWdFZ0l5Tm5nTEFCSUNNalo0Q3lRUjdGSzVINFhxVVArRUVleFN1UitGNmxEL3BCQUFBQUFBQUFQQS84UVFBQUFBQUFBRHdQL2tFQUFBQUFBQUE4RCtCQlFBQUFBQUFBUEEvaVFVQUFBQUFBQUR3UDVFRkFBQUFBQUFBOEQrWkJRQUFBT0N4ZkhZL29RVUFBQUFBQUFEd1A2a0ZBQUFBSVA5ZjhEK3hCUUFBQUNBRXl2TS91UVVBQUFEQXpNejBQOEVGQUFBQUFDUEQ5VC9KQlFBQUFDQnJ2ZmMv6hkEuE3ATfoZnAYKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKKQoQcmVjYWxsX3F1ZXVlX2lkcxIVIhM2MTEwMjAzMDQsNjExMDEwMTA0ChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiEKD3Zza3VfdW5pcXVlX2tleRIOIgwwXzc0NTMxNjEyMTEKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChIKDHZvdWNoZXJfbGVucxICEAAKDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigAsB/PgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklMSAdywqBBULyJQZTRUFSQ0jIPgE=",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_7453161211",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 6942523564,
              "shopid": 182559378,
              "name": "AC DAIKIN 1 PK INDONESIA BREEZE FTP25AV149 + PEMASANGAN",
              "label_ids": [
                700020158,
                1049124,
                1059152,
                822059908662278,
                825465608499232,
                844931026694327,
                844931046478970,
                844931064601283,
                298458334,
                298458395,
                1718093079,
                298933384
              ],
              "image": "id-11134207-23020-zw4yfuk0iknvf6",
              "images": [
                "id-11134207-23020-zw4yfuk0iknvf6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1594950934,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100010,
              "brand": "Daikin",
              "cmt_count": 0,
              "flag": 917504,
              "cb_option": 0,
              "item_status": "normal",
              "price": 438900000000,
              "price_min": 438900000000,
              "price_max": 438900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 438900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 50316370102,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 438900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Ddt Elektronik",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 374563500,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiZ0MVa6G4scgncTzrkCt3xsL+qLFww1bF02k/3BMHXjPogAImQ/pJRXjKZEPRg1EY1t1CPP3q1YKCESp03HNrYzO0vHwL9vO0nnVKiPm9OOKPvLBU8f9p03SewT9B2nRxq5bbNV0mR0aifsmZy3YlUw9p4haU1nwZ06fu5JleXv5rRrzYSOzYOGOV0Ch6cZIR52z78lqSTN5YAF2dDtwBeBjBBxH/r3czE8Vf8GTlQYzQlngsrfqKzNX1Tp+xH8rx+oaW6Y5m4KMXz3i2UxtXy+aN9dXOeCxQWSPH2UP1BhhoFDbmrW3Njb7tgue24zCSue0yIjcgiYUPeQBoAfHbiCEzxqrluAmOdLsEyCAWpgXuOjL1bwBXnaJk7RshUuMvh4gws9BwAJLutTFckmA5EPevfflrOr046snOSvX5xqLC/+Ul9mJ6OB6vFLId91e0k1nAoj7guMLbayQkbSOBw/p4LLhwW/YUCP1+x7IrCcYw==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EKzFzbIBGJjtto8BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWjBNVmE2RzRzY2duY1R6cmtDdDN4c0wrcUxGd3cxYkYwMmsvM0JNSFhqUG9nQUltUS9wSlJYaktaRVBSZzFFWTF0MUNQUDNxMVlLQ0VTcDAzSE5yWXpPMHZId0w5dk8wbm5WS2lQbTlPT0tQdkxCVThmOXAwM1Nld1Q5QjJuUnhxNWJiTlYwbVIwYWlmc21aeTNZbFV3OXA0aGFVMW53WjA2ZnU1SmxlWHY1clJyellTT3pZT0dPVjBDaDZjWklSNTJ6NzhscVNUTjVZQUYyZER0d0JlQmpCQnhIL3IzY3pFOFZmOEdUbFFZelFsbmdzcmZxS3pOWDFUcCt4SDhyeCtvYVc2WTVtNEtNWHozaTJVeHRYeSthTjlkWE9lQ3hRV1NQSDJVUDFCaGhvRkRibXJXM05qYjd0Z3VlMjR6Q1N1ZTB5SWpjZ2lZVVBlUUJvQWZIYmlDRXp4cXJsdUFtT2RMc0V5Q0FXcGdYdU9qTDFid0JYbmFKazdSc2hVdU12aDRnd3M5QndBSkx1dFRGY2ttQTVFUGV2ZmZsck9yMDQ2c25PU3ZYNXhxTEMvK1VsOW1KNk9CNnZGTElkOTFlMGsxbkFvajdndU1MYmF5UWtiU09Cdy9wNExMaHdXL1lVQ1AxK3g3SXJDY1l3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBukBAAAAoMQd8T/IDA/gDAHpDAAAAMBm8MY/iQ17FK5H4XqUP5ENMzMzMxgJI0GhDQAAANA1vn1B+A2AgOqD4wywDq2luqIG4g4Mqo0Gx40G1Y4G8JAGyA8b4hmgCkVta3dMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTWk0eU5UZzROakkzTnpZeE9EUTROaklzTFRFc0xURXNNQzR6T0RZM01ESTJOVGd4TkRZeU1USXpOU3cxTGpneE1qQTFNVFExTlRFME9Ea3hNelVzTWk0d09UUTRORGsyTmpjNE1qQTJNVGNzTFRFZFowbkdUQ0RjeHU4T0xacVptVDQxQUFDQVAwb09DUEQzNFFRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJTRGdpcjg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJOFBmaEJCRUFBQUFBQUFBQUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFXZ2NJOFBmaEJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJOFBmaEJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBWWc0SXEvT1dBeEVBQUFBQUFBQUFBR256MU5DVUZHRWl3WEVBQUFEQUc2QU1QM2tBQUFCQVBhYnlQb0VCQUFBQWdNTk9lVUdKQVFBQUFBQVN4MTFCa1FFQUFBQUFSR0NBUVprQkFBQUFZQ29WZ1VHaEFRQUFBS0NTR1dSQnFRRUFBQUFJanh1R1FlZ0JBWUFDbEFPS0FqNHdMakF3TkRrNE9Td3hMakF3TURBd01Dd3hMakF3TURBd01Dd3hMakl4TlRRd01Dd3hMakl4TlRRd01Dd3hMakl4TlRRd01Dd3hMakk1TVRRM09Ka0NNek16TXpNejB6K2hBcTN2TkhqQ1NjRkJ3UUx6MU5DVUZHRWl3Y29DQ3dnQkVmUFUwSlFVWVNMQnlnSUxDQUlSQUFBQUFBQUFBSURaQWdBT0NPYTF4MU5CNFFJQVhHR2VjWlJBUWVrQ1ZLWGdqOUIzbmtHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCs1QS9pQ0NncnhIZU0vd1FNS2QvOHAvcmZsUDhrRHVZUzBxU2swNlQvUkEvVUtEWFdyZ080L2dRUUFBQUJBdnkwSFA0a0VBQUFBSUpvZkFqK1FCSnNEbUFURy83bm9SNkFFbW9UK2x3R29CSURLdGU0QnVBVG14YmRXd0FTQXlyWHVBY2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFCZ1NHOTBQNkVGQUFBQUFBQUE4RCtwQlFBQUFBQUFBUEEvc1FVQUFBQ0FSM0x6UDdrRkFBQUFnRWR5OHovQkJRQUFBSUJIY3ZNL3lRVUFBQUNnNUtuMFB3PT3qGQILFvIZAs0I+hmSBgogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKDQoHaXNfdnNrdRICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KEgoMdm91Y2hlcl9sZW5zEgIQAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIQoPdnNrdV91bmlxdWVfa2V5Eg4iDDBfNjk0MjUyMzU2NLAfwIKAgIiAgYigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 6942523564,
            "shopid": 182559378,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":1075291,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-23020-zw4yfuk0iknvf6\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[700020158,1049124,1059152,822059908662278,825465608499232,844931026694327,844931046478970,844931064601283,298458334,298458395,1718093079,298933384],\"merge_rank\":0,\"model_id\":50316370102,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":1075291,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-23020-zw4yfuk0iknvf6\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[700020158,1049124,1059152,822059908662278,825465608499232,844931026694327,844931046478970,844931064601283,298458334,298458395,1718093079,298933384],\"merge_rank\":0,\"model_id\":50316370102,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EKzFzbIBGJjtto8BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWjBNVmE2RzRzY2duY1R6cmtDdDN4c0wrcUxGd3cxYkYwMmsvM0JNSFhqUG9nQUltUS9wSlJYaktaRVBSZzFFWTF0MUNQUDNxMVlLQ0VTcDAzSE5yWXpPMHZId0w5dk8wbm5WS2lQbTlPT0tQdkxCVThmOXAwM1Nld1Q5QjJuUnhxNWJiTlYwbVIwYWlmc21aeTNZbFV3OXA0aGFVMW53WjA2ZnU1SmxlWHY1clJyellTT3pZT0dPVjBDaDZjWklSNTJ6NzhscVNUTjVZQUYyZER0d0JlQmpCQnhIL3IzY3pFOFZmOEdUbFFZelFsbmdzcmZxS3pOWDFUcCt4SDhyeCtvYVc2WTVtNEtNWHozaTJVeHRYeSthTjlkWE9lQ3hRV1NQSDJVUDFCaGhvRkRibXJXM05qYjd0Z3VlMjR6Q1N1ZTB5SWpjZ2lZVVBlUUJvQWZIYmlDRXp4cXJsdUFtT2RMc0V5Q0FXcGdYdU9qTDFid0JYbmFKazdSc2hVdU12aDRnd3M5QndBSkx1dFRGY2ttQTVFUGV2ZmZsck9yMDQ2c25PU3ZYNXhxTEMvK1VsOW1KNk9CNnZGTElkOTFlMGsxbkFvajdndU1MYmF5UWtiU09Cdy9wNExMaHdXL1lVQ1AxK3g3SXJDY1l3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBukBAAAAoMQd8T/IDA/gDAHpDAAAAMBm8MY/iQ17FK5H4XqUP5ENMzMzMxgJI0GhDQAAANA1vn1B+A2AgOqD4wywDq2luqIG4g4Mqo0Gx40G1Y4G8JAGyA8b4hmgCkVta3dMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTWk0eU5UZzROakkzTnpZeE9EUTROaklzTFRFc0xURXNNQzR6T0RZM01ESTJOVGd4TkRZeU1USXpOU3cxTGpneE1qQTFNVFExTlRFME9Ea3hNelVzTWk0d09UUTRORGsyTmpjNE1qQTJNVGNzTFRFZFowbkdUQ0RjeHU4T0xacVptVDQxQUFDQVAwb09DUEQzNFFRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJTRGdpcjg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJOFBmaEJCRUFBQUFBQUFBQUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFXZ2NJOFBmaEJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJOFBmaEJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBWWc0SXEvT1dBeEVBQUFBQUFBQUFBR256MU5DVUZHRWl3WEVBQUFEQUc2QU1QM2tBQUFCQVBhYnlQb0VCQUFBQWdNTk9lVUdKQVFBQUFBQVN4MTFCa1FFQUFBQUFSR0NBUVprQkFBQUFZQ29WZ1VHaEFRQUFBS0NTR1dSQnFRRUFBQUFJanh1R1FlZ0JBWUFDbEFPS0FqNHdMakF3TkRrNE9Td3hMakF3TURBd01Dd3hMakF3TURBd01Dd3hMakl4TlRRd01Dd3hMakl4TlRRd01Dd3hMakl4TlRRd01Dd3hMakk1TVRRM09Ka0NNek16TXpNejB6K2hBcTN2TkhqQ1NjRkJ3UUx6MU5DVUZHRWl3Y29DQ3dnQkVmUFUwSlFVWVNMQnlnSUxDQUlSQUFBQUFBQUFBSURaQWdBT0NPYTF4MU5CNFFJQVhHR2VjWlJBUWVrQ1ZLWGdqOUIzbmtHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCs1QS9pQ0NncnhIZU0vd1FNS2QvOHAvcmZsUDhrRHVZUzBxU2swNlQvUkEvVUtEWFdyZ080L2dRUUFBQUJBdnkwSFA0a0VBQUFBSUpvZkFqK1FCSnNEbUFURy83bm9SNkFFbW9UK2x3R29CSURLdGU0QnVBVG14YmRXd0FTQXlyWHVBY2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFCZ1NHOTBQNkVGQUFBQUFBQUE4RCtwQlFBQUFBQUFBUEEvc1FVQUFBQ0FSM0x6UDdrRkFBQUFnRWR5OHovQkJRQUFBSUJIY3ZNL3lRVUFBQUNnNUtuMFB3PT3qGQILFvIZAs0I+hmSBgogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKDQoHaXNfdnNrdRICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KEgoMdm91Y2hlcl9sZW5zEgIQAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIQoPdnNrdV91bmlxdWVfa2V5Eg4iDDBfNjk0MjUyMzU2NLAfwIKAgIiAgYigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_6942523564",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 19454704423,
              "shopid": 117080411,
              "name": "AC GREE Inverter 1PK / 1 PK / GWC-09F5S",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                1400285055,
                822120592853526,
                2018618,
                2018619,
                1012763,
                1015914,
                700190087,
                1012729,
                298463379,
                2153644,
                700830032,
                2213652,
                2008656,
                298468389
              ],
              "image": "sg-11134201-22100-gpg12kediniv6a",
              "images": [
                "sg-11134201-22100-gpg12kediniv6a",
                "sg-11134201-22100-id8sk893dnivc6",
                "sg-11134201-22110-xtqj5xhb3akv6b",
                "afb84ca2a2716fbf70f2bd688a7910d9",
                "sg-11134201-22110-cn68z7hb3akvb7",
                "sg-11134201-22110-dy1e94hb3akv2f",
                "c77c22d028ad6a9bda2c75d2b5feb4ba"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1665732988,
              "sold": 0,
              "historical_sold": 13,
              "liked": false,
              "liked_count": 39,
              "view_count": null,
              "catid": 100010,
              "brand": "Gree",
              "cmt_count": 3,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 529900000000,
              "price_min": 529900000000,
              "price_max": 529900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 529900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 156007189306,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 529900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 13,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 13,
                "display_sold_count_text": "13"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "INDO COOL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 393621197,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWibtL7v0h+yPZT+VkatDBMD5Vt0cTaixH42Wn6/5K69cr0WhDHIaie6/7vgKIylonrqemUBFmXbPTh4J7JeMONjMJ1D7U8Qx+V8Hi98ZZ1OllFLer+ItNFoggGNcsV5quJKT4I0WY07o5+8TD0onNtJHaEJgcQBMYABFdF/xZ4xWGBBuhsR4JC/woOoSJE4rVxjCRoaEUfikTWDaVrTNN1tkMB0u2EsVKH51KmNq4t2uezQt3LydTGU2GZQJ+MPcSlbveh5CLdNQjc52z3X+YzBUPJ7M9GiwGsyEGTHbXxCiunovFMowPJ/mOxtKyOKjXrfFpideTy6Z1qNM8sQYuStLId77GQd9xDkPUk++g87GAQQ/8W1g+dX8E3xOH92HzGwGlhIGOJMDODXQRf7iqfyuTW/j6JP266ZnAssH42zj3s+mwh/wmRLEhxHcgySw4alNiTbEZbsCpRgTZyWpIMWSR2EBbTdfK09HcBcO20Jshw==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EM3d2LsBGKrI/JMBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYnRMN3YwaCt5UFpUK1ZrYXREQk1ENVZ0MGNUYWl4SDQyV242LzVLNjljcjBXaERISWFpZTYvN3ZnS0l5bG9ucnFlbVVCRm1YYlBUaDRKN0plTU9Oak1KMUQ3VThReCtWOEhpOThaWjFPbGxGTGVyK0l0TkZvZ2dHTmNzVjVxdUpLVDRJMFdZMDdvNSs4VEQwb25OdEpIYUVKZ2NRQk1ZQUJGZEYveFo0eFdHQkJ1aHNSNEpDL3dvT29TSkU0clZ4akNSb2FFVWZpa1RXRGFWclROTjF0a01CMHUyRXNWS0g1MUttTnE0dDJ1ZXpRdDNMeWRUR1UyR1pRSitNUGNTbGJ2ZWg1Q0xkTlFqYzUyejNYK1l6QlVQSjdNOUdpd0dzeUVHVEhiWHhDaXVub3ZGTW93UEovbU94dEt5T0tqWHJmRnBpZGVUeTZaMXFOTThzUVl1U3RMSWQ3N0dRZDl4RGtQVWsrK2c4N0dBUVEvOFcxZytkWDhFM3hPSDkySHpHd0dsaElHT0pNRE9EWFFSZjdpcWZ5dVRXL2o2SlAyNjZabkFzc0g0MnpqM3MrbXdoL3dtUkxFaHhIY2d5U3c0YWxOaVRiRVpic0NwUmdUWnlXcElNV1NSMkVCYlRkZkswOUhjQmNPMjBKc2h3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABy8ve4PkK6QEAAACgxB3xP/EBAAAA4ABb8T/IDA/gDAHpDAAAAOCDTqU/iQ17FK5H4XqUP5ENMzMzMyLWMEGhDQAAAHCVTopB+A2AgIKEtg+wDoDhlIcB4g4Mqo0Gx40G1Y4G8JAGyA8c4hngCUVud3lMakk0TlRNM01UQXhNRGczTWpNMExDMHhMQzB4TEMweExDMHhMREl1TWpnMU16Y3hNREV3T0RjeU16UXNNU3d4TGpJMU5qRXhNVEU0TkRZek9EZ3lNalFzTFRFc0xURXNNUzR3TURBd01USXpMREV5TGpRd056QTFOelEyT1RnMk16TXhNU3d3TGpRNE5qUTBORFE1TWprMk9EVTJPREl6TEMweEhTc3R1RXNncmFXbkdpMkZReEpBTlFBQWdEOUtFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQktEZ2lxODVZREVRQUFBQUFBQUFBQVNnNElyUE9XQXhFQUFBQUFBQUFBQUVvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpcjg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DS3J6bGdNUkFBQUFBQUFBQUFCU0RnaXM4NVlERVFBQUFBQUFBQUFBV2drSWdJQ0FnSUFFRUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCaURnaXE4NVlERVFBQUFBQUFBUEEvWWc0SXJQT1dBeEVBQUFBQUFBQUFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQnhBQUFBNExZdUN6OTVBQUFBQUpobENEK0JBUUFBQUdEQkEzMUJpUUVBQUFBQW5LQnlRWkVCQUFBQXNDN1NoMEdaQVFBQUFDQzhsWU5Cb1FFQUFBRGdzVTk0UWFrQkFBQUFFSlc5ajBIb0FRR0FBcFFEaWdJK01DNHdNRFExTXpNc01TNHdNREF3TURBc01TNHdNREF3TURBc01TNHlORE0wTkRBc01TNHlORE0wTkRBc01TNHlORE0wTkRBc01TNHpNek0zTWpXWkFxSml0NWh3U0FKQW9RS3Q3elI0d2tuQlFjRUNBQUFBQUFBQUFJREtBZ3NJQVJFQUFBQUFBQUFBQU1vQ0N3Z0NFUUFBQUFBQUFBQ0EyUUlnS1ovQXg2TmJRZUVDQU9oMzFOaHVXMEhwQWkwWFA2aWFLcU5CaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS91UVA4eWk1YndWTGpQOEVEdC9RZEdONmM1VC9KQTE5RVdUV2N1ZWcvMFFQTzdHVXgxaGZ0UDRFRUFBQUFRQnNVQmorSkJBQUFBQ0RBQ3dJL2tBU2JBNWdFelpUcGsvTURvQVN1K3VzaHFBU0FsT3ZjQTdnRTBwbi91Z1BBQklDVTY5d0R5UVI3Rks1SDRYcVVQK0VFZXhTdVIrRjZsRC9wQkFBQUFBQUFBUEEvOFFRQUFBQUFBQUR3UC9rRUFBQUFBQUFBOEQrQkJRQUFBQUFBQVBBL2lRVUFBQUFBQUFEd1A1RUZBQUFBQUFBQThEK1pCUUFBQUlCQ2tYSS9vUVVBQUFBQUFBRHdQNmtGQUFBQUFBQUE4RCt4QlFBQUFLQWg1Zk0vdVFVQUFBQ2dJZVh6UDhFRkFBQUFvQ0hsOHovSkJRQUFBQUR3VnZVL+oZAgwW+hmTBgokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzE5NDU0NzA0NDIzChQKDnNob3BfYmxhY2tsaXN0EgIoAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAxMDEwNAoSCgx2b3VjaGVyX2xlbnMSAhAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCg0KB2lzX3Zza3USAigAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH2wH8+CgICggIGIoAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 19454704423,
            "shopid": 117080411,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":55169710,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-22100-gpg12kediniv6a\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,1400285055,822120592853526,2018618,2018619,1012763,1015914,700190087,1012729,298463379,2153644,700830032,2213652,2008656,298468389],\"merge_rank\":0,\"model_id\":156007189306,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":55169710,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-22100-gpg12kediniv6a\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,1400285055,822120592853526,2018618,2018619,1012763,1015914,700190087,1012729,298463379,2153644,700830032,2213652,2008656,298468389],\"merge_rank\":0,\"model_id\":156007189306,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EM3d2LsBGKrI/JMBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYnRMN3YwaCt5UFpUK1ZrYXREQk1ENVZ0MGNUYWl4SDQyV242LzVLNjljcjBXaERISWFpZTYvN3ZnS0l5bG9ucnFlbVVCRm1YYlBUaDRKN0plTU9Oak1KMUQ3VThReCtWOEhpOThaWjFPbGxGTGVyK0l0TkZvZ2dHTmNzVjVxdUpLVDRJMFdZMDdvNSs4VEQwb25OdEpIYUVKZ2NRQk1ZQUJGZEYveFo0eFdHQkJ1aHNSNEpDL3dvT29TSkU0clZ4akNSb2FFVWZpa1RXRGFWclROTjF0a01CMHUyRXNWS0g1MUttTnE0dDJ1ZXpRdDNMeWRUR1UyR1pRSitNUGNTbGJ2ZWg1Q0xkTlFqYzUyejNYK1l6QlVQSjdNOUdpd0dzeUVHVEhiWHhDaXVub3ZGTW93UEovbU94dEt5T0tqWHJmRnBpZGVUeTZaMXFOTThzUVl1U3RMSWQ3N0dRZDl4RGtQVWsrK2c4N0dBUVEvOFcxZytkWDhFM3hPSDkySHpHd0dsaElHT0pNRE9EWFFSZjdpcWZ5dVRXL2o2SlAyNjZabkFzc0g0MnpqM3MrbXdoL3dtUkxFaHhIY2d5U3c0YWxOaVRiRVpic0NwUmdUWnlXcElNV1NSMkVCYlRkZkswOUhjQmNPMjBKc2h3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABy8ve4PkK6QEAAACgxB3xP/EBAAAA4ABb8T/IDA/gDAHpDAAAAOCDTqU/iQ17FK5H4XqUP5ENMzMzMyLWMEGhDQAAAHCVTopB+A2AgIKEtg+wDoDhlIcB4g4Mqo0Gx40G1Y4G8JAGyA8c4hngCUVud3lMakk0TlRNM01UQXhNRGczTWpNMExDMHhMQzB4TEMweExDMHhMREl1TWpnMU16Y3hNREV3T0RjeU16UXNNU3d4TGpJMU5qRXhNVEU0TkRZek9EZ3lNalFzTFRFc0xURXNNUzR3TURBd01USXpMREV5TGpRd056QTFOelEyT1RnMk16TXhNU3d3TGpRNE5qUTBORFE1TWprMk9EVTJPREl6TEMweEhTc3R1RXNncmFXbkdpMkZReEpBTlFBQWdEOUtFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQktEZ2lxODVZREVRQUFBQUFBQUFBQVNnNElyUE9XQXhFQUFBQUFBQUFBQUVvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpcjg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DS3J6bGdNUkFBQUFBQUFBQUFCU0RnaXM4NVlERVFBQUFBQUFBQUFBV2drSWdJQ0FnSUFFRUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCaURnaXE4NVlERVFBQUFBQUFBUEEvWWc0SXJQT1dBeEVBQUFBQUFBQUFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQnhBQUFBNExZdUN6OTVBQUFBQUpobENEK0JBUUFBQUdEQkEzMUJpUUVBQUFBQW5LQnlRWkVCQUFBQXNDN1NoMEdaQVFBQUFDQzhsWU5Cb1FFQUFBRGdzVTk0UWFrQkFBQUFFSlc5ajBIb0FRR0FBcFFEaWdJK01DNHdNRFExTXpNc01TNHdNREF3TURBc01TNHdNREF3TURBc01TNHlORE0wTkRBc01TNHlORE0wTkRBc01TNHlORE0wTkRBc01TNHpNek0zTWpXWkFxSml0NWh3U0FKQW9RS3Q3elI0d2tuQlFjRUNBQUFBQUFBQUFJREtBZ3NJQVJFQUFBQUFBQUFBQU1vQ0N3Z0NFUUFBQUFBQUFBQ0EyUUlnS1ovQXg2TmJRZUVDQU9oMzFOaHVXMEhwQWkwWFA2aWFLcU5CaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS91UVA4eWk1YndWTGpQOEVEdC9RZEdONmM1VC9KQTE5RVdUV2N1ZWcvMFFQTzdHVXgxaGZ0UDRFRUFBQUFRQnNVQmorSkJBQUFBQ0RBQ3dJL2tBU2JBNWdFelpUcGsvTURvQVN1K3VzaHFBU0FsT3ZjQTdnRTBwbi91Z1BBQklDVTY5d0R5UVI3Rks1SDRYcVVQK0VFZXhTdVIrRjZsRC9wQkFBQUFBQUFBUEEvOFFRQUFBQUFBQUR3UC9rRUFBQUFBQUFBOEQrQkJRQUFBQUFBQVBBL2lRVUFBQUFBQUFEd1A1RUZBQUFBQUFBQThEK1pCUUFBQUlCQ2tYSS9vUVVBQUFBQUFBRHdQNmtGQUFBQUFBQUE4RCt4QlFBQUFLQWg1Zk0vdVFVQUFBQ2dJZVh6UDhFRkFBQUFvQ0hsOHovSkJRQUFBQUR3VnZVL+oZAgwW+hmTBgokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzE5NDU0NzA0NDIzChQKDnNob3BfYmxhY2tsaXN0EgIoAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAxMDEwNAoSCgx2b3VjaGVyX2xlbnMSAhAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCg0KB2lzX3Zza3USAigAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH2wH8+CgICggIGIoAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_19454704423",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 1796529782,
              "shopid": 117080411,
              "name": "AC DAIKIN FLASH Inverter 1/2PK FTKQ15",
              "label_ids": [
                71,
                22,
                1059152,
                1059154,
                822059908662278,
                844931046478970,
                844931064601283,
                844931026694327,
                1400285055,
                1015914,
                700190087,
                822120592853526,
                2018618,
                2018619,
                1012763,
                1012729,
                298893311,
                298463379,
                2153644,
                2213652,
                2008656,
                298468389
              ],
              "image": "590c9065599f87be49cb80de34c2f90f",
              "images": [
                "590c9065599f87be49cb80de34c2f90f",
                "sg-11134201-22100-7bir0ikibbjv29",
                "id-11134207-7r98z-lo4sci0rdwjg77",
                "48cc22abade4ad41f1a863c1796c1190",
                "2f7c31db0110495de43d23a3aa5a1239",
                "74e3f7c7b54f1cc00661f7e4257498e0",
                "735ffdfdf81ee63c3b91006052f9d276"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1546221921,
              "sold": 4,
              "historical_sold": 76,
              "liked": false,
              "liked_count": 388,
              "view_count": null,
              "catid": 100010,
              "brand": "Daikin",
              "cmt_count": 28,
              "flag": 917506,
              "cb_option": 0,
              "item_status": "normal",
              "price": 534900000000,
              "price_min": 534900000000,
              "price_max": 534900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  28,
                  0,
                  0,
                  0,
                  0,
                  28
                ],
                "rcount_with_context": 11,
                "rcount_with_image": 10
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": true,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 534900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 62651261331,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 534900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 76,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 76,
                "display_sold_count_text": "76"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "INDO COOL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 515337882,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWib0uqvRwIv2HjF8FyDD0gN+KpLvBZFQdQ5X4I7CNg21wFST+TeKEg7Spvqu4YKtzJr6oH2/2WrAu8VE36W5oH2xCkFtDkQntVcTFqsevcA603WOIHyoh8ceuFVpGmmAWoNNAS66Ts8qLYnWigW8P1/gerYS7Sj/CnuuZoD8VBfcAoEBzbit82aEOwKiKoUo7juM09hQ83PU+xoeNRzVWeRj6slFxtFBBpxti5PPYJMC7tf829kJBryJxzKeXgGPC4vOYKhcmgWbrRqITBT2CBnYBmgn2cKkzkCf7qVTSQfuY7XlmXKr1VByHBax44LzqfL9f4l+g850eov7VwdH2Bk4ujabGjMivEshsFeawZcMXTWa6ZlVRJeST0WJvJRHuCQ57O76rW+1vsugcI+Cvuuv12DW8rTUWyrX8Bi0mufsuP7oaz6geMvVtr2F1eik9d9FQaXwQ6dLvBpN3UR17MH4QAazSwQ4vHNWWRhOQ3b3gA==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EJrd3fUBGKa4ucIBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYjB1cXZSd0l2MkhqRjhGeUREMGdOK0twTHZCWkZRZFE1WDRJN0NOZzIxd0ZTVCtUZUtFZzdTcHZxdTRZS3R6SnI2b0gyLzJXckF1OFZFMzZXNW9IMnhDa0Z0RGtRbnRWY1RGcXNldmNBNjAzV09JSHlvaDhjZXVGVnBHbW1BV29OTkFTNjZUczhxTFluV2lnVzhQMS9nZXJZUzdTai9DbnV1Wm9EOFZCZmNBb0VCemJpdDgyYUVPd0tpS29VbzdqdU0wOWhRODNQVSt4b2VOUnpWV2VSajZzbEZ4dEZCQnB4dGk1UFBZSk1DN3RmODI5a0pCcnlKeHpLZVhnR1BDNHZPWUtoY21nV2JyUnFJVEJUMkNCbllCbWduMmNLa3prQ2Y3cVZUU1FmdVk3WGxtWEtyMVZCeUhCYXg0NEx6cWZMOWY0bCtnODUwZW92N1Z3ZEgyQms0dWphYkdqTWl2RXNoc0ZlYXdaY01YVFdhNlpsVlJKZVNUMFdKdkpSSHVDUTU3Tzc2clcrMXZzdWdjSStDdnV1djEyRFc4clRVV3lyWDhCaTBtdWZzdVA3b2F6NmdlTXZWdHIyRjFlaWs5ZDlGUWFYd1E2ZEx2QnBOM1VSMTdNSDRRQWF6U3dRNHZITldXUmhPUTNiM2dBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABlOjMwd8K6QEAAACgxB3xP/EBAAAAAGWb8T/IDA/gDAHpDAAAACAyraU/iQ17FK5H4XqUP5ENUrgeheP8AUGhDQAAAIAjG1xB+A2AgJrUyA+wDp/khOcB4g4Mqo0Gx40G1Y4G8JAGyA8d4hmgCkVtb3dMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTUM0ek9UTXhORGMxT1RNMk16WTFPREF5TlN3dE1Td3RNU3d3TGpZME16STNORGc1TWpVMk16SXhNVEVzTXpBdU5UZzBNRE00TkRnNE5EZ3pNamcwTERBdU5EazBPRGc0TXpBeU5qTXlOVFU1TEMweEhaZGZ1MHNnamRuQkF5MmFtWmsrTlFBQWdEOUtEZ2lxODVZREVRQUFBQUFBQUFBQVNnNElyUE9XQXhFQUFBQUFBQUFBQUVvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpcjg1WURFUUFBQUFBQUFBQUFTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJOFBmaEJCRUFBQUFBQUFBQUFGSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DUEQzNFFRUkFBQUFBQUFBQUFCU0RnaXE4NVlERVFBQUFBQUFBQUFBVWc0SXJQT1dBeEVBQUFBQUFBQUFBRklPQ0t2emxnTVJBQUFBQUFBQUFBQmFDUWlBZ0lDQWdBUVFBRm9IQ1BEMzRRUVFBRm9IQ0tyemxnTVFBRm9IQ0t6emxnTVFBRm9IQ0t2emxnTVFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2p3OStFRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJwMnZ6TzlYdUgrTUJ4QUFBQXdBUkFCVDk1QUFBQW9GK3pBVCtCQVFBQUFDQjg1WFpCaVFFQUFBQkEwT3hxUVpFQkFBQUFJUEl0Z2tHWkFRQUFBRUFCNlg1Qm9RRUFBQUJBcGl4eVFha0JBQUFBd05PS2lFSG9BUUdBQXBRRGlnSStNQzR3TURRd05UUXNNUzR3TURBd01EQXNNUzR3TURBd01EQXNNUzR4T0RRNE5ERXNNUzR4T0RRNE5ERXNNUzR4T0RRNE5ERXNNUzR5TmpFNE9EYVpBak16TXpNek05TS9vUUt0N3pSNHdrbkJRY0VDMnZ6TzlYdUgrTURLQWdzSUFSSGEvTTcxZTRmNHdNb0NDd2dDRVFBQUFBQUFBQUNBMlFMZzluSEE1ZVJUUWVFQ2dPZmQvMHhrVGtIcEFqblhQWHA3WHFCQmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvdVFQTTFRd25IdXpqUDhFRE45S0tXU0RoNVQvSkE3V3F3YjJ6V3VnLzBRUExWbU5SUzFIdFA0RUVBQUFBd0hnd0FUK0pCQUFBQUVCT2V2MCtrQVNiQTVnRWhKaWhvUE1Eb0FUdjBMSHhBcWdFZ0pUcjNBTzRCSkhEdVd2QUJJQ1U2OXdEeVFSN0ZLNUg0WHFVUCtFRWV4U3VSK0Y2bEQvcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFBQ3BtbkEvb1FVQUFBQUFBQUR3UDZrRkFBQUFBQUFBOEQreEJRQUFBT0FiOWZJL3VRVUFBQURnRy9YeVA4RUZBQUFBNEJ2MThqL0pCUUFBQUtDdk1QUS/qGQILFfIZAs0I+hmSBgpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoUCg51c2VyX2JsYWNrbGlzdBICKAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoNCgdpc192c2t1EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2Fkcwr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF8xNzk2NTI5NzgyCiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAxMDEwNLAfwIKAgKiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 1796529782,
            "shopid": 117080411,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":2344235,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"590c9065599f87be49cb80de34c2f90f\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[71,22,1059152,1059154,822059908662278,844931046478970,844931064601283,844931026694327,1400285055,1015914,700190087,822120592853526,2018618,2018619,1012763,1012729,298893311,298463379,2153644,2213652,2008656,298468389],\"merge_rank\":0,\"model_id\":62651261331,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":2344235,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"590c9065599f87be49cb80de34c2f90f\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[71,22,1059152,1059154,822059908662278,844931046478970,844931064601283,844931026694327,1400285055,1015914,700190087,822120592853526,2018618,2018619,1012763,1012729,298893311,298463379,2153644,2213652,2008656,298468389],\"merge_rank\":0,\"model_id\":62651261331,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EJrd3fUBGKa4ucIBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYjB1cXZSd0l2MkhqRjhGeUREMGdOK0twTHZCWkZRZFE1WDRJN0NOZzIxd0ZTVCtUZUtFZzdTcHZxdTRZS3R6SnI2b0gyLzJXckF1OFZFMzZXNW9IMnhDa0Z0RGtRbnRWY1RGcXNldmNBNjAzV09JSHlvaDhjZXVGVnBHbW1BV29OTkFTNjZUczhxTFluV2lnVzhQMS9nZXJZUzdTai9DbnV1Wm9EOFZCZmNBb0VCemJpdDgyYUVPd0tpS29VbzdqdU0wOWhRODNQVSt4b2VOUnpWV2VSajZzbEZ4dEZCQnB4dGk1UFBZSk1DN3RmODI5a0pCcnlKeHpLZVhnR1BDNHZPWUtoY21nV2JyUnFJVEJUMkNCbllCbWduMmNLa3prQ2Y3cVZUU1FmdVk3WGxtWEtyMVZCeUhCYXg0NEx6cWZMOWY0bCtnODUwZW92N1Z3ZEgyQms0dWphYkdqTWl2RXNoc0ZlYXdaY01YVFdhNlpsVlJKZVNUMFdKdkpSSHVDUTU3Tzc2clcrMXZzdWdjSStDdnV1djEyRFc4clRVV3lyWDhCaTBtdWZzdVA3b2F6NmdlTXZWdHIyRjFlaWs5ZDlGUWFYd1E2ZEx2QnBOM1VSMTdNSDRRQWF6U3dRNHZITldXUmhPUTNiM2dBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABlOjMwd8K6QEAAACgxB3xP/EBAAAAAGWb8T/IDA/gDAHpDAAAACAyraU/iQ17FK5H4XqUP5ENUrgeheP8AUGhDQAAAIAjG1xB+A2AgJrUyA+wDp/khOcB4g4Mqo0Gx40G1Y4G8JAGyA8d4hmgCkVtb3dMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTUM0ek9UTXhORGMxT1RNMk16WTFPREF5TlN3dE1Td3RNU3d3TGpZME16STNORGc1TWpVMk16SXhNVEVzTXpBdU5UZzBNRE00TkRnNE5EZ3pNamcwTERBdU5EazBPRGc0TXpBeU5qTXlOVFU1TEMweEhaZGZ1MHNnamRuQkF5MmFtWmsrTlFBQWdEOUtEZ2lxODVZREVRQUFBQUFBQUFBQVNnNElyUE9XQXhFQUFBQUFBQUFBQUVvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpcjg1WURFUUFBQUFBQUFBQUFTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJOFBmaEJCRUFBQUFBQUFBQUFGSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DUEQzNFFRUkFBQUFBQUFBQUFCU0RnaXE4NVlERVFBQUFBQUFBQUFBVWc0SXJQT1dBeEVBQUFBQUFBQUFBRklPQ0t2emxnTVJBQUFBQUFBQUFBQmFDUWlBZ0lDQWdBUVFBRm9IQ1BEMzRRUVFBRm9IQ0tyemxnTVFBRm9IQ0t6emxnTVFBRm9IQ0t2emxnTVFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2p3OStFRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJwMnZ6TzlYdUgrTUJ4QUFBQXdBUkFCVDk1QUFBQW9GK3pBVCtCQVFBQUFDQjg1WFpCaVFFQUFBQkEwT3hxUVpFQkFBQUFJUEl0Z2tHWkFRQUFBRUFCNlg1Qm9RRUFBQUJBcGl4eVFha0JBQUFBd05PS2lFSG9BUUdBQXBRRGlnSStNQzR3TURRd05UUXNNUzR3TURBd01EQXNNUzR3TURBd01EQXNNUzR4T0RRNE5ERXNNUzR4T0RRNE5ERXNNUzR4T0RRNE5ERXNNUzR5TmpFNE9EYVpBak16TXpNek05TS9vUUt0N3pSNHdrbkJRY0VDMnZ6TzlYdUgrTURLQWdzSUFSSGEvTTcxZTRmNHdNb0NDd2dDRVFBQUFBQUFBQUNBMlFMZzluSEE1ZVJUUWVFQ2dPZmQvMHhrVGtIcEFqblhQWHA3WHFCQmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvdVFQTTFRd25IdXpqUDhFRE45S0tXU0RoNVQvSkE3V3F3YjJ6V3VnLzBRUExWbU5SUzFIdFA0RUVBQUFBd0hnd0FUK0pCQUFBQUVCT2V2MCtrQVNiQTVnRWhKaWhvUE1Eb0FUdjBMSHhBcWdFZ0pUcjNBTzRCSkhEdVd2QUJJQ1U2OXdEeVFSN0ZLNUg0WHFVUCtFRWV4U3VSK0Y2bEQvcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFBQ3BtbkEvb1FVQUFBQUFBQUR3UDZrRkFBQUFBQUFBOEQreEJRQUFBT0FiOWZJL3VRVUFBQURnRy9YeVA4RUZBQUFBNEJ2MThqL0pCUUFBQUtDdk1QUS/qGQILFfIZAs0I+hmSBgpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoUCg51c2VyX2JsYWNrbGlzdBICKAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoNCgdpc192c2t1EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2Fkcwr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF8xNzk2NTI5NzgyCiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAxMDEwNLAfwIKAgKiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_1796529782",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 16995576979,
              "shopid": 727701368,
              "name": "GREE AC 1/2 PK Inverter  F5S Series - ac 1/2 pk - GWC-05F5S - With Smart Cleaner System & Power Drop",
              "label_ids": [
                1002164,
                844931064601283,
                1015914,
                700190087,
                1400285055,
                1918643,
                1823711,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                837860934119952,
                1400620020,
                298813370,
                2018618,
                1993653,
                1718087960,
                1428713,
                1012729,
                298933384,
                1718093079,
                298463379,
                2153644,
                700830032,
                844931086908638,
                2213652,
                2068629,
                298938357,
                2008656,
                1718088045,
                298938368,
                2098629,
                2098628,
                298468389
              ],
              "image": "id-11134207-8224q-mgneve3ia0p570",
              "images": [
                "id-11134207-8224q-mgneve3ia0p570",
                "id-11134201-7qul1-lk4zlxid5lia51",
                "id-11134201-7qul7-lk4zlxp0vuoy34",
                "id-11134201-7quky-lk4zlya4101r9b",
                "id-11134201-7qul2-lk4zlymliqf79e",
                "id-11134201-7qul0-lk4zlyvr5bwf46",
                "id-11134201-7qul6-lk4zlz38uddv74"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1691554477,
              "sold": 5,
              "historical_sold": 64,
              "liked": false,
              "liked_count": 252,
              "view_count": null,
              "catid": 100010,
              "brand": "Gree",
              "cmt_count": 24,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 500900000000,
              "price_min": 500900000000,
              "price_max": 500900000000,
              "price_min_before_discount": 659900000000,
              "price_max_before_discount": 659900000000,
              "hidden_price_display": null,
              "price_before_discount": 659900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-24%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "c3fc0cf9a6d0d0f1861059ae566473b3",
                  "thumb_url": "90e391017187313554fb8b6434909d5c",
                  "duration": 48,
                  "version": 2,
                  "vid": "id-11110105-6jt7d-lkht80p6zfdl33",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6jt7d-lkht80p6zfdl33.16003251726847684.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6jt7d-lkht80p6zfdl33.16003251726847684.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6jt7d-lkht80p6zfdl33.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.916666666666667,
                "rating_count": [
                  24,
                  0,
                  0,
                  0,
                  2,
                  22
                ],
                "rcount_with_context": 7,
                "rcount_with_image": 9
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp1,6JT X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 225743330361345,
                "price": 499900000000,
                "strikethrough_price": 659900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1326486502916096,
                "discount_text": "-24%",
                "model_id": 138703537346,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1326486502916096,
                  "voucher_code": "EURENEW1",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1767589200,
                    "end_time": 1774976340,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 659900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 64,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 64,
                "display_sold_count_text": "64"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp1,7JT x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Eroc Electronic Indonesia",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 541210552,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9tbIGTwTTM9mmFQaSB5kZvAMLFN3o48UQMVovGWO6ZyC+olSpYW5XyZ4RDjupBRh3ODgBXTAivupJpInhE1qjTUPyZxg/VqMCvOxuMLDHB3XA946CGOIbNC2oz3EtFDNHMzR6QyH44ayWWo3uDzFq9ofZmM5iS7a2EAe2Q2H+ddrWLvKEWV05dJtCF7ofHp3KHgRWJuLvlPIlBRlqcWOwjSikivR3+6mq8/+OilzSuesyZLfqm4XiXSJZz4VmEuEWQn0hp8+WOf/+nLSS3fqSxI1lijJ5nADRRUZUwZe3mAlHO6KHgi+WaHJjU6ZZiop9Nbw+8GVS4ETniCHJUWOWjIT0yKelzt0rf0Nozs2o8cP0WwFS300+BhW1fw4E9JvYVxsZD/VK22k01STk5iX0ADqjvo4AqW0KgfMFe1kpDHvVpAlV28jCyuh00DoL6junfNBWlbK74piitGbiiQ0BmQmqAJ0FNWzwUIC83V9owlC13+3C3QiWCw39o+dh8dWg==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELjviIICGLvvxcgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeUMrb2xTcFlXNVh5WjRSRGp1cEJSaDNPRGdCWFRBaXZ1cEpwSW5oRTFxalRVUHlaeGcvVnFNQ3ZPeHVNTERIQjNYQTk0NkNHT0liTkMyb3ozRXRGRE5ITXpSNlF5SDQ0YXlXV28zdUR6RnE5b2ZabU01aVM3YTJFQWUyUTJIK2RkcldMdktFV1YwNWRKdENGN29mSHAzS0hnUldKdUx2bFBJbEJSbHFjV093alNpa2l2UjMrNm1xOC8rT2lselN1ZXN5WkxmcW00WGlYU0paejRWbUV1RVdRbjBocDgrV09mLytuTFNTM2ZxU3hJMWxpako1bkFEUlJVWlV3WmUzbUFsSE82S0hnaStXYUhKalU2Wlppb3A5TmJ3KzhHVlM0RVRuaUNISlVXT1dqSVQweUtlbHp0MHJmME5venMybzhjUDBXd0ZTMzAwK0JoVzFmdzRFOUp2WVZ4c1pEL1ZLMjJrMDFTVGs1aVgwQURxanZvNEFxVzBLZ2ZNRmUxa3BESHZWcEFsVjI4akN5dWgwMERvTDZqdW5mTkJXbGJLNzRwaWl0R2JpaVEwQm1RbXFBSjBGTld6d1VJQzgzVjlvd2xDMTMrM0MzUWlXQ3czOW8rZGg4ZFdnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABsuqAgqoE6QEAAADglSXxP/EBAAAAAIpK8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENexSuR+F6lD+hDQAAAAAAAPA/+A2AgMDojQ6wDsSyvfYB4g4Mqo0Gx40G1Y4G8JAGyA8e4hmwCkVtSXdMalUwTmpRNExDMHhMQzB4TEMweExDMHhMREF1TlRVeUxERXNNQzQyTnprMk5UVTRNamM1TlRZeE16UTRMREF1T1N3dE1Td3dMalF5TWpBNE1UazJNREl4TVRNME9UYzFMQzB4TERBdU5UZ3hOVFUxTWprMU56TTFPVFkzTWl3dE1SM2lMOXhMSUk2dTRnWXRIZVlMUHpVQUFJQS9PZXFRKzNGcWl1VkJRYTh0R3Q1d25rRkNTZzRJcS9PV0F4RUFBQUFBQUFBQUFFb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSENLcnpsZ01RQUZvSENLenpsZ01RQUZvSENLdnpsZ01RQUZvSkNJQ0FnSUNBQkJBQVlnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJpRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJpRGdpcTg1WURFUUFBQUFBQUFQQS9jUUFBQUtCak9SUS9lUUFBQU1BVHF2TStnUUVBQUFDQXJzQ0RRWWtCQUFBQVlEVlRTRUdSQVFBQUFOYmhSWVZCbVFFQUFBQkFoYXFLUWFFQkFBQUFvRjFyVUVHcEFRQUFBUFR3dDR4QjZBRUJnQUtVQTRvQ1BqQXVNREEwT1RFeExERXVNREF3TURBd0xERXVNREF3TURBd0xERXVNVGMxTWpNd0xERXVNVGMxTWpNd0xERXVNakF6TlRJMUxERXVNamcwTmpJem1RSkVpMnpuKzZuaFA2RUNyZTgwZU1KSndVSEtBZ3NJQWhIN3FmSFNUV0p3djhvQ0N3Z0JFYUhiU3hxamRaUy8yUUlBeXZmUWV4ZG1RZUVDUVA4K1ZHVXlMMEhwQWpOL0tLUzBMNlJCaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9tUVBxa1B0eGFvcmxRYUVEcnkwYTNuQ2VRVUs1QS9ibmZYTnpZZVUvd1FPL2xES2N2VkxuUDhrRHo1dXBaYmNBNmovUkF6TkVCL2lZbXU0LytnTUpDZ1ZKYzA1UVFoQUErZ01MQ2dkU2IybFVhV1Z5RUFQNkF3MEtDVTl5WkdWeVZHbGxjaEFDK2dNUkNnMUpkR1Z0VUhKcFkyVlVhV1Z5RUFPQkJBQUFBS0JQckJBL2lRUUFBQURneEtVTFA1QUVtd09ZQktqUm5kWDNVNkFFZ1BLTHFBbW9CSUR5aTZnSndBU0E4b3VvQ2NrRWV4U3VSK0Y2bEQvaEJIc1Vya2ZoZXBRLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBQWdWaDEwUDZFRkFBQUFBQUFBOEQrcEJRQUFBQUFBQVBBL3NRVUFBQUFndnMzeVA3a0ZBQUFBSUw3TjhqL0JCUUFBQU9DalFmTS95UVVBQUFEQTBJMzBQdz096hkEt03ETfoZkwYKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoSCgx2b3VjaGVyX2xlbnMSAhAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzE2OTk1NTc2OTc5sB+AgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0jIPgE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": null
            },
            "itemid": 16995576979,
            "shopid": 727701368,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mgneve3ia0p570\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,844931064601283,1015914,700190087,1400285055,1918643,1823711,1059152,1049122,822059908662278,825465608499232,825465608497696,837860934119952,1400620020,298813370,2018618,1993653,1718087960,1428713,1012729,298933384,1718093079,298463379,2153644,700830032,844931086908638,2213652,2068629,298938357,2008656,1718088045,298938368,2098629,2098628,298468389],\"merge_rank\":0,\"model_id\":138703537346,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mgneve3ia0p570\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,844931064601283,1015914,700190087,1400285055,1918643,1823711,1059152,1049122,822059908662278,825465608499232,825465608497696,837860934119952,1400620020,298813370,2018618,1993653,1718087960,1428713,1012729,298933384,1718093079,298463379,2153644,700830032,844931086908638,2213652,2068629,298938357,2008656,1718088045,298938368,2098629,2098628,298468389],\"merge_rank\":0,\"model_id\":138703537346,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELjviIICGLvvxcgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeUMrb2xTcFlXNVh5WjRSRGp1cEJSaDNPRGdCWFRBaXZ1cEpwSW5oRTFxalRVUHlaeGcvVnFNQ3ZPeHVNTERIQjNYQTk0NkNHT0liTkMyb3ozRXRGRE5ITXpSNlF5SDQ0YXlXV28zdUR6RnE5b2ZabU01aVM3YTJFQWUyUTJIK2RkcldMdktFV1YwNWRKdENGN29mSHAzS0hnUldKdUx2bFBJbEJSbHFjV093alNpa2l2UjMrNm1xOC8rT2lselN1ZXN5WkxmcW00WGlYU0paejRWbUV1RVdRbjBocDgrV09mLytuTFNTM2ZxU3hJMWxpako1bkFEUlJVWlV3WmUzbUFsSE82S0hnaStXYUhKalU2Wlppb3A5TmJ3KzhHVlM0RVRuaUNISlVXT1dqSVQweUtlbHp0MHJmME5venMybzhjUDBXd0ZTMzAwK0JoVzFmdzRFOUp2WVZ4c1pEL1ZLMjJrMDFTVGs1aVgwQURxanZvNEFxVzBLZ2ZNRmUxa3BESHZWcEFsVjI4akN5dWgwMERvTDZqdW5mTkJXbGJLNzRwaWl0R2JpaVEwQm1RbXFBSjBGTld6d1VJQzgzVjlvd2xDMTMrM0MzUWlXQ3czOW8rZGg4ZFdnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABsuqAgqoE6QEAAADglSXxP/EBAAAAAIpK8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENexSuR+F6lD+hDQAAAAAAAPA/+A2AgMDojQ6wDsSyvfYB4g4Mqo0Gx40G1Y4G8JAGyA8e4hmwCkVtSXdMalUwTmpRNExDMHhMQzB4TEMweExDMHhMREF1TlRVeUxERXNNQzQyTnprMk5UVTRNamM1TlRZeE16UTRMREF1T1N3dE1Td3dMalF5TWpBNE1UazJNREl4TVRNME9UYzFMQzB4TERBdU5UZ3hOVFUxTWprMU56TTFPVFkzTWl3dE1SM2lMOXhMSUk2dTRnWXRIZVlMUHpVQUFJQS9PZXFRKzNGcWl1VkJRYTh0R3Q1d25rRkNTZzRJcS9PV0F4RUFBQUFBQUFBQUFFb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSENLcnpsZ01RQUZvSENLenpsZ01RQUZvSENLdnpsZ01RQUZvSkNJQ0FnSUNBQkJBQVlnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJpRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJpRGdpcTg1WURFUUFBQUFBQUFQQS9jUUFBQUtCak9SUS9lUUFBQU1BVHF2TStnUUVBQUFDQXJzQ0RRWWtCQUFBQVlEVlRTRUdSQVFBQUFOYmhSWVZCbVFFQUFBQkFoYXFLUWFFQkFBQUFvRjFyVUVHcEFRQUFBUFR3dDR4QjZBRUJnQUtVQTRvQ1BqQXVNREEwT1RFeExERXVNREF3TURBd0xERXVNREF3TURBd0xERXVNVGMxTWpNd0xERXVNVGMxTWpNd0xERXVNakF6TlRJMUxERXVNamcwTmpJem1RSkVpMnpuKzZuaFA2RUNyZTgwZU1KSndVSEtBZ3NJQWhIN3FmSFNUV0p3djhvQ0N3Z0JFYUhiU3hxamRaUy8yUUlBeXZmUWV4ZG1RZUVDUVA4K1ZHVXlMMEhwQWpOL0tLUzBMNlJCaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9tUVBxa1B0eGFvcmxRYUVEcnkwYTNuQ2VRVUs1QS9ibmZYTnpZZVUvd1FPL2xES2N2VkxuUDhrRHo1dXBaYmNBNmovUkF6TkVCL2lZbXU0LytnTUpDZ1ZKYzA1UVFoQUErZ01MQ2dkU2IybFVhV1Z5RUFQNkF3MEtDVTl5WkdWeVZHbGxjaEFDK2dNUkNnMUpkR1Z0VUhKcFkyVlVhV1Z5RUFPQkJBQUFBS0JQckJBL2lRUUFBQURneEtVTFA1QUVtd09ZQktqUm5kWDNVNkFFZ1BLTHFBbW9CSUR5aTZnSndBU0E4b3VvQ2NrRWV4U3VSK0Y2bEQvaEJIc1Vya2ZoZXBRLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBQWdWaDEwUDZFRkFBQUFBQUFBOEQrcEJRQUFBQUFBQVBBL3NRVUFBQUFndnMzeVA3a0ZBQUFBSUw3TjhqL0JCUUFBQU9DalFmTS95UVVBQUFEQTBJMzBQdz096hkEt03ETfoZkwYKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoSCgx2b3VjaGVyX2xlbnMSAhAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzE2OTk1NTc2OTc5sB+AgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0jIPgE=",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_16995576979",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26473237909,
              "shopid": 650416133,
              "name": "AC WINDOW REIWA CW-0501RA 0.5 PK - 1 PK GARANSI RESMI",
              "label_ids": [
                844931064601283,
                298463379,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                1718093079,
                1213641,
                2018619,
                1015914,
                700190087,
                825465608497696,
                822120592853526,
                2023641,
                298933384,
                1400285055,
                825465608492064,
                2048661,
                2048660,
                700765096,
                2108629,
                298468389,
                1718093084,
                1718088045,
                298458396,
                298458398,
                1718088044,
                298468390
              ],
              "image": "id-11134207-7ra0u-mcxe88k5n9a081",
              "images": [
                "id-11134207-7ra0u-mcxe88k5n9a081",
                "id-11134207-7ra0h-mcxe88k5onug0a",
                "id-11134207-7ra0m-mcxe88k5q2ewf4",
                "id-11134207-7ra0r-mcxe88k5rgzc5d",
                "id-11134207-7ra0r-mcxe88k5svjsa7",
                "id-11134207-7ra0j-mcxe88k5ua48f7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1736572414,
              "sold": 7,
              "historical_sold": 110,
              "liked": false,
              "liked_count": 82,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 38,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199900000000,
              "price_min": 199900000000,
              "price_max": 199900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Type",
                  "options": [
                    "ac reiwa 0,5 1/2pk",
                    "ac reiwa 1pk",
                    "1/2pk + pemasangan",
                    "1pk + pemasangan"
                  ],
                  "images": [
                    "id-11134207-7ra0h-mcxe88k5onug0a",
                    "id-11134207-7ra0r-mcxe88k5svjsa7",
                    "id-11134207-7ra0s-mcxe88k5yhtk3a",
                    "id-11134207-7ra0i-mcxe88k5x394d9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.842105263157895,
                "rating_count": [
                  38,
                  1,
                  0,
                  0,
                  2,
                  35
                ],
                "rcount_with_context": 13,
                "rcount_with_image": 6
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 49509974755,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 110,
                "rounded_local_monthly_sold_count": 7,
                "local_monthly_sold_count_text": "7",
                "rounded_display_sold_count": 110,
                "display_sold_count_text": "110"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Pelangi_Elektronik",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                1000,
                1000,
                91,
                97,
                0,
                1000,
                4
              ]
            },
            "itemid": 26473237909,
            "shopid": 650416133,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0u-mcxe88k5n9a081\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1059154,1059152,822059908662278,825465608499232,1718093079,1213641,2018619,1015914,700190087,825465608497696,822120592853526,2023641,298933384,1400285055,825465608492064,2048661,2048660,700765096,2108629,298468389,1718093084,1718088045,298458396,298458398,1718088044,298468390],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":269,\"model_id\":49509974755,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,91,97,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0u-mcxe88k5n9a081\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1059154,1059152,822059908662278,825465608499232,1718093079,1213641,2018619,1015914,700190087,825465608497696,822120592853526,2023641,298933384,1400285055,825465608492064,2048661,2048660,700765096,2108629,298468389,1718093084,1718088045,298458396,298458398,1718088044,298468390],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":269,\"model_id\":49509974755,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,91,97,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26473237909",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28116595327,
              "shopid": 85961994,
              "name": "REIWA AC Window 1 PK CW-0901RA AC Low Watt 1PK",
              "label_ids": [
                13,
                38,
                39,
                47,
                1000501,
                1000509,
                1400095067,
                1400285005,
                844931064601283,
                1400066568,
                1718093079,
                837860934119952,
                834403089593352,
                822059908662278,
                822120592853526,
                1918643,
                1015914,
                700190087,
                1000031,
                825465608499232,
                825465608494624,
                1428713,
                1718087960,
                2018618,
                2018619,
                700005490,
                1012729,
                1400285055,
                825465608497696,
                700005495,
                2153644,
                2108629,
                1400025118,
                2213652,
                298463379,
                1049120,
                1059152,
                1049122,
                2008656,
                1718088046,
                1718093085,
                1718088045,
                700585042,
                298468389,
                997921049,
                997921050
              ],
              "image": "id-11134207-7rase-m31ugagzh1apf6",
              "images": [
                "id-11134207-7rase-m31ugagzh1apf6",
                "id-11134207-7rasj-m27uagbz4u3n24",
                "sg-11134201-7renp-m27tk33g5due96",
                "sg-11134201-7renf-m27tk3dpoyt78e",
                "sg-11134201-7req4-m27tk41aqgg02e",
                "id-11134207-7rasa-m27uagbz68o3ce",
                "id-11134207-7rasc-m27uagbz7n8jca",
                "id-11134207-7rasi-m27uagbz91sz4e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1730791925,
              "sold": 3,
              "historical_sold": 34,
              "liked": false,
              "liked_count": 58,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 15,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 214900000000,
              "price_min": 214900000000,
              "price_max": 214900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke18-m2bzhfqmsjpca8.16000081731042310.mp4",
                  "thumb_url": "id-11110105-7rasd-m2bzhjv2t2rk92",
                  "duration": 55,
                  "version": 2,
                  "vid": "id-11110105-6ke18-m2bzhfqmsjpca8",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke18-m2bzhfqmsjpca8.16000081731042310.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke18-m2bzhfqmsjpca8.16000081731042310.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke18-m2bzhfqmsjpca8.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Ukuran",
                  "options": [
                    "0.5 PK",
                    "1 PK"
                  ],
                  "images": [
                    "id-11134207-7rask-m27uagbzagdf40",
                    "id-11134207-7rasl-m27uagbzbuxvb9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.866666666666666,
                "rating_count": [
                  15,
                  0,
                  0,
                  0,
                  2,
                  13
                ],
                "rcount_with_context": 7,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 214900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 246955333674,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 214900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 34,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 34,
                "display_sold_count_text": "34"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": " Sajun Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                1000,
                1000,
                97,
                0,
                1000,
                4
              ]
            },
            "itemid": 28116595327,
            "shopid": 85961994,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rase-m31ugagzh1apf6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1718093079,837860934119952,834403089593352,822059908662278,822120592853526,1918643,1015914,700190087,1000031,825465608499232,825465608494624,1428713,1718087960,2018618,2018619,700005490,1012729,1400285055,825465608497696,700005495,2153644,2108629,1400025118,2213652,298463379,1049120,1059152,1049122,2008656,1718088046,1718093085,1718088045,700585042,298468389,997921049,997921050],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":2231,\"model_id\":246955333674,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,97,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rase-m31ugagzh1apf6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1718093079,837860934119952,834403089593352,822059908662278,822120592853526,1918643,1015914,700190087,1000031,825465608499232,825465608494624,1428713,1718087960,2018618,2018619,700005490,1012729,1400285055,825465608497696,700005495,2153644,2108629,1400025118,2213652,298463379,1049120,1059152,1049122,2008656,1718088046,1718093085,1718088045,700585042,298468389,997921049,997921050],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":2231,\"model_id\":246955333674,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,97,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28116595327",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24471362274,
              "shopid": 38711361,
              "name": "REIWA AC Window 0501RA 1/2 PK CW-0501RA 0,5 PK",
              "label_ids": [
                844931064601283,
                1213641,
                1718093079,
                1015914,
                700190087,
                1000031,
                1400285055,
                2018619,
                2023641,
                1059154,
                1059152,
                822059908662278,
                825465608492064,
                825465608499232,
                825465608497696,
                837860934119952,
                298463379,
                844931086908638,
                2048660,
                2048661,
                2068629,
                298938357,
                2108629,
                2098629,
                1718088044,
                1718088045,
                298468390,
                298938368,
                2098628,
                298458398,
                298468389,
                298458396,
                1718093084
              ],
              "image": "id-11134207-7r991-ltf02zrgl0rn7e",
              "images": [
                "id-11134207-7r991-ltf02zrgl0rn7e",
                "id-11134207-7r990-lygszf1ks8io50",
                "id-11134207-7r98t-lygszf1ktn3452",
                "id-11134207-7r98t-lygszf1kv1nk9b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1711612105,
              "sold": 2,
              "historical_sold": 61,
              "liked": false,
              "liked_count": 61,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 15,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194900000000,
              "price_min": 194900000000,
              "price_max": 194900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke14-lygsxzfob1hh9f.16000081722617020.mp4",
                  "thumb_url": "id-11110105-7r98r-lygsy0t2b4ac06",
                  "duration": 34,
                  "version": 2,
                  "vid": "id-11110105-6ke14-lygsxzfob1hh9f",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke14-lygsxzfob1hh9f.default.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-lygsxzfob1hh9f.default.mp4",
                      "width": 478,
                      "height": 850
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-lygsxzfob1hh9f.default.mp4",
                    "width": 478,
                    "height": 850
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.913043478260869,
                "rating_count": [
                  23,
                  0,
                  0,
                  0,
                  2,
                  21
                ],
                "rcount_with_context": 6,
                "rcount_with_image": 5
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp649RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 194900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 217400997157,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 194900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 61,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 61,
                "display_sold_count_text": "61"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp649RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "TERMINAL7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                0,
                1000,
                1000,
                1000
              ]
            },
            "itemid": 24471362274,
            "shopid": 38711361,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r991-ltf02zrgl0rn7e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1718093079,1015914,700190087,1000031,1400285055,2018619,2023641,1059154,1059152,822059908662278,825465608492064,825465608499232,825465608497696,837860934119952,298463379,844931086908638,2048660,2048661,2068629,298938357,2108629,2098629,1718088044,1718088045,298468390,298938368,2098628,298458398,298468389,298458396,1718093084],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":2020,\"model_id\":217400997157,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r991-ltf02zrgl0rn7e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1718093079,1015914,700190087,1000031,1400285055,2018619,2023641,1059154,1059152,822059908662278,825465608492064,825465608499232,825465608497696,837860934119952,298463379,844931086908638,2048660,2048661,2068629,298938357,2108629,2098629,1718088044,1718088045,298468390,298938368,2098628,298458398,298468389,298458396,1718093084],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":2020,\"model_id\":217400997157,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24471362274",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26776733596,
              "shopid": 1202842051,
              "name": "WINDOW PORTABLE Ac 1/2 Pk 1Pk Hemat Tanpa Pipa. Pakai Freon R32 Ac Window 1/2-1Pk",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1718093079,
                1400285055,
                2018619,
                2023641,
                1015914,
                700190087,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                837860934119952,
                700830032,
                298933384,
                2068629,
                298938357,
                2108629,
                298463379,
                298468389,
                298938368,
                1718088045,
                2098629,
                2098628
              ],
              "image": "id-11134207-7rbk9-m96ovos2nb3vab",
              "images": [
                "id-11134207-7rbk9-m96ovos2nb3vab",
                "id-11134207-7rbk9-m96ovoplkg9qf1",
                "id-11134207-7rbka-m96ovopl500ue4",
                "id-11134207-7rbk8-m96ovopkpkb19b",
                "id-11134207-7rbkc-m96ovopkpk31de",
                "id-11134207-7rbkd-m96ovopkpjrye4",
                "id-11134207-7rbkb-m96ovoqonxb29f",
                "id-11134207-7rbk9-m96ovoqonxmj59",
                "id-11134207-7rbk0-m96ovos2lwjf59"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1740016809,
              "sold": 0,
              "historical_sold": 77,
              "liked": false,
              "liked_count": 542,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 31,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 198400000000,
              "price_min": 198400000000,
              "price_max": 198400000000,
              "price_min_before_discount": 9999999900000,
              "price_max_before_discount": 9999999900000,
              "hidden_price_display": null,
              "price_before_discount": 9999999900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": ">90% off",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6knaw-m6g85mqdrgyvac.16000101740015991.mp4",
                  "thumb_url": "id-11110105-6knaw-m6g85mqdrgyvac_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6knaw-m6g85mqdrgyvac",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knaw-m6g85mqdrgyvac.default.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knaw-m6g85mqdrgyvac.default.mp4",
                      "width": 540,
                      "height": 676
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knaw-m6g85mqdrgyvac.default.mp4",
                    "width": 540,
                    "height": 676
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "JENIS",
                  "options": [
                    "VE 1/2PK"
                  ],
                  "images": [
                    "id-11134207-7rbkb-m7q6t4wdw2aqf0"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 3.870967741935484,
                "rating_count": [
                  31,
                  4,
                  1,
                  7,
                  2,
                  17
                ],
                "rcount_with_context": 12,
                "rcount_with_image": 9
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 355408548217271,
                "bundle_deal_label": "Pilih 3, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp658RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 814390400581632,
                "price": 197400000000,
                "strikethrough_price": 9999999900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1319336674213908,
                "discount_text": ">90% off",
                "model_id": 227393871835,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1319336674213908,
                  "voucher_code": "VARI45954",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1766736420,
                    "end_time": 1774803540,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 9999999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 77,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 77,
                "display_sold_count_text": "77"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp658RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Variety Electronic",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000,
                88,
                97
              ]
            },
            "itemid": 26776733596,
            "shopid": 1202842051,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-m96ovos2nb3vab\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1718093079,1400285055,2018619,2023641,1015914,700190087,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,700830032,298933384,2068629,298938357,2108629,298463379,298468389,298938368,1718088045,2098629,2098628],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":1032,\"model_id\":227393871835,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-m96ovos2nb3vab\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1718093079,1400285055,2018619,2023641,1015914,700190087,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,700830032,298933384,2068629,298938357,2108629,298463379,298468389,298938368,1718088045,2098629,2098628],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":1032,\"model_id\":227393871835,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26776733596",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27168471069,
              "shopid": 504365162,
              "name": "REIWA AC Window 1/2 PK CW-0501RA / CW-0901RA AC Low Watt 1 PK \"KHUSUS GOJEK\"",
              "label_ids": [
                1400066568,
                1718087960,
                1428713,
                844931064601283,
                822059908662278,
                825465608492064,
                834403089593352,
                1213641,
                1000031,
                1015914,
                700190087,
                1400285055,
                2018619,
                2023641,
                822120592853526,
                298893311,
                1718093079,
                700005490,
                700005495,
                700830032,
                298933384,
                2048660,
                2048661,
                700765096,
                2068629,
                298938357,
                298463379,
                1049120,
                2108629,
                1059152,
                1049122,
                298468389,
                298468390,
                1718088044,
                2098629,
                1718093084,
                298938368,
                298458398,
                298458396,
                2098628,
                1718088045
              ],
              "image": "id-11134207-7rbk6-m766qt6sv92f96",
              "images": [
                "id-11134207-7rbk6-m766qt6sv92f96",
                "id-11134207-7rasl-m2xdof6rsfytb8",
                "id-11134207-7ras9-m2xdof71qmcgd7",
                "id-11134207-7ras9-m2xdof6rr1ed0e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1732337535,
              "sold": 1,
              "historical_sold": 48,
              "liked": false,
              "liked_count": 39,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 20,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 200900000000,
              "price_min": 200900000000,
              "price_max": 200900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Ukuran",
                  "options": [
                    "0.5 PK",
                    "1 PK"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Varian",
                  "options": [
                    "Unit Saja",
                    "+Jasa Pasang"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.9,
                "rating_count": [
                  20,
                  0,
                  0,
                  0,
                  2,
                  18
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp669RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 200900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 286250657673,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 200900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 48,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 48,
                "display_sold_count_text": "48"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp669RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Sajun Electronic Tangerang",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                97
              ]
            },
            "itemid": 27168471069,
            "shopid": 504365162,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk6-m766qt6sv92f96\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1718087960,1428713,844931064601283,822059908662278,825465608492064,834403089593352,1213641,1000031,1015914,700190087,1400285055,2018619,2023641,822120592853526,298893311,1718093079,700005490,700005495,700830032,298933384,2048660,2048661,700765096,2068629,298938357,298463379,1049120,2108629,1059152,1049122,298468389,298468390,1718088044,2098629,1718093084,298938368,298458398,298458396,2098628,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4195,\"model_id\":286250657673,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk6-m766qt6sv92f96\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1718087960,1428713,844931064601283,822059908662278,825465608492064,834403089593352,1213641,1000031,1015914,700190087,1400285055,2018619,2023641,822120592853526,298893311,1718093079,700005490,700005495,700830032,298933384,2048660,2048661,700765096,2068629,298938357,298463379,1049120,2108629,1059152,1049122,298468389,298468390,1718088044,2098629,1718093084,298938368,298458398,298458396,2098628,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4195,\"model_id\":286250657673,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27168471069",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47803663782,
              "shopid": 1709284149,
              "name": "Reiwa Pendingin Ruangan 1 PK AC Window CW 0901RA",
              "label_ids": [
                844931086908638,
                844931064601283,
                1049128,
                700005504,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                825465608493600,
                1718596,
                1718093079,
                1718087960,
                1428713,
                298488495,
                299033477,
                2213765
              ],
              "image": "sg-11134201-81zwg-mio1xxnw5f601d",
              "images": [
                "sg-11134201-81zwg-mio1xxnw5f601d",
                "sg-11134201-81zw7-mio1xxsmqkg41b",
                "sg-11134201-81zup-mio1xy1bjrb569",
                "sg-11134201-81zw4-mio1xy9mxsef47",
                "sg-11134201-81zv2-mio1xyfjqtq852",
                "sg-11134201-81zw6-mio1xyjq054x71",
                "sg-11134201-81zvn-mio1xzgkt62sd8",
                "sg-11134201-81zvy-mio1xzlbr01s00",
                "sg-11134201-81zwq-mio1xzr0lfye06"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766640699,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 79960000000,
              "price_min": 79960000000,
              "price_max": 79960000000,
              "price_min_before_discount": 199900000000,
              "price_max_before_discount": 199900000000,
              "hidden_price_display": null,
              "price_before_discount": 199900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-60%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "1 PK CW 0901RA",
                    "1/2 PK CW 0501RA"
                  ],
                  "images": [
                    "sg-11134201-81zw7-mio1xxsmqkg41b",
                    "sg-11134201-81zvy-mio1xzlbr01s00"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Palembang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 825842343673856,
                "price": 79960000000,
                "strikethrough_price": 199900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-60%",
                "model_id": 350348573568,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "s_nb6ntsb6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000
              ]
            },
            "itemid": 47803663782,
            "shopid": 1709284149,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwg-mio1xxnw5f601d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049128,700005504,822059908662278,825465608494624,825465608499232,825465608497696,825465608493600,1718596,1718093079,1718087960,1428713,298488495,299033477,2213765],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":863,\"model_id\":350348573568,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwg-mio1xxnw5f601d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049128,700005504,822059908662278,825465608494624,825465608499232,825465608497696,825465608493600,1718596,1718093079,1718087960,1428713,298488495,299033477,2213765],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":863,\"model_id\":350348573568,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47803663782",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52803652837,
              "shopid": 1709284149,
              "name": "Reiwa AC Window Air Conditioner 0.5 PK Pendingin Ruangan CW-0501RA",
              "label_ids": [
                844931064601283,
                844931086908638,
                1049128,
                700005504,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608493600,
                825465608494624,
                1718596,
                1718093079,
                1428713,
                1718087960,
                298488495,
                2213765,
                299033477
              ],
              "image": "sg-11134201-81ztz-mio1th2rpvra02",
              "images": [
                "sg-11134201-81ztz-mio1th2rpvra02",
                "sg-11134201-8225c-mhjsn7eies5h13",
                "sg-11134201-8227f-mhjsn7n10oaq88",
                "sg-11134201-81ztm-mio1thhtdfd42d",
                "sg-11134201-82257-mhjsn7z4fbib41",
                "sg-11134201-8225a-mhjsn83aq32925",
                "sg-11134201-81ztg-mio1ti0lr9xdd0",
                "sg-11134201-81zvp-mio1tibbhts721",
                "sg-11134201-81zue-mio1timkxouaaf"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766640490,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 79960000000,
              "price_min": 79960000000,
              "price_max": 79960000000,
              "price_min_before_discount": 199900000000,
              "price_max_before_discount": 199900000000,
              "hidden_price_display": null,
              "price_before_discount": 199900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-60%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Packing",
                  "options": [
                    "Packing Kayu",
                    "Bubble Wrap"
                  ],
                  "images": [
                    "sg-11134201-81ztz-mio1th2rpvra02",
                    "sg-11134201-81ztz-mio1th2rpvra02"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Palembang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 825842343673856,
                "price": 79960000000,
                "strikethrough_price": 199900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-60%",
                "model_id": 310349142119,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "s_nb6ntsb6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000
              ]
            },
            "itemid": 52803652837,
            "shopid": 1709284149,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztz-mio1th2rpvra02\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049128,700005504,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1718596,1718093079,1428713,1718087960,298488495,2213765,299033477],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":774,\"model_id\":310349142119,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztz-mio1th2rpvra02\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049128,700005504,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1718596,1718093079,1428713,1718087960,298488495,2213765,299033477],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":774,\"model_id\":310349142119,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52803652837",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 1230087492,
              "shopid": 31400119,
              "name": "AC REIWA AC Window 1/2 PK CW-0501RA 0,5 PK",
              "label_ids": [
                1000167,
                71,
                22,
                844931026694327,
                844931064601283,
                844931046478970,
                1400285055,
                1015914,
                700190087,
                1400066568,
                1000031,
                1918643,
                2018619,
                298463379,
                1718093079,
                844931086908638,
                2023641,
                700810080,
                700005510,
                700005490,
                822059908662278,
                825465608497696,
                822120592853526,
                825465608499232,
                834403089593352,
                2108629,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7r990-lwce8p94o4221a",
              "images": [
                "id-11134207-7r990-lwce8p94o4221a",
                "id-11134207-7r98t-lwce8p94pimi37",
                "id-11134207-7r992-lwce8p94qx6ybd",
                "id-11134207-7r991-lwce8p94sbrec4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1528391270,
              "sold": 2,
              "historical_sold": 175,
              "liked": false,
              "liked_count": 1031,
              "view_count": null,
              "catid": 100010,
              "brand": "Maspion",
              "cmt_count": 93,
              "flag": 983042,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194990000000,
              "price_min": 194990000000,
              "price_max": 194990000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.510416666666667,
                "rating_count": [
                  96,
                  1,
                  4,
                  6,
                  19,
                  66
                ],
                "rcount_with_context": 59,
                "rcount_with_image": 42
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": true,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 194990000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 47314785155,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 194990000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 175,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 175,
                "display_sold_count_text": "175"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "multielektronik1",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                1000,
                1000,
                88,
                0,
                1000
              ]
            },
            "itemid": 1230087492,
            "shopid": 31400119,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r990-lwce8p94o4221a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,71,22,844931026694327,844931064601283,844931046478970,1400285055,1015914,700190087,1400066568,1000031,1918643,2018619,298463379,1718093079,844931086908638,2023641,700810080,700005510,700005490,822059908662278,825465608497696,822120592853526,825465608499232,834403089593352,2108629,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":1391,\"model_id\":47314785155,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,88,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r990-lwce8p94o4221a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,71,22,844931026694327,844931064601283,844931046478970,1400285055,1015914,700190087,1400066568,1000031,1918643,2018619,298463379,1718093079,844931086908638,2023641,700810080,700005510,700005490,822059908662278,825465608497696,822120592853526,825465608499232,834403089593352,2108629,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":1391,\"model_id\":47314785155,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,88,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_1230087492",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24116650512,
              "shopid": 1175700092,
              "name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK",
              "label_ids": [
                1015914,
                700190087,
                1428713,
                1718087960,
                1400285055,
                1718093079,
                822059908662278,
                822120592853526,
                1918643,
                1000031,
                2018618,
                700700063,
                1012729,
                1400066568,
                298893311,
                825465608497696,
                298463379,
                298933384,
                1049127,
                1049112,
                2153644,
                700830032,
                1059156,
                700005499,
                834403089593352,
                1059152,
                1049122,
                2213652,
                2068629,
                298938357,
                825465608499232,
                2098629,
                298468389,
                2098628,
                1718088045,
                298938368
              ],
              "image": "id-11134207-7rasb-m1rwhgz6rhi439",
              "images": [
                "id-11134207-7rasb-m1rwhgz6rhi439",
                "id-11134207-7rasj-m1rwhgz6q2xo2b",
                "id-11134207-7r98y-lt2ax26dhpq15d",
                "id-11134207-7r990-lt2ax26dhpll01",
                "id-11134207-7r98z-lt2ax26xgwnab3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1709552447,
              "sold": 18,
              "historical_sold": 307,
              "liked": false,
              "liked_count": 7085,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 163,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 245400000000,
              "price_min": 245400000000,
              "price_max": 245400000000,
              "price_min_before_discount": 285000000000,
              "price_max_before_discount": 285000000000,
              "hidden_price_display": null,
              "price_before_discount": 285000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-14%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vene-mh7cfm6laznxa1.16000081763450014.mp4",
                  "thumb_url": "id-11110105-6vene-mh7cfm6laznxa1_cover",
                  "duration": 15,
                  "version": 2,
                  "vid": "id-11110105-6vene-mh7cfm6laznxa1",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vene-mh7cfm6laznxa1.16000081763450014.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vene-mh7cfm6laznxa1.16000081763450014.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vene-mh7cfm6laznxa1.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.796407185628743,
                "rating_count": [
                  167,
                  2,
                  1,
                  6,
                  11,
                  147
                ],
                "rcount_with_context": 47,
                "rcount_with_image": 45
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": true,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 827329559970816,
                "price": 237900000000,
                "strikethrough_price": 285000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1332408457510920,
                "discount_text": "-14%",
                "model_id": 207345483757,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1332408457510920,
                  "voucher_code": "REIWA2326",
                  "voucher_discount": 7500000000,
                  "time_info": {
                    "start_time": 1768294860,
                    "end_time": 1769187540,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 70000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 285000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 307,
                "rounded_local_monthly_sold_count": 18,
                "local_monthly_sold_count_text": "18",
                "rounded_display_sold_count": 307,
                "display_sold_count_text": "307"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Reiwa Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000,
                97,
                91,
                88,
                4
              ]
            },
            "itemid": 24116650512,
            "shopid": 1175700092,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m1rwhgz6rhi439\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1015914,700190087,1428713,1718087960,1400285055,1718093079,822059908662278,822120592853526,1918643,1000031,2018618,700700063,1012729,1400066568,298893311,825465608497696,298463379,298933384,1049127,1049112,2153644,700830032,1059156,700005499,834403089593352,1059152,1049122,2213652,2068629,298938357,825465608499232,2098629,298468389,2098628,1718088045,298938368],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":417,\"model_id\":207345483757,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,97,91,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m1rwhgz6rhi439\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1015914,700190087,1428713,1718087960,1400285055,1718093079,822059908662278,822120592853526,1918643,1000031,2018618,700700063,1012729,1400066568,298893311,825465608497696,298463379,298933384,1049127,1049112,2153644,700830032,1059156,700005499,834403089593352,1059152,1049122,2213652,2068629,298938357,825465608499232,2098629,298468389,2098628,1718088045,298938368],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":417,\"model_id\":207345483757,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,97,91,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24116650512",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28216339221,
              "shopid": 1002016520,
              "name": "AC Window Reiwa 1/2PK 0,5PK CW 0501RA Low Watt 5000Btu Refrigerant R32 Praktis Tanpa Instalasi Pipa Direct Cooling",
              "label_ids": [
                844931064601283,
                1400285055,
                1213641,
                1718087960,
                1428713,
                1015914,
                700190087,
                1000031,
                2018619,
                298893311,
                298463379,
                2023641,
                1059156,
                700005499,
                822059908662278,
                834403089593352,
                700830032,
                825465608497696,
                298933384,
                1718093079,
                825465608492064,
                844931086908638,
                700810080,
                298458396,
                298458398,
                298468390,
                1718093084,
                1718088045,
                1718088044,
                298468389
              ],
              "image": "id-11134207-7rasb-m23qvkgsfnood6",
              "images": [
                "id-11134207-7rasb-m23qvkgsfnood6",
                "id-11134207-7rash-m23qvkgsfnd509",
                "id-11134207-7rasa-m23qvkgsfntm1e",
                "id-11134207-7rasm-m23qvkgsfo5925",
                "id-11134207-7rasm-m23qvkgsfo4tbe",
                "id-11134207-7rask-m23qvkgsfni7c3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1730543851,
              "sold": 10,
              "historical_sold": 272,
              "liked": false,
              "liked_count": 262,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 124,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 209900000000,
              "price_min": 209900000000,
              "price_max": 209900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1c-m29mr3czwtibf8.16000081730899831.mp4",
                  "thumb_url": "id-11110105-7rasb-m29mr5umcu2o40",
                  "duration": 15,
                  "version": 2,
                  "vid": "id-11110105-6ke1c-m29mr3czwtibf8",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1c-m29mr3czwtibf8.16003251747358718.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1c-m29mr3czwtibf8.16003251747358718.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1c-m29mr3czwtibf8.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "PAKING",
                  "options": [
                    "STANDARD - INSTANT",
                    "EXTRA BUBLE WRAP",
                    "BUBLE + PAKING KAYU"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.846774193548387,
                "rating_count": [
                  124,
                  1,
                  0,
                  3,
                  9,
                  111
                ],
                "rcount_with_context": 49,
                "rcount_with_image": 34
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 209900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 251936674028,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 209900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 272,
                "rounded_local_monthly_sold_count": 10,
                "local_monthly_sold_count_text": "10",
                "rounded_display_sold_count": 272,
                "display_sold_count_text": "272"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HERIMART ETC",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000,
                91,
                88,
                97,
                4
              ]
            },
            "itemid": 28216339221,
            "shopid": 1002016520,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m23qvkgsfnood6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1213641,1718087960,1428713,1015914,700190087,1000031,2018619,298893311,298463379,2023641,1059156,700005499,822059908662278,834403089593352,700830032,825465608497696,298933384,1718093079,825465608492064,844931086908638,700810080,298458396,298458398,298468390,1718093084,1718088045,1718088044,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":441,\"model_id\":251936674028,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,91,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m23qvkgsfnood6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1213641,1718087960,1428713,1015914,700190087,1000031,2018619,298893311,298463379,2023641,1059156,700005499,822059908662278,834403089593352,700830032,825465608497696,298933384,1718093079,825465608492064,844931086908638,700810080,298458396,298458398,298468390,1718093084,1718088045,1718088044,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":441,\"model_id\":251936674028,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,91,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28216339221",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26568140168,
              "shopid": 49654435,
              "name": "AC REIWA AC Window Portable 1/2 PK / 1 PK  CW-0501RA AC PORTABLE REIWA 1/2 PK / 1 PK  [BEST SELLER] [COD] [NEW PRODUCT]",
              "label_ids": [
                47,
                1000167,
                844931064601283,
                844931086908638,
                1718093079,
                1213641,
                1000031,
                1400285055,
                1049116,
                1049123,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                2018619,
                700700063,
                1015914,
                700190087,
                298463379,
                2023641,
                2048661,
                2048660,
                700765096,
                298933384,
                2108629,
                298623321,
                1993623,
                998091078,
                1718093084,
                298458398,
                1718088045,
                298458396,
                298468390,
                1718088044,
                298468389
              ],
              "image": "id-11134207-7rasj-m2tgb3kdmmmp76",
              "images": [
                "id-11134207-7rasj-m2tgb3kdmmmp76",
                "id-11134207-7rash-m2t3utfrtn7nb5",
                "id-11134207-7rasd-m2t3utfrxvbld4",
                "id-11134207-7rask-m2t3utfrv26p40",
                "id-11134207-7rasi-m2t3utfrtnlw53",
                "id-11134207-7rasf-m2t3utfrwgr5f3",
                "id-11134207-7rasg-m2t3utfs0ogh2d",
                "id-11134207-7rasb-m2t3utfrz9w1aa",
                "id-11134207-7rbk9-m7uj8z1xiv2x81"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1732079816,
              "sold": 3,
              "historical_sold": 19,
              "liked": false,
              "liked_count": 88,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 7,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 209899900000,
              "price_min": 209899900000,
              "price_max": 209899900000,
              "price_min_before_discount": 349900000000,
              "price_max_before_discount": 349900000000,
              "hidden_price_display": null,
              "price_before_discount": 349900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-40%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1b-m2t3f1q0lu4ke6.16000101732078013.mp4",
                  "thumb_url": "id-11110105-7rasa-m2t3f823cex371",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6ke1b-m2t3f1q0lu4ke6",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1b-m2t3f1q0lu4ke6.16000101732078013.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-m2t3f1q0lu4ke6.16000101732078013.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-m2t3f1q0lu4ke6.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "TIPE",
                  "options": [
                    "1/2 PK",
                    "1 PK"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  7,
                  0,
                  0,
                  0,
                  0,
                  7
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Malang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 324,
                "promotion_id": 10000013350,
                "price": 209899900000,
                "strikethrough_price": 349900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-40%",
                "model_id": 157758282164,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 349900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 19,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 19,
                "display_sold_count_text": "19"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Sumber Rejeki & Co.",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000,
                1000,
                97,
                88
              ]
            },
            "itemid": 26568140168,
            "shopid": 49654435,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasj-m2tgb3kdmmmp76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,844931064601283,844931086908638,1718093079,1213641,1000031,1400285055,1049116,1049123,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,2018619,700700063,1015914,700190087,298463379,2023641,2048661,2048660,700765096,298933384,2108629,298623321,1993623,998091078,1718093084,298458398,1718088045,298458396,298468390,1718088044,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":451,\"model_id\":157758282164,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasj-m2tgb3kdmmmp76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,844931064601283,844931086908638,1718093079,1213641,1000031,1400285055,1049116,1049123,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,2018619,700700063,1015914,700190087,298463379,2023641,2048661,2048660,700765096,298933384,2108629,298623321,1993623,998091078,1718093084,298458398,1718088045,298458396,298468390,1718088044,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":451,\"model_id\":157758282164,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26568140168",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43655886806,
              "shopid": 266457757,
              "name": "Reiwa AC Window 1/2 PK CW-0501RA Putih 5000 Btu",
              "label_ids": [
                2018619,
                2023641,
                1400095067,
                1400285005,
                844931064601283,
                1049116,
                1049117,
                822059908662278,
                822120592853526,
                825465608499232,
                825465608497696,
                1718093065,
                1213641,
                1400285055,
                1015914,
                700190087,
                298463379,
                1718093079,
                2108629,
                298933384,
                2048660,
                2048661,
                700765096,
                700810080,
                1718093084,
                298458396,
                1718088044,
                298468390,
                1718088045,
                298458398,
                298468389
              ],
              "image": "id-11134207-7ra0k-mbdxu5xixck633",
              "images": [
                "id-11134207-7ra0k-mbdxu5xixck633",
                "id-11134207-7ra0n-mbdxu5xj05p22b",
                "id-11134207-7ra0t-mbdxu5xj1k9i22",
                "id-11134207-7ra0h-mbdxu5xj2ytyfc",
                "id-11134207-7ra0i-mbdxu5xj4dee25",
                "id-11134207-7ra0u-mbdxu5xj76ja61",
                "id-11134207-7ra0j-mbdxu5xj8l3qcb",
                "id-11134207-7ra0n-mbdxu5xj9zo613"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1750774097,
              "sold": 2,
              "historical_sold": 48,
              "liked": false,
              "liked_count": 29,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 25,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194900000000,
              "price_min": 194900000000,
              "price_max": 194900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "PACKING AMAN",
                  "options": [
                    "TAMBAH BUBLEWRAP",
                    "PACKING KAYU"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.92,
                "rating_count": [
                  25,
                  0,
                  0,
                  0,
                  2,
                  23
                ],
                "rcount_with_context": 9,
                "rcount_with_image": 8
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 194900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 290493475297,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 194900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 48,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 48,
                "display_sold_count_text": "48"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ORI elektronik",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000,
                97,
                88,
                4
              ]
            },
            "itemid": 43655886806,
            "shopid": 266457757,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0k-mbdxu5xixck633\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1400095067,1400285005,844931064601283,1049116,1049117,822059908662278,822120592853526,825465608499232,825465608497696,1718093065,1213641,1400285055,1015914,700190087,298463379,1718093079,2108629,298933384,2048660,2048661,700765096,700810080,1718093084,298458396,1718088044,298468390,1718088045,298458398,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":3478,\"model_id\":290493475297,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,97,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0k-mbdxu5xixck633\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1400095067,1400285005,844931064601283,1049116,1049117,822059908662278,822120592853526,825465608499232,825465608497696,1718093065,1213641,1400285055,1015914,700190087,298463379,1718093079,2108629,298933384,2048660,2048661,700765096,700810080,1718093084,298458396,1718088044,298468390,1718088045,298458398,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":3478,\"model_id\":290493475297,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,97,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43655886806",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29114190892,
              "shopid": 98367883,
              "name": "Reiwa AC Window 1/2 PK CW-0501RA  0,5 PK / 1 PK R32 CW 09 01RA / CW0901RA",
              "label_ids": [
                1000167,
                1012865,
                1013217,
                1400095067,
                1400285005,
                1428713,
                1718087960,
                844931064601283,
                1718093079,
                1015914,
                700190087,
                1918643,
                1000031,
                1400285055,
                1049141,
                700005513,
                822059908662278,
                2018619,
                2023641,
                298893311,
                2048660,
                2048661,
                825465608497696,
                298463379,
                700765096,
                700750053,
                700830032,
                844931086908638,
                1400025118,
                298933384,
                298888358,
                298938357,
                2108629,
                298938368,
                997921049,
                2098629,
                1718088045,
                298468389,
                1718093085,
                1718088046,
                2098630,
                2103632,
                2108637,
                2098628,
                700585042,
                997921050
              ],
              "image": "id-11134207-7rasl-m1fgu7sksvfi29",
              "images": [
                "id-11134207-7rasl-m1fgu7sksvfi29",
                "id-11134207-7rasm-m1fgu7sksvquc4",
                "id-11134207-7ras9-m1fgu7sush5b49",
                "id-11134207-7rase-m1fgu7sksv97fb",
                "id-11134207-7rasj-m1fgu7sksvchd8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1729074251,
              "sold": 4,
              "historical_sold": 88,
              "liked": false,
              "liked_count": 96,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 30,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 212356000000,
              "price_min": 212356000000,
              "price_max": 212356000000,
              "price_min_before_discount": 290000000000,
              "price_max_before_discount": 290000000000,
              "hidden_price_display": null,
              "price_before_discount": 290000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-27%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1k-m1fgvvabqoy7a6.16000081729073935.mp4",
                  "thumb_url": "id-11110105-7ras8-m1fgw0wviml970",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6ke1k-m1fgvvabqoy7a6",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1k-m1fgvvabqoy7a6.16000081729073935.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1k-m1fgvvabqoy7a6.16000081729073935.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1k-m1fgvvabqoy7a6.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Type",
                  "options": [
                    "0.5 PK",
                    "1 PK"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.9,
                "rating_count": [
                  30,
                  0,
                  0,
                  0,
                  3,
                  27
                ],
                "rcount_with_context": 10,
                "rcount_with_image": 7
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp353RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 760674494497792,
                "price": 212356000000,
                "strikethrough_price": 290000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-27%",
                "model_id": 252642535788,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 290000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 88,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 88,
                "display_sold_count_text": "88"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp353RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ART_ELEKTRONIK YOGYAKARTA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                97,
                88,
                1000,
                1000,
                4
              ]
            },
            "itemid": 29114190892,
            "shopid": 98367883,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m1fgu7sksvfi29\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1012865,1013217,1400095067,1400285005,1428713,1718087960,844931064601283,1718093079,1015914,700190087,1918643,1000031,1400285055,1049141,700005513,822059908662278,2018619,2023641,298893311,2048660,2048661,825465608497696,298463379,700765096,700750053,700830032,844931086908638,1400025118,298933384,298888358,298938357,2108629,298938368,997921049,2098629,1718088045,298468389,1718093085,1718088046,2098630,2103632,2108637,2098628,700585042,997921050],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":633,\"model_id\":252642535788,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,97,88,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m1fgu7sksvfi29\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1012865,1013217,1400095067,1400285005,1428713,1718087960,844931064601283,1718093079,1015914,700190087,1918643,1000031,1400285055,1049141,700005513,822059908662278,2018619,2023641,298893311,2048660,2048661,825465608497696,298463379,700765096,700750053,700830032,844931086908638,1400025118,298933384,298888358,298938357,2108629,298938368,997921049,2098629,1718088045,298468389,1718093085,1718088046,2098630,2103632,2108637,2098628,700585042,997921050],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":633,\"model_id\":252642535788,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,97,88,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29114190892",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26132561544,
              "shopid": 84058015,
              "name": "AC Window REIWA 0501 Standard 0,5 PK - AC Reiwa 1/2PK Low Watt - AC Window bisa pasang sendiri",
              "label_ids": [
                844931064601283,
                1718093065,
                1213641,
                1015914,
                700190087,
                1400285055,
                2018619,
                2023641,
                1718093079,
                298893311,
                1718087960,
                1428713,
                298463379,
                700765096,
                1049116,
                1049117,
                822059908662278,
                822120592853526,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                298933384,
                298623321,
                1993623,
                998091078,
                2108629,
                1718088044,
                298458398,
                298468390,
                298468389,
                298458396,
                1718088045,
                1718093084
              ],
              "image": "id-11134207-7rbkb-ma1bwbhgsn6m4b",
              "images": [
                "id-11134207-7rbkb-ma1bwbhgsn6m4b",
                "id-11134207-7rbk0-ma1bwbh7e4ml4a",
                "id-11134207-7rbk8-m8bvua2sz5d99c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1744112167,
              "sold": 1,
              "historical_sold": 50,
              "liked": false,
              "liked_count": 59,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 31,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194900000000,
              "price_min": 194900000000,
              "price_max": 194900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Packing",
                  "options": [
                    "Packing kayu",
                    "Packing kardus"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.935483870967742,
                "rating_count": [
                  31,
                  0,
                  0,
                  1,
                  0,
                  30
                ],
                "rcount_with_context": 9,
                "rcount_with_image": 6
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 324,
                "promotion_id": 10000016340,
                "price": 194900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 186014881893,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 194900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 50,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 50,
                "display_sold_count_text": "50"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Elektronic New Palapa",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                1000,
                1000,
                0,
                1000
              ]
            },
            "itemid": 26132561544,
            "shopid": 84058015,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-ma1bwbhgsn6m4b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093065,1213641,1015914,700190087,1400285055,2018619,2023641,1718093079,298893311,1718087960,1428713,298463379,700765096,1049116,1049117,822059908662278,822120592853526,825465608499232,825465608497696,2048660,2048661,298933384,298623321,1993623,998091078,2108629,1718088044,298458398,298468390,298468389,298458396,1718088045,1718093084],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":795,\"model_id\":186014881893,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-ma1bwbhgsn6m4b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093065,1213641,1015914,700190087,1400285055,2018619,2023641,1718093079,298893311,1718087960,1428713,298463379,700765096,1049116,1049117,822059908662278,822120592853526,825465608499232,825465608497696,2048660,2048661,298933384,298623321,1993623,998091078,2108629,1718088044,298458398,298468390,298468389,298458396,1718088045,1718093084],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":795,\"model_id\":186014881893,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26132561544",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29222420845,
              "shopid": 10681204,
              "name": "REIWA AC Window 1pk CW-0901RA CW 0901 RA CW0901RA 1 pk 1pk MURAH DINGIN - UNIT ONLY",
              "label_ids": [
                844931064601283,
                2018619,
                1059152,
                1049124,
                822059908662278,
                1400066568,
                822120592853526,
                825465608497696,
                1718093079,
                2023641,
                298933384,
                834403089593352,
                1400025118,
                298463379,
                1015914,
                700190087,
                298623321,
                1993623,
                998091078,
                1400285055,
                1718088046,
                700585042,
                1718088045,
                997921049,
                298468389,
                1718093085,
                997921050
              ],
              "image": "id-11134207-7rasg-m4iqlqwbko0a1a",
              "images": [
                "id-11134207-7rasg-m4iqlqwbko0a1a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1735809964,
              "sold": 2,
              "historical_sold": 9,
              "liked": false,
              "liked_count": 25,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 4,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 237699900000,
              "price_min": 237699900000,
              "price_max": 237699900000,
              "price_min_before_discount": 241300000000,
              "price_max_before_discount": 241300000000,
              "hidden_price_display": null,
              "price_before_discount": 241300000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-1%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.75,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  1,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 324,
                "promotion_id": 10000019090,
                "price": 237699900000,
                "strikethrough_price": 241300000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-1%",
                "model_id": 242389716079,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 241300000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 9,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 9,
                "display_sold_count_text": "9"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "FLOREN Official Store",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                0,
                1000,
                88,
                1000,
                1000,
                4
              ]
            },
            "itemid": 29222420845,
            "shopid": 10681204,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasg-m4iqlqwbko0a1a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,2018619,1059152,1049124,822059908662278,1400066568,822120592853526,825465608497696,1718093079,2023641,298933384,834403089593352,1400025118,298463379,1015914,700190087,298623321,1993623,998091078,1400285055,1718088046,700585042,1718088045,997921049,298468389,1718093085,997921050],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":1134,\"model_id\":242389716079,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,88,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasg-m4iqlqwbko0a1a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,2018619,1059152,1049124,822059908662278,1400066568,822120592853526,825465608497696,1718093079,2023641,298933384,834403089593352,1400025118,298463379,1015914,700190087,298623321,1993623,998091078,1400285055,1718088046,700585042,1718088045,997921049,298468389,1718093085,997921050],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":1134,\"model_id\":242389716079,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,88,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29222420845",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24370098887,
              "shopid": 480194694,
              "name": "AC WINDOW REIWA 1/2 PK - FREE SELANG DRINASE 2 METER",
              "label_ids": [
                1400066568,
                1049112,
                1049136,
                822059908662278,
                822120592853526,
                1000031,
                1918643,
                1400285055,
                2018619,
                700700063,
                825465608497696,
                1213641,
                298463379,
                844931086908638,
                2048660,
                2048661,
                700765096,
                1015914,
                700190087,
                834403089593352,
                2108629,
                1718093079,
                2023641,
                1718093084,
                298468390,
                1718088045,
                298458398,
                1718088044,
                298458396,
                298468389
              ],
              "image": "id-11134207-8224v-mjfbsqgcub5ve8",
              "images": [
                "id-11134207-8224v-mjfbsqgcub5ve8",
                "id-11134207-7r992-lt4sm8j76892fa",
                "id-11134207-7r98x-lyrga5doysed9e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1710994117,
              "sold": 4,
              "historical_sold": 37,
              "liked": false,
              "liked_count": 110,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 16,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199900000000,
              "price_min": 199900000000,
              "price_max": 199900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  18,
                  0,
                  0,
                  0,
                  0,
                  18
                ],
                "rcount_with_context": 6,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Depok",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 197386351545,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 37,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 37,
                "display_sold_count_text": "37"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "PT Sumber Multi Sejahtera",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000,
                88,
                97
              ]
            },
            "itemid": 24370098887,
            "shopid": 480194694,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mjfbsqgcub5ve8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1049112,1049136,822059908662278,822120592853526,1000031,1918643,1400285055,2018619,700700063,825465608497696,1213641,298463379,844931086908638,2048660,2048661,700765096,1015914,700190087,834403089593352,2108629,1718093079,2023641,1718093084,298468390,1718088045,298458398,1718088044,298458396,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\"],\"merge_rank\":1200,\"model_id\":197386351545,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mjfbsqgcub5ve8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1049112,1049136,822059908662278,822120592853526,1000031,1918643,1400285055,2018619,700700063,825465608497696,1213641,298463379,844931086908638,2048660,2048661,700765096,1015914,700190087,834403089593352,2108629,1718093079,2023641,1718093084,298468390,1718088045,298458398,1718088044,298458396,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\"],\"merge_rank\":1200,\"model_id\":197386351545,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24370098887",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26153855018,
              "shopid": 141663723,
              "name": "REIWA CW-0501RA / CW0501RA AC Window 1/2PK 0.5PK",
              "label_ids": [
                844931064601283,
                1400066568,
                298458395,
                1049116,
                1049117,
                822059908662278,
                834403089593352,
                822120592853526,
                1213641,
                1000031,
                1015914,
                700190087,
                1400285055,
                1428713,
                1718087960,
                2018619,
                298893311,
                825465608497696,
                2108629,
                298463379,
                1718093079,
                2153644,
                700830032,
                2048660,
                2048661,
                700765096,
                700810080,
                2018618,
                2213652,
                1718093084,
                298468389,
                1718088045,
                298468390,
                1718088044,
                298458396,
                298458398
              ],
              "image": "id-11134207-7ra0p-mdicew96nvo256",
              "images": [
                "id-11134207-7ra0p-mdicew96nvo256",
                "id-11134207-7ra0s-mdbh11r95agsc2",
                "id-11134207-7ra0j-mdg6n03lea44fb",
                "id-11134207-7ra0t-mdg6n03lfook38",
                "id-11134207-7ra0h-mdg6n03lh390a0",
                "id-11134207-7ra0m-mdbd6cdsjevr5b",
                "id-11134207-7ra0i-mdbd6cdsdslz67"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1719462244,
              "sold": 3,
              "historical_sold": 185,
              "liked": false,
              "liked_count": 149,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 92,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194900000000,
              "price_min": 194900000000,
              "price_max": 194900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke19-m0y1xidpaneh65.16000081728019702.mp4",
                  "thumb_url": "id-11110105-7rash-m0y1xmnf22aq11",
                  "duration": 57,
                  "version": 2,
                  "vid": "id-11110105-6ke19-m0y1xidpaneh65",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke19-m0y1xidpaneh65.16000081728019702.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke19-m0y1xidpaneh65.16000081728019702.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke19-m0y1xidpaneh65.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "BubbleWrap",
                  "options": [
                    "TIDAK",
                    "IYA",
                    "+KAYU +BUBBLEWRAP",
                    "AMBIL SENDIRI OUTLET"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.8478260869565215,
                "rating_count": [
                  92,
                  2,
                  0,
                  1,
                  4,
                  85
                ],
                "rcount_with_context": 23,
                "rcount_with_image": 14
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 194900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 251900639379,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 194900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 185,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 185,
                "display_sold_count_text": "185"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MIAMI Official Store",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000,
                88,
                97,
                4
              ]
            },
            "itemid": 26153855018,
            "shopid": 141663723,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mdicew96nvo256\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,298458395,1049116,1049117,822059908662278,834403089593352,822120592853526,1213641,1000031,1015914,700190087,1400285055,1428713,1718087960,2018619,298893311,825465608497696,2108629,298463379,1718093079,2153644,700830032,2048660,2048661,700765096,700810080,2018618,2213652,1718093084,298468389,1718088045,298468390,1718088044,298458396,298458398],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":832,\"model_id\":251900639379,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mdicew96nvo256\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,298458395,1049116,1049117,822059908662278,834403089593352,822120592853526,1213641,1000031,1015914,700190087,1400285055,1428713,1718087960,2018619,298893311,825465608497696,2108629,298463379,1718093079,2153644,700830032,2048660,2048661,700765096,700810080,2018618,2213652,1718093084,298468389,1718088045,298468390,1718088044,298458396,298458398],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":832,\"model_id\":251900639379,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26153855018",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28562933982,
              "shopid": 201251035,
              "name": "REIWA CW-0501RA 0,5 PK AC Window 1/2 PK",
              "label_ids": [
                1000167,
                1428713,
                1718087960,
                844931064601283,
                1400066568,
                1015914,
                700190087,
                1400285055,
                1000031,
                1213641,
                2018619,
                2023641,
                1049112,
                1059151,
                822059908662278,
                825465608492064,
                837860934119952,
                834403089593352,
                298893311,
                825465608497696,
                298463379,
                298933384,
                1718093079,
                700830032,
                2048660,
                2048661,
                2068629,
                298938357,
                700810080,
                298458396,
                298938368,
                2098628,
                298458398,
                298468390,
                1718088045,
                298468389,
                1718088044,
                1718093084,
                2098629
              ],
              "image": "id-11134201-7rase-m0vpzc0ehunya4",
              "images": [
                "id-11134201-7rase-m0vpzc0ehunya4",
                "id-11134201-7rasd-m0vpzcd5z68710",
                "id-11134201-7rasg-m0vpzdhybh9cbf",
                "id-11134201-7ras8-m0vpzeld59l8e0",
                "id-11134201-7ras9-m0vpzeq2iwwc1a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1727879142,
              "sold": 2,
              "historical_sold": 390,
              "liked": false,
              "liked_count": 1594,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 215,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194900000000,
              "price_min": 194900000000,
              "price_max": 194900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke14-m14d7faclkuq59.16000081728401869.mp4",
                  "thumb_url": "id-11110105-7rasb-m14d7jw9zbwl36",
                  "duration": 15,
                  "version": 2,
                  "vid": "id-11110105-6ke14-m14d7faclkuq59",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke14-m14d7faclkuq59.16003251730655329.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-m14d7faclkuq59.16003251730655329.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-m14d7faclkuq59.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "PACKING",
                  "options": [
                    "DUS BAWAAN",
                    "PACKING KAYU",
                    "KURIR OJOL DUS",
                    "BUBBLE",
                    "KURIR OJOL BUBBLE"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.934883720930233,
                "rating_count": [
                  215,
                  1,
                  0,
                  0,
                  10,
                  204
                ],
                "rcount_with_context": 88,
                "rcount_with_image": 65
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp649RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 194900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 29535746387,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 194900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 390,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 390,
                "display_sold_count_text": "390"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp649RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Diamond Electronics",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000,
                91,
                88
              ]
            },
            "itemid": 28562933982,
            "shopid": 201251035,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7rase-m0vpzc0ehunya4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1428713,1718087960,844931064601283,1400066568,1015914,700190087,1400285055,1000031,1213641,2018619,2023641,1049112,1059151,822059908662278,825465608492064,837860934119952,834403089593352,298893311,825465608497696,298463379,298933384,1718093079,700830032,2048660,2048661,2068629,298938357,700810080,298458396,298938368,2098628,298458398,298468390,1718088045,298468389,1718088044,1718093084,2098629],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\"],\"merge_rank\":722,\"model_id\":29535746387,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,91,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7rase-m0vpzc0ehunya4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1428713,1718087960,844931064601283,1400066568,1015914,700190087,1400285055,1000031,1213641,2018619,2023641,1049112,1059151,822059908662278,825465608492064,837860934119952,834403089593352,298893311,825465608497696,298463379,298933384,1718093079,700830032,2048660,2048661,2068629,298938357,700810080,298458396,298938368,2098628,298458398,298468390,1718088045,298468389,1718088044,1718093084,2098629],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\"],\"merge_rank\":722,\"model_id\":29535746387,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,91,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28562933982",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26863510440,
              "shopid": 27092381,
              "name": "REIWA AC PORTABLE WINDOW REIWA CW 0501 RA / CW0501RA 1/2 PK 0.5 PK AIR CONDITIONER PORTABEL",
              "label_ids": [
                844931064601283,
                1015914,
                700190087,
                1918643,
                1000031,
                1213641,
                1400285055,
                1059156,
                700005499,
                822059908662278,
                825465608492064,
                834403089593352,
                2018619,
                298893311,
                825465608497696,
                2108629,
                298463379,
                298933384,
                822120592853526,
                2048660,
                2048661,
                1718093079,
                298938356,
                1718088044,
                298458396,
                298458398,
                298468390,
                1718093084,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224w-mivif26nuosk85",
              "images": [
                "id-11134207-8224w-mivif26nuosk85",
                "id-11134207-7rasj-m13jxtdatyvp6d",
                "id-11134207-7ras8-m13jxtdar5qt02",
                "id-11134207-7rasf-m13jxtdaiptt8e",
                "id-11134207-7rasi-m13jxtdahb9d0d",
                "id-11134207-7rash-m13jxtdaskb945"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1728379742,
              "sold": 21,
              "historical_sold": 376,
              "liked": false,
              "liked_count": 921,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 181,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199000000000,
              "price_min": 199000000000,
              "price_max": 199000000000,
              "price_min_before_discount": 205000000000,
              "price_max_before_discount": 205000000000,
              "hidden_price_display": null,
              "price_before_discount": 205000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-3%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1a-m13zygg0360552.16000101728379591.mp4",
                  "thumb_url": "id-11110105-7rasa-m13zym01xd5c13",
                  "duration": 50,
                  "version": 2,
                  "vid": "id-11110105-6ke1a-m13zygg0360552",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1a-m13zygg0360552.default.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m13zygg0360552.default.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m13zygg0360552.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "VARIAN",
                  "options": [
                    "REIWA CW 0501 RA",
                    "REIWA 0.5PK + BUBEL",
                    "REIWA BLACK SERIES"
                  ],
                  "images": [
                    "id-11134207-8224y-mivif26np2is69",
                    "id-11134207-8224q-mivif26nqh385a",
                    "id-11134207-8224w-mivif26nta8458"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.939226519337017,
                "rating_count": [
                  181,
                  0,
                  0,
                  0,
                  11,
                  170
                ],
                "rcount_with_context": 56,
                "rcount_with_image": 51
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 819103196053504,
                "price": 199000000000,
                "strikethrough_price": 205000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-3%",
                "model_id": 246739225315,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 205000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 376,
                "rounded_local_monthly_sold_count": 21,
                "local_monthly_sold_count_text": "21",
                "rounded_display_sold_count": 376,
                "display_sold_count_text": "376"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Elektronik Semarang",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000,
                1000,
                97,
                88,
                4
              ]
            },
            "itemid": 26863510440,
            "shopid": 27092381,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mivif26nuosk85\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1015914,700190087,1918643,1000031,1213641,1400285055,1059156,700005499,822059908662278,825465608492064,834403089593352,2018619,298893311,825465608497696,2108629,298463379,298933384,822120592853526,2048660,2048661,1718093079,298938356,1718088044,298458396,298458398,298468390,1718093084,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":193,\"model_id\":246739225315,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,97,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mivif26nuosk85\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1015914,700190087,1918643,1000031,1213641,1400285055,1059156,700005499,822059908662278,825465608492064,834403089593352,2018619,298893311,825465608497696,2108629,298463379,298933384,822120592853526,2048660,2048661,1718093079,298938356,1718088044,298458396,298458398,298468390,1718093084,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":193,\"model_id\":246739225315,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,97,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26863510440",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27951147380,
              "shopid": 1267387125,
              "name": "FREE PASANG + AKSESORIS AC Sharp 1/2 PK A5BEY STANDARD Grosir Elektronik Bekasi",
              "label_ids": [
                700005512,
                1049112,
                822059908662278,
                1428713,
                1718087960,
                298463379,
                822120592853526,
                1400285055,
                1015914,
                700190087,
                837860934119952,
                1718093079,
                2018619,
                825465608497696,
                2023641,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224y-mh5rdr1rydjhb5",
              "images": [
                "id-11134207-8224y-mh5rdr1rydjhb5",
                "id-11134207-8224r-mh5rdr1xc7wo54",
                "id-11134207-7r98x-lw5ol3dqfatm8c",
                "id-11134207-7r98s-lw5ol3dqgpe2d2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1716875971,
              "sold": 11,
              "historical_sold": 67,
              "liked": false,
              "liked_count": 109,
              "view_count": null,
              "catid": 100010,
              "brand": "Sharp",
              "cmt_count": 27,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 259300000000,
              "price_min": 259300000000,
              "price_max": 259300000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Pembelian",
                  "options": [
                    "Unit Only",
                    "Unit Only + Material",
                    "+Pasang",
                    "+Pasang Tradein"
                  ],
                  "images": [
                    "id-11134207-8224z-mh5rdr1xf11kb0",
                    "id-11134207-8224p-mh5rdr1xgfm0d5",
                    "id-11134207-8224x-mh5rdr1xdmh451",
                    "id-11134207-8224s-mh5rdr1xhu6gfe"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.766666666666667,
                "rating_count": [
                  30,
                  1,
                  0,
                  0,
                  3,
                  26
                ],
                "rcount_with_context": 11,
                "rcount_with_image": 9
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 259300000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 222837815447,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 259300000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 67,
                "rounded_local_monthly_sold_count": 11,
                "local_monthly_sold_count_text": "11",
                "rounded_display_sold_count": 67,
                "display_sold_count_text": "67"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Grosir Elektronik Bekasi",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 367871819,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT4DSphOX53k52mpe7TZRN1JeU8fjm1xXAGtv/POCHXn7MPojyPjFtgrIzFPIkWacGSdpjVXlsGrsg5PwivTRTz01kPBkanTO1J1wQu+tAOsk9mogLwv1dcvJzIwMj++dyDGstBvsrYiRawMVr1jbmr1Yw4ZaYm29P9UOAKYUE6MnH89AQ2mqKMYlA3hOf++NCv7BDIavmnZq4hfbjxI89Iw1YwEsr1Ew6NLYn2k+Jj6N2n3HYoHa6QlCDVYXNTjML3rpimEi5Z21PQBRUipaP1ay/jZxsgVxV/RvcJZQSsW9eYW9bzFgNaav8SffboEf7uDM4PSrMH7zehe6LH5OF/kYHHPWfhQ0LD5zvYogr+e67hL/ebTA9YXw8B8C09HX1tSHXpAExWutZtPl3brDTbxANH2uKJeQ5DB7WNSnKzpp1qi6mGiL9GvPcjPtgidFwyJEc5Yg7qlSteMQS9gEcdahqGOC2zRDwBGIbLRX0iXgLdZi7RKgv653nWwz8u30MA==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYwMDQwNnw1NDc3ODR8NjE4Mzc2fDYyNzY2N3w1ODA3ODJ8NjM1NzkwfDYxOTk1N3w1NDQ1NjF8NjMwNzc0fDU1NDc5Nnw1Mjc0Mjl8NTA1NzkwfDU0NDU1MXw1Nzg4Nzd8NjIwOTc5fDYwMzMzMXw2MTM0MjJ8NTM0MTc4fDU5Njc1NHw1NjkwNDB8NTI2NTA4fDYwODk5OXw2MDkyODh8NTAwNTM1fDUzODc1NHw2MDkzMDR8NjIzNTAzfDUzMjM2MHw2MjAyMTN8NTk3MDk4fDYxMzg1OXw2MzQ3NTB8NjA1NDY3fDU1NjYwN3w2MzU3NTJ8NTcwNDY2fDU4MDc4M3w2MDkxMzl8NDQyNjM3fDYzMTU0OXw1NTQwMDB8NjI5NDYwfDYwMjkyM3w2MzQ3MjF8NTQ0NTA0fDU5Nzg4M3w1OTM2Mjd8EMuOta8BGI2U640BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUNERTcGhPWDUzazUybXBlN1RaUk4xSmVVOGZqbTF4WEFHdHYvUE9DSFhuN01Qb2p5UGpGdGdySXpGUElrV2FjR1NkcGpWWGxzR3JzZzVQd2l2VFJUejAxa1BCa2FuVE8xSjF3UXUrdEFPc2s5bW9nTHd2MWRjdkp6SXdNaisrZHlER3N0QnZzcllpUmF3TVZyMWpibXIxWXc0WmFZbTI5UDlVT0FLWVVFNk1uSDg5QVEybXFLTVlsQTNoT2YrK05DdjdCRElhdm1uWnE0aGZianhJODlJdzFZd0VzcjFFdzZOTFluMmsrSmo2TjJuM0hZb0hhNlFsQ0RWWVhOVGpNTDNycGltRWk1WjIxUFFCUlVpcGFQMWF5L2paeHNnVnhWL1J2Y0paUVNzVzllWVc5YnpGZ05hYXY4U2ZmYm9FZjd1RE00UFNyTUg3emVoZTZMSDVPRi9rWUhIUFdmaFEwTEQ1enZZb2dyK2U2N2hML2ViVEE5WVh3OEI4QzA5SFgxdFNIWHBBRXhXdXRadFBsM2JyRFRieEFOSDJ1S0plUTVEQjdXTlNuS3pwcDFxaTZtR2lMOUd2UGNqUHRnaWRGd3lKRWM1WWc3cWxTdGVNUVM5Z0VjZGFocUdPQzJ6UkR3QkdJYkxSWDBpWGdMZFppN1JLZ3Y2NTNuV3d6OHUzME1BPT1IMlKlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwN3EAAAAAABByP3knMQisHEpxP4IBCWFjIHdpbmRvd5ABp7udywa4AQHgAZn/j8aYBekBAAAA4JUl8T/xAQAAAECNzv0/yAwP4AwB6QwAAACgG0zRP4kNexSuR+F6lD+RDQAAHE+9JClBoQ0AAACcv0WmQbkN2+aHSENHU0D4DYCAuNL2CLAOw6agzwbiDgyqjQbHjQbVjgbwkAa5DzEIrBxaLHQ/wQ9JcVaQ2zkBP8gPFOIZ/ApFb1VCTUM0NU9UYzVNaXd0TVN3dE1Td3RNU3d0TVN3eExqQXdOems1T1RrNU9UazVPVGs1T1Rnc01Td3dMakV6TURZNU9UazRNekEyT0RJeU16Y3lMREF1T1N3d0xqZ3dNalk0TkRJNU9ETXpORFF4T0Rjc01TNHdNREF3TVRJekxEY3lNQzR6TnpJeE9EYzJORGt4T1RVNExERXlMakF6T1RneE5ETTBPVFUyTVRJMU5Dd3RNUjNaWTBaTklNMi9pMWt0cjNkL1B6VUFBSUEvT1VqRTZPVzlaVWxDUVZFNTVzWGU5bkpDU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJTRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJTRGdpcTg1WURFUUFBQUFBQUFBQUFVZzRJclBPV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFHSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBY1FBQUFNQXhPbDQvZVFBQUFFQXVzU1EvZ1FFQUFBQ0FOYWpDUVlrQkFBQUFBQll4aUVHUkFRQUFBT0JHSzhSQm1RRUFBQUNnemVYRVFhRUJBQUFBUUZWVWtFR3BBUUFBQUVoWThNWkI2QUVCZ0FLVUE0b0NQakF1TURBeE9UZ3hMREV1TURBd01EQXdMREV1TURReU5UUXdMREV1TWpRM01qVXpMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUpUNDZXYnhDRHdQNkVDQUFBQVNGand4a0c1QWtIdmpTRUF1T0Uvd1FJQUFBQUFBQUFBZ01vQ0N3Z0JFUUFBQUFBQUFBQUF5Z0lMQ0FJUkFBQUFBQUFBQUlEWkFnREZnZ3pnd0tOQjRRSUF1S2swZ2VodFFla0NtQnNPUHpDQ3FVR0tBekFBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQrWkEwakU2T1c5WlVsQ29RTlJPZWJGM3ZaeVFya0Rac0J1MGtqODV6L0JBMUpMekxoZmtPay95UVBXVzJoaFluM3JQOUVEcXdWdEdtTVU3ei82QXcwS0NVOXlaR1Z5VkdsbGNoQUQrZ01SQ2cxSmRHVnRVSEpwWTJWVWFXVnlFQVA2QXdrS0JVbHpUbEJDRUFENkF3c0tCMUp2YVZScFpYSVFBWUVFQUFBQWdGbnRXVCtKQkFBQUFDQUR3Vlkva0FTYkE1Z0VsTFhiei9zMm9BU3gvcXV1cFFTNEJQVFhqK09iQk1BRXBkYTdrY0VJeVFRQUFBQUFBQkJ5UCtFRUFBQUFBQUFRY2ovcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFDQ0FPV0Evb1FVQUFBQUFBQUR3UDZrRkFBQUFBRDZ1OEQreEJRQUFBSUMvOVBNL3VRVUFBQURBek16MFA4RUZBQUFBWUdabTlqL0pCUUFBQUFBQUFQZy/qGQS6TcRN+hn4BQoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQltwPMkt0SmQQoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI3OTUxMTQ3MzgwCg0KB2lzX3Zza3USAigAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigACucBChNlbmdpbmVlcmluZ19tZXRyaWNzEs8BIswBeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjQxLCJhcGkyX2xhdGVuY3lfbXMiOjU4LCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI5LCJhcGkwX2Fkc19jb3VudCI6MjgwLCJhcGkxX2Fkc19jb3VudCI6MTUwOSwiYXBpMl9hZHNfY291bnQiOjMwOCwiYXBpM19hZHNfY291bnQiOjF9CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJOiy3wJIjKUEKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmewH4CDgICAgICogAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUAAABIWPDGQdklOQzO7PJGU0DpJcou+wiMBUlA8iUGU0VBUkNI",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                97
              ]
            },
            "itemid": 27951147380,
            "shopid": 1267387125,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":186834894,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mh5rdr1rydjhb5\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[700005512,1049112,822059908662278,1428713,1718087960,298463379,822120592853526,1400285055,1015914,700190087,837860934119952,1718093079,2018619,825465608497696,2023641,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":1543,\"model_id\":222837815447,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":186834894,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mh5rdr1rydjhb5\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[700005512,1049112,822059908662278,1428713,1718087960,298463379,822120592853526,1400285055,1015914,700190087,837860934119952,1718093079,2018619,825465608497696,2023641,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":1543,\"model_id\":222837815447,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYwMDQwNnw1NDc3ODR8NjE4Mzc2fDYyNzY2N3w1ODA3ODJ8NjM1NzkwfDYxOTk1N3w1NDQ1NjF8NjMwNzc0fDU1NDc5Nnw1Mjc0Mjl8NTA1NzkwfDU0NDU1MXw1Nzg4Nzd8NjIwOTc5fDYwMzMzMXw2MTM0MjJ8NTM0MTc4fDU5Njc1NHw1NjkwNDB8NTI2NTA4fDYwODk5OXw2MDkyODh8NTAwNTM1fDUzODc1NHw2MDkzMDR8NjIzNTAzfDUzMjM2MHw2MjAyMTN8NTk3MDk4fDYxMzg1OXw2MzQ3NTB8NjA1NDY3fDU1NjYwN3w2MzU3NTJ8NTcwNDY2fDU4MDc4M3w2MDkxMzl8NDQyNjM3fDYzMTU0OXw1NTQwMDB8NjI5NDYwfDYwMjkyM3w2MzQ3MjF8NTQ0NTA0fDU5Nzg4M3w1OTM2Mjd8EMuOta8BGI2U640BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUNERTcGhPWDUzazUybXBlN1RaUk4xSmVVOGZqbTF4WEFHdHYvUE9DSFhuN01Qb2p5UGpGdGdySXpGUElrV2FjR1NkcGpWWGxzR3JzZzVQd2l2VFJUejAxa1BCa2FuVE8xSjF3UXUrdEFPc2s5bW9nTHd2MWRjdkp6SXdNaisrZHlER3N0QnZzcllpUmF3TVZyMWpibXIxWXc0WmFZbTI5UDlVT0FLWVVFNk1uSDg5QVEybXFLTVlsQTNoT2YrK05DdjdCRElhdm1uWnE0aGZianhJODlJdzFZd0VzcjFFdzZOTFluMmsrSmo2TjJuM0hZb0hhNlFsQ0RWWVhOVGpNTDNycGltRWk1WjIxUFFCUlVpcGFQMWF5L2paeHNnVnhWL1J2Y0paUVNzVzllWVc5YnpGZ05hYXY4U2ZmYm9FZjd1RE00UFNyTUg3emVoZTZMSDVPRi9rWUhIUFdmaFEwTEQ1enZZb2dyK2U2N2hML2ViVEE5WVh3OEI4QzA5SFgxdFNIWHBBRXhXdXRadFBsM2JyRFRieEFOSDJ1S0plUTVEQjdXTlNuS3pwcDFxaTZtR2lMOUd2UGNqUHRnaWRGd3lKRWM1WWc3cWxTdGVNUVM5Z0VjZGFocUdPQzJ6UkR3QkdJYkxSWDBpWGdMZFppN1JLZ3Y2NTNuV3d6OHUzME1BPT1IMlKlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwN3EAAAAAABByP3knMQisHEpxP4IBCWFjIHdpbmRvd5ABp7udywa4AQHgAZn/j8aYBekBAAAA4JUl8T/xAQAAAECNzv0/yAwP4AwB6QwAAACgG0zRP4kNexSuR+F6lD+RDQAAHE+9JClBoQ0AAACcv0WmQbkN2+aHSENHU0D4DYCAuNL2CLAOw6agzwbiDgyqjQbHjQbVjgbwkAa5DzEIrBxaLHQ/wQ9JcVaQ2zkBP8gPFOIZ/ApFb1VCTUM0NU9UYzVNaXd0TVN3dE1Td3RNU3d0TVN3eExqQXdOems1T1RrNU9UazVPVGs1T1Rnc01Td3dMakV6TURZNU9UazRNekEyT0RJeU16Y3lMREF1T1N3d0xqZ3dNalk0TkRJNU9ETXpORFF4T0Rjc01TNHdNREF3TVRJekxEY3lNQzR6TnpJeE9EYzJORGt4T1RVNExERXlMakF6T1RneE5ETTBPVFUyTVRJMU5Dd3RNUjNaWTBaTklNMi9pMWt0cjNkL1B6VUFBSUEvT1VqRTZPVzlaVWxDUVZFNTVzWGU5bkpDU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJTRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJTRGdpcTg1WURFUUFBQUFBQUFBQUFVZzRJclBPV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFHSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBY1FBQUFNQXhPbDQvZVFBQUFFQXVzU1EvZ1FFQUFBQ0FOYWpDUVlrQkFBQUFBQll4aUVHUkFRQUFBT0JHSzhSQm1RRUFBQUNnemVYRVFhRUJBQUFBUUZWVWtFR3BBUUFBQUVoWThNWkI2QUVCZ0FLVUE0b0NQakF1TURBeE9UZ3hMREV1TURBd01EQXdMREV1TURReU5UUXdMREV1TWpRM01qVXpMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUpUNDZXYnhDRHdQNkVDQUFBQVNGand4a0c1QWtIdmpTRUF1T0Uvd1FJQUFBQUFBQUFBZ01vQ0N3Z0JFUUFBQUFBQUFBQUF5Z0lMQ0FJUkFBQUFBQUFBQUlEWkFnREZnZ3pnd0tOQjRRSUF1S2swZ2VodFFla0NtQnNPUHpDQ3FVR0tBekFBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQrWkEwakU2T1c5WlVsQ29RTlJPZWJGM3ZaeVFya0Rac0J1MGtqODV6L0JBMUpMekxoZmtPay95UVBXVzJoaFluM3JQOUVEcXdWdEdtTVU3ei82QXcwS0NVOXlaR1Z5VkdsbGNoQUQrZ01SQ2cxSmRHVnRVSEpwWTJWVWFXVnlFQVA2QXdrS0JVbHpUbEJDRUFENkF3c0tCMUp2YVZScFpYSVFBWUVFQUFBQWdGbnRXVCtKQkFBQUFDQUR3Vlkva0FTYkE1Z0VsTFhiei9zMm9BU3gvcXV1cFFTNEJQVFhqK09iQk1BRXBkYTdrY0VJeVFRQUFBQUFBQkJ5UCtFRUFBQUFBQUFRY2ovcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFDQ0FPV0Evb1FVQUFBQUFBQUR3UDZrRkFBQUFBRDZ1OEQreEJRQUFBSUMvOVBNL3VRVUFBQURBek16MFA4RUZBQUFBWUdabTlqL0pCUUFBQUFBQUFQZy/qGQS6TcRN+hn4BQoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQltwPMkt0SmQQoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI3OTUxMTQ3MzgwCg0KB2lzX3Zza3USAigAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigACucBChNlbmdpbmVlcmluZ19tZXRyaWNzEs8BIswBeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjQxLCJhcGkyX2xhdGVuY3lfbXMiOjU4LCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI5LCJhcGkwX2Fkc19jb3VudCI6MjgwLCJhcGkxX2Fkc19jb3VudCI6MTUwOSwiYXBpMl9hZHNfY291bnQiOjMwOCwiYXBpM19hZHNfY291bnQiOjF9CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJOiy3wJIjKUEKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmewH4CDgICAgICogAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUAAABIWPDGQdklOQzO7PJGU0DpJcou+wiMBUlA8iUGU0VBUkNI",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27951147380",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29835948726,
              "shopid": 2448775,
              "name": "Reiwa AC Window 1/2PK 1PK Low Watt CW 0501RA 0901RA AC 0,5PK Langsung Pasang Tanpa Instalasi",
              "label_ids": [
                13,
                38,
                47,
                39,
                1000204,
                1000167,
                2023641,
                2018619,
                844931086908638,
                1718087960,
                1428713,
                844931064601283,
                1718093079,
                1213641,
                1400285055,
                1015914,
                700190087,
                298893311,
                1718093065,
                1049116,
                1049117,
                822059908662278,
                825465608492064,
                825465608499232,
                834403089593352,
                825465608497696,
                840990690654214,
                840955085144628,
                2108629,
                298463379,
                700830032,
                1400025118,
                298933384,
                2048660,
                2048661,
                700810080,
                1718093085,
                298468390,
                1718093084,
                298458396,
                1718088046,
                700585042,
                1718088044,
                298458398,
                997921050,
                298468389,
                997921049,
                298838363,
                1718088045
              ],
              "image": "id-11134207-7rbk9-m9cjw28x8h6j70",
              "images": [
                "id-11134207-7rbk9-m9cjw28x8h6j70",
                "id-11134207-7rbkc-m9coehoirrz2c7",
                "id-11134207-7rbk9-m9coehoit6ji86",
                "id-11134207-7rbkc-m9cqb6n7f4nycc",
                "id-11134207-7rbk8-m9coehoiul3y77",
                "id-11134207-7rbk2-m9coehoixe8ubb",
                "id-11134207-7rbk1-m9cqb6n79ie63d",
                "id-11134207-7rbka-m9cqb6n7gj8e32",
                "id-11134207-7rbk7-m9cqb6n7awym11"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1746341586,
              "sold": 4,
              "historical_sold": 62,
              "liked": false,
              "liked_count": 64,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 40,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 197000000000,
              "price_min": 197000000000,
              "price_max": 197000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6knai-ma86t4vxcj84ca.16000091748246418.mp4",
                  "thumb_url": "id-11110107-6knai-ma86t4vxcj84ca_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110107-6knai-ma86t4vxcj84ca",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6knai-ma86t4vxcj84ca.16000091748246418.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6knai-ma86t4vxcj84ca.16000091748246418.mp4",
                      "width": 270,
                      "height": 482
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6knai-ma86t4vxcj84ca.default.mp4",
                    "width": 358,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Ukuran",
                  "options": [
                    "CW-0501RA 1/2PK",
                    "CW-0901RA 1PK"
                  ],
                  "images": [
                    "id-11134207-7rbka-m9cqb6n7cbj2ef",
                    "id-11134207-7rbka-m9cqb6n7dq3id5"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.95,
                "rating_count": [
                  40,
                  0,
                  0,
                  0,
                  2,
                  38
                ],
                "rcount_with_context": 7,
                "rcount_with_image": 5
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 197000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 237792720127,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 197000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 62,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 62,
                "display_sold_count_text": "62"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ELMART OFFICIAL SHOP",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000,
                91,
                97,
                88,
                4
              ]
            },
            "itemid": 29835948726,
            "shopid": 2448775,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-m9cjw28x8h6j70\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[13,38,47,39,1000204,1000167,2023641,2018619,844931086908638,1718087960,1428713,844931064601283,1718093079,1213641,1400285055,1015914,700190087,298893311,1718093065,1049116,1049117,822059908662278,825465608492064,825465608499232,834403089593352,825465608497696,840990690654214,840955085144628,2108629,298463379,700830032,1400025118,298933384,2048660,2048661,700810080,1718093085,298468390,1718093084,298458396,1718088046,700585042,1718088044,298458398,997921050,298468389,997921049,298838363,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":553,\"model_id\":237792720127,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,91,97,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-m9cjw28x8h6j70\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[13,38,47,39,1000204,1000167,2023641,2018619,844931086908638,1718087960,1428713,844931064601283,1718093079,1213641,1400285055,1015914,700190087,298893311,1718093065,1049116,1049117,822059908662278,825465608492064,825465608499232,834403089593352,825465608497696,840990690654214,840955085144628,2108629,298463379,700830032,1400025118,298933384,2048660,2048661,700810080,1718093085,298468390,1718093084,298458396,1718088046,700585042,1718088044,298458398,997921050,298468389,997921049,298838363,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":553,\"model_id\":237792720127,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,91,97,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29835948726",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28456060337,
              "shopid": 257396949,
              "name": "AC WINDOW 1/2 PK REIWA CW-0501RA CW 0501RA",
              "label_ids": [
                844931064601283,
                1213641,
                1718093079,
                2018619,
                1015914,
                700190087,
                1049112,
                1049127,
                822059908662278,
                825465608499232,
                298463379,
                844931086908638,
                2048661,
                2048660,
                700765096,
                700810080,
                825465608497696,
                822120592853526,
                298468390,
                1718088044,
                298458396,
                298458398,
                1718093084,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7r98y-ly313tcoj7ak93",
              "images": [
                "id-11134207-7r98y-ly313tcoj7ak93",
                "id-11134207-7r98t-ly313tcoklv064"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1721783925,
              "sold": 0,
              "historical_sold": 18,
              "liked": false,
              "liked_count": 24,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 5,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "normal",
              "price": 215000000000,
              "price_min": 215000000000,
              "price_max": 215000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 215000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 178321793710,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 215000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 18,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 18,
                "display_sold_count_text": "18"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "grosirelektronik1",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000
              ]
            },
            "itemid": 28456060337,
            "shopid": 257396949,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98y-ly313tcoj7ak93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1718093079,2018619,1015914,700190087,1049112,1049127,822059908662278,825465608499232,298463379,844931086908638,2048661,2048660,700765096,700810080,825465608497696,822120592853526,298468390,1718088044,298458396,298458398,1718093084,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":4043,\"model_id\":178321793710,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98y-ly313tcoj7ak93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1718093079,2018619,1015914,700190087,1049112,1049127,822059908662278,825465608499232,298463379,844931086908638,2048661,2048660,700765096,700810080,825465608497696,822120592853526,298468390,1718088044,298458396,298458398,1718093084,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":4043,\"model_id\":178321793710,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28456060337",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26312848718,
              "shopid": 198666921,
              "name": "AC Reiwa 0.5 PK Window Low Watt CW 0501 RA Air Conditioner 0,5 1/2PK 1/2 CW0501 CW 0501RA",
              "label_ids": [
                844931064601283,
                298463379,
                1718093079,
                844931086908638,
                1015914,
                700190087,
                1000031,
                1400285055,
                1213641,
                2018619,
                2023641,
                298893311,
                1049141,
                700005513,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                825465608494624,
                700750053,
                1400025118,
                822120592853526,
                298933384,
                2068629,
                298938357,
                2108629,
                700765096,
                298938356,
                1400066568,
                2098630,
                2098628,
                298458398,
                1718093084,
                298938368,
                2108637,
                997921049,
                2098629,
                1718088046,
                1718093085,
                997921050,
                298838363,
                2103632,
                700585042,
                1718088045,
                298468389,
                1718088044,
                298468390,
                298458396
              ],
              "image": "id-11134207-7rasm-m0v4gy4ofryfda",
              "images": [
                "id-11134207-7rasm-m0v4gy4ofryfda",
                "id-11134207-7rasc-m0ttolvs7c644d",
                "id-11134207-7rasm-m1xw9nagi27t49",
                "id-11134207-7rase-m1xw9na6ph7j03",
                "id-11134207-7rasg-m1xw9na6qw9b48",
                "id-11134207-7rasi-m1xw9na6mojac4",
                "id-11134207-7rash-m0v4gy4oeddzbb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1727763786,
              "sold": 14,
              "historical_sold": 165,
              "liked": false,
              "liked_count": 197,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 83,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 209500000000,
              "price_min": 209500000000,
              "price_max": 209500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6ke1d-m1jornmhqqi915.16000091729329324.mp4",
                  "thumb_url": "id-11110107-7rasj-m1jorppop1nb63",
                  "duration": 16,
                  "version": 2,
                  "vid": "id-11110107-6ke1d-m1jornmhqqi915",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ke1d-m1jornmhqqi915.default.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1d-m1jornmhqqi915.default.mp4",
                      "width": 360,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1d-m1jornmhqqi915.default.mp4",
                    "width": 360,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.9397590361445785,
                "rating_count": [
                  83,
                  1,
                  0,
                  0,
                  1,
                  81
                ],
                "rcount_with_context": 22,
                "rcount_with_image": 15
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bantul",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp698RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 209500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 158814627422,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 209500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 165,
                "rounded_local_monthly_sold_count": 14,
                "local_monthly_sold_count_text": "14",
                "rounded_display_sold_count": 165,
                "display_sold_count_text": "165"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp698RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Lentera Star",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                97,
                88,
                0,
                1000,
                4
              ]
            },
            "itemid": 26312848718,
            "shopid": 198666921,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m0v4gy4ofryfda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1718093079,844931086908638,1015914,700190087,1000031,1400285055,1213641,2018619,2023641,298893311,1049141,700005513,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608494624,700750053,1400025118,822120592853526,298933384,2068629,298938357,2108629,700765096,298938356,1400066568,2098630,2098628,298458398,1718093084,298938368,2108637,997921049,2098629,1718088046,1718093085,997921050,298838363,2103632,700585042,1718088045,298468389,1718088044,298468390,298458396],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":225,\"model_id\":158814627422,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,97,88,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m0v4gy4ofryfda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1718093079,844931086908638,1015914,700190087,1000031,1400285055,1213641,2018619,2023641,298893311,1049141,700005513,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608494624,700750053,1400025118,822120592853526,298933384,2068629,298938357,2108629,700765096,298938356,1400066568,2098630,2098628,298458398,1718093084,298938368,2108637,997921049,2098629,1718088046,1718093085,997921050,298838363,2103632,700585042,1718088045,298468389,1718088044,298468390,298458396],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":225,\"model_id\":158814627422,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,97,88,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26312848718",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27603070417,
              "shopid": 134200929,
              "name": "REIWA AC WINDOW PORTABLE REIWA CW-0501RA CW 0501RA CW 0501 RA 1/2  Air Conditioner 0.5 1 PK AC Window 0.5PK 370 WATT LOW WATT, AWET, MURAH, PENDINGIN CEPAT GARANSI RESMI",
              "label_ids": [
                1400095067,
                1400285005,
                844931064601283,
                1213641,
                1000031,
                1718093079,
                2018619,
                2023641,
                1015914,
                700190087,
                700765096,
                1400285055,
                1049112,
                1049127,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                822120592853526,
                834403089593352,
                298933384,
                2108629,
                298458396,
                1718093084
              ],
              "image": "id-11134207-7r98r-lwmnw2litnsc91",
              "images": [
                "id-11134207-7r98r-lwmnw2litnsc91",
                "id-11134207-7r98r-lwmnw2liv2csad",
                "id-11134207-7r98s-lwmnw2lixvhobe",
                "id-11134207-7r98p-lwmnw2liwgx884",
                "id-11134207-7r98o-lwmnw2lil8fxd1",
                "id-11134207-7r98y-lwmnw2lio1kte9",
                "id-11134207-7r992-lwmnw2limn0d1f",
                "id-11134207-7ra0g-mdmxqxn1if4i16"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1718619221,
              "sold": 1,
              "historical_sold": 20,
              "liked": false,
              "liked_count": 30,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 9,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194900000000,
              "price_min": 194900000000,
              "price_max": 194900000000,
              "price_min_before_discount": 224900000000,
              "price_max_before_discount": 224900000000,
              "hidden_price_display": null,
              "price_before_discount": 224900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-13%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "PACKING",
                  "options": [
                    "0501RA",
                    "0501RA // KAYU"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  9,
                  0,
                  0,
                  0,
                  0,
                  9
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 828934317457408,
                "price": 194900000000,
                "strikethrough_price": 224900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-13%",
                "model_id": 286163165193,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 224900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 20,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 20,
                "display_sold_count_text": "20"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Cipta Agung Electronics",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                1000,
                1000,
                1000,
                97,
                0,
                1000
              ]
            },
            "itemid": 27603070417,
            "shopid": 134200929,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98r-lwmnw2litnsc91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,844931064601283,1213641,1000031,1718093079,2018619,2023641,1015914,700190087,700765096,1400285055,1049112,1049127,822059908662278,825465608499232,825465608497696,2048660,2048661,822120592853526,834403089593352,298933384,2108629,298458396,1718093084],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":1503,\"model_id\":286163165193,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,1000,97,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98r-lwmnw2litnsc91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,844931064601283,1213641,1000031,1718093079,2018619,2023641,1015914,700190087,700765096,1400285055,1049112,1049127,822059908662278,825465608499232,825465608497696,2048660,2048661,822120592853526,834403089593352,298933384,2108629,298458396,1718093084],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":1503,\"model_id\":286163165193,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,1000,97,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27603070417",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27413936114,
              "shopid": 234197686,
              "name": "REIWA Ac Window 1/2PK - AC0501RA - 100% ORI",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1718093079,
                1015914,
                700190087,
                1000031,
                1213641,
                1400285055,
                2018619,
                2023641,
                1059152,
                700005489,
                822059908662278,
                834403089593352,
                825465608497696,
                840990690654214,
                837860934119952,
                840955085144628,
                825465608492064,
                827380695406658,
                825465608499232,
                700830032,
                2048660,
                2048661,
                298463379,
                2108629,
                298458398,
                1718093084,
                1718088045,
                298468390,
                298468389,
                298458396,
                1718088044
              ],
              "image": "id-11134207-7rash-m1c87lep361i3a",
              "images": [
                "id-11134207-7rash-m1c87lep361i3a",
                "id-11134207-7ras8-m1c87lep35r7f3",
                "id-11134207-7rasd-m1c87lep4kdw23",
                "id-11134207-7rasl-m1c87lep35rb1f",
                "id-11134207-7rask-m1c87lep35lqd5",
                "id-11134207-7rasb-m1c87lep364v5b",
                "id-11134207-7ras9-m1c87lep363p7e",
                "id-11134207-7rasb-m1c87lep368jbb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1728877852,
              "sold": 1,
              "historical_sold": 41,
              "liked": false,
              "liked_count": 33,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 18,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199900000000,
              "price_min": 199900000000,
              "price_max": 199900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.666666666666667,
                "rating_count": [
                  18,
                  0,
                  0,
                  1,
                  4,
                  13
                ],
                "rcount_with_context": 5,
                "rcount_with_image": 5
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 128075158198,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 41,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 41,
                "display_sold_count_text": "41"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ReeSeLL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                1000,
                1000,
                0,
                1000
              ]
            },
            "itemid": 27413936114,
            "shopid": 234197686,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rash-m1c87lep361i3a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1718093079,1015914,700190087,1000031,1213641,1400285055,2018619,2023641,1059152,700005489,822059908662278,834403089593352,825465608497696,840990690654214,837860934119952,840955085144628,825465608492064,827380695406658,825465608499232,700830032,2048660,2048661,298463379,2108629,298458398,1718093084,1718088045,298468390,298468389,298458396,1718088044],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2363,\"model_id\":128075158198,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rash-m1c87lep361i3a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1718093079,1015914,700190087,1000031,1213641,1400285055,2018619,2023641,1059152,700005489,822059908662278,834403089593352,825465608497696,840990690654214,837860934119952,840955085144628,825465608492064,827380695406658,825465608499232,700830032,2048660,2048661,298463379,2108629,298458398,1718093084,1718088045,298468390,298468389,298458396,1718088044],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2363,\"model_id\":128075158198,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27413936114",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28376871832,
              "shopid": 1111286142,
              "name": "[ GARANSI RESMI ] REIWA AC WINDOW 1 PK CW-0901RA praktis bisa pasang sendiri pendingin low watt",
              "label_ids": [
                844931064601283,
                1718093079,
                1015914,
                700190087,
                1718087960,
                1428713,
                2018619,
                298463379,
                298888358,
                298938357,
                1400285055,
                2023641,
                1049116,
                1049117,
                822059908662278,
                825465608499232,
                825465608497696,
                1400025118,
                2108629,
                298933384,
                298938368,
                2098629,
                2098630,
                1718093085,
                997921049,
                1718088046,
                1718088045,
                2103632,
                2108637,
                2098628,
                298468389,
                997921050,
                700585042
              ],
              "image": "id-11134207-7rbk8-m6hpx5z8mi7h46",
              "images": [
                "id-11134207-7rbk8-m6hpx5z8mi7h46",
                "id-11134207-7rbkd-m6hpx5z8pbg429",
                "id-11134207-7rbk9-m6hpx5z8qq0k24",
                "id-11134207-7rbk6-m6hpx5z8uxpwaf",
                "id-11134207-7rbk3-m6hpx5z8tj5g9b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1740106609,
              "sold": 3,
              "historical_sold": 9,
              "liked": false,
              "liked_count": 8,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 245000000000,
              "price_min": 245000000000,
              "price_max": 245000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvm-mfxplk4xtsso43.16000081760687580.mp4",
                  "thumb_url": "id-11110105-6vdvm-mfxplk4xtsso43_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6vdvm-mfxplk4xtsso43",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvm-mfxplk4xtsso43.16000081760687580.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvm-mfxplk4xtsso43.16000081760687580.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvm-mfxplk4xtsso43.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 245000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 247686917796,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 245000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 9,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 9,
                "display_sold_count_text": "9"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Pionier Electronic",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000,
                97
              ]
            },
            "itemid": 28376871832,
            "shopid": 1111286142,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk8-m6hpx5z8mi7h46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1015914,700190087,1718087960,1428713,2018619,298463379,298888358,298938357,1400285055,2023641,1049116,1049117,822059908662278,825465608499232,825465608497696,1400025118,2108629,298933384,298938368,2098629,2098630,1718093085,997921049,1718088046,1718088045,2103632,2108637,2098628,298468389,997921050,700585042],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":1776,\"model_id\":247686917796,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk8-m6hpx5z8mi7h46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1015914,700190087,1718087960,1428713,2018619,298463379,298888358,298938357,1400285055,2023641,1049116,1049117,822059908662278,825465608499232,825465608497696,1400025118,2108629,298933384,298938368,2098629,2098630,1718093085,997921049,1718088046,1718088045,2103632,2108637,2098628,298468389,997921050,700585042],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":1776,\"model_id\":247686917796,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28376871832",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45403668474,
              "shopid": 1709284149,
              "name": "REIWA CW-0501RA / CW0501RA WINDOW AIR CONDITIONER 1/2 PK",
              "label_ids": [
                844931064601283,
                844931086908638,
                1049128,
                700005504,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                825465608493600,
                1718596,
                1718093079,
                1718087960,
                1428713,
                298488495,
                299033477,
                2213765
              ],
              "image": "sg-11134201-81zw6-mio1nj0emvpg19",
              "images": [
                "sg-11134201-81zw6-mio1nj0emvpg19",
                "sg-11134201-81ztn-mio1njfywg771f",
                "sg-11134201-81zvm-mio1njyqkyyu65",
                "sg-11134201-81zwc-mio1nkes696v83",
                "sg-11134201-81ztg-mio1nks9vgua87"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766640213,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 79628000000,
              "price_min": 79628000000,
              "price_max": 79628000000,
              "price_min_before_discount": 199070000000,
              "price_max_before_discount": 199070000000,
              "hidden_price_display": null,
              "price_before_discount": 199070000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-60%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Palembang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 825842343673856,
                "price": 79628000000,
                "strikethrough_price": 199070000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-60%",
                "model_id": 320348511914,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199070000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "s_nb6ntsb6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000
              ]
            },
            "itemid": 45403668474,
            "shopid": 1709284149,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zw6-mio1nj0emvpg19\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049128,700005504,822059908662278,825465608494624,825465608499232,825465608497696,825465608493600,1718596,1718093079,1718087960,1428713,298488495,299033477,2213765],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2478,\"model_id\":320348511914,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zw6-mio1nj0emvpg19\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049128,700005504,822059908662278,825465608494624,825465608499232,825465608497696,825465608493600,1718596,1718093079,1718087960,1428713,298488495,299033477,2213765],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2478,\"model_id\":320348511914,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45403668474",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29678473845,
              "shopid": 45564062,
              "name": "AC Jendela REIWA 1/2 PK CW-0501RA 0,5 PK",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1213641,
                2018619,
                2023641,
                298893311,
                1400285055,
                1015914,
                700190087,
                1718093079,
                2108629,
                2068629,
                298938357,
                1049112,
                1049147,
                822059908662278,
                825465608492064,
                834403089593352,
                298468389,
                1718088045,
                298468390,
                1718088044,
                298458396,
                298458398,
                2098628,
                1718093084,
                298938368,
                2098629
              ],
              "image": "id-11134207-7rbk7-m6z8b10iqikc2d",
              "images": [
                "id-11134207-7rbk7-m6z8b10iqikc2d",
                "id-11134207-7rbk2-m6z8b10iqip6e2",
                "id-11134207-7rbkb-m6z8b10iqijlb3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1741166527,
              "sold": 1,
              "historical_sold": 10,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 8,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 209000000000,
              "price_min": 209000000000,
              "price_max": 209000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  8,
                  0,
                  0,
                  0,
                  0,
                  8
                ],
                "rcount_with_context": 5,
                "rcount_with_image": 6
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp696RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 209000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 198276041924,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 209000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 10,
                "display_sold_count_text": "10"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp696RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "digitalniagamakmur",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000
              ]
            },
            "itemid": 29678473845,
            "shopid": 45564062,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk7-m6z8b10iqikc2d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1213641,2018619,2023641,298893311,1400285055,1015914,700190087,1718093079,2108629,2068629,298938357,1049112,1049147,822059908662278,825465608492064,834403089593352,298468389,1718088045,298468390,1718088044,298458396,298458398,2098628,1718093084,298938368,2098629],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":4131,\"model_id\":198276041924,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk7-m6z8b10iqikc2d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1213641,2018619,2023641,298893311,1400285055,1015914,700190087,1718093079,2108629,2068629,298938357,1049112,1049147,822059908662278,825465608492064,834403089593352,298468389,1718088045,298468390,1718088044,298458396,298458398,2098628,1718093084,298938368,2098629],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":4131,\"model_id\":198276041924,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29678473845",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29820370972,
              "shopid": 78317889,
              "name": "AC Window Reiwa 1/2 PK CW-0501RA Direct Cooling",
              "label_ids": [
                700025282,
                298463379,
                1400066568,
                1718093079,
                1213641,
                1000031,
                1015914,
                700190087,
                2018619,
                1400285055,
                844931086908638,
                700765096,
                700005495,
                700005490,
                2048660,
                2048661,
                822059908662278,
                825465608499232,
                834403089593352,
                825465608497696,
                837860934119952,
                825465608492064,
                2108629,
                298468389,
                1718088045,
                298468390,
                1718088044,
                298458396,
                298458398,
                1718093084
              ],
              "image": "id-11134207-7rasj-m3nb5aq7qso03b",
              "images": [
                "id-11134207-7rasj-m3nb5aq7qso03b",
                "id-11134207-7rask-m3nb5aq7xti81d",
                "id-11134207-7rasi-m3nb5aq7z82odb",
                "id-11134207-7rasb-m3nb5aq80mn42e",
                "id-11134207-7rasa-m3nb5aq83fs0ec",
                "id-11134207-7rasa-m3nb5aq7s78gad",
                "id-11134207-7rasc-m3nb5aq7tlsw6b",
                "id-11134207-7rasm-m3nb5aq7v0dcd9",
                "id-11134207-7rasa-m3nb5aq7wexse1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1733907340,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 2,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194900000000,
              "price_min": 194900000000,
              "price_max": 194900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 194900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 237137359337,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 194900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EVEREST ELECTRONIC",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000
              ]
            },
            "itemid": 29820370972,
            "shopid": 78317889,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasj-m3nb5aq7qso03b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,298463379,1400066568,1718093079,1213641,1000031,1015914,700190087,2018619,1400285055,844931086908638,700765096,700005495,700005490,2048660,2048661,822059908662278,825465608499232,834403089593352,825465608497696,837860934119952,825465608492064,2108629,298468389,1718088045,298468390,1718088044,298458396,298458398,1718093084],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2044,\"model_id\":237137359337,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasj-m3nb5aq7qso03b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,298463379,1400066568,1718093079,1213641,1000031,1015914,700190087,2018619,1400285055,844931086908638,700765096,700005495,700005490,2048660,2048661,822059908662278,825465608499232,834403089593352,825465608497696,837860934119952,825465608492064,2108629,298468389,1718088045,298468390,1718088044,298458396,298458398,1718093084],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2044,\"model_id\":237137359337,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29820370972",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27032983103,
              "shopid": 36168193,
              "name": "AC WIDOW REIWA 1/2 Pk Tanpa Pipa / AC Pakai Freon R32 / AC REIWA Window 1/2 / AC PORTABLE / AC MOBILE / PENDINGIN RUANGAN",
              "label_ids": [
                2023641,
                2018619,
                844931064601283,
                1049112,
                700005512,
                822059908662278,
                825465608492064,
                834403089593352,
                1213641,
                825465608499232,
                1015914,
                700190087,
                298893311,
                825465608497696,
                1718093079,
                298463379,
                2048660,
                2048661,
                298933384,
                2108629,
                298468390,
                1718088045,
                298468389,
                298458398,
                1718093084,
                1718088044,
                298458396
              ],
              "image": "sg-11134201-7rdxt-mbt5r5caguq50c",
              "images": [
                "sg-11134201-7rdxt-mbt5r5caguq50c",
                "sg-11134201-7rdxu-mbt5r5km4ms69b",
                "sg-11134201-7rdyf-mbt5r5rjt2d572",
                "sg-11134201-7rdy1-mbt5r5xxl6kt0c",
                "sg-11134201-7rdxa-mbt5r65f8ri18d",
                "sg-11134201-7rdyk-mbt5r6f4ukba01",
                "sg-11134201-7rdy7-mbt5r6limm9l22",
                "sg-11134201-7rdwk-mbt5r6r2ei07d1",
                "sg-11134201-7rdya-mbt5r6y02zudfc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1744345151,
              "sold": 1,
              "historical_sold": 12,
              "liked": false,
              "liked_count": 62,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 6,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199207300000,
              "price_min": 199207300000,
              "price_max": 199207300000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.833333333333333,
                "rating_count": [
                  6,
                  0,
                  0,
                  0,
                  1,
                  5
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199207300000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 258147261918,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199207300000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 12,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 12,
                "display_sold_count_text": "12"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Zhuper Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000,
                1000,
                91,
                97
              ]
            },
            "itemid": 27032983103,
            "shopid": 36168193,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxt-mbt5r5caguq50c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1213641,825465608499232,1015914,700190087,298893311,825465608497696,1718093079,298463379,2048660,2048661,298933384,2108629,298468390,1718088045,298468389,298458398,1718093084,1718088044,298458396],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":389,\"model_id\":258147261918,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxt-mbt5r5caguq50c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1213641,825465608499232,1015914,700190087,298893311,825465608497696,1718093079,298463379,2048660,2048661,298933384,2108629,298468390,1718088045,298468389,298458398,1718093084,1718088044,298458396],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":389,\"model_id\":258147261918,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27032983103",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27032983103,
              "shopid": 36168193,
              "name": "AC WIDOW REIWA 1/2 Pk Tanpa Pipa / AC Pakai Freon R32 / AC REIWA Window 1/2 / AC PORTABLE / AC MOBILE / PENDINGIN RUANGAN",
              "label_ids": [
                2023641,
                2018619,
                844931064601283,
                1049112,
                700005512,
                822059908662278,
                825465608492064,
                834403089593352,
                1213641,
                825465608499232,
                1015914,
                700190087,
                298893311,
                825465608497696,
                1718093079,
                298463379,
                2048660,
                2048661,
                298933384,
                2108629,
                298468389,
                1718088045,
                298468390,
                298458398,
                1718093084,
                298458396,
                1718088044
              ],
              "image": "sg-11134201-7rdxt-mbt5r5caguq50c",
              "images": [
                "sg-11134201-7rdxt-mbt5r5caguq50c",
                "sg-11134201-7rdxu-mbt5r5km4ms69b",
                "sg-11134201-7rdyf-mbt5r5rjt2d572",
                "sg-11134201-7rdy1-mbt5r5xxl6kt0c",
                "sg-11134201-7rdxa-mbt5r65f8ri18d",
                "sg-11134201-7rdyk-mbt5r6f4ukba01",
                "sg-11134201-7rdy7-mbt5r6limm9l22",
                "sg-11134201-7rdwk-mbt5r6r2ei07d1",
                "sg-11134201-7rdya-mbt5r6y02zudfc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1744345151,
              "sold": 1,
              "historical_sold": 12,
              "liked": false,
              "liked_count": 62,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 6,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199207300000,
              "price_min": 199207300000,
              "price_max": 199207300000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.833333333333333,
                "rating_count": [
                  6,
                  0,
                  0,
                  0,
                  1,
                  5
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199207300000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 258147261918,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199207300000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 12,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 12,
                "display_sold_count_text": "12"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Zhuper Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000,
                1000,
                91,
                97
              ]
            },
            "itemid": 27032983103,
            "shopid": 36168193,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxt-mbt5r5caguq50c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1213641,825465608499232,1015914,700190087,298893311,825465608497696,1718093079,298463379,2048660,2048661,298933384,2108629,298468389,1718088045,298468390,298458398,1718093084,298458396,1718088044],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":388,\"model_id\":258147261918,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxt-mbt5r5caguq50c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1213641,825465608499232,1015914,700190087,298893311,825465608497696,1718093079,298463379,2048660,2048661,298933384,2108629,298468389,1718088045,298468390,298458398,1718093084,298458396,1718088044],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":388,\"model_id\":258147261918,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27032983103",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25789043770,
              "shopid": 286912607,
              "name": "REIWA AC Window 1/2 PK CW-0501RA 0,5 PK",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608492064,
                822120592853526,
                1015914,
                700190087,
                1213641,
                1000031,
                1718093079,
                2018619,
                2023641,
                1400066568,
                1400285055,
                825465608497696,
                700830032,
                834403089593352,
                2048661,
                2048660,
                2108629,
                1718088044,
                1718088045,
                298458398,
                298468389,
                298458396,
                1718093084,
                298468390
              ],
              "image": "id-11134207-7ra0o-md479viz7gis6e",
              "images": [
                "id-11134207-7ra0o-md479viz7gis6e",
                "id-11134207-7ra0t-md479vip7v2wda",
                "id-11134207-7ra0r-md479viz8v382e",
                "id-11134207-7ra0u-md479vip7v0582",
                "id-11134207-7ra0k-md479vip7uws20",
                "id-11134207-7ra0r-md479vjthh7oc8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1733217423,
              "sold": 3,
              "historical_sold": 13,
              "liked": false,
              "liked_count": 17,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 9,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199900000000,
              "price_min": 199900000000,
              "price_max": 199900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "VARIASI",
                  "options": [
                    "CW-05 1/2 PK UNIT",
                    "CW-05 1/2PK PASANG",
                    "CW-09 1 PK UNIT SAJA",
                    "CW-09 1 PK PASANG"
                  ],
                  "images": [
                    "id-11134207-7ra0t-md479vjtivs4fa",
                    "id-11134207-7ra0l-md479vjtkack68",
                    "id-11134207-7ra0s-md479vjtlox02c",
                    "id-11134207-7ra0s-md479vjtn3hg1f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  9,
                  0,
                  0,
                  0,
                  0,
                  9
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 178656124641,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 13,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 13,
                "display_sold_count_text": "13"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SILENGKAP ELECTRONIC",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                1000,
                1000,
                0,
                1000
              ]
            },
            "itemid": 25789043770,
            "shopid": 286912607,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0o-md479viz7gis6e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,298463379,1059152,1059154,822059908662278,825465608492064,822120592853526,1015914,700190087,1213641,1000031,1718093079,2018619,2023641,1400066568,1400285055,825465608497696,700830032,834403089593352,2048661,2048660,2108629,1718088044,1718088045,298458398,298468389,298458396,1718093084,298468390],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2536,\"model_id\":178656124641,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0o-md479viz7gis6e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,298463379,1059152,1059154,822059908662278,825465608492064,822120592853526,1015914,700190087,1213641,1000031,1718093079,2018619,2023641,1400066568,1400285055,825465608497696,700830032,834403089593352,2048661,2048660,2108629,1718088044,1718088045,298458398,298468389,298458396,1718093084,298468390],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2536,\"model_id\":178656124641,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25789043770",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43826147496,
              "shopid": 65941629,
              "name": "AC WINDOW REIWA 1/2PK CW0501RA/AC REIWA 0,5PK CW0501RA NEW SERIES",
              "label_ids": [
                2018619,
                700700063,
                700025282,
                2023641,
                298463379,
                844931086908638,
                1718093079,
                1049112,
                700000515,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                822120592853526,
                700765096,
                298933384,
                2098621,
                1718087960,
                1428713,
                1015914,
                700190087,
                2108629,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82251-mgoti46qpczxe6",
              "images": [
                "id-11134207-82251-mgoti46qpczxe6",
                "id-11134207-82250-mgoti46qwdu5a2",
                "id-11134207-8224s-mgoti46qs64td8",
                "id-11134207-82251-mgoti46quz9p16",
                "id-11134207-8224t-mgoti46qqrkd5b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762330939,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 6,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 1,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "normal",
              "price": 200355000000,
              "price_min": 200355000000,
              "price_max": 200355000000,
              "price_min_before_discount": 210900000000,
              "price_max_before_discount": 210900000000,
              "hidden_price_display": null,
              "price_before_discount": 210900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-5%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemy-mgvits6361hn2c.16000081762734353.mp4",
                  "thumb_url": "id-11110105-6vemy-mgvits6361hn2c_cover",
                  "duration": 33,
                  "version": 2,
                  "vid": "id-11110105-6vemy-mgvits6361hn2c",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemy-mgvits6361hn2c.16000081762734353.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemy-mgvits6361hn2c.16000081762734353.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemy-mgvits6361hn2c.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "TIPE",
                  "options": [
                    "RIEWA CW0501RA"
                  ],
                  "images": [
                    "id-11134207-8224x-mgoti46r0ljhca"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "PACKING",
                  "options": [
                    "DUS BAWAAN PABRIK",
                    "PLASTIK WRAPP 1LAPIS",
                    "PLASTIK WRAPP 2LAPIS",
                    "BUBBLE WRAPPING"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Karawang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 780398284570624,
                "price": 200355000000,
                "strikethrough_price": 210900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-5%",
                "model_id": 350076970325,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 210900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "TOP JAYA ELECTRONIK",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000,
                4
              ]
            },
            "itemid": 43826147496,
            "shopid": 65941629,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mgoti46qpczxe6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700700063,700025282,2023641,298463379,844931086908638,1718093079,1049112,700000515,822059908662278,825465608494624,825465608499232,825465608497696,2048660,2048661,822120592853526,700765096,298933384,2098621,1718087960,1428713,1015914,700190087,2108629,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":2947,\"model_id\":350076970325,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:10 match_weight:1 loss_weight:1 extra_info:\\\"CYtXACDMyQTAEdYNS6fI9gPAGaHRmZmrbKI/IYrOyRyi2azA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3771307419895180\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mgoti46qpczxe6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700700063,700025282,2023641,298463379,844931086908638,1718093079,1049112,700000515,822059908662278,825465608494624,825465608499232,825465608497696,2048660,2048661,822120592853526,700765096,298933384,2098621,1718087960,1428713,1015914,700190087,2108629,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":2947,\"model_id\":350076970325,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:10 match_weight:1 loss_weight:1 extra_info:\\\"CYtXACDMyQTAEdYNS6fI9gPAGaHRmZmrbKI/IYrOyRyi2azA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3771307419895180\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43826147496",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24670225827,
              "shopid": 93761626,
              "name": "AC WINDOW REIWA 1/2PK CW-0501RA 370WATT LOWWATT 0,5PK",
              "label_ids": [
                298463379,
                1213641,
                1015914,
                700190087,
                1400285055,
                1718093079,
                2018619,
                298893311,
                2108629,
                700765096,
                2023641,
                2068629,
                298938357,
                1049112,
                1049136,
                822059908662278,
                2048661,
                834403089593352,
                825465608497696,
                2048660,
                298468390,
                2098628,
                1718088045,
                2098629,
                298468389,
                298458396,
                1718088044,
                1718093084,
                298458398,
                298938368
              ],
              "image": "id-11134207-7r98o-lt54jvn6xfzbef",
              "images": [
                "id-11134207-7r98o-lt54jvn6xfzbef",
                "id-11134207-7r98y-lt54jvlt7wst07",
                "id-11134207-7r991-lt54jvlt0vyl6f",
                "id-11134207-7r990-lt54jvlszhe535",
                "id-11134207-7r98u-lt54jvmwxunxe2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1711014280,
              "sold": 1,
              "historical_sold": 75,
              "liked": false,
              "liked_count": 59,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 29,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 203500000000,
              "price_min": 203500000000,
              "price_max": 203500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "JASA KIRIM",
                  "options": [
                    "INSTANT",
                    "KARGO"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.909090909090909,
                "rating_count": [
                  33,
                  0,
                  1,
                  0,
                  0,
                  32
                ],
                "rcount_with_context": 11,
                "rcount_with_image": 6
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Depok",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp678RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 203500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 306666181934,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 203500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 75,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 75,
                "display_sold_count_text": "75"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp678RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "METRO ELEKTRONIK DEPOK",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                88
              ]
            },
            "itemid": 24670225827,
            "shopid": 93761626,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98o-lt54jvn6xfzbef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,1213641,1015914,700190087,1400285055,1718093079,2018619,298893311,2108629,700765096,2023641,2068629,298938357,1049112,1049136,822059908662278,2048661,834403089593352,825465608497696,2048660,298468390,2098628,1718088045,2098629,298468389,298458396,1718088044,1718093084,298458398,298938368],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4202,\"model_id\":306666181934,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98o-lt54jvn6xfzbef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,1213641,1015914,700190087,1400285055,1718093079,2018619,298893311,2108629,700765096,2023641,2068629,298938357,1049112,1049136,822059908662278,2048661,834403089593352,825465608497696,2048660,298468390,2098628,1718088045,2098629,298468389,298458396,1718088044,1718093084,298458398,298938368],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4202,\"model_id\":306666181934,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24670225827",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26416605488,
              "shopid": 198666921,
              "name": "AC Window Reiwa 1 PK CW 0901 Air Conditioner 1PK CW0901RA CW0901 RA 0901RA / 1/2 0,5 PK CW0501RA",
              "label_ids": [
                298463379,
                844931064601283,
                844931086908638,
                700005513,
                1049141,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1015914,
                700190087,
                1213641,
                1000031,
                1400285055,
                2018619,
                2023641,
                2048660,
                2048661,
                700750053,
                298933384,
                1400025118,
                2068629,
                298938357,
                2108629,
                822120592853526,
                700765096,
                1400066568,
                2103632,
                298458398,
                1718088046,
                298838363,
                1718093084,
                298468390,
                2098628,
                2108637,
                2098629,
                700585042,
                298938368,
                1718088044,
                298458396,
                1718088045,
                1718093085,
                997921049,
                2098630,
                997921050,
                298468389
              ],
              "image": "id-11134207-7ras8-m27yx6y0x58j24",
              "images": [
                "id-11134207-7ras8-m27yx6y0x58j24",
                "id-11134207-7rase-m27t85dpkk8231",
                "id-11134207-7rasi-m27t85dplysi44",
                "id-11134207-7ras8-m27t85dpndcyb5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1730798897,
              "sold": 1,
              "historical_sold": 38,
              "liked": false,
              "liked_count": 32,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 18,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 209500000000,
              "price_min": 209500000000,
              "price_max": 209500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1a-m27yxwgfml1511.16000101730799258.mp4",
                  "thumb_url": "id-11110105-7rasc-m27yxz81l5lj79",
                  "duration": 16,
                  "version": 2,
                  "vid": "id-11110105-6ke1a-m27yxwgfml1511",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1a-m27yxwgfml1511.16000101730799258.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m27yxwgfml1511.16000101730799258.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m27yxwgfml1511.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Kurir",
                  "options": [
                    "1 PK Express Instant",
                    "1 PK Paket Packing",
                    "1/2 PK"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.944444444444445,
                "rating_count": [
                  18,
                  0,
                  0,
                  0,
                  1,
                  17
                ],
                "rcount_with_context": 9,
                "rcount_with_image": 7
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bantul",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp698RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 209500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 227069390611,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 209500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 38,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 38,
                "display_sold_count_text": "38"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp698RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Lentera Star",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                0,
                1000,
                1000,
                1000
              ]
            },
            "itemid": 26416605488,
            "shopid": 198666921,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras8-m27yx6y0x58j24\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,844931064601283,844931086908638,700005513,1049141,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1015914,700190087,1213641,1000031,1400285055,2018619,2023641,2048660,2048661,700750053,298933384,1400025118,2068629,298938357,2108629,822120592853526,700765096,1400066568,2103632,298458398,1718088046,298838363,1718093084,298468390,2098628,2108637,2098629,700585042,298938368,1718088044,298458396,1718088045,1718093085,997921049,2098630,997921050,298468389],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":1570,\"model_id\":227069390611,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras8-m27yx6y0x58j24\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,844931064601283,844931086908638,700005513,1049141,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1015914,700190087,1213641,1000031,1400285055,2018619,2023641,2048660,2048661,700750053,298933384,1400025118,2068629,298938357,2108629,822120592853526,700765096,1400066568,2103632,298458398,1718088046,298838363,1718093084,298468390,2098628,2108637,2098629,700585042,298938368,1718088044,298458396,1718088045,1718093085,997921049,2098630,997921050,298468389],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":1570,\"model_id\":227069390611,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26416605488",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29815581897,
              "shopid": 1389114260,
              "name": "AC Reiwa Window 1/2 PK CW-0501RA 0,5 PK 370 watt",
              "label_ids": [
                844931064601283,
                1718093079,
                1213641,
                2023641,
                2018619,
                298893311,
                1400285055,
                2108629,
                298463379,
                1015914,
                700190087,
                700765096,
                844931086908638,
                700005507,
                1049126,
                822059908662278,
                2048660,
                2048661,
                825465608492064,
                825465608499232,
                825465608497696,
                298468390,
                1718088045,
                298458396,
                1718093084,
                1718088044,
                298468389,
                298458398
              ],
              "image": "id-11134207-7rasd-m1tekc36q2lta4",
              "images": [
                "id-11134207-7rasd-m1tekc36q2lta4",
                "id-11134207-7rase-m1tekc36uab579",
                "id-11134207-7rasc-m1tekc36vovld3",
                "id-11134207-7ras9-m1tekc36svqpc3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1729917712,
              "sold": 13,
              "historical_sold": 145,
              "liked": false,
              "liked_count": 90,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 68,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194900000000,
              "price_min": 194900000000,
              "price_max": 194900000000,
              "price_min_before_discount": 199900000000,
              "price_max_before_discount": 199900000000,
              "hidden_price_display": null,
              "price_before_discount": 199900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-3%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6knaz-m4psiwbeosqy01.16000081736236568.mp4",
                  "thumb_url": "id-11110107-6knaz-m4psiwbeosqy01_cover",
                  "duration": 11,
                  "version": 2,
                  "vid": "id-11110107-6knaz-m4psiwbeosqy01",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6knaz-m4psiwbeosqy01.16000081736236568.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6knaz-m4psiwbeosqy01.16000081736236568.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6knaz-m4psiwbeosqy01.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.970588235294118,
                "rating_count": [
                  68,
                  0,
                  0,
                  0,
                  2,
                  66
                ],
                "rcount_with_context": 14,
                "rcount_with_image": 11
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Denpasar",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 797729777844224,
                "price": 194900000000,
                "strikethrough_price": 199900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-3%",
                "model_id": 29532831855,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 145,
                "rounded_local_monthly_sold_count": 13,
                "local_monthly_sold_count_text": "13",
                "rounded_display_sold_count": 145,
                "display_sold_count_text": "145"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gudangย ACย Bali",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                1000,
                1000,
                88,
                4,
                0,
                1000
              ]
            },
            "itemid": 29815581897,
            "shopid": 1389114260,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m1tekc36q2lta4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1213641,2023641,2018619,298893311,1400285055,2108629,298463379,1015914,700190087,700765096,844931086908638,700005507,1049126,822059908662278,2048660,2048661,825465608492064,825465608499232,825465608497696,298468390,1718088045,298458396,1718093084,1718088044,298468389,298458398],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":158,\"model_id\":29532831855,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,88,4,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m1tekc36q2lta4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1213641,2023641,2018619,298893311,1400285055,2108629,298463379,1015914,700190087,700765096,844931086908638,700005507,1049126,822059908662278,2048660,2048661,825465608492064,825465608499232,825465608497696,298468390,1718088045,298458396,1718093084,1718088044,298468389,298458398],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":158,\"model_id\":29532831855,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,88,4,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29815581897",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24722700869,
              "shopid": 779492034,
              "name": "AC WINDOW 1/2 PK REIWA CW-0501RA 0,5 PK",
              "label_ids": [
                1015914,
                700190087,
                1918643,
                1049112,
                1049136,
                822059908662278,
                822120592853526,
                2018619,
                2023641,
                825465608492064,
                1213641,
                298463379,
                298933384,
                2068629,
                298938357,
                700810080,
                2108629,
                1718093079,
                825465608497696,
                1718093084,
                298458398,
                1718088045,
                2098629,
                2098628,
                298458396,
                1718088044,
                298938368,
                298468389,
                298468390
              ],
              "image": "id-11134207-8224u-mhd76an3h7nx55",
              "images": [
                "id-11134207-8224u-mhd76an3h7nx55"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1712463549,
              "sold": 2,
              "historical_sold": 8,
              "liked": false,
              "liked_count": 19,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 2,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199900000000,
              "price_min": 199900000000,
              "price_max": 199900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Depok",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp666RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 215013197584,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 8,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 8,
                "display_sold_count_text": "8"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp666RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Multi Elektonik CInere",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000,
                97
              ]
            },
            "itemid": 24722700869,
            "shopid": 779492034,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mhd76an3h7nx55\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1015914,700190087,1918643,1049112,1049136,822059908662278,822120592853526,2018619,2023641,825465608492064,1213641,298463379,298933384,2068629,298938357,700810080,2108629,1718093079,825465608497696,1718093084,298458398,1718088045,2098629,2098628,298458396,1718088044,298938368,298468389,298468390],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":3265,\"model_id\":215013197584,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mhd76an3h7nx55\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1015914,700190087,1918643,1049112,1049136,822059908662278,822120592853526,2018619,2023641,825465608492064,1213641,298463379,298933384,2068629,298938357,700810080,2108629,1718093079,825465608497696,1718093084,298458398,1718088045,2098629,2098628,298458396,1718088044,298938368,298468389,298468390],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":3265,\"model_id\":215013197584,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24722700869",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26416325811,
              "shopid": 1370746238,
              "name": "PROMO Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK | 1 PK CW-0901RA",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                1400285055,
                1015914,
                700190087,
                1000031,
                2018619,
                825465608499232,
                298463379,
                825465608493600,
                2048660,
                2048661,
                825465608494624,
                700765096,
                298933384,
                844931086908638,
                700810080,
                2108629,
                1428713,
                1718087960,
                298468389
              ],
              "image": "id-11134207-7rbk8-m8sh2yh3oqa95d",
              "images": [
                "id-11134207-7rbk8-m8sh2yh3oqa95d",
                "id-11134207-7rasm-m2abl9f1s0v7d2",
                "id-11134207-7rase-m5f506clujdp15",
                "id-11134207-7rasg-m5f506clvxy585",
                "id-11134207-7rasj-m5f506clt4t9d9",
                "id-11134207-7rask-m5f506clrq8t67"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1730533385,
              "sold": 1,
              "historical_sold": 61,
              "liked": false,
              "liked_count": 84,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 28,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194300000000,
              "price_min": 194300000000,
              "price_max": 194300000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Daya",
                  "options": [
                    "1/2 PK CW-0501RA",
                    "1 PK CW-0901RA"
                  ],
                  "images": [
                    "id-11134207-8224v-mimgivfcohs460",
                    "id-11134207-8224q-mimgivfmphqc87"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Packing",
                  "options": [
                    "Dus Polos",
                    "Wrapping",
                    "Packing Kayu",
                    "Kurir Toko"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.964285714285714,
                "rating_count": [
                  28,
                  0,
                  0,
                  0,
                  1,
                  27
                ],
                "rcount_with_context": 5,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 194300000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 195527447801,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 194300000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 61,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 61,
                "display_sold_count_text": "61"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "AL88 STORE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 26416325811,
            "shopid": 1370746238,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk8-m8sh2yh3oqa95d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,1400285055,1015914,700190087,1000031,2018619,825465608499232,298463379,825465608493600,2048660,2048661,825465608494624,700765096,298933384,844931086908638,700810080,2108629,1428713,1718087960,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4260,\"model_id\":195527447801,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk8-m8sh2yh3oqa95d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,1400285055,1015914,700190087,1000031,2018619,825465608499232,298463379,825465608493600,2048660,2048661,825465608494624,700765096,298933384,844931086908638,700810080,2108629,1428713,1718087960,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4260,\"model_id\":195527447801,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26416325811",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27710602973,
              "shopid": 49540448,
              "name": "(Instant) Ac Window Reiwa 370 Watt CW-0501RA 1/2 Pk",
              "label_ids": [
                47,
                844931064601283,
                1059152,
                1049124,
                822059908662278,
                834403089593352,
                1015914,
                700190087,
                825465608492064,
                1213641,
                822120592853526,
                2018619,
                2023641,
                298463379,
                2048661,
                2048660,
                700765096,
                298933384,
                2108629,
                298458396,
                298468390,
                298458398,
                298468389
              ],
              "image": "id-11134207-7r992-lzx3l5xwpjhke3",
              "images": [
                "id-11134207-7r992-lzx3l5xwpjhke3",
                "id-11134207-7r98r-lzx3l5xwqy20af",
                "id-11134207-7r98s-lzx3l5xwscmg8b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1725783789,
              "sold": 1,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 207238400000,
              "price_min": 207238400000,
              "price_max": 207238400000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1e-lzx47vwnlkio49.16000081725783778.mp4",
                  "thumb_url": "id-11110105-7r98t-lzx482b8e45acb",
                  "duration": 19,
                  "version": 2,
                  "vid": "id-11110105-6ke1e-lzx47vwnlkio49",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1e-lzx47vwnlkio49.16000081725783778.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1e-lzx47vwnlkio49.16000081725783778.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1e-lzx47vwnlkio49.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "PRODUK",
                  "options": [
                    "CW-0501RA"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "LAINNYA",
                  "options": [
                    "STD UNIT",
                    "STD UNIT+BUBBLE WRAP",
                    "STD UNIT+PROTEKSI",
                    "PAKET PASANG"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 415140512284889,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 207238400000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 215375671246,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 207238400000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "myelectronic1",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000,
                88,
                97
              ]
            },
            "itemid": 27710602973,
            "shopid": 49540448,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r992-lzx3l5xwpjhke3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,844931064601283,1059152,1049124,822059908662278,834403089593352,1015914,700190087,825465608492064,1213641,822120592853526,2018619,2023641,298463379,2048661,2048660,700765096,298933384,2108629,298458396,298468390,298458398,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":2882,\"model_id\":215375671246,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r992-lzx3l5xwpjhke3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,844931064601283,1059152,1049124,822059908662278,834403089593352,1015914,700190087,825465608492064,1213641,822120592853526,2018619,2023641,298463379,2048661,2048660,700765096,298933384,2108629,298458396,298468390,298458398,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":2882,\"model_id\":215375671246,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27710602973",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28652374734,
              "shopid": 1168077,
              "name": "REIWA AC Window CW-0501RA 1/2 PK / CW-0901RA 1 PK AC Low Watt",
              "label_ids": [
                844931064601283,
                1400285055,
                1718093079,
                1400066568,
                1015914,
                700190087,
                1000031,
                822059908662278,
                834403089593352,
                1428713,
                1718087960,
                2018619,
                822120592853526,
                1049122,
                1059152,
                700005490,
                825465608497696,
                700005495,
                825465608492064,
                2048660,
                2048661,
                700765096,
                844931086908638,
                298933384,
                2068629,
                298938357,
                298463379,
                2108629,
                1049120,
                2098628,
                298938368,
                2098629,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7r98q-lwdrcia1qh6y68",
              "images": [
                "id-11134207-7r98q-lwdrcia1qh6y68",
                "id-11134207-7r98s-lwdrcia1tabuab",
                "id-11134207-7r98p-lwdrcia1rvre4a",
                "sg-11134201-7rd4s-lwdrb5w4jka14f",
                "sg-11134201-7rd6y-lwdramef2f5n03",
                "sg-11134201-7rd46-lwdrammqq8rs3b",
                "sg-11134201-7rd4c-lwdran4s19erc3",
                "sg-11134201-7rd72-lwdrannda2d81c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1718074200,
              "sold": 4,
              "historical_sold": 16,
              "liked": false,
              "liked_count": 18,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 7,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 200900000000,
              "price_min": 200900000000,
              "price_max": 200900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Ukuran",
                  "options": [
                    "0.5 PK",
                    "1 PK"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Varian",
                  "options": [
                    "Unit Saja",
                    "+Jasa Pasang"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.875,
                "rating_count": [
                  8,
                  0,
                  0,
                  0,
                  1,
                  7
                ],
                "rcount_with_context": 5,
                "rcount_with_image": 5
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp669RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 200900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 276250356626,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 200900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 16,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 16,
                "display_sold_count_text": "16"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp669RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Sajun Electronic Serpong",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000,
                4
              ]
            },
            "itemid": 28652374734,
            "shopid": 1168077,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-lwdrcia1qh6y68\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1718093079,1400066568,1015914,700190087,1000031,822059908662278,834403089593352,1428713,1718087960,2018619,822120592853526,1049122,1059152,700005490,825465608497696,700005495,825465608492064,2048660,2048661,700765096,844931086908638,298933384,2068629,298938357,298463379,2108629,1049120,2098628,298938368,2098629,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":3004,\"model_id\":276250356626,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-lwdrcia1qh6y68\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1718093079,1400066568,1015914,700190087,1000031,822059908662278,834403089593352,1428713,1718087960,2018619,822120592853526,1049122,1059152,700005490,825465608497696,700005495,825465608492064,2048660,2048661,700765096,844931086908638,298933384,2068629,298938357,298463379,2108629,1049120,2098628,298938368,2098629,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":3004,\"model_id\":276250356626,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28652374734",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24888111095,
              "shopid": 52467334,
              "name": "AC REIWA 1 PK CW-0901RA CW0901 RA 0901RA 1 PK STANDARD LOW WATT AC WINDOW REIWA - MURAH",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1059152,
                700005487,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                825465608494624,
                1718093079,
                1213641,
                1000031,
                1015914,
                700190087,
                2018619,
                2023641,
                1400285055,
                298463379,
                700830032,
                298933384,
                2048661,
                2048660,
                700765096,
                2068629,
                298938357,
                298458396,
                298458398,
                298468389,
                298938368,
                1718088045,
                2098629,
                1718093084,
                2098628,
                1718088044,
                298468390
              ],
              "image": "id-11134207-7rasf-m2bych6emvs29c",
              "images": [
                "id-11134207-7rasf-m2bych6emvs29c",
                "id-11134207-7rasd-m2bych6emvs39f",
                "id-11134207-7rasg-m2bych6emw6sec",
                "id-11134207-7rash-m2bych7io2tq6a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1731040587,
              "sold": 0,
              "historical_sold": 10,
              "liked": false,
              "liked_count": 14,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 264000000000,
              "price_min": 264000000000,
              "price_max": 264000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1c-m2bycr1u6rg47b.16000081731040407.mp4",
                  "thumb_url": "id-11110105-7ras8-m2bycst3mjin9e",
                  "duration": 15,
                  "version": 2,
                  "vid": "id-11110105-6ke1c-m2bycr1u6rg47b",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1c-m2bycr1u6rg47b.16000081731040407.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1c-m2bycr1u6rg47b.16000081731040407.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1c-m2bycr1u6rg47b.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  0,
                  4
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp880RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 264000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 246980552969,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 264000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 10,
                "display_sold_count_text": "10"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp880RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Silf electric",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                88
              ]
            },
            "itemid": 24888111095,
            "shopid": 52467334,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasf-m2bych6emvs29c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1059152,700005487,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,825465608494624,1718093079,1213641,1000031,1015914,700190087,2018619,2023641,1400285055,298463379,700830032,298933384,2048661,2048660,700765096,2068629,298938357,298458396,298458398,298468389,298938368,1718088045,2098629,1718093084,2098628,1718088044,298468390],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":2207,\"model_id\":246980552969,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasf-m2bych6emvs29c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1059152,700005487,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,825465608494624,1718093079,1213641,1000031,1015914,700190087,2018619,2023641,1400285055,298463379,700830032,298933384,2048661,2048660,700765096,2068629,298938357,298458396,298458398,298468389,298938368,1718088045,2098629,1718093084,2098628,1718088044,298468390],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":2207,\"model_id\":246980552969,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24888111095",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44204281134,
              "shopid": 1533021916,
              "name": "WINDOW AC 1/2 PK REIWA CW0501RA / TANPA PIPA AC / WINDOW AIR CONDITIONER 0,5 PK PALEMBANG",
              "label_ids": [
                2018619,
                1718087960,
                1428713,
                844931064601283,
                1049128,
                700005504,
                822059908662278,
                825465608492064,
                834403089593352,
                1213641,
                1718093065,
                1015914,
                700190087,
                1400066568,
                822120592853526,
                825465608497696,
                700830032,
                2048661,
                2048660,
                1718093079,
                298463379,
                1400285055,
                844931086908638,
                2068629,
                298938357,
                298933384,
                1400025118,
                700810080,
                1718088045,
                997921049,
                2103632,
                298468389,
                2098630,
                1718093085,
                1718088044,
                997921050,
                2098629,
                298458398,
                298938368,
                1718088046,
                2098628,
                298468390,
                700585042,
                298838363,
                1718093084,
                298458396,
                2108637
              ],
              "image": "sg-11134201-7rau8-mawk5690gbnn9a",
              "images": [
                "sg-11134201-7rau8-mawk5690gbnn9a",
                "sg-11134201-7rats-mawk56gi5cznee",
                "sg-11134201-7ratm-mawk56mvw28zb3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1749721656,
              "sold": 1,
              "historical_sold": 22,
              "liked": false,
              "liked_count": 35,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 12,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 224700000000,
              "price_min": 224700000000,
              "price_max": 224700000000,
              "price_min_before_discount": 440000000000,
              "price_max_before_discount": 440000000000,
              "hidden_price_display": null,
              "price_before_discount": 440000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-49%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kiq0-mawk15q9zazmd6.16000101749721473.mp4",
                  "thumb_url": "sg-11110106-6kiq0-mawk15q9zazmd6_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "sg-11110106-6kiq0-mawk15q9zazmd6",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiq0-mawk15q9zazmd6.16000101749721473.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiq0-mawk15q9zazmd6.16000101749721473.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiq0-mawk15q9zazmd6.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.916666666666667,
                "rating_count": [
                  12,
                  0,
                  0,
                  0,
                  1,
                  11
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Palembang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 754487376004096,
                "price": 224700000000,
                "strikethrough_price": 440000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-49%",
                "model_id": 280362647232,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 440000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 22,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 22,
                "display_sold_count_text": "22"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Mandiri Sukses 98 Elektronik",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000,
                88
              ]
            },
            "itemid": 44204281134,
            "shopid": 1533021916,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rau8-mawk5690gbnn9a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,1049128,700005504,822059908662278,825465608492064,834403089593352,1213641,1718093065,1015914,700190087,1400066568,822120592853526,825465608497696,700830032,2048661,2048660,1718093079,298463379,1400285055,844931086908638,2068629,298938357,298933384,1400025118,700810080,1718088045,997921049,2103632,298468389,2098630,1718093085,1718088044,997921050,2098629,298458398,298938368,1718088046,2098628,298468390,700585042,298838363,1718093084,298458396,2108637],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":530,\"model_id\":280362647232,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rau8-mawk5690gbnn9a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,1049128,700005504,822059908662278,825465608492064,834403089593352,1213641,1718093065,1015914,700190087,1400066568,822120592853526,825465608497696,700830032,2048661,2048660,1718093079,298463379,1400285055,844931086908638,2068629,298938357,298933384,1400025118,700810080,1718088045,997921049,2103632,298468389,2098630,1718093085,1718088044,997921050,2098629,298458398,298938368,1718088046,2098628,298468390,700585042,298838363,1718093084,298458396,2108637],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":530,\"model_id\":280362647232,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44204281134",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25526998281,
              "shopid": 53792276,
              "name": "AC Window 1/2pk Low Watt Reiwa CW-0501RA | 0,5pk 0.5 pk 1/2 remote",
              "label_ids": [
                1059156,
                700000521,
                822059908662278,
                825465608499232,
                825465608497696,
                1213641,
                1400285055,
                1000031,
                2018619,
                1015914,
                700190087,
                2048661,
                2048660,
                700765096,
                298933384,
                1718093079,
                298463379,
                2108629,
                298458396,
                1718088045,
                298468389,
                298468390,
                1718093084,
                1718088044,
                298458398
              ],
              "image": "id-11134207-7r98y-lulz20gqjj6896",
              "images": [
                "id-11134207-7r98y-lulz20gqjj6896",
                "id-11134207-7rasa-m4x1339atiu5d5",
                "id-11134207-7r98s-lulz20gqkxqo91",
                "id-11134207-7r991-lulz20gqmcb445",
                "id-11134207-7r98x-lulz20gqnqvkc5",
                "id-11134207-7r990-lulz20gqp5g055"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1714214224,
              "sold": 2,
              "historical_sold": 14,
              "liked": false,
              "liked_count": 26,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 9,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 203900000000,
              "price_min": 203900000000,
              "price_max": 203900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.888888888888889,
                "rating_count": [
                  9,
                  0,
                  0,
                  0,
                  1,
                  8
                ],
                "rcount_with_context": 5,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Cilacap",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 203900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 185063148275,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 203900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 14,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 14,
                "display_sold_count_text": "14"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "kita_shopping",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                0,
                1000,
                1000,
                1000
              ]
            },
            "itemid": 25526998281,
            "shopid": 53792276,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98y-lulz20gqjj6896\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059156,700000521,822059908662278,825465608499232,825465608497696,1213641,1400285055,1000031,2018619,1015914,700190087,2048661,2048660,700765096,298933384,1718093079,298463379,2108629,298458396,1718088045,298468389,298468390,1718093084,1718088044,298458398],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":662,\"model_id\":185063148275,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98y-lulz20gqjj6896\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059156,700000521,822059908662278,825465608499232,825465608497696,1213641,1400285055,1000031,2018619,1015914,700190087,2048661,2048660,700765096,298933384,1718093079,298463379,2108629,298458396,1718088045,298468389,298468390,1718093084,1718088044,298458398],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":662,\"model_id\":185063148275,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25526998281",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25820335510,
              "shopid": 85961994,
              "name": "REIWA AC Window 1/2 PK CW-0501RA AC Low Watt 0,5 PK AC Window Reiwa 1/2 PK FREE PACKING KAYU KARGO",
              "label_ids": [
                13,
                38,
                39,
                47,
                1000501,
                1000509,
                1400095067,
                1400285005,
                844931064601283,
                1400066568,
                1015914,
                700190087,
                1400285055,
                1718093079,
                1000031,
                1918643,
                822059908662278,
                822120592853526,
                825465608494624,
                825465608499232,
                834403089593352,
                1428713,
                1718087960,
                2018618,
                2018619,
                700005490,
                1012729,
                298893311,
                825465608497696,
                700005495,
                2153644,
                700830032,
                2213652,
                298463379,
                1049120,
                1059152,
                1049122,
                2008656,
                298468389,
                1718088045
              ],
              "image": "id-11134207-81ztg-meo7b9jiy1373b",
              "images": [
                "id-11134207-81ztg-meo7b9jiy1373b",
                "sg-11134201-7rccz-lt69j4bqsxzjba",
                "id-11134207-7r98y-lvcm24ntd1fsa5",
                "sg-11134201-7rcdk-lt69j5p4solt65",
                "id-11134207-7r98u-lvcm24ntbmvc8f",
                "sg-11134201-7rced-lt69j40n975y44",
                "sg-11134201-7rcel-lt69j4mkd3qq6c",
                "sg-11134201-7rcci-lt69j4s44zs327",
                "sg-11134201-7rce9-lt69j52dpyis1f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1711082832,
              "sold": 13,
              "historical_sold": 159,
              "liked": false,
              "liked_count": 1896,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 71,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 214900000000,
              "price_min": 214900000000,
              "price_max": 214900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1l-m2c072y5sdqi30.16000081731043508.mp4",
                  "thumb_url": "id-11110105-7rasa-m2c076zjvyuq02",
                  "duration": 55,
                  "version": 2,
                  "vid": "id-11110105-6ke1l-m2c072y5sdqi30",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1l-m2c072y5sdqi30.16000081731043508.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1l-m2c072y5sdqi30.16000081731043508.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1l-m2c072y5sdqi30.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Ukuran",
                  "options": [
                    "0.5 PK",
                    "1 PK"
                  ],
                  "images": [
                    "id-11134207-7rash-m27uagbz3fj714",
                    "id-11134207-7rash-m27uagbz20yr38"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Jasa Instalasi",
                  "options": [
                    "Tanpa Pasang",
                    "Plus Pasang"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  75,
                  0,
                  0,
                  0,
                  0,
                  75
                ],
                "rcount_with_context": 32,
                "rcount_with_image": 24
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 214900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 266250642955,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 214900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 159,
                "rounded_local_monthly_sold_count": 13,
                "local_monthly_sold_count_text": "13",
                "rounded_display_sold_count": 159,
                "display_sold_count_text": "159"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": " Sajun Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000,
                88,
                97,
                4
              ]
            },
            "itemid": 25820335510,
            "shopid": 85961994,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztg-meo7b9jiy1373b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1015914,700190087,1400285055,1718093079,1000031,1918643,822059908662278,822120592853526,825465608494624,825465608499232,834403089593352,1428713,1718087960,2018618,2018619,700005490,1012729,298893311,825465608497696,700005495,2153644,700830032,2213652,298463379,1049120,1059152,1049122,2008656,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":3326,\"model_id\":266250642955,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztg-meo7b9jiy1373b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1015914,700190087,1400285055,1718093079,1000031,1918643,822059908662278,822120592853526,825465608494624,825465608499232,834403089593352,1428713,1718087960,2018618,2018619,700005490,1012729,298893311,825465608497696,700005495,2153644,700830032,2213652,298463379,1049120,1059152,1049122,2008656,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":3326,\"model_id\":266250642955,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25820335510",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28535862331,
              "shopid": 302036739,
              "name": "COD - REIWA AC WINDOW CW-0501RA Pendingin Ruangan 0.5 PK Auto Voltage Garansi Resmi",
              "label_ids": [
                1002164,
                2018618,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1213641,
                1718093065,
                1015914,
                700190087,
                298893311,
                1400285055,
                2108629,
                2153644,
                700830032,
                2068629,
                298938357,
                700765096,
                1400066568,
                700000501,
                1049112,
                822059908662278,
                822120592853526,
                825465608494624,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                2213652,
                2008656,
                1718088045,
                1718093084,
                298938368,
                2098629,
                1718088044,
                298468390,
                298468389,
                298458398,
                298458396,
                2098628
              ],
              "image": "id-11134207-81ztc-mf20n5o3c6q180",
              "images": [
                "id-11134207-81ztc-mf20n5o3c6q180",
                "id-11134207-7rbk5-m9b9cdwqiqhed1",
                "id-11134207-7rbk7-m9b9cdyohb1934",
                "id-11134207-7rbk9-m9b9cdwqy6qaa7",
                "id-11134207-7rbk5-m9b9cdwqiqsdf9",
                "id-11134207-7rbk1-m9b9cdyoiplp21",
                "id-11134207-7rbk1-m9b9cdyofwgtd2",
                "id-11134207-7rbk8-m9b9cdyok465e2",
                "id-11134207-7rbk4-m9b9cdyoliqlef"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1746253599,
              "sold": 4,
              "historical_sold": 219,
              "liked": false,
              "liked_count": 324,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 99,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 197500000000,
              "price_min": 197500000000,
              "price_max": 197500000000,
              "price_min_before_discount": 517500000000,
              "price_max_before_discount": 517500000000,
              "hidden_price_display": null,
              "price_before_discount": 517500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-62%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemz-mey0v5ay1nnobf.16000081758527276.mp4",
                  "thumb_url": "id-11110105-6vemz-mey0v5ay1nnobf_cover",
                  "duration": 33,
                  "version": 2,
                  "vid": "id-11110105-6vemz-mey0v5ay1nnobf",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemz-mey0v5ay1nnobf.16000081758527276.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemz-mey0v5ay1nnobf.16000081758527276.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemz-mey0v5ay1nnobf.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.91919191919192,
                "rating_count": [
                  99,
                  0,
                  1,
                  0,
                  5,
                  93
                ],
                "rcount_with_context": 37,
                "rcount_with_image": 20
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-81ztc-mf20n5o3c6q180",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp658RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 754217682272256,
                "price": 197500000000,
                "strikethrough_price": 517500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-62%",
                "model_id": 243366128658,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 517500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 219,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 219,
                "display_sold_count_text": "219"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp658RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "OXO Warehouse Official Shop",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                91,
                97,
                0,
                1000,
                88,
                1000,
                1000,
                4
              ]
            },
            "itemid": 28535862331,
            "shopid": 302036739,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztc-mf20n5o3c6q180\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1213641,1718093065,1015914,700190087,298893311,1400285055,2108629,2153644,700830032,2068629,298938357,700765096,1400066568,700000501,1049112,822059908662278,822120592853526,825465608494624,825465608499232,825465608497696,2048660,2048661,2213652,2008656,1718088045,1718093084,298938368,2098629,1718088044,298468390,298468389,298458398,298458396,2098628],\"matched_keywords\":[\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":304,\"model_id\":243366128658,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,97,0,1000,88,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztc-mf20n5o3c6q180\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1213641,1718093065,1015914,700190087,298893311,1400285055,2108629,2153644,700830032,2068629,298938357,700765096,1400066568,700000501,1049112,822059908662278,822120592853526,825465608494624,825465608499232,825465608497696,2048660,2048661,2213652,2008656,1718088045,1718093084,298938368,2098629,1718088044,298468390,298468389,298458398,298458396,2098628],\"matched_keywords\":[\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":304,\"model_id\":243366128658,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,97,0,1000,88,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28535862331",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28609010869,
              "shopid": 62356570,
              "name": "AC Window REIWA CW-0501RA CW 0501RA 0.5 PK 1/2 PK",
              "label_ids": [
                844931064601283,
                1400066568,
                1718093079,
                1015914,
                700190087,
                1000031,
                1400285055,
                2018619,
                2023641,
                298893311,
                298463379,
                844931086908638,
                700005542,
                1049116,
                822059908662278,
                825465608497696,
                1400025118,
                2108629,
                2103651,
                2143613,
                997921049,
                1718088045,
                997921050,
                298468389,
                1718088046,
                700585042,
                1718093085
              ],
              "image": "id-11134207-7r990-lzbp0kmohnsdf1",
              "images": [
                "id-11134207-7r990-lzbp0kmohnsdf1",
                "id-11134207-7r98w-lzbp0kmohnoo59",
                "id-11134207-7r98o-lzbp0kmohnb9d9",
                "id-11134207-7r992-lzbp0kmoj2cte2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1724487179,
              "sold": 5,
              "historical_sold": 73,
              "liked": false,
              "liked_count": 111,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 26,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 214500000000,
              "price_min": 214500000000,
              "price_max": 214500000000,
              "price_min_before_discount": 239900000000,
              "price_max_before_discount": 239900000000,
              "hidden_price_display": null,
              "price_before_discount": 239900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-11%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.888888888888889,
                "rating_count": [
                  27,
                  0,
                  0,
                  0,
                  3,
                  24
                ],
                "rcount_with_context": 10,
                "rcount_with_image": 5
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Ponorogo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 769422671790080,
                "price": 214500000000,
                "strikethrough_price": 239900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-11%",
                "model_id": 251454170849,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 239900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 73,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 73,
                "display_sold_count_text": "73"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SAMITECH by SAMIJAYA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                0,
                1000,
                1000,
                1000,
                4
              ]
            },
            "itemid": 28609010869,
            "shopid": 62356570,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r990-lzbp0kmohnsdf1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1718093079,1015914,700190087,1000031,1400285055,2018619,2023641,298893311,298463379,844931086908638,700005542,1049116,822059908662278,825465608497696,1400025118,2108629,2103651,2143613,997921049,1718088045,997921050,298468389,1718088046,700585042,1718093085],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":438,\"model_id\":251454170849,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r990-lzbp0kmohnsdf1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1718093079,1015914,700190087,1000031,1400285055,2018619,2023641,298893311,298463379,844931086908638,700005542,1049116,822059908662278,825465608497696,1400025118,2108629,2103651,2143613,997921049,1718088045,997921050,298468389,1718088046,700585042,1718093085],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":438,\"model_id\":251454170849,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28609010869",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26230156258,
              "shopid": 232291937,
              "name": "AC REIWA AC WINDOW REIWA 1PK CW-0901RA - Hemat Listrik 770W",
              "label_ids": [
                2018619,
                1400066568,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1718093079,
                1213641,
                2023641,
                298463379,
                1015914,
                700190087,
                700830032,
                700765096,
                2068629,
                298938357,
                1059152,
                700005487,
                822059908662278,
                2048661,
                825465608499232,
                2048660,
                834403089593352,
                825465608497696,
                298468390,
                2098629,
                298458398,
                2098628,
                298468389,
                1718088045,
                1718088044,
                1718093084,
                298458396,
                298938368
              ],
              "image": "id-11134207-7rbkc-m7j638qg1ii4d2",
              "images": [
                "id-11134207-7rbkc-m7j638qg1ii4d2",
                "id-11134207-7rbkc-m7j638qg2x2k1a",
                "id-11134207-7rbke-m7j638qg4bn090",
                "id-11134207-7rbk4-m7j638qg74rw1a",
                "id-11134207-7rbke-m7j638qg5q7g98"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1742374592,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 30,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 257900000000,
              "price_min": 257900000000,
              "price_max": 257900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmj0-m7j6s8ouvb4u3b.16000101742374524.mp4",
                  "thumb_url": "id-11110105-6kmj0-m7j6s8ouvb4u3b_cover",
                  "duration": 15,
                  "version": 2,
                  "vid": "id-11110105-6kmj0-m7j6s8ouvb4u3b",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj0-m7j6s8ouvb4u3b.16000101742374524.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m7j6s8ouvb4u3b.16000101742374524.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m7j6s8ouvb4u3b.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "PENGIRIMAN",
                  "options": [
                    "INSTANT JKT",
                    "CARGO/REGULER"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp859RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 257900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 252934375677,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 257900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp859RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Dapur-indonesia",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                88,
                1000,
                1000,
                97
              ]
            },
            "itemid": 26230156258,
            "shopid": 232291937,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkc-m7j638qg1ii4d2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1400066568,1718087960,1428713,844931064601283,844931086908638,1718093079,1213641,2023641,298463379,1015914,700190087,700830032,700765096,2068629,298938357,1059152,700005487,822059908662278,2048661,825465608499232,2048660,834403089593352,825465608497696,298468390,2098629,298458398,2098628,298468389,1718088045,1718088044,1718093084,298458396,298938368],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":79,\"model_id\":252934375677,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,88,1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkc-m7j638qg1ii4d2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1400066568,1718087960,1428713,844931064601283,844931086908638,1718093079,1213641,2023641,298463379,1015914,700190087,700830032,700765096,2068629,298938357,1059152,700005487,822059908662278,2048661,825465608499232,2048660,834403089593352,825465608497696,298468390,2098629,298458398,2098628,298468389,1718088045,1718088044,1718093084,298458396,298938368],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":79,\"model_id\":252934375677,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,88,1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26230156258",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43776904791,
              "shopid": 15084889,
              "name": "BESTLIFE AC Window 0.5 PK BWA 05PLD / BWA05PLD / BWA-05PLD 1/2 PK - Gold Fin",
              "label_ids": [
                1000016,
                47,
                1000167,
                2018619,
                700190019,
                844931064601283,
                844931086908638,
                1059156,
                1049157,
                1718093079,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                2023641
              ],
              "image": "id-11134207-8224x-mhq62g4qubk432",
              "images": [
                "id-11134207-8224x-mhq62g4qubk432",
                "id-11134207-8224s-mhq62g4ng45e03",
                "id-11134207-8224v-mhq62g4vwxdt0b",
                "id-11134207-8224s-mhq62g4xh43m65"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764589667,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100010,
              "brand": "Bestlife",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 175000000000,
              "price_min": 175000000000,
              "price_max": 175000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Pemalang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 175000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 262217932823,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 175000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Nosh Pemalang",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                0,
                1000
              ]
            },
            "itemid": 43776904791,
            "shopid": 15084889,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mhq62g4qubk432\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000016,47,1000167,2018619,700190019,844931064601283,844931086908638,1059156,1049157,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,2023641],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\"],\"merge_rank\":756,\"model_id\":262217932823,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mhq62g4qubk432\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000016,47,1000167,2018619,700190019,844931064601283,844931086908638,1059156,1049157,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,2023641],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\"],\"merge_rank\":756,\"model_id\":262217932823,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43776904791",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27851722344,
              "shopid": 53835082,
              "name": "Reiwa CW-0501RA AC Window 0,5PK / 1 PK . Baru & Bergaransi",
              "label_ids": [
                1400095067,
                1400285005,
                822059908662278,
                825465608492064,
                834403089593352,
                825465608497696,
                1213641,
                1000031,
                1400285055,
                1015914,
                700190087,
                1059152,
                700005489,
                825465608499232,
                2018619,
                2023641,
                298463379,
                1718093079,
                2048660,
                2048661,
                700810080,
                298458396,
                1718088044,
                298458398,
                1718088045,
                298468389,
                1718093084,
                298468390
              ],
              "image": "id-11134207-81ztn-meh4mt7icirm43",
              "images": [
                "id-11134207-81ztn-meh4mt7icirm43",
                "id-11134207-7r98w-lw40bojmgie686",
                "id-11134207-7r98u-lw40bojmgikd82",
                "id-11134207-7r98x-lw40bojwg3nu01",
                "id-11134207-7r98s-lw40bojwg3la56",
                "id-11134207-7r98v-lw40bok6fom37b",
                "id-11134207-7r992-lw40bojmgi0a48",
                "id-11134207-7r991-lw40bojmgii41d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1717484960,
              "sold": 0,
              "historical_sold": 133,
              "liked": false,
              "liked_count": 308,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 59,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 203999900000,
              "price_min": 203999900000,
              "price_max": 203999900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "SPEK",
                  "options": [
                    "1/2 PK",
                    "1 PK"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.930555555555555,
                "rating_count": [
                  72,
                  0,
                  0,
                  0,
                  5,
                  67
                ],
                "rcount_with_context": 25,
                "rcount_with_image": 17
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 203999900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 233428104881,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 203999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 133,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 133,
                "display_sold_count_text": "133"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Sinar Elektronik Jakarta",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                1000,
                1000
              ]
            },
            "itemid": 27851722344,
            "shopid": 53835082,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztn-meh4mt7icirm43\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,822059908662278,825465608492064,834403089593352,825465608497696,1213641,1000031,1400285055,1015914,700190087,1059152,700005489,825465608499232,2018619,2023641,298463379,1718093079,2048660,2048661,700810080,298458396,1718088044,298458398,1718088045,298468389,1718093084,298468390],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":3991,\"model_id\":233428104881,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztn-meh4mt7icirm43\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,822059908662278,825465608492064,834403089593352,825465608497696,1213641,1000031,1400285055,1015914,700190087,1059152,700005489,825465608499232,2018619,2023641,298463379,1718093079,2048660,2048661,700810080,298458396,1718088044,298458398,1718088045,298468389,1718093084,298468390],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":3991,\"model_id\":233428104881,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27851722344",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29813751384,
              "shopid": 14141563,
              "name": "Reiwa Ac Window 1/2PK Putih 5000BTU R32",
              "label_ids": [
                38,
                39,
                47,
                1000167,
                1400095067,
                1400285005,
                1428713,
                1718087960,
                844931064601283,
                1718093079,
                1015914,
                700190087,
                1000031,
                1213641,
                1400285055,
                2018619,
                2023641,
                1059152,
                700005489,
                822059908662278,
                834403089593352,
                825465608497696,
                837860934119952,
                825465608499232,
                825465608492064,
                298933384,
                298463379,
                844931086908638,
                298458396,
                298468389,
                1718088044,
                1718093084,
                298458398,
                1718088045,
                298468390
              ],
              "image": "id-11134207-7rasb-m17ynpfvg9ub3a",
              "images": [
                "id-11134207-7rasb-m17ynpfvg9ub3a",
                "id-11134207-7rasm-m17ynpfvaneqa5",
                "id-11134207-7rasj-m17ynpfvanzzea",
                "id-11134207-7rasj-m17ynpfvao3431",
                "id-11134207-7rasb-m17ynpfvankiaf",
                "id-11134207-7rasi-m17ynpfvanmtc1",
                "id-11134207-7rasm-m17ynpfvgabm12",
                "id-11134207-7rasf-m17ynpfvansa76"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1728619635,
              "sold": 0,
              "historical_sold": 37,
              "liked": false,
              "liked_count": 71,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 22,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199900000000,
              "price_min": 199900000000,
              "price_max": 199900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  22,
                  0,
                  0,
                  0,
                  0,
                  22
                ],
                "rcount_with_context": 7,
                "rcount_with_image": 5
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 223310534877,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 37,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 37,
                "display_sold_count_text": "37"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Utama Electronic",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                91
              ]
            },
            "itemid": 29813751384,
            "shopid": 14141563,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m17ynpfvg9ub3a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[38,39,47,1000167,1400095067,1400285005,1428713,1718087960,844931064601283,1718093079,1015914,700190087,1000031,1213641,1400285055,2018619,2023641,1059152,700005489,822059908662278,834403089593352,825465608497696,837860934119952,825465608499232,825465608492064,298933384,298463379,844931086908638,298458396,298468389,1718088044,1718093084,298458398,1718088045,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4338,\"model_id\":223310534877,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m17ynpfvg9ub3a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[38,39,47,1000167,1400095067,1400285005,1428713,1718087960,844931064601283,1718093079,1015914,700190087,1000031,1213641,1400285055,2018619,2023641,1059152,700005489,822059908662278,834403089593352,825465608497696,837860934119952,825465608499232,825465608492064,298933384,298463379,844931086908638,298458396,298468389,1718088044,1718093084,298458398,1718088045,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4338,\"model_id\":223310534877,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29813751384",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26316943776,
              "shopid": 373228675,
              "name": "AC WINDOW REIWA 1 PK CW-0901RA CW0901 RA 0901RA 1 PK STANDARD LOW WATT AC WINDOW REIWA - TERMURAH",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                700005487,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                825465608492064,
                1015914,
                700190087,
                1213641,
                1000031,
                2018619,
                2023641,
                1718093079,
                1400285055,
                298463379,
                298933384,
                2048660,
                2048661,
                700765096,
                2068629,
                298938357,
                1718088045,
                1718088044,
                298458398,
                298458396,
                298468389,
                2098628,
                298938368,
                1718093084,
                2098629,
                298468390
              ],
              "image": "id-11134207-7rasb-m2bxllw27zp0e1",
              "images": [
                "id-11134207-7rasb-m2bxllw27zp0e1",
                "id-11134207-7rasg-m2bxllw26l4k5a",
                "id-11134207-7rask-m2bxllw256k40b",
                "id-11134207-7rasa-m2bxllw2565e74"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1731039343,
              "sold": 0,
              "historical_sold": 7,
              "liked": false,
              "liked_count": 14,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 265000000000,
              "price_min": 265000000000,
              "price_max": 265000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke14-m2by00lz25xm16.16000081731039812.mp4",
                  "thumb_url": "id-11110105-7rasm-m2by026kroky9b",
                  "duration": 15,
                  "version": 2,
                  "vid": "id-11110105-6ke14-m2by00lz25xm16",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke14-m2by00lz25xm16.16000081731039812.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-m2by00lz25xm16.16000081731039812.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-m2by00lz25xm16.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  0,
                  4
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp883RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 265000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 226994274934,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 265000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 7,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 7,
                "display_sold_count_text": "7"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp883RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Quella Electric",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 26316943776,
            "shopid": 373228675,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m2bxllw27zp0e1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,700005487,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,825465608492064,1015914,700190087,1213641,1000031,2018619,2023641,1718093079,1400285055,298463379,298933384,2048660,2048661,700765096,2068629,298938357,1718088045,1718088044,298458398,298458396,298468389,2098628,298938368,1718093084,2098629,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4377,\"model_id\":226994274934,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m2bxllw27zp0e1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,700005487,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,825465608492064,1015914,700190087,1213641,1000031,2018619,2023641,1718093079,1400285055,298463379,298933384,2048660,2048661,700765096,2068629,298938357,1718088045,1718088044,298458398,298458396,298468389,2098628,298938368,1718093084,2098629,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4377,\"model_id\":226994274934,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26316943776",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41750040429,
              "shopid": 751913659,
              "name": "REIWA AC Window 1/2 PK CW-0501RA 0,5 PK 370 watt Garansi Resmi",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                298463379,
                700005490,
                700005495,
                822059908662278,
                837860934119952,
                822120592853526,
                1718093079,
                1718093065,
                825465608497696,
                1400285055,
                2108629,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7ra0m-mcyljc8xhs51dd",
              "images": [
                "id-11134207-7ra0m-mcyljc8xhs51dd",
                "id-11134207-7ra0j-md4jgsyjua6w15",
                "id-11134207-7ra0s-mcyljcavexq451",
                "id-11134207-7rbk0-m9fjnafzjoci57"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1746607512,
              "sold": 0,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 9,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 3,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199900000000,
              "price_min": 199900000000,
              "price_max": 199900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "VARIASI",
                  "options": [
                    "UNIT ONLY",
                    "UNIT+JASA PEMASANGAN"
                  ],
                  "images": [
                    "id-11134207-7ra0t-md4jgsyjvorc2d",
                    "id-11134207-7ra0u-md4jgsyjx3bs28"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 99832540434,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GE Grosir Elektronic",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                0,
                1000,
                1000,
                1000
              ]
            },
            "itemid": 41750040429,
            "shopid": 751913659,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0m-mcyljc8xhs51dd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,700005490,700005495,822059908662278,837860934119952,822120592853526,1718093079,1718093065,825465608497696,1400285055,2108629,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":2741,\"model_id\":99832540434,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0m-mcyljc8xhs51dd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,700005490,700005495,822059908662278,837860934119952,822120592853526,1718093079,1718093065,825465608497696,1400285055,2108629,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":2741,\"model_id\":99832540434,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41750040429",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55053657420,
              "shopid": 1709284149,
              "name": "AC Window BestLife 0,5PK BWA05PLD/AC BestLife Window BWA05PLD 0,5PK New Series",
              "label_ids": [
                844931064601283,
                844931086908638,
                700005504,
                1049128,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                1718596,
                1718093079,
                1718087960,
                1428713,
                298488495,
                2213765,
                298933384,
                299033477
              ],
              "image": "sg-11134201-81ztk-mio1oe553wg077",
              "images": [
                "sg-11134201-81ztk-mio1oe553wg077",
                "sg-11134201-81zwk-mio1oee1x1q890",
                "sg-11134201-81zws-mio1oen36dc3f3",
                "sg-11134201-81zvt-mio1oewuytjbb1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766640252,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 75160000000,
              "price_min": 75160000000,
              "price_max": 75160000000,
              "price_min_before_discount": 187900000000,
              "price_max_before_discount": 187900000000,
              "hidden_price_display": null,
              "price_before_discount": 187900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-60%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Packing",
                  "options": [
                    "Wrapping 1 lapis",
                    "Dus bawaan pabrik",
                    "Bubble wrapping",
                    "Wrapping 2 lapis"
                  ],
                  "images": [
                    "sg-11134201-81ztk-mio1oe553wg077",
                    "sg-11134201-81ztk-mio1oe553wg077",
                    "sg-11134201-81ztk-mio1oe553wg077",
                    "sg-11134201-81ztk-mio1oe553wg077"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Palembang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 825842343673856,
                "price": 75160000000,
                "strikethrough_price": 187900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-60%",
                "model_id": 244128151487,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 187900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "s_nb6ntsb6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                0,
                1000
              ]
            },
            "itemid": 55053657420,
            "shopid": 1709284149,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztk-mio1oe553wg077\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,700005504,1049128,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1718596,1718093079,1718087960,1428713,298488495,2213765,298933384,299033477],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\"],\"merge_rank\":2734,\"model_id\":244128151487,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztk-mio1oe553wg077\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,700005504,1049128,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1718596,1718093079,1718087960,1428713,298488495,2213765,298933384,299033477],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\"],\"merge_rank\":2734,\"model_id\":244128151487,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55053657420",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44311184889,
              "shopid": 1580715481,
              "name": "WINDOW AC 1 PK REIWA CW-0901RA /INSTALASI MUDAH/TANPA PIPA/ WINDOW AIR CONDITIONER 1PK",
              "label_ids": [
                2023641,
                844931086908638,
                844931064601283,
                1049128,
                700005504,
                822059908662278,
                834403089593352,
                825465608497696,
                825465608492064,
                825465608499232,
                1718093079,
                298463379,
                2018619,
                1400285055,
                1718093065,
                2048660,
                2048661,
                298933384,
                700765096,
                2108629,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-7rdxe-mcw8hp7fr49g17",
              "images": [
                "sg-11134201-7rdxe-mcw8hp7fr49g17",
                "sg-11134201-7rdx1-mcw8hpedfivi59",
                "sg-11134201-7rdy4-mcw8hpjx7elz94",
                "sg-11134201-7rdvl-mcw8hre8iewp93",
                "sg-11134201-7rdx4-mcw8htexmtxcdb",
                "sg-11134201-7rdya-mcw8hx6m2uaubd",
                "sg-11134201-7rdwt-mcw8hyr7uups88",
                "sg-11134201-7rdxj-mcw8i1jdo26836",
                "sg-11134201-7rdws-mcw8i4cnl9asee"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1754060563,
              "sold": 1,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 289900000000,
              "price_min": 289900000000,
              "price_max": 289900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6ven5-mep6ld8z3xms11.16000091757992103.mp4",
                  "thumb_url": "id-11110107-6ven5-mep6ld8z3xms11_cover",
                  "duration": 50,
                  "version": 2,
                  "vid": "id-11110107-6ven5-mep6ld8z3xms11",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ven5-mep6ld8z3xms11.16000091757992103.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ven5-mep6ld8z3xms11.16000091757992103.mp4",
                      "width": 270,
                      "height": 480
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ven5-mep6ld8z3xms11.default.mp4",
                    "width": 360,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Palembang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 289700000000,
                "strikethrough_price": 289900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1306322126520320,
                "discount_text": null,
                "model_id": 305939330145,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1306322126520320,
                  "voucher_code": "CIPTUFPIE",
                  "voucher_discount": 200000000,
                  "time_info": {
                    "start_time": 1765185015,
                    "end_time": 1768468080,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 289900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Cipta jaya",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000,
                97
              ]
            },
            "itemid": 44311184889,
            "shopid": 1580715481,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxe-mcw8hp7fr49g17\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,844931086908638,844931064601283,1049128,700005504,822059908662278,834403089593352,825465608497696,825465608492064,825465608499232,1718093079,298463379,2018619,1400285055,1718093065,2048660,2048661,298933384,700765096,2108629,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":3494,\"model_id\":305939330145,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxe-mcw8hp7fr49g17\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,844931086908638,844931064601283,1049128,700005504,822059908662278,834403089593352,825465608497696,825465608492064,825465608499232,1718093079,298463379,2018619,1400285055,1718093065,2048660,2048661,298933384,700765096,2108629,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":3494,\"model_id\":305939330145,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44311184889",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28739510855,
              "shopid": 1036364118,
              "name": "BESTLIFE AC Window 0.5 PK BWA 05PLD / BWA05PLD / BWA-05PLD 1/2 PK - Gold Fin - Remote - Cepat Sejuk",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                1059152,
                1059154,
                298463379,
                1718093079,
                822059908662278,
                825465608492064,
                825465608494624,
                825465608499232,
                825465608497696,
                822120592853526,
                2048660,
                2048661,
                700765096,
                844931086908638,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224x-mi725n1q3awxc7",
              "images": [
                "id-11134207-8224x-mi725n1q3awxc7",
                "id-11134207-7ra0m-md1g8dvl31b87a",
                "id-11134207-7ra0h-md1g8dvl4fvof6",
                "id-11134207-7ra0s-md1g8dvl5ug425",
                "id-11134207-7ra0r-md1g8dvl790kb7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1754376529,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "Bestlife",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 189900000000,
              "price_min": 189900000000,
              "price_max": 189900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "PACKING",
                  "options": [
                    "BUBBLE WRAP",
                    "PACKING KAYU"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "MERK",
                  "options": [
                    "REIWA BLUEFIN",
                    "BESTLIFE GOLDFIN"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 403941951287965,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 189900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 254117617793,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 189900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Mrย Hotย &ย Cool",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 28739510855,
            "shopid": 1036364118,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mi725n1q3awxc7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1059152,1059154,298463379,1718093079,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696,822120592853526,2048660,2048661,700765096,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":3985,\"model_id\":254117617793,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mi725n1q3awxc7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1059152,1059154,298463379,1718093079,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696,822120592853526,2048660,2048661,700765096,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":3985,\"model_id\":254117617793,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28739510855",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43066911643,
              "shopid": 1497707910,
              "name": "AC WINDOW 1/2 PK BESTLIFE BWA05PLD( COLOK LANGSUNG DINGIN )/GOLDFIN ANTI KARAT GARANSI 5 TAHUN",
              "label_ids": [
                844931064601283,
                298463379,
                1049142,
                1049143,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                834403089593352,
                700765096,
                2018619,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-81ztm-me484xf5v7cx4c",
              "images": [
                "id-11134207-81ztm-me484xf5v7cx4c",
                "id-11134207-81zth-me484xf5wlxdc2",
                "id-11134207-81ztg-me484xf5y0ht9f",
                "id-11134207-81ztl-me484xf5zf29ca"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1756734049,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "Bestlife",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 234900000000,
              "price_min": 234900000000,
              "price_max": 234900000000,
              "price_min_before_discount": 245000000000,
              "price_max_before_discount": 245000000000,
              "hidden_price_display": null,
              "price_before_discount": 245000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-4%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pekanbaru",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 821101739966464,
                "price": 234900000000,
                "strikethrough_price": 245000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-4%",
                "model_id": 306396300766,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 245000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "M.R elektronnik",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                0,
                1000
              ]
            },
            "itemid": 43066911643,
            "shopid": 1497707910,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztm-me484xf5v7cx4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1049142,1049143,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,834403089593352,700765096,2018619,298933384,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\"],\"merge_rank\":2383,\"model_id\":306396300766,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztm-me484xf5v7cx4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1049142,1049143,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,834403089593352,700765096,2018619,298933384,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\"],\"merge_rank\":2383,\"model_id\":306396300766,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43066911643",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27252855162,
              "shopid": 125401605,
              "name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK",
              "label_ids": [
                1000167,
                844931064601283,
                1015914,
                700190087,
                1213641,
                1400285055,
                1718093079,
                2018619,
                2023641,
                298893311,
                2108629,
                298463379,
                298933384,
                700765096,
                1049116,
                1049117,
                822059908662278,
                2048661,
                822120592853526,
                825465608499232,
                834403089593352,
                825465608497696,
                2048660,
                700810080,
                298468389,
                1718093084,
                298458398,
                298458396,
                1718088045,
                298468390,
                1718088044
              ],
              "image": "id-11134207-7rasd-m2l7mu837w8v14",
              "images": [
                "id-11134207-7rasd-m2l7mu837w8v14",
                "id-11134207-7rase-m2l7mu839atb5f",
                "id-11134207-7rasl-m2l7mu83c3y7f5",
                "id-11134207-7rasc-m2l7mu83apdr9d",
                "id-11134207-7r98y-lz5q2bvztfhpf3",
                "id-11134207-7r98v-lwi9glz2co0ae0",
                "id-11134207-7r992-lwi9glz2e2kq31"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1718347349,
              "sold": 6,
              "historical_sold": 237,
              "liked": false,
              "liked_count": 232,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 124,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194900000000,
              "price_min": 194900000000,
              "price_max": 194900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "kapasitas",
                  "options": [
                    "1/2PK"
                  ],
                  "images": [
                    "id-11134207-8224r-mi2m4fhholja2f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.896,
                "rating_count": [
                  125,
                  1,
                  0,
                  2,
                  5,
                  117
                ],
                "rcount_with_context": 48,
                "rcount_with_image": 38
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 194900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 148885632391,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 194900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 237,
                "rounded_local_monthly_sold_count": 6,
                "local_monthly_sold_count_text": "6",
                "rounded_display_sold_count": 237,
                "display_sold_count_text": "237"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Multi Guna Selaras",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                1000,
                1000,
                88,
                0,
                1000,
                4
              ]
            },
            "itemid": 27252855162,
            "shopid": 125401605,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m2l7mu837w8v14\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1015914,700190087,1213641,1400285055,1718093079,2018619,2023641,298893311,2108629,298463379,298933384,700765096,1049116,1049117,822059908662278,2048661,822120592853526,825465608499232,834403089593352,825465608497696,2048660,700810080,298468389,1718093084,298458398,298458396,1718088045,298468390,1718088044],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":1660,\"model_id\":148885632391,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,88,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m2l7mu837w8v14\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1015914,700190087,1213641,1400285055,1718093079,2018619,2023641,298893311,2108629,298463379,298933384,700765096,1049116,1049117,822059908662278,2048661,822120592853526,825465608499232,834403089593352,825465608497696,2048660,700810080,298468389,1718093084,298458398,298458396,1718088045,298468390,1718088044],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":1660,\"model_id\":148885632391,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,88,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27252855162",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26316223937,
              "shopid": 1111286142,
              "name": "[ GARANSI RESMI ] REIWA AC WINDOW TIPE CW-0501RA 1/2 PK pendingin low watt praktis cooling",
              "label_ids": [
                844931064601283,
                1718093079,
                1049117,
                1049116,
                822059908662278,
                825465608499232,
                1400285055,
                1000031,
                1015914,
                700190087,
                1718087960,
                1428713,
                2018619,
                825465608497696,
                298463379,
                298888358,
                298938357,
                2048660,
                2048661,
                700765096,
                1400025118,
                2023641,
                298933384,
                2143613,
                2103651,
                2108629,
                2108637,
                1718088046,
                997921049,
                2098628,
                997921050,
                1718093085,
                1718088045,
                700585042,
                2098630,
                2098629,
                298468389,
                298938368,
                2103632
              ],
              "image": "id-11134207-7rasi-m21yhmothxhb53",
              "images": [
                "id-11134207-7rasi-m21yhmothxhb53",
                "id-11134207-7rasl-m21yhmotgiwvbf",
                "id-11134207-7ras9-m21yhmotcb7j10",
                "id-11134207-7rasa-m21yhmotjc1rf9",
                "id-11134207-7ras8-m21yhmotdprz42"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1730442132,
              "sold": 1,
              "historical_sold": 8,
              "liked": false,
              "liked_count": 67,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 5,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199900000000,
              "price_min": 199900000000,
              "price_max": 199900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke19-m222golb070wf8.16000081730441980.mp4",
                  "thumb_url": "id-11110105-7rasd-m222gwijf5924a",
                  "duration": 57,
                  "version": 2,
                  "vid": "id-11110105-6ke19-m222golb070wf8",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke19-m222golb070wf8.16003251733898841.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke19-m222golb070wf8.16003251733898841.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke19-m222golb070wf8.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.8,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  1,
                  4
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 251927647362,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 8,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 8,
                "display_sold_count_text": "8"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Pionier Electronic",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                1000,
                1000,
                0,
                1000
              ]
            },
            "itemid": 26316223937,
            "shopid": 1111286142,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m21yhmothxhb53\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1049117,1049116,822059908662278,825465608499232,1400285055,1000031,1015914,700190087,1718087960,1428713,2018619,825465608497696,298463379,298888358,298938357,2048660,2048661,700765096,1400025118,2023641,298933384,2143613,2103651,2108629,2108637,1718088046,997921049,2098628,997921050,1718093085,1718088045,700585042,2098630,2098629,298468389,298938368,2103632],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":1825,\"model_id\":251927647362,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m21yhmothxhb53\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1049117,1049116,822059908662278,825465608499232,1400285055,1000031,1015914,700190087,1718087960,1428713,2018619,825465608497696,298463379,298888358,298938357,2048660,2048661,700765096,1400025118,2023641,298933384,2143613,2103651,2108629,2108637,1718088046,997921049,2098628,997921050,1718093085,1718088045,700585042,2098630,2098629,298468389,298938368,2103632],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":1825,\"model_id\":251927647362,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26316223937",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41367117759,
              "shopid": 1002016520,
              "name": "Reiwa AC Window 1 PK CW-0901RA Direct Cooling",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                298463379,
                1428713,
                1718087960,
                298933384,
                1015914,
                700190087,
                1718093079,
                1059156,
                700005499,
                822059908662278,
                2048660,
                2048661,
                834403089593352,
                825465608497696,
                298468389,
                1718088045
              ],
              "image": "id-11134207-81zte-me5n1nacd6va98",
              "images": [
                "id-11134207-81zte-me5n1nacd6va98",
                "id-11134207-81zte-me5n1nafg5qc46",
                "id-11134207-81ztq-me5n1nafhkaseb",
                "id-11134207-81ztf-me5n1naj474084"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1756809444,
              "sold": 0,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 18,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 2,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 247500000000,
              "price_min": 247500000000,
              "price_max": 247500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venb-me5n9kw72ade7e.16000081756809442.mp4",
                  "thumb_url": "id-11110105-6venb-me5n9kw72ade7e_cover",
                  "duration": 15,
                  "version": 2,
                  "vid": "id-11110105-6venb-me5n9kw72ade7e",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venb-me5n9kw72ade7e.16000081756809442.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-me5n9kw72ade7e.16000081756809442.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-me5n9kw72ade7e.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "PAKING",
                  "options": [
                    "INSTANT (DALAM KOTA)",
                    "BUBLE + PAKING KAYU"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 247500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 286413188565,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 247500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HERIMART ETC",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000
              ]
            },
            "itemid": 41367117759,
            "shopid": 1002016520,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zte-me5n1nacd6va98\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1428713,1718087960,298933384,1015914,700190087,1718093079,1059156,700005499,822059908662278,2048660,2048661,834403089593352,825465608497696,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":914,\"model_id\":286413188565,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zte-me5n1nacd6va98\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1428713,1718087960,298933384,1015914,700190087,1718093079,1059156,700005499,822059908662278,2048660,2048661,834403089593352,825465608497696,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":914,\"model_id\":286413188565,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41367117759",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24488459937,
              "shopid": 300986529,
              "name": "REIWA AC PORTABLE WINDOW REIWA CW 0501 RA / CW0501RA 1/2 PK 0.5 PK AIR CONDITIONER PORTABEL GARANSI RESMI",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                1059156,
                700005499,
                822059908662278,
                840955085144628,
                825465608492064,
                825465608499232,
                834403089593352,
                825465608497696,
                840990690654214,
                837860934119952,
                1718093079,
                1213641,
                1000031,
                1015914,
                700190087,
                2018619,
                1400285055,
                2048660,
                2048661,
                298933384,
                844931086908638,
                2068629,
                298938357,
                298463379,
                2108629,
                298623321,
                1993623,
                998091078,
                1718088044,
                1718093084,
                298458396,
                298938368,
                298468390,
                298458398,
                2098629,
                1718088045,
                2098628,
                298468389
              ],
              "image": "id-11134207-7rasl-m2q3iumgpyo411",
              "images": [
                "id-11134207-7rasl-m2q3iumgpyo411",
                "id-11134207-7rasg-m2q3iumgkcecbf",
                "id-11134207-7rash-m2q3iumglqys14",
                "id-11134207-7rasf-m2q3iumgn5j815",
                "id-11134207-7rase-m2q3iumgok3o64"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1731919287,
              "sold": 3,
              "historical_sold": 14,
              "liked": false,
              "liked_count": 34,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 7,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194899900000,
              "price_min": 194899900000,
              "price_max": 194899900000,
              "price_min_before_discount": 214800000000,
              "price_max_before_discount": 214800000000,
              "hidden_price_display": null,
              "price_before_discount": 214800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-9%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1i-m2qgz7vd6pxfc0.16000101731919214.mp4",
                  "thumb_url": "id-11110105-7rasa-m2qgzg3568fmba",
                  "duration": 50,
                  "version": 2,
                  "vid": "id-11110105-6ke1i-m2qgz7vd6pxfc0",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1i-m2qgz7vd6pxfc0.16000101731919214.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1i-m2qgz7vd6pxfc0.16000101731919214.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1i-m2qgz7vd6pxfc0.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "VARIAN",
                  "options": [
                    "REIWA CW 0501 RA"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  7,
                  0,
                  0,
                  0,
                  0,
                  7
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp649RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 324,
                "promotion_id": 10000019470,
                "price": 194899900000,
                "strikethrough_price": 214800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-9%",
                "model_id": 195564792071,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 214800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 14,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 14,
                "display_sold_count_text": "14"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp649RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HANS SHOP INDONESIA",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000,
                1000,
                97
              ]
            },
            "itemid": 24488459937,
            "shopid": 300986529,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m2q3iumgpyo411\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1059156,700005499,822059908662278,840955085144628,825465608492064,825465608499232,834403089593352,825465608497696,840990690654214,837860934119952,1718093079,1213641,1000031,1015914,700190087,2018619,1400285055,2048660,2048661,298933384,844931086908638,2068629,298938357,298463379,2108629,298623321,1993623,998091078,1718088044,1718093084,298458396,298938368,298468390,298458398,2098629,1718088045,2098628,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":357,\"model_id\":195564792071,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m2q3iumgpyo411\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1059156,700005499,822059908662278,840955085144628,825465608492064,825465608499232,834403089593352,825465608497696,840990690654214,837860934119952,1718093079,1213641,1000031,1015914,700190087,2018619,1400285055,2048660,2048661,298933384,844931086908638,2068629,298938357,298463379,2108629,298623321,1993623,998091078,1718088044,1718093084,298458396,298938368,298468390,298458398,2098629,1718088045,2098628,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":357,\"model_id\":195564792071,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24488459937",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 4645983265,
              "shopid": 289988321,
              "name": "Kabel Power AC Cord Angka 8 Radio 1.8m Kabel",
              "label_ids": [
                1400095067,
                1400285005,
                35,
                1001024,
                1011751,
                700005490,
                700005495,
                822059908662278,
                844931064601283,
                844931086908638,
                1400285055,
                700020158,
                298458334,
                1213641,
                825465608492064,
                825465608493600,
                825465608494624,
                825465608499232,
                837860934119952,
                840955085144628,
                840990690654214,
                1948020499712534,
                1000031,
                298458395,
                1119699,
                2018619,
                2023641,
                298893311,
                825465608497696,
                2048660,
                2048661,
                1718093079,
                2108629,
                1718093084,
                298458396
              ],
              "image": "9bfd1f19ea011eddbff8f42946072042",
              "images": [
                "9bfd1f19ea011eddbff8f42946072042",
                "33ce3abdbe1c072b5781f6b7adb8989f",
                "id-11134207-7ra0r-mducod6cywa6c1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1597116305,
              "sold": 10,
              "historical_sold": 1000,
              "liked": false,
              "liked_count": 22,
              "view_count": null,
              "catid": 100010,
              "brand": "Tidak Ada Merek",
              "cmt_count": 268,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 650000000,
              "price_min": 650000000,
              "price_max": 650000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.854014598540146,
                "rating_count": [
                  274,
                  1,
                  0,
                  6,
                  24,
                  243
                ],
                "rcount_with_context": 48,
                "rcount_with_image": 45
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 650000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 60568552411,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 650000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1000,
                "rounded_local_monthly_sold_count": 10,
                "local_monthly_sold_count_text": "10",
                "rounded_display_sold_count": 1000,
                "display_sold_count_text": "1RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HANABI_CCTV",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 4645983265,
            "shopid": 289988321,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"9bfd1f19ea011eddbff8f42946072042\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,35,1001024,1011751,700005490,700005495,822059908662278,844931064601283,844931086908638,1400285055,700020158,298458334,1213641,825465608492064,825465608493600,825465608494624,825465608499232,837860934119952,840955085144628,840990690654214,1948020499712534,1000031,298458395,1119699,2018619,2023641,298893311,825465608497696,2048660,2048661,1718093079,2108629,1718093084,298458396],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":32,\"model_id\":60568552411,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"9bfd1f19ea011eddbff8f42946072042\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,35,1001024,1011751,700005490,700005495,822059908662278,844931064601283,844931086908638,1400285055,700020158,298458334,1213641,825465608492064,825465608493600,825465608494624,825465608499232,837860934119952,840955085144628,840990690654214,1948020499712534,1000031,298458395,1119699,2018619,2023641,298893311,825465608497696,2048660,2048661,1718093079,2108629,1718093084,298458396],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":32,\"model_id\":60568552411,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_4645983265",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 1992684511,
              "shopid": 47902232,
              "name": "Power window limo vios gen2",
              "label_ids": [
                22,
                844931046478970,
                844931064601283,
                844931026694327,
                1400285055,
                1213641,
                1000031,
                1119699,
                2018619,
                2023641,
                1015914,
                700190087,
                298893311,
                298888358,
                298938357,
                298933384,
                1400066568,
                1059152,
                700005489,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                298463379,
                1718093079,
                298623321,
                1993623,
                998091078,
                298458396,
                298458398,
                298468389,
                298938368,
                1718088045,
                2098629,
                1718093084,
                2098628,
                1718088044,
                298468390
              ],
              "image": "sg-11134201-22110-9ejtjsw0shjv54",
              "images": [
                "sg-11134201-22110-9ejtjsw0shjv54",
                "fee28af9f91e247af57c0d01c4cee5b8",
                "ee77c1468aa5a9024cae746c2aa9ff33",
                "68f355f8f60adc1c85a4083084b1c13f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1552344331,
              "sold": 3,
              "historical_sold": 365,
              "liked": false,
              "liked_count": 235,
              "view_count": null,
              "catid": 100640,
              "brand": "Denso",
              "cmt_count": 216,
              "flag": 917504,
              "cb_option": 0,
              "item_status": "normal",
              "price": 148499900000,
              "price_min": 148499900000,
              "price_max": 148499900000,
              "price_min_before_discount": 165000000000,
              "price_max_before_discount": 165000000000,
              "hidden_price_display": null,
              "price_before_discount": 165000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-10%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.820276497695852,
                "rating_count": [
                  217,
                  1,
                  1,
                  4,
                  24,
                  187
                ],
                "rcount_with_context": 89,
                "rcount_with_image": 55
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp247RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 324,
                "promotion_id": 10000017060,
                "price": 148499900000,
                "strikethrough_price": 165000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-10%",
                "model_id": 62903842112,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 165000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 365,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 365,
                "display_sold_count_text": "365"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp247RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "restumotorjakarta",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88
              ]
            },
            "itemid": 1992684511,
            "shopid": 47902232,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-22110-9ejtjsw0shjv54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[22,844931046478970,844931064601283,844931026694327,1400285055,1213641,1000031,1119699,2018619,2023641,1015914,700190087,298893311,298888358,298938357,298933384,1400066568,1059152,700005489,822059908662278,825465608499232,825465608497696,825465608494624,298463379,1718093079,298623321,1993623,998091078,298458396,298458398,298468389,298938368,1718088045,2098629,1718093084,2098628,1718088044,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":33,\"model_id\":62903842112,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-22110-9ejtjsw0shjv54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[22,844931046478970,844931064601283,844931026694327,1400285055,1213641,1000031,1119699,2018619,2023641,1015914,700190087,298893311,298888358,298938357,298933384,1400066568,1059152,700005489,822059908662278,825465608499232,825465608497696,825465608494624,298463379,1718093079,298623321,1993623,998091078,298458396,298458398,298468389,298938368,1718088045,2098629,1718093084,2098628,1718088044,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":33,\"model_id\":62903842112,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_1992684511",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29690876632,
              "shopid": 935397801,
              "name": "kipas turbo 100 Gear Wind hight-speed kipas angin Digital Display kipas tangan AC",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                2018619,
                2023641,
                700005490,
                1049120,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1015914,
                700190087,
                298888358,
                298938357,
                1400285055,
                298933384,
                298468389,
                1718088045,
                298938368,
                2098629,
                2098628
              ],
              "image": "id-11134207-8224s-mje09u92du6cd2",
              "images": [
                "id-11134207-8224s-mje09u92du6cd2",
                "sg-11134201-824i2-me39c17zvitfbd",
                "sg-11134201-824h9-me39c1llzi836a",
                "sg-11134201-824hm-me39c20u2v431f",
                "sg-11134201-824g3-me39c2f5zabp5b",
                "sg-11134201-824ie-me39c30lsxzb4e",
                "sg-11134201-824ij-me39c3puqmtc1a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1756664949,
              "sold": 12,
              "historical_sold": 41,
              "liked": false,
              "liked_count": 21,
              "view_count": null,
              "catid": 100010,
              "brand": "Madia",
              "cmt_count": 6,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 14799900000,
              "price_min": 14799900000,
              "price_max": 14799900000,
              "price_min_before_discount": 60000000000,
              "price_max_before_discount": 60000000000,
              "hidden_price_display": null,
              "price_before_discount": 60000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-75%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "S13 PURPLE",
                    "S13 GREY",
                    "S13 BEIGE"
                  ],
                  "images": [
                    "sg-11134201-824jd-me39c4oobmrl44",
                    "sg-11134201-824jl-me39c5np36df4d",
                    "sg-11134201-824j8-me39c6kumebm91"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  6,
                  0,
                  0,
                  0,
                  0,
                  6
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp24RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227973722812416,
                "price": 14699900000,
                "strikethrough_price": 60000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1309792141328384,
                "discount_text": "-75%",
                "model_id": 276369102278,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1309792141328384,
                  "voucher_code": "THEO2222",
                  "voucher_discount": 100000000,
                  "time_info": {
                    "start_time": 1765599120,
                    "end_time": 1769836320,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 3000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 60000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 41,
                "rounded_local_monthly_sold_count": 12,
                "local_monthly_sold_count_text": "12",
                "rounded_display_sold_count": 41,
                "display_sold_count_text": "41"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp24RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "theone001",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000
              ]
            },
            "itemid": 29690876632,
            "shopid": 935397801,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mje09u92du6cd2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,298463379,2018619,2023641,700005490,1049120,1718093079,822059908662278,825465608497696,825465608499232,1015914,700190087,298888358,298938357,1400285055,298933384,298468389,1718088045,298938368,2098629,2098628],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":34,\"model_id\":276369102278,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mje09u92du6cd2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,298463379,2018619,2023641,700005490,1049120,1718093079,822059908662278,825465608497696,825465608499232,1015914,700190087,298888358,298938357,1400285055,298933384,298468389,1718088045,298938368,2098629,2098628],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":34,\"model_id\":276369102278,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29690876632",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 3926320459,
              "shopid": 154310435,
              "name": "Motor fan ac extra grand Civic genio ferio cielo city z new city accord2004",
              "label_ids": [
                1001038,
                1001026,
                1011751,
                1011747,
                700020158,
                844931064601283,
                844931086908638,
                1400285055,
                298458334,
                298463379,
                1000031,
                298458395,
                1119699,
                1718093079,
                2018619,
                2023641,
                1059152,
                1059154,
                822059908662278,
                837860934119952,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1015914,
                700190087,
                298893311,
                298933384,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7rbk1-m8n26dg6xam31c",
              "images": [
                "id-11134207-7rbk1-m8n26dg6xam31c",
                "id-11134207-7qul0-ljnyr6ahcc9nd3",
                "id-11134207-7rbk6-m8n26dg703qz5c",
                "id-11134207-7rbkb-m8n26dg6yp6j6b",
                "id-11134207-7ras8-m2uvyzcy1smzab",
                "id-11134207-7rbkd-m8n26dg71ibfa6",
                "id-11134207-7rasg-m2uvyzcy0e2j7b",
                "id-11134207-7qul0-ljnyr6cp93k361",
                "id-11134207-7rasj-m2uvyzcxyzi3b0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1586528338,
              "sold": 8,
              "historical_sold": 409,
              "liked": false,
              "liked_count": 103,
              "view_count": null,
              "catid": 100640,
              "brand": "Honda",
              "cmt_count": 185,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 23000000000,
              "price_min": 23000000000,
              "price_max": 23000000000,
              "price_min_before_discount": 28000000000,
              "price_max_before_discount": 28000000000,
              "hidden_price_display": null,
              "price_before_discount": 28000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-18%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.747311827956989,
                "rating_count": [
                  186,
                  1,
                  2,
                  7,
                  23,
                  153
                ],
                "rcount_with_context": 51,
                "rcount_with_image": 22
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 792515561717760,
                "price": 23000000000,
                "strikethrough_price": 28000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-18%",
                "model_id": 62846923396,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 28000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 409,
                "rounded_local_monthly_sold_count": 8,
                "local_monthly_sold_count_text": "8",
                "rounded_display_sold_count": 409,
                "display_sold_count_text": "409"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Marco sparepart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 3926320459,
            "shopid": 154310435,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk1-m8n26dg6xam31c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001038,1001026,1011751,1011747,700020158,844931064601283,844931086908638,1400285055,298458334,298463379,1000031,298458395,1119699,1718093079,2018619,2023641,1059152,1059154,822059908662278,837860934119952,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1015914,700190087,298893311,298933384,1718088045,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":35,\"model_id\":62846923396,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk1-m8n26dg6xam31c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001038,1001026,1011751,1011747,700020158,844931064601283,844931086908638,1400285055,298458334,298463379,1000031,298458395,1119699,1718093079,2018619,2023641,1059152,1059154,822059908662278,837860934119952,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1015914,700190087,298893311,298933384,1718088045,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":35,\"model_id\":62846923396,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_3926320459",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 3735719672,
              "shopid": 229515338,
              "name": "AZKO Kris Kipas Angin Berdiri 45 watt Standing Fan Penyejuk Ruangan Kipas Lantai Elektronik Rumah",
              "label_ids": [
                1000381,
                1002164,
                1011705,
                700085047,
                1400095067,
                1400285005,
                22,
                1001024,
                1015914,
                700190087,
                844931046478970,
                844931064601283,
                1400285055,
                700585046,
                997921070,
                1718087960,
                1428713,
                1059152,
                822059908662278,
                825465608499232,
                700005490,
                1049122,
                1049120,
                1059156,
                700000486,
                1718093079,
                1049117,
                1049116,
                1049112,
                1049124,
                700005487,
                1059151,
                700005510,
                2018618,
                1012763,
                2013645,
                1049136,
                298893311,
                825465608497696,
                700005516,
                298933384,
                700830032,
                834403089593352,
                700005499,
                2213652,
                700005537,
                1049123,
                1049155,
                1049147,
                1049127,
                1059154,
                299103323,
                700000553,
                2008656,
                1049154,
                1049141,
                1049132
              ],
              "image": "sg-11134201-7ra1k-m4k8ofx4emtge2",
              "images": [
                "sg-11134201-7ra1k-m4k8ofx4emtge2",
                "sg-11134201-7ra31-m4k8pe9874uq90",
                "sg-11134201-7ra0s-m4k8psph616rc5",
                "sg-11134201-7ra1i-m4k8qmqr3ii87d",
                "sg-11134201-7ra41-m4k8qz9mqc9u9d",
                "sg-11134201-7ra24-m4k8r15lyv1e78",
                "sg-11134201-7rbkg-m5crqkm8l9bf7c",
                "sg-11134201-7ra32-m4kbi7ymiy4h82"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1590728070,
              "sold": 731,
              "historical_sold": 10000,
              "liked": false,
              "liked_count": 47490,
              "view_count": null,
              "catid": 100010,
              "brand": "Kris",
              "cmt_count": 6654,
              "flag": 655360,
              "cb_option": 0,
              "item_status": "normal",
              "price": 53990000000,
              "price_min": 53990000000,
              "price_max": 53990000000,
              "price_min_before_discount": 75590000000,
              "price_max_before_discount": 75590000000,
              "hidden_price_display": null,
              "price_before_discount": 75590000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-29%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.91867966991748,
                "rating_count": [
                  6665,
                  13,
                  17,
                  43,
                  353,
                  6239
                ],
                "rcount_with_context": 1488,
                "rcount_with_image": 1291
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 830755568156672,
                "price": 53990000000,
                "strikethrough_price": 75590000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-29%",
                "model_id": 41564935963,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 75590000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10000,
                "rounded_local_monthly_sold_count": 731,
                "local_monthly_sold_count_text": "731",
                "rounded_display_sold_count": 10000,
                "display_sold_count_text": "10RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "AZKO Indonesia",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                91
              ]
            },
            "itemid": 3735719672,
            "shopid": 229515338,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7ra1k-m4k8ofx4emtge2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000381,1002164,1011705,700085047,1400095067,1400285005,22,1001024,1015914,700190087,844931046478970,844931064601283,1400285055,700585046,997921070,1718087960,1428713,1059152,822059908662278,825465608499232,700005490,1049122,1049120,1059156,700000486,1718093079,1049117,1049116,1049112,1049124,700005487,1059151,700005510,2018618,1012763,2013645,1049136,298893311,825465608497696,700005516,298933384,700830032,834403089593352,700005499,2213652,700005537,1049123,1049155,1049147,1049127,1059154,299103323,700000553,2008656,1049154,1049141,1049132],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\"],\"merge_rank\":36,\"model_id\":41564935963,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7ra1k-m4k8ofx4emtge2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000381,1002164,1011705,700085047,1400095067,1400285005,22,1001024,1015914,700190087,844931046478970,844931064601283,1400285055,700585046,997921070,1718087960,1428713,1059152,822059908662278,825465608499232,700005490,1049122,1049120,1059156,700000486,1718093079,1049117,1049116,1049112,1049124,700005487,1059151,700005510,2018618,1012763,2013645,1049136,298893311,825465608497696,700005516,298933384,700830032,834403089593352,700005499,2213652,700005537,1049123,1049155,1049147,1049127,1059154,299103323,700000553,2008656,1049154,1049141,1049132],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\"],\"merge_rank\":36,\"model_id\":41564935963,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_3735719672",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25566795620,
              "shopid": 17470865,
              "name": "REIWA AC 0501RA  Window 1/2 PK CW-0501RA",
              "label_ids": [
                844931064601283,
                1400285055,
                1015914,
                700190087,
                1000031,
                1059154,
                1059152,
                822059908662278,
                825465608497696,
                822120592853526,
                825465608499232,
                834403089593352,
                2018619,
                2018618,
                1918643,
                700700063,
                1012763,
                298463379,
                1718093079,
                298893311,
                825465608494624,
                2153644,
                2213652,
                1428713,
                1718087960,
                2008656,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7rasg-m3uc9lmwv89rb1",
              "images": [
                "id-11134207-7rasg-m3uc9lmwv89rb1",
                "id-11134207-7r98s-lw8awxz5brqm3d",
                "id-11134207-7r98x-lw8awxzfbczxab",
                "id-11134207-7r98z-lw8awxzfbcrf66",
                "id-11134207-7r98y-lw8awxzpaykqc8",
                "id-11134207-7r98y-lw8awxzpayay2c",
                "id-11134207-7r98x-luolkqe9f3j16c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1709626186,
              "sold": 101,
              "historical_sold": 1000,
              "liked": false,
              "liked_count": 8122,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 889,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194900000000,
              "price_min": 194900000000,
              "price_max": 194900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6vene-mj0s8rkj6e4i3f.16000091767411340.mp4",
                  "thumb_url": "id-11110107-6vene-mj0s8rkj6e4i3f_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110107-6vene-mj0s8rkj6e4i3f",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6vene-mj0s8rkj6e4i3f.16000091767411340.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vene-mj0s8rkj6e4i3f.16000091767411340.mp4",
                      "width": 270,
                      "height": 482
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vene-mj0s8rkj6e4i3f.default.mp4",
                    "width": 358,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "TYPE",
                  "options": [
                    "REIWA 1/2",
                    "BESTLIFE 1/2"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "PACKING",
                  "options": [
                    "WRAPPING",
                    "PACKING KAYU"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.887063655030801,
                "rating_count": [
                  974,
                  7,
                  1,
                  13,
                  53,
                  900
                ],
                "rcount_with_context": 307,
                "rcount_with_image": 222
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 408617195160464,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 194900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 157910580303,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 194900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1000,
                "rounded_local_monthly_sold_count": 101,
                "local_monthly_sold_count_text": "101",
                "rounded_display_sold_count": 1000,
                "display_sold_count_text": "1RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "STARLYN Official Store",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                91,
                88,
                97,
                0,
                1000,
                4
              ]
            },
            "itemid": 25566795620,
            "shopid": 17470865,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasg-m3uc9lmwv89rb1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1015914,700190087,1000031,1059154,1059152,822059908662278,825465608497696,822120592853526,825465608499232,834403089593352,2018619,2018618,1918643,700700063,1012763,298463379,1718093079,298893311,825465608494624,2153644,2213652,1428713,1718087960,2008656,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":37,\"model_id\":157910580303,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,91,88,97,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasg-m3uc9lmwv89rb1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1015914,700190087,1000031,1059154,1059152,822059908662278,825465608497696,822120592853526,825465608499232,834403089593352,2018619,2018618,1918643,700700063,1012763,298463379,1718093079,298893311,825465608494624,2153644,2213652,1428713,1718087960,2008656,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":37,\"model_id\":157910580303,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,91,88,97,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25566795620",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27421902872,
              "shopid": 426359637,
              "name": "Pcb AC multi PG 01 / modul AC universal PG 01",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1718093079,
                1213641,
                2018619,
                2023641,
                1015914,
                700190087,
                700830032,
                700765096,
                298463379,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                298458398,
                1718088044,
                1718088045,
                298468390,
                298458396,
                1718093084,
                298468389
              ],
              "image": "id-11134207-82250-mgg4yy9njwuk2f",
              "images": [
                "id-11134207-82250-mgg4yy9njwuk2f",
                "id-11134207-7rask-m49wut9hh8kj2a",
                "id-11134207-7ras9-m49wut9hin4z4b",
                "id-11134207-7ras9-m49wut9hk1pf5e",
                "id-11134207-7rasl-m49wut9hlg9vcf"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1735280761,
              "sold": 8,
              "historical_sold": 36,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100010,
              "brand": "One Cool",
              "cmt_count": 14,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 13250000000,
              "price_min": 13250000000,
              "price_max": 13250000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6ke1m-m4a00nbabkavef.16000091735280624.mp4",
                  "thumb_url": "id-11110107-6ke1m-m4a00nbabkavef_cover",
                  "duration": 25,
                  "version": 2,
                  "vid": "id-11110107-6ke1m-m4a00nbabkavef",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ke1m-m4a00nbabkavef.16000091735280624.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1m-m4a00nbabkavef.16000091735280624.mp4",
                      "width": 270,
                      "height": 482
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1m-m4a00nbabkavef.default.mp4",
                    "width": 358,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.928571428571429,
                "rating_count": [
                  14,
                  0,
                  0,
                  0,
                  1,
                  13
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 13250000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 185678666796,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 13250000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 36,
                "rounded_local_monthly_sold_count": 8,
                "local_monthly_sold_count_text": "8",
                "rounded_display_sold_count": 36,
                "display_sold_count_text": "36"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "AA sparepats",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 672851191,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiZAg5MONSdVi5bPb0Hm16WdgZUhMe8i/nflHV2HmPbpsmLrrM5JqGhjJ0Of6KXoi2utGPrf9sUkDg+iGnCS1AvFsdy9aWG46b/3FNFvPJ794QtTrZnWzQlw8u0Axmz5uyotbEEmymAjTI0AxiyIsymKt5zfRyxlIX6aXxIql1jQ3eudZpe0sdOONV/bQRxv+M0Wvwd5CwDo+EAxWpO7xi6wXKgSrUOQO86/7PT6dcR/pG00atFzgRjS/eZkitZQc5nY4/4Nn3N67etxHQSQEjOPuj5+EPJhg0ZTshpb/2kSIYd2kzGYdAaktvZqSExlN1meu0+0NCHCZpOhy6EqnzD1I04w5t6SSxS0XJCAlGHGf/ywbyVCHFl81mHI/vCP7GDc0T9rfDWJqp5do4bv9MTEnEc0OiOWlChxO06KkSeVrpt7ikk51c84eCAXEYuTlgJUihDjxmrGzE+R2hegJuLNfAyuH/coFH8F0vyEhYn/Rw==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYxOTk1N3w1NTY2MDd8NTAwNTM1fDYzMTU0OXw1NDQ1MDR8NTY5MDQwfDU5Njc1NHw1NDQ1NTF8NTQ3Nzg0fDYxMzg1OXw0NDI2Mzd8NTU0Nzk2fDUzODc1NHw2MTgzNzZ8NTMyMzYwfDYwMjkyM3w2Mjc2Njd8NjA4OTk5fDYzNTc1Mnw1OTM2Mjd8NTgwNzgyfDYwOTMwNHw1OTc4ODN8NjA1NDY3fDYwMDQwNnw2MDkyODh8NTU0MDAwfDYzNTc5MHw1Nzg4Nzd8NTM0MTc4fDYxMzQyMnw2MzQ3NTB8NTgwNzgzfDYyOTQ2MHw2MDMzMzF8NTcwNDY2fDUyNjUwOHw1NDQ1NjF8NjM0NzIxfDYyMDk3OXw2MzA3NzR8NjIwMjEzfDYwOTEzOXw2MjM1MDN8NTk3MDk4fDUwNTc5MHw1Mjc0Mjl8EPfJ68ACGNfQptcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWkFnNU1PTlNkVmk1YlBiMEhtMTZXZGdaVWhNZThpL25mbEhWMkhtUGJwc21McnJNNUpxR2hqSjBPZjZLWG9pMnV0R1ByZjlzVWtEZytpR25DUzFBdkZzZHk5YVdHNDZiLzNGTkZ2UEo3OTRRdFRyWm5XelFsdzh1MEF4bXo1dXlvdGJFRW15bUFqVEkwQXhpeUlzeW1LdDV6ZlJ5eGxJWDZhWHhJcWwxalEzZXVkWnBlMHNkT09OVi9iUVJ4ditNMFd2d2Q1Q3dEbytFQXhXcE83eGk2d1hLZ1NyVU9RTzg2LzdQVDZkY1IvcEcwMGF0RnpnUmpTL2Vaa2l0WlFjNW5ZNC80Tm4zTjY3ZXR4SFFTUUVqT1B1ajUrRVBKaGcwWlRzaHBiLzJrU0lZZDJrekdZZEFha3R2WnFTRXhsTjFtZXUwKzBOQ0hDWnBPaHk2RXFuekQxSTA0dzV0NlNTeFMwWEpDQWxHSEdmL3l3YnlWQ0hGbDgxbUhJL3ZDUDdHRGMwVDlyZkRXSnFwNWRvNGJ2OU1URW5FYzBPaU9XbENoeE8wNktrU2VWcnB0N2lrazUxYzg0ZUNBWEVZdVRsZ0pVaWhEanhtckd6RStSMmhlZ0p1TE5mQXl1SC9jb0ZIOEYwdnlFaFluL1J3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjVxexSuR+F6lD+CAQlhYyB3aW5kb3eQAau7ncsGuAEB4AGv+vnGR+kBAAAAoEtg8z/xAQAAAACzo/Y/yAwP4AwB6QwAAACA67PJP4kNexSuR+F6lD+RDQrXo3DBTiRBoQ0AAABADrt/QfgNgOjUgC+wDsDEoR3iDgyqjQbHjQbVjgbwkAbIDwfiGbwKRW1Nd0xqTTVOaXd0TVN3dE1Td3RNU3d0TVN3d0xqUXNNU3d4TGpZeE1qQTVOREl5TURRNE1UUTJORE1zTUM0NUxDMHhMREV1TURBd01ERXlNeXd6T0M0MU56a3hNekUzTXpNMU1EUTROaXd4TGpnd016WTVNVGN6TlRZMk5qVTVOVFlzTFRFZDdRK3lUQ0RqNGU0UExZUEF5ajQxQUFDQVB6bkNDWFBuaC9lNlFVRkt0Q3hJRkV2elFVb09DSno2NFFRUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQlNFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJhQndpczg1WURFQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFIRUFBQUJBdlhsTVAza0FBQUJBaVFnRVA0RUJBQUFBZ0dBQ2FVR0pBUUFBQUFDSHppOUJrUUVBQUFEd1NQOXFRWmtCQUFBQXdKcmhjRUdoQVFBQUFNQTBlRFZCcVFFQUFBQU1Iamx5UWVnQkFZQUNsQU9LQWo0d0xqQXdOamMyTlN3eExqQXdNREF3TUN3eExqQXdNREF3TUN3eExqSXhORGszTVN3eExqSTFNemc0Tnl3eExqTTNORFV4TXl3eExqTTNORFV4TTVrQ21wbVptWm1aMlQraEFpMm1zNWovdGJ0QndRSUFBQUFBQUFBQWdNb0NDd2dCRVFBQUFBQUFBQUFBeWdJTENBSVJBQUFBQUFBQUFJRFpBZ0RGc1dNZ2cxVkI0UUlBVyswK3BUb2hRZWtDNUZmQWp3aXhxVUdLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEK1pBOElKYytlSDk3cEJvUU5LdEN4SUZFdnpRYmtEU0Z6QWlLaXo2RC9CQS9tVVdGZ3ArZW8veVFPQ0lvYmQxeDN1UDlFRCtqbnU2R0dVN2ovNkF3a0tCVWx6VGxCQ0VBRDZBd3NLQjFKdmFWUnBaWElRQWZvRERRb0pUM0prWlhKVWFXVnlFQVA2QXhFS0RVbDBaVzFRY21salpWUnBaWElRQTRFRUFBQUE0RE9qU3orSkJBQUFBR0JJNzBZL2tBU2JBNWdFOFBQVHlkY0VvQVNsaGFPMkFiZ0VxTVhyMVFqQUJNM0tqb3dLeVFSN0ZLNUg0WHFVUCtFRWV4U3VSK0Y2bEQvcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFBQjh0WHMvb1FVQUFBQUFBQUR3UDZrRkFBQUFBQUFBOEQreEJRQUFBR0NGY1BNL3VRVUFBQUNnNncvMFA4RUZBQUFBZ0FIKzlUL0pCUUFBQUlBQi92VS/qGQS6TcNN+hmMBgoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChYKDWJpel9xdWV1ZV9pZHMSBSIDb3JnCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI3NDIxOTAyODcyCmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0OSwiYXBpMl9sYXRlbmN5X21zIjo5NCwiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTUsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjYxLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTU0MCwiYXBpMl9hZHNfY291bnQiOjMxNCwiYXBpM19hZHNfY291bnQiOjR9ChIKDHZvdWNoZXJfbGVucxICEAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoALAfgICAgICAgKCAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJS2ms5j/tbtB8iUGU0VBUkNI",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000
              ]
            },
            "itemid": 27421902872,
            "shopid": 426359637,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":33272036,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mgg4yy9njwuk2f\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1718093079,1213641,2018619,2023641,1015914,700190087,700830032,700765096,298463379,700005490,1049120,822059908662278,825465608499232,825465608497696,2048660,2048661,298458398,1718088044,1718088045,298468390,298458396,1718093084,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":38,\"model_id\":185678666796,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":33272036,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mgg4yy9njwuk2f\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1718093079,1213641,2018619,2023641,1015914,700190087,700830032,700765096,298463379,700005490,1049120,822059908662278,825465608499232,825465608497696,2048660,2048661,298458398,1718088044,1718088045,298468390,298458396,1718093084,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":38,\"model_id\":185678666796,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYxOTk1N3w1NTY2MDd8NTAwNTM1fDYzMTU0OXw1NDQ1MDR8NTY5MDQwfDU5Njc1NHw1NDQ1NTF8NTQ3Nzg0fDYxMzg1OXw0NDI2Mzd8NTU0Nzk2fDUzODc1NHw2MTgzNzZ8NTMyMzYwfDYwMjkyM3w2Mjc2Njd8NjA4OTk5fDYzNTc1Mnw1OTM2Mjd8NTgwNzgyfDYwOTMwNHw1OTc4ODN8NjA1NDY3fDYwMDQwNnw2MDkyODh8NTU0MDAwfDYzNTc5MHw1Nzg4Nzd8NTM0MTc4fDYxMzQyMnw2MzQ3NTB8NTgwNzgzfDYyOTQ2MHw2MDMzMzF8NTcwNDY2fDUyNjUwOHw1NDQ1NjF8NjM0NzIxfDYyMDk3OXw2MzA3NzR8NjIwMjEzfDYwOTEzOXw2MjM1MDN8NTk3MDk4fDUwNTc5MHw1Mjc0Mjl8EPfJ68ACGNfQptcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWkFnNU1PTlNkVmk1YlBiMEhtMTZXZGdaVWhNZThpL25mbEhWMkhtUGJwc21McnJNNUpxR2hqSjBPZjZLWG9pMnV0R1ByZjlzVWtEZytpR25DUzFBdkZzZHk5YVdHNDZiLzNGTkZ2UEo3OTRRdFRyWm5XelFsdzh1MEF4bXo1dXlvdGJFRW15bUFqVEkwQXhpeUlzeW1LdDV6ZlJ5eGxJWDZhWHhJcWwxalEzZXVkWnBlMHNkT09OVi9iUVJ4ditNMFd2d2Q1Q3dEbytFQXhXcE83eGk2d1hLZ1NyVU9RTzg2LzdQVDZkY1IvcEcwMGF0RnpnUmpTL2Vaa2l0WlFjNW5ZNC80Tm4zTjY3ZXR4SFFTUUVqT1B1ajUrRVBKaGcwWlRzaHBiLzJrU0lZZDJrekdZZEFha3R2WnFTRXhsTjFtZXUwKzBOQ0hDWnBPaHk2RXFuekQxSTA0dzV0NlNTeFMwWEpDQWxHSEdmL3l3YnlWQ0hGbDgxbUhJL3ZDUDdHRGMwVDlyZkRXSnFwNWRvNGJ2OU1URW5FYzBPaU9XbENoeE8wNktrU2VWcnB0N2lrazUxYzg0ZUNBWEVZdVRsZ0pVaWhEanhtckd6RStSMmhlZ0p1TE5mQXl1SC9jb0ZIOEYwdnlFaFluL1J3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjVxexSuR+F6lD+CAQlhYyB3aW5kb3eQAau7ncsGuAEB4AGv+vnGR+kBAAAAoEtg8z/xAQAAAACzo/Y/yAwP4AwB6QwAAACA67PJP4kNexSuR+F6lD+RDQrXo3DBTiRBoQ0AAABADrt/QfgNgOjUgC+wDsDEoR3iDgyqjQbHjQbVjgbwkAbIDwfiGbwKRW1Nd0xqTTVOaXd0TVN3dE1Td3RNU3d0TVN3d0xqUXNNU3d4TGpZeE1qQTVOREl5TURRNE1UUTJORE1zTUM0NUxDMHhMREV1TURBd01ERXlNeXd6T0M0MU56a3hNekUzTXpNMU1EUTROaXd4TGpnd016WTVNVGN6TlRZMk5qVTVOVFlzTFRFZDdRK3lUQ0RqNGU0UExZUEF5ajQxQUFDQVB6bkNDWFBuaC9lNlFVRkt0Q3hJRkV2elFVb09DSno2NFFRUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQlNFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJhQndpczg1WURFQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFIRUFBQUJBdlhsTVAza0FBQUJBaVFnRVA0RUJBQUFBZ0dBQ2FVR0pBUUFBQUFDSHppOUJrUUVBQUFEd1NQOXFRWmtCQUFBQXdKcmhjRUdoQVFBQUFNQTBlRFZCcVFFQUFBQU1Iamx5UWVnQkFZQUNsQU9LQWo0d0xqQXdOamMyTlN3eExqQXdNREF3TUN3eExqQXdNREF3TUN3eExqSXhORGszTVN3eExqSTFNemc0Tnl3eExqTTNORFV4TXl3eExqTTNORFV4TTVrQ21wbVptWm1aMlQraEFpMm1zNWovdGJ0QndRSUFBQUFBQUFBQWdNb0NDd2dCRVFBQUFBQUFBQUFBeWdJTENBSVJBQUFBQUFBQUFJRFpBZ0RGc1dNZ2cxVkI0UUlBVyswK3BUb2hRZWtDNUZmQWp3aXhxVUdLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEK1pBOElKYytlSDk3cEJvUU5LdEN4SUZFdnpRYmtEU0Z6QWlLaXo2RC9CQS9tVVdGZ3ArZW8veVFPQ0lvYmQxeDN1UDlFRCtqbnU2R0dVN2ovNkF3a0tCVWx6VGxCQ0VBRDZBd3NLQjFKdmFWUnBaWElRQWZvRERRb0pUM0prWlhKVWFXVnlFQVA2QXhFS0RVbDBaVzFRY21salpWUnBaWElRQTRFRUFBQUE0RE9qU3orSkJBQUFBR0JJNzBZL2tBU2JBNWdFOFBQVHlkY0VvQVNsaGFPMkFiZ0VxTVhyMVFqQUJNM0tqb3dLeVFSN0ZLNUg0WHFVUCtFRWV4U3VSK0Y2bEQvcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFBQjh0WHMvb1FVQUFBQUFBQUR3UDZrRkFBQUFBQUFBOEQreEJRQUFBR0NGY1BNL3VRVUFBQUNnNncvMFA4RUZBQUFBZ0FIKzlUL0pCUUFBQUlBQi92VS/qGQS6TcNN+hmMBgoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChYKDWJpel9xdWV1ZV9pZHMSBSIDb3JnCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI3NDIxOTAyODcyCmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0OSwiYXBpMl9sYXRlbmN5X21zIjo5NCwiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTUsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjYxLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTU0MCwiYXBpMl9hZHNfY291bnQiOjMxNCwiYXBpM19hZHNfY291bnQiOjR9ChIKDHZvdWNoZXJfbGVucxICEAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoALAfgICAgICAgKCAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJS2ms5j/tbtB8iUGU0VBUkNI",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27421902872",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41309193304,
              "shopid": 847554776,
              "name": "Selang Hawa AC Mobil Universal 4 Pcs Kualitas Terbaik",
              "label_ids": [
                844931064601283,
                1119699,
                1718093079,
                844931086908638,
                2018619,
                1400285055,
                1718087960,
                1428713,
                700005489,
                1059152,
                822059908662278,
                825465608497696,
                825465608499232,
                1015914,
                700190087,
                298933384,
                2023641,
                2068629,
                298938357,
                2098629
              ],
              "image": "id-11134207-7ra0m-mceno4fv0yqm55",
              "images": [
                "id-11134207-7ra0m-mceno4fv0yqm55",
                "id-11134207-7ra0t-mceno4fv2db201",
                "id-11134207-7ra0u-mceno4fv3rvid5",
                "id-11134207-7ra0h-mceno4fv56fy16"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1752997728,
              "sold": 60,
              "historical_sold": 446,
              "liked": false,
              "liked_count": 37,
              "view_count": null,
              "catid": 100640,
              "brand": "",
              "cmt_count": 155,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2590000000,
              "price_min": 2590000000,
              "price_max": 2590000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.870967741935484,
                "rating_count": [
                  155,
                  1,
                  0,
                  2,
                  12,
                  140
                ],
                "rcount_with_context": 19,
                "rcount_with_image": 18
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 2590000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 285770048569,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2590000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 446,
                "rounded_local_monthly_sold_count": 60,
                "local_monthly_sold_count_text": "60",
                "rounded_display_sold_count": 446,
                "display_sold_count_text": "446"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "AC Part Mobilku",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 41309193304,
            "shopid": 847554776,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0m-mceno4fv0yqm55\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1119699,1718093079,844931086908638,2018619,1400285055,1718087960,1428713,700005489,1059152,822059908662278,825465608497696,825465608499232,1015914,700190087,298933384,2023641,2068629,298938357,2098629],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":39,\"model_id\":285770048569,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0m-mceno4fv0yqm55\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1119699,1718093079,844931086908638,2018619,1400285055,1718087960,1428713,700005489,1059152,822059908662278,825465608497696,825465608499232,1015914,700190087,298933384,2023641,2068629,298938357,2098629],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":39,\"model_id\":285770048569,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41309193304",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40513139749,
              "shopid": 1609946736,
              "name": "ARTIC AIR COOLER AC Mini Portable Kipas Penyejuk Udara AC Mini Pendingin Portable Kipas Angin AC Mini Portable Cooling Ruangan",
              "label_ids": [
                844931064601283,
                844931086908638,
                1718093079,
                2023641,
                2018619,
                1718093065,
                1015914,
                700190087,
                1400285055,
                298933384,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "id-11134207-7ra0s-mdfmiad0luha65",
              "images": [
                "id-11134207-7ra0s-mdfmiad0luha65",
                "id-11134207-7ra0n-mdfm48c3kzij51",
                "id-11134207-7ra0o-mdfm48c3jky3ad",
                "id-11134207-7ra0j-mdfm48c3nsnf5b",
                "id-11134207-7ra0r-mdfm48c3i6dn76",
                "id-11134207-7ra0k-mdfm48c3grt7bf"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1755235336,
              "sold": 29,
              "historical_sold": 51,
              "liked": false,
              "liked_count": 13,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 21,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 7720000000,
              "price_min": 7720000000,
              "price_max": 7720000000,
              "price_min_before_discount": 10000000000,
              "price_max_before_discount": 10000000000,
              "hidden_price_display": null,
              "price_before_discount": 10000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-23%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ko28-mdfmhqrz5damfe.16000041755234242.mp4",
                  "thumb_url": "id-11110105-6ko28-mdfmhqrz5damfe_cover",
                  "duration": 31,
                  "version": 2,
                  "vid": "id-11110105-6ko28-mdfmhqrz5damfe",
                  "formats": [
                    {
                      "format": 1600004,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ko28-mdfmhqrz5damfe.16000041755234242.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ko28-mdfmhqrz5damfe.16000041755234242.mp4",
                      "width": 636,
                      "height": 360
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ko28-mdfmhqrz5damfe.default.mp4",
                    "width": 636,
                    "height": 360
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.857142857142857,
                "rating_count": [
                  21,
                  0,
                  0,
                  0,
                  3,
                  18
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 720817911037952,
                "price": 7720000000,
                "strikethrough_price": 10000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-23%",
                "model_id": 243747249625,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 10000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 51,
                "rounded_local_monthly_sold_count": 29,
                "local_monthly_sold_count_text": "29",
                "rounded_display_sold_count": 51,
                "display_sold_count_text": "51"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Crown.store8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000
              ]
            },
            "itemid": 40513139749,
            "shopid": 1609946736,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0s-mdfmiad0luha65\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,2023641,2018619,1718093065,1015914,700190087,1400285055,298933384,1059154,1059152,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\"],\"merge_rank\":40,\"model_id\":243747249625,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0s-mdfmiad0luha65\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,2023641,2018619,1718093065,1015914,700190087,1400285055,298933384,1059154,1059152,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\"],\"merge_rank\":40,\"model_id\":243747249625,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40513139749",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40472531561,
              "shopid": 1517647103,
              "name": "Buy 3 Pepsodent Ultra White Fresh Shine 90g FREE Electric Fan",
              "label_ids": [
                2018618,
                844931064601283,
                844931086908638,
                298933337,
                814381247177222,
                1718093079,
                1015914,
                700190087,
                1400285055,
                1428713,
                1718087960,
                2213652,
                700005486,
                1049112,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                825465608492064,
                825465608493600,
                822120592861206,
                1049130,
                700005503,
                298463379,
                1049126,
                700005507,
                1049135,
                700005506,
                299103323,
                2008656,
                1718088045,
                298468389
              ],
              "image": "id-11134201-82250-mhu59blv785eba",
              "images": [
                "id-11134201-82250-mhu59blv785eba",
                "id-11134201-8224w-mhu59bvi5gck2e",
                "id-11134201-82250-mhu59cexo9oj4c",
                "id-11134201-8224q-mhu59d1yb4798a",
                "id-11134201-8224w-mhu59dg314i063",
                "id-11134201-8224q-mhu59drmayo6a8",
                "id-11134201-8224u-mhu59dzxdr7p2f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759303836,
              "sold": 55,
              "historical_sold": 922,
              "liked": false,
              "liked_count": 396,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 359,
              "flag": 268634112,
              "cb_option": 0,
              "item_status": "normal",
              "price": 17100000000,
              "price_min": 17100000000,
              "price_max": 17100000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Model Name",
                  "options": [
                    "Package"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.927576601671309,
                "rating_count": [
                  359,
                  3,
                  1,
                  0,
                  11,
                  344
                ],
                "rcount_with_context": 52,
                "rcount_with_image": 34
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 410530749887840,
                "add_on_deal_label": "Free Gift",
                "sub_type": 2,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": true,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 16300000000,
                "strikethrough_price": 17100000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1324392621948936,
                "discount_text": null,
                "model_id": 261832986221,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1324392621948936,
                  "voucher_code": "ULIP1SU",
                  "voucher_discount": 800000000,
                  "time_info": {
                    "start_time": 1767632400,
                    "end_time": 1768928340,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 15000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 17100000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 922,
                "rounded_local_monthly_sold_count": 55,
                "local_monthly_sold_count_text": "55",
                "rounded_display_sold_count": 922,
                "display_sold_count_text": "922"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Unilever Personal Care Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 40472531561,
            "shopid": 1517647103,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82250-mhu59blv785eba\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,844931064601283,844931086908638,298933337,814381247177222,1718093079,1015914,700190087,1400285055,1428713,1718087960,2213652,700005486,1049112,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,825465608492064,825465608493600,822120592861206,1049130,700005503,298463379,1049126,700005507,1049135,700005506,299103323,2008656,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":41,\"model_id\":261832986221,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82250-mhu59blv785eba\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,844931064601283,844931086908638,298933337,814381247177222,1718093079,1015914,700190087,1400285055,1428713,1718087960,2213652,700005486,1049112,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,825465608492064,825465608493600,822120592861206,1049130,700005503,298463379,1049126,700005507,1049135,700005506,299103323,2008656,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":41,\"model_id\":261832986221,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40472531561",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 58151563107,
              "shopid": 1659966682,
              "name": "TERLARIS Peci Wadimor Full Ac | PECI SONGKOK HITAM WADIMOR | Kopiah Wadimor Anak Dewasa Tinggi 6 7 8 9 10Cm",
              "label_ids": [
                844931064601283,
                844931086908638,
                1049112,
                1049139,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1015914,
                700190087,
                2203670,
                298463379,
                1400285055,
                1428713,
                1718087960,
                298933384,
                2103651,
                2143613,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-821eb-mh6h1gvv7mdl3a",
              "images": [
                "sg-11134201-821eb-mh6h1gvv7mdl3a",
                "id-11134207-8224s-mhg7v2cnz4e8ce",
                "sg-11134201-821fs-mh6h1h1hk7imb1",
                "sg-11134201-821df-mh6h1h6ml2xa96",
                "sg-11134201-821ew-mh6h1hbmp0cu2c",
                "sg-11134201-821ec-mh6h1hh1sdfzd3",
                "sg-11134201-821g2-mh6h1htbjz7y8c",
                "sg-11134201-821g7-mh6h1hy4lnv18c",
                "sg-11134201-821gc-mh6h1i2zzmkp35"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763397227,
              "sold": 42,
              "historical_sold": 47,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100014,
              "brand": "WADIMOR",
              "cmt_count": 10,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 6190000000,
              "price_min": 6190000000,
              "price_max": 6190000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6vdv6-mhyuyrv6jx1f90.16000071765115610.mp4",
                  "thumb_url": "id-11110107-6vdv6-mhyuyrv6jx1f90_cover",
                  "duration": 34,
                  "version": 2,
                  "vid": "id-11110107-6vdv6-mhyuyrv6jx1f90",
                  "formats": [
                    {
                      "format": 1600007,
                      "defn": "V640P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6vdv6-mhyuyrv6jx1f90.16000071765115610.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdv6-mhyuyrv6jx1f90.16000071765115610.mp4",
                      "width": 640,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdv6-mhyuyrv6jx1f90.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Tinggi 7 Cm Pendek",
                    "Tinggi 8 Cm Sedang",
                    "Tinggi 9 Cm Standar",
                    "Tinggi 10 Cm Tinggi"
                  ],
                  "images": [
                    "sg-11134201-821fa-mh6h1if17lzi72",
                    "sg-11134201-821fx-mh6h1iltgrgp0e",
                    "sg-11134201-821dz-mh6h1ise41scf8",
                    "sg-11134201-821g0-mh6h1iyxmn7uc6"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ukuran",
                  "options": [
                    "No 2",
                    "No 3",
                    "No 4",
                    "No 5",
                    "No 6",
                    "No 7",
                    "No 8",
                    "No 9",
                    "No 10",
                    "Random Merek Lain"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.8,
                "rating_count": [
                  10,
                  0,
                  0,
                  0,
                  2,
                  8
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Garut",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 5190000000,
                "strikethrough_price": 6190000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1328486506053632,
                "discount_text": null,
                "model_id": 167361349116,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1328486506053632,
                  "voucher_code": "SVC-1328486506053632",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1768323600,
                    "end_time": 1768409999,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5500000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 6190000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 47,
                "rounded_local_monthly_sold_count": 42,
                "local_monthly_sold_count_text": "42",
                "rounded_display_sold_count": 47,
                "display_sold_count_text": "47"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "AL RAFSAN",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 58151563107,
            "shopid": 1659966682,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821eb-mh6h1gvv7mdl3a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049112,1049139,1718093079,822059908662278,825465608499232,825465608497696,1119699,1015914,700190087,2203670,298463379,1400285055,1428713,1718087960,298933384,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":42,\"model_id\":167361349116,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821eb-mh6h1gvv7mdl3a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049112,1049139,1718093079,822059908662278,825465608499232,825465608497696,1119699,1015914,700190087,2203670,298463379,1400285055,1428713,1718087960,298933384,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":42,\"model_id\":167361349116,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_58151563107",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25832856993,
              "shopid": 25007009,
              "name": "PREON R22 1 CAN  ISI 13.6 KG",
              "label_ids": [
                844931064601283,
                1213641,
                1015914,
                700190087,
                1000031,
                1400285055,
                2018619,
                2023641,
                1059151,
                1049112,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                2048661,
                2048660,
                700765096,
                298463379,
                1718093079,
                2108629,
                1718093084,
                1718088045,
                298468389,
                298458396,
                1718088044,
                298458398,
                298468390
              ],
              "image": "id-11134207-7r98s-lx3eairn6hiid3",
              "images": [
                "id-11134207-7r98s-lx3eairn6hiid3",
                "id-11134207-7r98y-lyywxm5qgmawd9",
                "id-11134207-7r98w-lyywxm5qf7qgd8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1719627564,
              "sold": 1,
              "historical_sold": 67,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100010,
              "brand": "Refrigerant",
              "cmt_count": 20,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 380460000000,
              "price_min": 380460000000,
              "price_max": 380460000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke14-lyyx79xhcgbx7a.16000081723713802.mp4",
                  "thumb_url": "id-11110105-7r98o-lyyx7cbhuxr436",
                  "duration": 16,
                  "version": 2,
                  "vid": "id-11110105-6ke14-lyyx79xhcgbx7a",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke14-lyyx79xhcgbx7a.16000081723713802.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-lyyx79xhcgbx7a.16000081723713802.mp4",
                      "width": 478,
                      "height": 850
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-lyyx79xhcgbx7a.default.mp4",
                    "width": 478,
                    "height": 850
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "r22",
                  "options": [
                    "1 TABUNG",
                    "2 TABUNG",
                    "3 TABUNG",
                    "4 TABUNG",
                    "5 TABUNG"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.95,
                "rating_count": [
                  20,
                  0,
                  0,
                  0,
                  1,
                  19
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 380460000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 306251524567,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 380460000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 67,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 67,
                "display_sold_count_text": "67"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KT COOL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 25832856993,
            "shopid": 25007009,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98s-lx3eairn6hiid3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1015914,700190087,1000031,1400285055,2018619,2023641,1059151,1049112,822059908662278,825465608494624,825465608499232,825465608497696,2048661,2048660,700765096,298463379,1718093079,2108629,1718093084,1718088045,298468389,298458396,1718088044,298458398,298468390],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":43,\"model_id\":306251524567,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98s-lx3eairn6hiid3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1015914,700190087,1000031,1400285055,2018619,2023641,1059151,1049112,822059908662278,825465608494624,825465608499232,825465608497696,2048661,2048660,700765096,298463379,1718093079,2108629,1718093084,1718088045,298468389,298458396,1718088044,298458398,298468390],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":43,\"model_id\":306251524567,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25832856993",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26427029756,
              "shopid": 139161747,
              "name": "Paket Material Ac Baru 1/2 PK - 1 PK LENGKAP (Pipa Rme Pro 1/4 + 3/8)",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1718093079,
                1213641,
                2018619,
                2023641,
                1400285055,
                298893311,
                1015914,
                700190087,
                1059152,
                700005489,
                822059908662278,
                825465608493600,
                825465608499232,
                825465608497696,
                298933384,
                700830032,
                2048660,
                2048661,
                700765096,
                2068629,
                298938357,
                2098629,
                298468389,
                298938368,
                1718088045,
                2098628,
                298458396,
                298468390,
                298458398,
                1718088044,
                1718093084
              ],
              "image": "id-11134207-7rbk3-m7ix2hpqcszo3d",
              "images": [
                "id-11134207-7rbk3-m7ix2hpqcszo3d",
                "id-11134207-7rbk2-m9e2jojzswf1e2",
                "id-11134207-7rbk9-m9e2jojzuazh55"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1740204808,
              "sold": 125,
              "historical_sold": 724,
              "liked": false,
              "liked_count": 345,
              "view_count": null,
              "catid": 100010,
              "brand": "Jembo Cable",
              "cmt_count": 232,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 25300000000,
              "price_min": 25300000000,
              "price_max": 25300000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmiq-m7ixhs22vjts07.16000081742358905.mp4",
                  "thumb_url": "id-11110105-6kmiq-m7ixhs22vjts07_cover",
                  "duration": 16,
                  "version": 2,
                  "vid": "id-11110105-6kmiq-m7ixhs22vjts07",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmiq-m7ixhs22vjts07.16000081742358905.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiq-m7ixhs22vjts07.16000081742358905.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiq-m7ixhs22vjts07.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "PAKET RME PRO",
                  "options": [
                    "Material pipa 2mtr",
                    "Material pipa 3mtr",
                    "Material pipa 4mtr",
                    "Material pipa 5mtr",
                    "Material pipa 6mtr",
                    "Material pipa 7mtr",
                    "Material pipa 8mtr",
                    "Material pipa 9mtr",
                    "Material pipa 10mtr",
                    "Material pipa 11mtr",
                    "Material pipa 12mtr",
                    "Material pipa 13mtr",
                    "Material pipa 14mtr",
                    "Material pipa 15mtr"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Material",
                  "options": [
                    "tanpaSteker &Bracket",
                    "Hanya tanpa Steker",
                    "Hanya tanpa Bracket",
                    "LENGKAP"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.866379310344827,
                "rating_count": [
                  232,
                  1,
                  1,
                  5,
                  14,
                  211
                ],
                "rcount_with_context": 48,
                "rcount_with_image": 35
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp84RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 25300000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 410102755493,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 25300000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 724,
                "rounded_local_monthly_sold_count": 125,
                "local_monthly_sold_count_text": "125",
                "rounded_display_sold_count": 724,
                "display_sold_count_text": "724"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp84RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ioelectronic",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                4
              ]
            },
            "itemid": 26427029756,
            "shopid": 139161747,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-m7ix2hpqcszo3d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1718093079,1213641,2018619,2023641,1400285055,298893311,1015914,700190087,1059152,700005489,822059908662278,825465608493600,825465608499232,825465608497696,298933384,700830032,2048660,2048661,700765096,2068629,298938357,2098629,298468389,298938368,1718088045,2098628,298458396,298468390,298458398,1718088044,1718093084],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"ac window\"],\"merge_rank\":44,\"model_id\":410102755493,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-m7ix2hpqcszo3d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1718093079,1213641,2018619,2023641,1400285055,298893311,1015914,700190087,1059152,700005489,822059908662278,825465608493600,825465608499232,825465608497696,298933384,700830032,2048660,2048661,700765096,2068629,298938357,2098629,298468389,298938368,1718088045,2098628,298458396,298468390,298458398,1718088044,1718093084],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"ac window\"],\"merge_rank\":44,\"model_id\":410102755493,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26427029756",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 4769993640,
              "shopid": 55624866,
              "name": "RECEIVER MODUL SENSOR AC LG DUAL INVERTER SMART INVERTER E06SV3 E06SV4 E10SV3 E10SV4 T06EV3 ORIGINAL",
              "label_ids": [
                1001024,
                1001036,
                1011751,
                1011747,
                700020158,
                844931064601283,
                298458335,
                298458334,
                298463379,
                1213641,
                1400285055,
                1000031,
                298458395,
                1718087960,
                1428713,
                1049126,
                700005507,
                822059908662278,
                825465608492064,
                825465608499232,
                825465608497696,
                837860934119952,
                1718093079,
                2018619,
                1015914,
                700190087,
                298893311,
                298933384,
                700830032,
                2048660,
                2048661,
                844931086908638,
                2023641,
                1718088045,
                298468390,
                298458398,
                298458396,
                1718093084,
                298468389,
                1718088044
              ],
              "image": "id-11134207-7rasf-m5p8cdaywx8g59",
              "images": [
                "id-11134207-7rasf-m5p8cdaywx8g59",
                "id-11134207-7rasj-m5p8cdaz2ji895",
                "id-11134207-7rask-m5p8cdayybsw77",
                "id-11134207-7rasc-m5p8cdaz14xs9a",
                "id-11134207-7rbk2-m6v5zq88vm244b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1608312375,
              "sold": 16,
              "historical_sold": 198,
              "liked": false,
              "liked_count": 66,
              "view_count": null,
              "catid": 100010,
              "brand": "LG",
              "cmt_count": 95,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 12700000000,
              "price_min": 12700000000,
              "price_max": 12700000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Model",
                  "options": [
                    "Kabel saja set",
                    "Sensor +kabel",
                    "Sensor+Cover+kabel",
                    "Sensor fullset"
                  ],
                  "images": [
                    "id-11134207-7rbk9-m6v5zq88x0mkbb",
                    "id-11134207-7rbkd-m6v5zq88yf7069",
                    "id-11134207-7rbk2-m6v5zq88ztrg01",
                    "id-11134207-7rbkb-m6v5zq8918bw2c"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.729166666666667,
                "rating_count": [
                  96,
                  2,
                  2,
                  2,
                  8,
                  82
                ],
                "rcount_with_context": 19,
                "rcount_with_image": 10
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Denpasar",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 12700000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 247772049913,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 12700000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 198,
                "rounded_local_monthly_sold_count": 16,
                "local_monthly_sold_count_text": "16",
                "rounded_display_sold_count": 198,
                "display_sold_count_text": "198"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KaryaTeknikAC",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 4769993640,
            "shopid": 55624866,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasf-m5p8cdaywx8g59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001024,1001036,1011751,1011747,700020158,844931064601283,298458335,298458334,298463379,1213641,1400285055,1000031,298458395,1718087960,1428713,1049126,700005507,822059908662278,825465608492064,825465608499232,825465608497696,837860934119952,1718093079,2018619,1015914,700190087,298893311,298933384,700830032,2048660,2048661,844931086908638,2023641,1718088045,298468390,298458398,298458396,1718093084,298468389,1718088044],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":45,\"model_id\":247772049913,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasf-m5p8cdaywx8g59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001024,1001036,1011751,1011747,700020158,844931064601283,298458335,298458334,298463379,1213641,1400285055,1000031,298458395,1718087960,1428713,1049126,700005507,822059908662278,825465608492064,825465608499232,825465608497696,837860934119952,1718093079,2018619,1015914,700190087,298893311,298933384,700830032,2048660,2048661,844931086908638,2023641,1718088045,298468390,298458398,298458396,1718093084,298468389,1718088044],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":45,\"model_id\":247772049913,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_4769993640",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24070422485,
              "shopid": 227074971,
              "name": "TCL AC TAC 05 CSD/XBS 0.5 PK AC Low Watt [INDOOR + OUTDOOR ONLY] - 1/2 PK Mini Full Set - 1 2 PK Baru - Tersedia Pemasangan Jabodetabek",
              "label_ids": [
                1000381,
                1000544,
                1000549,
                1011692,
                1014815,
                1016119,
                1143625,
                1518617,
                1668726,
                700085047,
                1400095067,
                1400285005,
                1718072935,
                1015914,
                700190087,
                844931086908638,
                1400285055,
                1718087960,
                1428713,
                298458395,
                1718093079,
                298463379,
                822059908662278,
                825465608497696,
                1948020499688470,
                822120592851990,
                829846897364525,
                825465608499232,
                822120592903190,
                822120592899094,
                822120592904214,
                1918643,
                1049112,
                700005486,
                1000031,
                1012763,
                1988623,
                1718162994,
                2018618,
                1400066568,
                298893311,
                814381247177222,
                298933337,
                2153644,
                700830032,
                1049116,
                1049117,
                2213652,
                840960000382502,
                298888358,
                298938357,
                299048391,
                299048392,
                700810080,
                2008656,
                1718088045,
                2098628,
                298938368,
                298468389,
                2098629
              ],
              "image": "sg-11134201-825zt-mjf6jzpk4wzq93",
              "images": [
                "sg-11134201-825zt-mjf6jzpk4wzq93",
                "id-11134207-82252-mh1cjj9rej9p98",
                "id-11134207-8224q-mhixruogxmh2a1",
                "id-11134201-7rbk1-majcwxj2q0im3a",
                "id-11134201-7rbk9-majcwxjmnspq05",
                "id-11134201-7rbk5-majcwxj2on5014",
                "id-11134201-7rbk9-majcwxj2olg21a",
                "id-11134201-7rbk2-majcwxj2olo87e",
                "id-11134201-7ra0i-mc1zq135y9zz9e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1711102735,
              "sold": 1000,
              "historical_sold": 10000,
              "liked": false,
              "liked_count": 11113,
              "view_count": null,
              "catid": 100010,
              "brand": "TCL",
              "cmt_count": 4051,
              "flag": 268500992,
              "cb_option": 0,
              "item_status": "normal",
              "price": 259990000000,
              "price_min": 259990000000,
              "price_max": 259990000000,
              "price_min_before_discount": 449900000000,
              "price_max_before_discount": 449900000000,
              "hidden_price_display": null,
              "price_before_discount": 449900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-42%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke16-lvcm7sqsk07b93.16000081715825852.mp4",
                  "thumb_url": "id-11110105-7r991-lvcm7wa5dzi917",
                  "duration": 25,
                  "version": 2,
                  "vid": "id-11110105-6ke16-lvcm7sqsk07b93",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke16-lvcm7sqsk07b93.16003251716528598.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke16-lvcm7sqsk07b93.16003251716528598.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke16-lvcm7sqsk07b93.16003241716528598.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke16-lvcm7sqsk07b93.16003241716528598.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke16-lvcm7sqsk07b93.16005581716528598.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke16-lvcm7sqsk07b93.16005581716528598.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke16-lvcm7sqsk07b93.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "Unit Only",
                    "Instalasi + Material"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.883837181623423,
                "rating_count": [
                  4201,
                  43,
                  6,
                  43,
                  212,
                  3897
                ],
                "rcount_with_context": 1179,
                "rcount_with_image": 1078
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "sg-11134201-81zuf-miwsotqi0ao4ef",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": true,
              "spl_repayment_label_repayment": "Rp433RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 820161242775552,
                "price": 259990000000,
                "strikethrough_price": 449900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-42%",
                "model_id": 232624174425,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 449900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10000,
                "rounded_local_monthly_sold_count": 1000,
                "local_monthly_sold_count_text": "1RB+",
                "rounded_display_sold_count": 10000,
                "display_sold_count_text": "10RB+"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp433RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "TCL Official Shop ",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                1000,
                97,
                1000,
                4
              ]
            },
            "itemid": 24070422485,
            "shopid": 227074971,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zt-mjf6jzpk4wzq93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000381,1000544,1000549,1011692,1014815,1016119,1143625,1518617,1668726,700085047,1400095067,1400285005,1718072935,1015914,700190087,844931086908638,1400285055,1718087960,1428713,298458395,1718093079,298463379,822059908662278,825465608497696,1948020499688470,822120592851990,829846897364525,825465608499232,822120592903190,822120592899094,822120592904214,1918643,1049112,700005486,1000031,1012763,1988623,1718162994,2018618,1400066568,298893311,814381247177222,298933337,2153644,700830032,1049116,1049117,2213652,840960000382502,298888358,298938357,299048391,299048392,700810080,2008656,1718088045,2098628,298938368,298468389,2098629],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":46,\"model_id\":232624174425,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[88,1000,97,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zt-mjf6jzpk4wzq93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000381,1000544,1000549,1011692,1014815,1016119,1143625,1518617,1668726,700085047,1400095067,1400285005,1718072935,1015914,700190087,844931086908638,1400285055,1718087960,1428713,298458395,1718093079,298463379,822059908662278,825465608497696,1948020499688470,822120592851990,829846897364525,825465608499232,822120592903190,822120592899094,822120592904214,1918643,1049112,700005486,1000031,1012763,1988623,1718162994,2018618,1400066568,298893311,814381247177222,298933337,2153644,700830032,1049116,1049117,2213652,840960000382502,298888358,298938357,299048391,299048392,700810080,2008656,1718088045,2098628,298938368,298468389,2098629],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":46,\"model_id\":232624174425,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[88,1000,97,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24070422485",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 6456170359,
              "shopid": 236632192,
              "name": "Beliajadulu88 Kipas angin berdiri ( Stand fan ) 16inch",
              "label_ids": [
                1000895,
                1001176,
                1001024,
                1001177,
                22,
                1000287,
                1011751,
                700020158,
                700020015,
                1015914,
                1400085392,
                1400066664,
                700190087,
                822059908662278,
                844931064601283,
                844931086908638,
                1049120,
                700005490,
                1400285055,
                1213641,
                298458334,
                825465608493600,
                825465608497696,
                825465608499232,
                1000031,
                298458395,
                1718087960,
                1428713,
                1400025118,
                2018619,
                2023641,
                1718093079,
                298893311,
                700830032,
                2048661,
                2048660,
                700765096,
                298623321,
                1993623,
                998091078,
                700585042,
                1718093085,
                298838363,
                1718093084,
                298458396
              ],
              "image": "id-11134207-7r98q-lo3i2wazz91ic3",
              "images": [
                "id-11134207-7r98q-lo3i2wazz91ic3",
                "2fc89f27b5ec0aff3e9a9cd0102aeb3d",
                "id-11134207-7r98t-lo3i2wb00nly41",
                "sg-11134201-22100-ildnemy327iv23",
                "4de7cbbfef1e5b2487b6dcfbced40249",
                "id-11134207-7r98r-lueogarbh3e0dd",
                "id-11134207-7r98v-lug5lbxtrnh985",
                "id-11134207-7ra0u-mcsvrqic7upjcc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1602139775,
              "sold": 27,
              "historical_sold": 10000,
              "liked": false,
              "liked_count": 8134,
              "view_count": null,
              "catid": 100010,
              "brand": "TD",
              "cmt_count": 7048,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 11900000000,
              "price_min": 11900000000,
              "price_max": 11900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1b-lr404tv6kg8757.16000081706587495.mp4",
                  "thumb_url": "id-11110105-7r98r-lr4056b0j3am29",
                  "duration": 55,
                  "version": 2,
                  "vid": "id-11110105-6ke1b-lr404tv6kg8757",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1b-lr404tv6kg8757.16003251712328385.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-lr404tv6kg8757.16003251712328385.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-lr404tv6kg8757.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "variasi",
                  "options": [
                    "trisonik",
                    "kavolux",
                    "TD",
                    "trisonik 10inch",
                    "PROFAN GRANDE"
                  ],
                  "images": [
                    "3db1573538c6f3d0e9af9665db7de177",
                    "028d24ac0c3db016755e2b88a54a2c1b",
                    "55bb85a6ec7fc3577a4ba7a398355ebe",
                    "sg-11134201-22100-tyn230m2iuiv4f",
                    "id-11134207-7r98r-lug5lbxtugm57d"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.457321403209772,
                "rating_count": [
                  7051,
                  300,
                  166,
                  490,
                  1178,
                  4917
                ],
                "rcount_with_context": 2648,
                "rcount_with_image": 2035
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134601-7r990-lla7h9wegp185d",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 11850000000,
                "strikethrough_price": 11900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1298885742706688,
                "discount_text": null,
                "model_id": 154414234564,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1298885742706688,
                  "voucher_code": "BELI500DE",
                  "voucher_discount": 50000000,
                  "time_info": {
                    "start_time": 1764298980,
                    "end_time": 1772297940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5999900000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 11900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10000,
                "rounded_local_monthly_sold_count": 27,
                "local_monthly_sold_count_text": "27",
                "rounded_display_sold_count": 10000,
                "display_sold_count_text": "10RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Beliajadulu88",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 6456170359,
            "shopid": 236632192,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-lo3i2wazz91ic3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000895,1001176,1001024,1001177,22,1000287,1011751,700020158,700020015,1015914,1400085392,1400066664,700190087,822059908662278,844931064601283,844931086908638,1049120,700005490,1400285055,1213641,298458334,825465608493600,825465608497696,825465608499232,1000031,298458395,1718087960,1428713,1400025118,2018619,2023641,1718093079,298893311,700830032,2048661,2048660,700765096,298623321,1993623,998091078,700585042,1718093085,298838363,1718093084,298458396],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":47,\"model_id\":154414234564,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-lo3i2wazz91ic3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000895,1001176,1001024,1001177,22,1000287,1011751,700020158,700020015,1015914,1400085392,1400066664,700190087,822059908662278,844931064601283,844931086908638,1049120,700005490,1400285055,1213641,298458334,825465608493600,825465608497696,825465608499232,1000031,298458395,1718087960,1428713,1400025118,2018619,2023641,1718093079,298893311,700830032,2048661,2048660,700765096,298623321,1993623,998091078,700585042,1718093085,298838363,1718093084,298458396],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":47,\"model_id\":154414234564,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_6456170359",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41204602393,
              "shopid": 1172279593,
              "name": "FLARING SINGLE CT 195 + CUTTER MINI TUBE CUTTER CT128 TOOL FLARING AC",
              "label_ids": [
                2018619,
                2023641,
                844931086908638,
                844931064601283,
                1119699,
                1213641,
                1718093065,
                1015914,
                700190087,
                1400285055,
                298933384,
                1049112,
                1059151,
                822059908662278,
                2048660,
                2048661,
                825465608492064,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                837860934119952,
                700810080,
                1718093079,
                1718093084,
                298458396
              ],
              "image": "id-11134207-7rbk7-mb12b9o45e5546",
              "images": [
                "id-11134207-7rbk7-mb12b9o45e5546",
                "id-11134207-7rbk7-mb12b9o46splbd",
                "id-11134207-7rbk7-mb12b9o487a12f",
                "id-11134207-7rbk2-mb12b9o49luhcd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1749996020,
              "sold": 67,
              "historical_sold": 465,
              "liked": false,
              "liked_count": 69,
              "view_count": null,
              "catid": 100636,
              "brand": "",
              "cmt_count": 218,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 8524900000,
              "price_min": 8524900000,
              "price_max": 8524900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "variasi",
                  "options": [
                    "FLARING 195",
                    "FLARING + TUBE CUTER"
                  ],
                  "images": [
                    "id-11134207-7rbk2-mb12b9o4b0exb2",
                    "id-11134207-7rbke-mb12b9o4cezdb0"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.839449541284404,
                "rating_count": [
                  218,
                  4,
                  0,
                  2,
                  15,
                  197
                ],
                "rcount_with_context": 24,
                "rcount_with_image": 19
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 8524900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 275391014010,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 8524900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 465,
                "rounded_local_monthly_sold_count": 67,
                "local_monthly_sold_count_text": "67",
                "rounded_display_sold_count": 465,
                "display_sold_count_text": "465"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RQ store bekasi",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 41204602393,
            "shopid": 1172279593,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk7-mb12b9o45e5546\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931086908638,844931064601283,1119699,1213641,1718093065,1015914,700190087,1400285055,298933384,1049112,1059151,822059908662278,2048660,2048661,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,837860934119952,700810080,1718093079,1718093084,298458396],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":48,\"model_id\":275391014010,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk7-mb12b9o45e5546\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931086908638,844931064601283,1119699,1213641,1718093065,1015914,700190087,1400285055,298933384,1049112,1059151,822059908662278,2048660,2048661,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,837860934119952,700810080,1718093079,1718093084,298458396],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":48,\"model_id\":275391014010,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41204602393",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 1305412651,
              "shopid": 24694523,
              "name": "Bos Kipas Angin Kuping 9โ€ / BOSSING KIPAS 9โ€",
              "label_ids": [
                1000544,
                1000245,
                1001024,
                1001036,
                30,
                35,
                64,
                71,
                74,
                22,
                844931086908638,
                844931064601283,
                1400285055,
                1213641,
                298463379,
                1015914,
                700190087,
                1718093079,
                700005499,
                1059156,
                822059908662278,
                840955085144628,
                825465608493600,
                825465608499232,
                825465608497696,
                840990690654214,
                2018619,
                2023641,
                298893311,
                2048660,
                2048661,
                1718088044,
                1718088045,
                298468389,
                298458396,
                298468390,
                298458398,
                1718093084
              ],
              "image": "id-11134207-7rasi-m5hlkvh6ybuq2b",
              "images": [
                "id-11134207-7rasi-m5hlkvh6ybuq2b",
                "a8bafc78634c8c0dd1b26f29c0e85d73",
                "b51fd30d98e8e66c33cba470a6eaeb83"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1531073724,
              "sold": 52,
              "historical_sold": 1000,
              "liked": false,
              "liked_count": 128,
              "view_count": null,
              "catid": 100010,
              "brand": "Maspion",
              "cmt_count": 370,
              "flag": 196610,
              "cb_option": 0,
              "item_status": "normal",
              "price": 650000000,
              "price_min": 650000000,
              "price_max": 650000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "JOkCFkk7lwQix45T",
                  "thumb_url": "4a5237a3cd44a71e88a5d682829da2d4",
                  "duration": 6,
                  "version": 2,
                  "vid": "sg_6796f91a-7023-42a5-8ba1-9d951e0de841_000011",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/sg_6796f91a-7023-42a5-8ba1-9d951e0de841_000011.default.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/sg_6796f91a-7023-42a5-8ba1-9d951e0de841_000011.default.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/sg_6796f91a-7023-42a5-8ba1-9d951e0de841_000011.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "type",
                  "options": [
                    "body besar 9\""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.74934036939314,
                "rating_count": [
                  379,
                  3,
                  2,
                  14,
                  49,
                  311
                ],
                "rcount_with_context": 93,
                "rcount_with_image": 68
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": true,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 650000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 166898464321,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 650000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1000,
                "rounded_local_monthly_sold_count": 52,
                "local_monthly_sold_count_text": "52",
                "rounded_display_sold_count": 1000,
                "display_sold_count_text": "1RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "NINA ELECTRICAL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 1305412651,
            "shopid": 24694523,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m5hlkvh6ybuq2b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000544,1000245,1001024,1001036,30,35,64,71,74,22,844931086908638,844931064601283,1400285055,1213641,298463379,1015914,700190087,1718093079,700005499,1059156,822059908662278,840955085144628,825465608493600,825465608499232,825465608497696,840990690654214,2018619,2023641,298893311,2048660,2048661,1718088044,1718088045,298468389,298458396,298468390,298458398,1718093084],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":49,\"model_id\":166898464321,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m5hlkvh6ybuq2b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000544,1000245,1001024,1001036,30,35,64,71,74,22,844931086908638,844931064601283,1400285055,1213641,298463379,1015914,700190087,1718093079,700005499,1059156,822059908662278,840955085144628,825465608493600,825465608499232,825465608497696,840990690654214,2018619,2023641,298893311,2048660,2048661,1718088044,1718088045,298468389,298458396,298468390,298458398,1718093084],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":49,\"model_id\":166898464321,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_1305412651",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41601005370,
              "shopid": 1006143313,
              "name": "AW Air Cooler Tangki Besar 10L 3 Kecepatan Pendingin Kamar Di Rumah Kipas Angin Pendingin",
              "label_ids": [
                2018619,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                837860934119952,
                1015914,
                700190087,
                825465608497696,
                1718093079,
                1400285055,
                700830032,
                834230400556567,
                2023641,
                2068629,
                298938357,
                2098629
              ],
              "image": "id-11134207-82250-mj2s26t4mk8xd5",
              "images": [
                "id-11134207-82250-mj2s26t4mk8xd5",
                "id-11134207-8224s-mi3xrwkeornk1c",
                "id-11134207-8224u-mi3xrwkend3447",
                "id-11134207-8224y-mi3xrwkeq680e6",
                "id-11134207-8224x-mi3xrwkevshsd6",
                "id-11134207-8224s-mi3xrwkex728e9",
                "id-11134207-82252-mi3xrwkerksgb1",
                "id-11134207-82250-mi3xrwkeszcw3f",
                "id-11134207-82251-mi3xrwkeudxccc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1747300801,
              "sold": 9,
              "historical_sold": 173,
              "liked": false,
              "liked_count": 74,
              "view_count": null,
              "catid": 100010,
              "brand": "Tixx",
              "cmt_count": 58,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 48500000000,
              "price_min": 48500000000,
              "price_max": 48500000000,
              "price_min_before_discount": 239800000000,
              "price_max_before_discount": 239800000000,
              "hidden_price_display": null,
              "price_before_discount": 239800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-80%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venb-mipmu5ty34lf18.16000081766736374.mp4",
                  "thumb_url": "id-11110105-6venb-mipmu5ty34lf18_cover",
                  "duration": 55,
                  "version": 2,
                  "vid": "id-11110105-6venb-mipmu5ty34lf18",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venb-mipmu5ty34lf18.16000081766736374.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mipmu5ty34lf18.16000081766736374.mp4",
                      "width": 720,
                      "height": 944
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mipmu5ty34lf18.default.mp4",
                    "width": 540,
                    "height": 708
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "10L-Putih",
                    "10L-Putih+remote",
                    "40L-Hitam",
                    "40L-Hitam+remote"
                  ],
                  "images": [
                    "id-11134207-8224u-mir3igzqyrya22",
                    "id-11134207-8224s-mir3igzli4g781",
                    "id-11134207-7ra0l-mdcxnbkxz61w96",
                    "id-11134207-7ra0p-mdcxgp1p5s2sc4"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.913793103448276,
                "rating_count": [
                  58,
                  0,
                  0,
                  1,
                  3,
                  54
                ],
                "rcount_with_context": 32,
                "rcount_with_image": 24
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp160RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 776530070913024,
                "price": 48000000000,
                "strikethrough_price": 239800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1328585324773376,
                "discount_text": "-80%",
                "model_id": 265190242897,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1328585324773376,
                  "voucher_code": "APPL14223",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1767839460,
                    "end_time": 1774927860,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 500100000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 239800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 173,
                "rounded_local_monthly_sold_count": 9,
                "local_monthly_sold_count_text": "9",
                "rounded_display_sold_count": 173,
                "display_sold_count_text": "173"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp160RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Appliance World",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                4
              ]
            },
            "itemid": 41601005370,
            "shopid": 1006143313,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mj2s26t4mk8xd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,700005490,1049120,822059908662278,825465608499232,837860934119952,1015914,700190087,825465608497696,1718093079,1400285055,700830032,834230400556567,2023641,2068629,298938357,2098629],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":50,\"model_id\":265190242897,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mj2s26t4mk8xd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,700005490,1049120,822059908662278,825465608499232,837860934119952,1015914,700190087,825465608497696,1718093079,1400285055,700830032,834230400556567,2023641,2068629,298938357,2098629],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":50,\"model_id\":265190242897,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41601005370",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 10242608037,
              "shopid": 229515338,
              "name": "AZKO Apa 10 ltr Air Cooler 1200cmh - Putih Ice Conditioner Pendingin Ruangan Penyejuk Udara Kipas Angin Evaporasi Cooling Fan Dengan Ice Box",
              "label_ids": [
                1000381,
                1002164,
                1011705,
                700085047,
                1400095067,
                1400285005,
                1001024,
                844931046478970,
                844931026694327,
                844931064601283,
                1015914,
                700190087,
                1400285055,
                822059908662278,
                1059156,
                1049116,
                1049112,
                1049127,
                1059152,
                825465608499232,
                700585046,
                700000513,
                1049132,
                1718087960,
                1428713,
                1049124,
                1049122,
                700005487,
                700005510,
                700005490,
                1049136,
                1059154,
                700005499,
                1718093079,
                700000486,
                1049117,
                1049123,
                700005516,
                2018618,
                1012763,
                2013645,
                298893311,
                1059151,
                825465608497696,
                1049120,
                298933384,
                1049155,
                700830032,
                834403089593352,
                700005537,
                1049147,
                2213652,
                1400095022,
                1049141,
                1049154,
                2008656
              ],
              "image": "sg-11134201-822zm-mibxac92cavab1",
              "images": [
                "sg-11134201-822zm-mibxac92cavab1",
                "sg-11134201-8261u-mj4gwwgd6gw2da",
                "sg-11134201-8260q-mj4gwydt0flt91",
                "sg-11134201-8262v-mj4gwz664hl182",
                "sg-11134201-8261r-mj4gx0f8e77l48",
                "sg-11134201-7rbn6-m5crsovgyixa57",
                "sg-11134201-7ra32-m4kbi7ymiy4h82"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1630378205,
              "sold": 137,
              "historical_sold": 5000,
              "liked": false,
              "liked_count": 19222,
              "view_count": null,
              "catid": 100010,
              "brand": "Apa",
              "cmt_count": 2271,
              "flag": 917504,
              "cb_option": 0,
              "item_status": "normal",
              "price": 129500000000,
              "price_min": 129500000000,
              "price_max": 129500000000,
              "price_min_before_discount": 269900000000,
              "price_max_before_discount": 269900000000,
              "hidden_price_display": null,
              "price_before_discount": 269900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-52%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16000081740132891.mp4",
                  "thumb_url": "id-11110105-6knan-m6i5nzddsxgsb2_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6knan-m6i5nzddsxgsb2",
                  "formats": [
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16004081740785047.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16004081740785047.mp4",
                      "width": 360,
                      "height": 640
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16006711740199715.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16006711740199715.mp4",
                      "width": 540,
                      "height": 960
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16006731740395590.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16006731740395590.mp4",
                      "width": 540,
                      "height": 960
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16004091740785046.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16004091740785046.mp4",
                      "width": 540,
                      "height": 960
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16006591740785047.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16006591740785047.mp4",
                      "width": 540,
                      "height": 960
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16000081740132891.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16000081740132891.mp4",
                      "width": 720,
                      "height": 1280
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16003251740199715.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16003251740199715.mp4",
                      "width": 720,
                      "height": 1280
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16004101740785046.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16004101740785046.mp4",
                      "width": 720,
                      "height": 1280
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16004111740785047.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16004111740785047.mp4",
                      "width": 720,
                      "height": 1280
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16005581740199715.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16005581740199715.mp4",
                      "width": 1080,
                      "height": 1920
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16005681740785047.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16005681740785047.mp4",
                      "width": 1080,
                      "height": 1920
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.859521776259607,
                "rating_count": [
                  2342,
                  16,
                  7,
                  33,
                  178,
                  2108
                ],
                "rcount_with_context": 558,
                "rcount_with_image": 477
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 830755568156672,
                "price": 129500000000,
                "strikethrough_price": 269900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-52%",
                "model_id": 47167161970,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 269900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5000,
                "rounded_local_monthly_sold_count": 137,
                "local_monthly_sold_count_text": "137",
                "rounded_display_sold_count": 5000,
                "display_sold_count_text": "5RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "AZKO Indonesia",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 588379113,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9tbIGTwTTM9mmFQaSB5kZvAMLFN3o48UQMVovGWO6ZyoW+Vl/JloTL+7cGgoCT8l34PD0YEuLgzER5pD03vINxSt+jdQOUgQNGuWskOt48P5idc46HdvqctJ3TCwEmsc19FP6vegnKfeSOa+Y4tlGR2pJonCVk7zpVhB8BaHdZhcARKMm1Tc4VxGQTT8nvDGc/X5pTIwFplCELD/0XhaL5ZVqFGbnZ3wG1L00fqApLKjPD5JjnHlKOx3gEeUJvnpZU/iVv1un2t3Xjl4baNcJGvhZW9YgYPXFDhPn1Q/hZ17vkHgNJ0vz/YD8yU3/Ue92H3CELCYQ0aAWvEaxcv+D55ORY9Z//LbD6ObaI1m8ALo4IedmG23+4JXhk2tKU7R42y13fURJxzsRBIESVqTWvle/PqWzplfunBj6ierJ3UDzomuk4U+q0OeiyZNjGaVDoD3tBTSAvs01FZFwPEeoWsaBwVsrOzq0x2K4X6MvKEFW0EiwfN0vjCHS/VuNCWIw==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYxOTk1N3w1NTY2MDd8NTAwNTM1fDYzMTU0OXw1NDQ1MDR8NTY5MDQwfDU5Njc1NHw1NDQ1NTF8NTQ3Nzg0fDYxMzg1OXw0NDI2Mzd8NTU0Nzk2fDUzODc1NHw2MTgzNzZ8NTMyMzYwfDYwMjkyM3w2Mjc2Njd8NjA4OTk5fDYzNTc1Mnw1OTM2Mjd8NTgwNzgyfDYwOTMwNHw1OTc4ODN8NjA1NDY3fDYwMDQwNnw2MDkyODh8NTU0MDAwfDYzNTc5MHw1Nzg4Nzd8NTM0MTc4fDYxMzQyMnw2MzQ3NTB8NTgwNzgzfDYyOTQ2MHw2MDMzMzF8NTcwNDY2fDUyNjUwOHw1NDQ1NjF8NjM0NzIxfDYyMDk3OXw2MzA3NzR8NjIwMjEzfDYwOTEzOXw2MjM1MDN8NTk3MDk4fDUwNTc5MHw1Mjc0Mjl8EOnnx5gCGPfaq80BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeW9XK1ZsL0psb1RMKzdjR2dvQ1Q4bDM0UEQwWUV1TGd6RVI1cEQwM3ZJTnhTdCtqZFFPVWdRTkd1V3NrT3Q0OFA1aWRjNDZIZHZxY3RKM1RDd0Vtc2MxOUZQNnZlZ25LZmVTT2ErWTR0bEdSMnBKb25DVms3enBWaEI4QmFIZFpoY0FSS01tMVRjNFZ4R1FUVDhudkRHYy9YNXBUSXdGcGxDRUxELzBYaGFMNVpWcUZHYm5aM3dHMUwwMGZxQXBMS2pQRDVKam5IbEtPeDNnRWVVSnZucFpVL2lWdjF1bjJ0M1hqbDRiYU5jSkd2aFpXOVlnWVBYRkRoUG4xUS9oWjE3dmtIZ05KMHZ6L1lEOHlVMy9VZTkySDNDRUxDWVEwYUFXdkVheGN2K0Q1NU9SWTlaLy9MYkQ2T2JhSTFtOEFMbzRJZWRtRzIzKzRKWGhrMnRLVTdSNDJ5MTNmVVJKeHpzUkJJRVNWcVRXdmxlL1BxV3pwbGZ1bkJqNmllckozVUR6b211azRVK3EwT2VpeVpOakdhVkRvRDN0QlRTQXZzMDFGWkZ3UEVlb1dzYUJ3VnNyT3pxMHgySzRYNk12S0VGVzBFaXdmTjB2akNIUy9WdU5DV0l3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjVxexSuR+F6lD+CAQlhYyB3aW5kb3eQAau7ncsGuAEB4AH22ISXRukBAAAAoMQd8T/xAQAAAIB3e/Q/yAwP4AwB6QwAAABAzNu5P4kNexSuR+F6lD+RDXsUrkfhepQ/oQ0AAAAAAADwP/gNgMCt0d8DsA7thdeEAeIODKqNBseNBtWOBvGQBsgPFOIZ0ApFbm93TGpReU5qazVNREU1Tmprd05UYzROVGMzTEMweExDMHhMQzB4TEMweExEQXVORE14TXpBek1qSTVNVGszTnpZek5Dd3hMREF1T1RVMk5qSTJPRGs0TlRBeE9UQTRMREF1T1N3dE1Td3dMak00T1RVeU16STROVEExTnpBME9USTFMQzB4TERFdU5Ua3dNekE0TXpRMU1USTRORFkyTlN3dE1SMHUvNXhNSU83UmlnOHRkcDdhUGpVQUFJQS9PWGlDbHoyMURRcENRZW1Ka2w0WFBseENTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFjUUFBQU9Eaitncy9lUUFBQU1BOUF3SS9nUUVBQUFBZ1ZnWmRRWWtCQUFBQWdOWXVLVUdSQVFBQUFIZ1lGbUJCbVFFQUFBQWdlcGRqUWFFQkFBQUFvSjMvTUVHcEFRQUFBTlJ0dDJWQjZBRUJnQUtVQTRvQ1BqQXVNREEwTlRjeExERXVNREF3TURBd0xERXVNREEyTURNekxERXVNakEzTmpVM0xERXVNekF3TURBd0xERXVOREF3TURBd0xERXVOVEF3TURBd21RTE1FUVRjZUpyYlA2RUNLZ0NleGhKSnlFSEtBZ3NJQVJHaDIwc2FvM1dVdjhvQ0N3Z0NFZnVwOGRKTlluQy8yUUpBRWtLcVpVbENRZUVDQVA2T3EwMldFMEhwQWlSSmlCdVRZTEJCaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9tUU1IR2xDQmVHWU1RcUVETzNtZzlDMTZYa0s1QTZiTzI2RDMzdDgvd1FNRzRDZGl1WmppUDhrRHNNYS9TZU16NWovUkEwcE04Mm5GViswLytnTUpDZ1ZKYzA1UVFoQUErZ01MQ2dkU2IybFVhV1Z5RUFMNkF3MEtDVTl5WkdWeVZHbGxjaEFEK2dNUkNnMUpkR1Z0VUhKcFkyVlVhV1Z5RUFPQkJBQUFBTUJqZHdRL2lRUUFBQUJBanNUOVBwQUVtd09ZQklpRDRxRDV6Z09nQktEUy9jQktxQVNnMHYzQVNzQUVvTkw5d0VySkJIc1Vya2ZoZXBRLzRRUjdGSzVINFhxVVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFRSWk1Y2oraEJRQUFBQUFBQVBBL3FRVUFBQURndFJqd1A3RUZBQUFBb0pCUzh6KzVCUUFBQU1ETXpQUS93UVVBQUFCZ1ptYjJQOGtGQUFBQUFBQUErRDg96hkEt03CTfoZjAYKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDb3JnCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoSCgx2b3VjaGVyX2xlbnMSAhAACg0KB2lzX3Zza3USAigACvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQ5LCJhcGkyX2xhdGVuY3lfbXMiOjk0LCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNSwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6NjEsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTQwLCJhcGkyX2Fkc19jb3VudCI6MzE0LCJhcGkzX2Fkc19jb3VudCI6NH0KJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzEwMjQyNjA4MDM3ChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKACwH4CAgICAgICoiAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUqAJ7GEknIQfIlBlNFQVJDSMg+AQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                1000,
                91,
                4
              ]
            },
            "itemid": 10242608037,
            "shopid": 229515338,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822zm-mibxac92cavab1\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1000381,1002164,1011705,700085047,1400095067,1400285005,1001024,844931046478970,844931026694327,844931064601283,1015914,700190087,1400285055,822059908662278,1059156,1049116,1049112,1049127,1059152,825465608499232,700585046,700000513,1049132,1718087960,1428713,1049124,1049122,700005487,700005510,700005490,1049136,1059154,700005499,1718093079,700000486,1049117,1049123,700005516,2018618,1012763,2013645,298893311,1059151,825465608497696,1049120,298933384,1049155,700830032,834403089593352,700005537,1049147,2213652,1400095022,1049141,1049154,2008656],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":51,\"model_id\":47167161970,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,1000,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822zm-mibxac92cavab1\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1000381,1002164,1011705,700085047,1400095067,1400285005,1001024,844931046478970,844931026694327,844931064601283,1015914,700190087,1400285055,822059908662278,1059156,1049116,1049112,1049127,1059152,825465608499232,700585046,700000513,1049132,1718087960,1428713,1049124,1049122,700005487,700005510,700005490,1049136,1059154,700005499,1718093079,700000486,1049117,1049123,700005516,2018618,1012763,2013645,298893311,1059151,825465608497696,1049120,298933384,1049155,700830032,834403089593352,700005537,1049147,2213652,1400095022,1049141,1049154,2008656],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":51,\"model_id\":47167161970,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,1000,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYxOTk1N3w1NTY2MDd8NTAwNTM1fDYzMTU0OXw1NDQ1MDR8NTY5MDQwfDU5Njc1NHw1NDQ1NTF8NTQ3Nzg0fDYxMzg1OXw0NDI2Mzd8NTU0Nzk2fDUzODc1NHw2MTgzNzZ8NTMyMzYwfDYwMjkyM3w2Mjc2Njd8NjA4OTk5fDYzNTc1Mnw1OTM2Mjd8NTgwNzgyfDYwOTMwNHw1OTc4ODN8NjA1NDY3fDYwMDQwNnw2MDkyODh8NTU0MDAwfDYzNTc5MHw1Nzg4Nzd8NTM0MTc4fDYxMzQyMnw2MzQ3NTB8NTgwNzgzfDYyOTQ2MHw2MDMzMzF8NTcwNDY2fDUyNjUwOHw1NDQ1NjF8NjM0NzIxfDYyMDk3OXw2MzA3NzR8NjIwMjEzfDYwOTEzOXw2MjM1MDN8NTk3MDk4fDUwNTc5MHw1Mjc0Mjl8EOnnx5gCGPfaq80BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeW9XK1ZsL0psb1RMKzdjR2dvQ1Q4bDM0UEQwWUV1TGd6RVI1cEQwM3ZJTnhTdCtqZFFPVWdRTkd1V3NrT3Q0OFA1aWRjNDZIZHZxY3RKM1RDd0Vtc2MxOUZQNnZlZ25LZmVTT2ErWTR0bEdSMnBKb25DVms3enBWaEI4QmFIZFpoY0FSS01tMVRjNFZ4R1FUVDhudkRHYy9YNXBUSXdGcGxDRUxELzBYaGFMNVpWcUZHYm5aM3dHMUwwMGZxQXBMS2pQRDVKam5IbEtPeDNnRWVVSnZucFpVL2lWdjF1bjJ0M1hqbDRiYU5jSkd2aFpXOVlnWVBYRkRoUG4xUS9oWjE3dmtIZ05KMHZ6L1lEOHlVMy9VZTkySDNDRUxDWVEwYUFXdkVheGN2K0Q1NU9SWTlaLy9MYkQ2T2JhSTFtOEFMbzRJZWRtRzIzKzRKWGhrMnRLVTdSNDJ5MTNmVVJKeHpzUkJJRVNWcVRXdmxlL1BxV3pwbGZ1bkJqNmllckozVUR6b211azRVK3EwT2VpeVpOakdhVkRvRDN0QlRTQXZzMDFGWkZ3UEVlb1dzYUJ3VnNyT3pxMHgySzRYNk12S0VGVzBFaXdmTjB2akNIUy9WdU5DV0l3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjVxexSuR+F6lD+CAQlhYyB3aW5kb3eQAau7ncsGuAEB4AH22ISXRukBAAAAoMQd8T/xAQAAAIB3e/Q/yAwP4AwB6QwAAABAzNu5P4kNexSuR+F6lD+RDXsUrkfhepQ/oQ0AAAAAAADwP/gNgMCt0d8DsA7thdeEAeIODKqNBseNBtWOBvGQBsgPFOIZ0ApFbm93TGpReU5qazVNREU1Tmprd05UYzROVGMzTEMweExDMHhMQzB4TEMweExEQXVORE14TXpBek1qSTVNVGszTnpZek5Dd3hMREF1T1RVMk5qSTJPRGs0TlRBeE9UQTRMREF1T1N3dE1Td3dMak00T1RVeU16STROVEExTnpBME9USTFMQzB4TERFdU5Ua3dNekE0TXpRMU1USTRORFkyTlN3dE1SMHUvNXhNSU83UmlnOHRkcDdhUGpVQUFJQS9PWGlDbHoyMURRcENRZW1Ka2w0WFBseENTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFjUUFBQU9Eaitncy9lUUFBQU1BOUF3SS9nUUVBQUFBZ1ZnWmRRWWtCQUFBQWdOWXVLVUdSQVFBQUFIZ1lGbUJCbVFFQUFBQWdlcGRqUWFFQkFBQUFvSjMvTUVHcEFRQUFBTlJ0dDJWQjZBRUJnQUtVQTRvQ1BqQXVNREEwTlRjeExERXVNREF3TURBd0xERXVNREEyTURNekxERXVNakEzTmpVM0xERXVNekF3TURBd0xERXVOREF3TURBd0xERXVOVEF3TURBd21RTE1FUVRjZUpyYlA2RUNLZ0NleGhKSnlFSEtBZ3NJQVJHaDIwc2FvM1dVdjhvQ0N3Z0NFZnVwOGRKTlluQy8yUUpBRWtLcVpVbENRZUVDQVA2T3EwMldFMEhwQWlSSmlCdVRZTEJCaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9tUU1IR2xDQmVHWU1RcUVETzNtZzlDMTZYa0s1QTZiTzI2RDMzdDgvd1FNRzRDZGl1WmppUDhrRHNNYS9TZU16NWovUkEwcE04Mm5GViswLytnTUpDZ1ZKYzA1UVFoQUErZ01MQ2dkU2IybFVhV1Z5RUFMNkF3MEtDVTl5WkdWeVZHbGxjaEFEK2dNUkNnMUpkR1Z0VUhKcFkyVlVhV1Z5RUFPQkJBQUFBTUJqZHdRL2lRUUFBQUJBanNUOVBwQUVtd09ZQklpRDRxRDV6Z09nQktEUy9jQktxQVNnMHYzQVNzQUVvTkw5d0VySkJIc1Vya2ZoZXBRLzRRUjdGSzVINFhxVVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFRSWk1Y2oraEJRQUFBQUFBQVBBL3FRVUFBQURndFJqd1A3RUZBQUFBb0pCUzh6KzVCUUFBQU1ETXpQUS93UVVBQUFCZ1ptYjJQOGtGQUFBQUFBQUErRDg96hkEt03CTfoZjAYKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDb3JnCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoSCgx2b3VjaGVyX2xlbnMSAhAACg0KB2lzX3Zza3USAigACvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQ5LCJhcGkyX2xhdGVuY3lfbXMiOjk0LCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNSwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6NjEsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTQwLCJhcGkyX2Fkc19jb3VudCI6MzE0LCJhcGkzX2Fkc19jb3VudCI6NH0KJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzEwMjQyNjA4MDM3ChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKACwH4CAgICAgICoiAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUqAJ7GEknIQfIlBlNFQVJDSMg+AQ==",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_10242608037",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24561771344,
              "shopid": 1174457,
              "name": "KIPAS ANGIN BLOWER AC 1PK-2PK/ HEMAT LISTIK /BISA JADI HEKSOS & KIPAS ANGIN/FREE COLOKAN",
              "label_ids": [
                1000167,
                1049112,
                700000515,
                822059908662278,
                825465608499232,
                825465608497696,
                1213641,
                1015914,
                700190087,
                1400285055,
                298458395,
                1718093079,
                1718087960,
                1428713,
                844931086908638,
                1000031,
                2018619,
                2023641,
                298893311,
                298463379,
                700830032,
                2048660,
                2048661,
                700765096,
                298933384,
                2068629,
                298938357,
                299103323,
                1718088045,
                298468390,
                298458398,
                298458396,
                1718093084,
                2098628,
                298468389,
                2098629,
                1718088044,
                298938368
              ],
              "image": "id-11134207-7r98v-lxw9xyi09z7uef",
              "images": [
                "id-11134207-7r98v-lxw9xyi09z7uef",
                "id-11134207-7r98w-lsrsetf2ceh208",
                "id-11134207-7r98t-lr8xpxuv46d0e6",
                "id-11134207-7r98y-lr64bqsddd7ra1",
                "id-11134207-7r991-lr0ggcbp233bdd",
                "id-11134207-7r98u-lr64bqsdbynb68",
                "id-11134207-7r991-lr64bqsders7f3",
                "id-11134207-7r992-ltubxwqqvy0y1f",
                "id-11134207-7rasa-m1nhsnknbnp220"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1706716088,
              "sold": 992,
              "historical_sold": 9000,
              "liked": false,
              "liked_count": 2005,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 3184,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "normal",
              "price": 13500000000,
              "price_min": 13500000000,
              "price_max": 13500000000,
              "price_min_before_discount": 14500000000,
              "price_max_before_discount": 14500000000,
              "hidden_price_display": null,
              "price_before_discount": 14500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-7%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6ke1h-lxdpcqmxyh31b5.16000081720250143.mp4",
                  "thumb_url": "id-11110107-7r98s-lxdpcukq7bxu6a",
                  "duration": 12,
                  "version": 2,
                  "vid": "id-11110107-6ke1h-lxdpcqmxyh31b5",
                  "formats": [
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ke1h-lxdpcqmxyh31b5.16004091721396014.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1h-lxdpcqmxyh31b5.16004091721396014.mp4",
                      "width": 288,
                      "height": 352
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1h-lxdpcqmxyh31b5.default.mp4",
                    "width": 288,
                    "height": 352
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "KIPAS ANGIN",
                  "options": [
                    "1PK 2 DAUN",
                    "1PK 3DAUN",
                    "2ยฝ 5DAUN",
                    "2PK 3 DAUN"
                  ],
                  "images": [
                    "id-11134207-7r991-lr64bqsdg6cnb6",
                    "id-11134207-7r98p-lr64bqsdhkx31a",
                    "id-11134207-7r991-lr64bqsdizhjfb",
                    "id-11134207-7rasd-m1nhsnkna94md5"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.765104808877928,
                "rating_count": [
                  3245,
                  45,
                  39,
                  87,
                  291,
                  2783
                ],
                "rcount_with_context": 714,
                "rcount_with_image": 484
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Karawang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp45RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 754899248267264,
                "price": 13500000000,
                "strikethrough_price": 14500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-7%",
                "model_id": 187567208808,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 14500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 9000,
                "rounded_local_monthly_sold_count": 992,
                "local_monthly_sold_count_text": "992",
                "rounded_display_sold_count": 9000,
                "display_sold_count_text": "9RB+"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp45RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KARYA NUSANTARA.",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                4
              ]
            },
            "itemid": 24561771344,
            "shopid": 1174457,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98v-lxw9xyi09z7uef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1049112,700000515,822059908662278,825465608499232,825465608497696,1213641,1015914,700190087,1400285055,298458395,1718093079,1718087960,1428713,844931086908638,1000031,2018619,2023641,298893311,298463379,700830032,2048660,2048661,700765096,298933384,2068629,298938357,299103323,1718088045,298468390,298458398,298458396,1718093084,2098628,298468389,2098629,1718088044,298938368],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":52,\"model_id\":187567208808,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98v-lxw9xyi09z7uef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1049112,700000515,822059908662278,825465608499232,825465608497696,1213641,1015914,700190087,1400285055,298458395,1718093079,1718087960,1428713,844931086908638,1000031,2018619,2023641,298893311,298463379,700830032,2048660,2048661,700765096,298933384,2068629,298938357,299103323,1718088045,298468390,298458398,298458396,1718093084,2098628,298468389,2098629,1718088044,298938368],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":52,\"model_id\":187567208808,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24561771344",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42123011253,
              "shopid": 1453736730,
              "name": "[Unit Only] Xiaomi Mijia AC Air Conditioner 1 PK Inverter Pro Eco 5-Star | Low Watt | Smart Control | Quick Cooling [Official Store]",
              "label_ids": [
                2018618,
                844931064601283,
                1049120,
                700005490,
                822059908662278,
                825465608497696,
                1718087960,
                1428713,
                1015914,
                700190087,
                1400285055,
                844931086908638,
                2213652,
                700810080
              ],
              "image": "id-11134207-82251-mi9w8rz64f7o03",
              "images": [
                "id-11134207-82251-mi9w8rz64f7o03",
                "id-11134207-8224v-mhu9q36bri815a",
                "id-11134207-8224s-mhu9q36c1c7519",
                "id-11134207-8224s-mhu9q36bzxmp5b",
                "id-11134207-8224y-mhu9q36bx4htb0",
                "id-11134207-8224p-mhu9q36bvpxd3c",
                "id-11134207-8224t-mhu9q36byj29e4",
                "id-11134207-8224x-mhu9q36bswshdb",
                "id-11134207-82250-mhu9q36bubcxdc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759742113,
              "sold": 170,
              "historical_sold": 410,
              "liked": false,
              "liked_count": 468,
              "view_count": null,
              "catid": 100010,
              "brand": "Xiaomi",
              "cmt_count": 120,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 407900000000,
              "price_min": 407900000000,
              "price_max": 407900000000,
              "price_min_before_discount": 559900000000,
              "price_max_before_discount": 559900000000,
              "hidden_price_display": null,
              "price_before_discount": 559900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-27%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven2-mg3b7fadys5q82.16000081761026587.mp4",
                  "thumb_url": "id-11110105-6ven2-mg3b7fadys5q82_cover",
                  "duration": 45,
                  "version": 2,
                  "vid": "id-11110105-6ven2-mg3b7fadys5q82",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven2-mg3b7fadys5q82.16000081761026587.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven2-mg3b7fadys5q82.16000081761026587.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven2-mg3b7fadys5q82.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Default"
                  ],
                  "images": [
                    "id-11134207-8224p-mhu9q36c2qrlf6"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.983333333333333,
                "rating_count": [
                  120,
                  0,
                  0,
                  0,
                  2,
                  118
                ],
                "rcount_with_context": 31,
                "rcount_with_image": 26
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-82251-mi9w8rz64f7o03",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 821047985750016,
                "price": 407900000000,
                "strikethrough_price": 559900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-27%",
                "model_id": 238171217524,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 559900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 410,
                "rounded_local_monthly_sold_count": 170,
                "local_monthly_sold_count_text": "170",
                "rounded_display_sold_count": 410,
                "display_sold_count_text": "410"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Xiaomi Home Appliances Official Store",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 629085949,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9tbIGTwTTM9mmFQaSB5kZvAMLFN3o48UQMVovGWO6ZyoW+Vl/JloTL+7cGgoCT8l34PD0YEuLgzER5pD03vINxSt+jdQOUgQNGuWskOt48P5idc46HdvqctJ3TCwEmsc19FP6vegnKfeSOa+Y4tlGR2pJonCVk7zpVhB8BaHdZhcARKMm1Tc4VxGQTT8nvDGc/X5pTIwFplCELD/0XhaL5ZVqFGbnZ3wG1L00fqApLKjPD5JjnHlKOx3gEeUJvnpZU/iVv1un2t3Xjl4baNcJGvhZW9YgYPXFDhPn1Q/hZ17vkHgNJ0vz/YD8yU3/Ue92H3CELCYQ0aAWvEaxcv+D55ORY9Z//LbD6ObaI1m8ALo4IedmG23+4JXhk2tKU7R42y13fURJxzsRBIESVqTWvle/PqWzplfunBj6ierJ3UDzomuk4U+q0OeiyZNjGaVDoD3tBTSAvs01FZFwPEeoWsaBwVsrOzq0x2K4X6MvKEytmCw+8ryR1CO8vXP5seyw==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYxOTk1N3w1NTY2MDd8NTAwNTM1fDYzMTU0OXw1NDQ1MDR8NTY5MDQwfDU5Njc1NHw1NDQ1NTF8NTQ3Nzg0fDYxMzg1OXw0NDI2Mzd8NTU0Nzk2fDUzODc1NHw2MTgzNzZ8NTMyMzYwfDYwMjkyM3w2Mjc2Njd8NjA4OTk5fDYzNTc1Mnw1OTM2Mjd8NTgwNzgyfDYwOTMwNHw1OTc4ODN8NjA1NDY3fDYwMDQwNnw2MDkyODh8NTU0MDAwfDYzNTc5MHw1Nzg4Nzd8NTM0MTc4fDYxMzQyMnw2MzQ3NTB8NTgwNzgzfDYyOTQ2MHw2MDMzMzF8NTcwNDY2fDUyNjUwOHw1NDQ1NjF8NjM0NzIxfDYyMDk3OXw2MzA3NzR8NjIwMjEzfDYwOTEzOXw2MjM1MDN8NTk3MDk4fDUwNTc5MHw1Mjc0Mjl8EP2t/KsCGNuz/M0BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeW9XK1ZsL0psb1RMKzdjR2dvQ1Q4bDM0UEQwWUV1TGd6RVI1cEQwM3ZJTnhTdCtqZFFPVWdRTkd1V3NrT3Q0OFA1aWRjNDZIZHZxY3RKM1RDd0Vtc2MxOUZQNnZlZ25LZmVTT2ErWTR0bEdSMnBKb25DVms3enBWaEI4QmFIZFpoY0FSS01tMVRjNFZ4R1FUVDhudkRHYy9YNXBUSXdGcGxDRUxELzBYaGFMNVpWcUZHYm5aM3dHMUwwMGZxQXBMS2pQRDVKam5IbEtPeDNnRWVVSnZucFpVL2lWdjF1bjJ0M1hqbDRiYU5jSkd2aFpXOVlnWVBYRkRoUG4xUS9oWjE3dmtIZ05KMHZ6L1lEOHlVMy9VZTkySDNDRUxDWVEwYUFXdkVheGN2K0Q1NU9SWTlaLy9MYkQ2T2JhSTFtOEFMbzRJZWRtRzIzKzRKWGhrMnRLVTdSNDJ5MTNmVVJKeHpzUkJJRVNWcVRXdmxlL1BxV3pwbGZ1bkJqNmllckozVUR6b211azRVK3EwT2VpeVpOakdhVkRvRDN0QlRTQXZzMDFGWkZ3UEVlb1dzYUJ3VnNyT3pxMHgySzRYNk12S0V5dG1Ddys4cnlSMUNPOHZYUDVzZXl3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjVxexSuR+F6lD+CAQlhYyB3aW5kb3eQAau7ncsGuAEB4AHgyoXrzwPpAQAAAOCVJfE/8QEAAADg2W/xP8gMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ17FK5H4XqUP6ENAAAAAAAA8D/4DYCAtMC3C7AOiOzgxwHiDgyqjQbHjQbVjgbwkAbIDxbiGbwKRW0wd0xqa3lNalk0TEMweExDMHhMQzB4TEMweExEQXVPVE14T1RrNU9UazVPVGs1T1RrNU9Dd3hMRFl1TXpVM05qWTFORGN4T0RjNU1qYzFMREF1T1N3dE1Td3dMalEyTnpReU9UVXlNREk0TXpneE16azJMQzB4TERVdU1qSXdPRFkzTVRJMk1EQTNOREExTEMweEhTL2FnRTBnNm9lQWF5M0NOR3cvTlFBQWdEODV5dUpVQTMzYStVRkJTem93ckFneGFVSktFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQktEZ2lxODVZREVRQUFBQUFBQUFBQVNnNElyUE9XQXhFQUFBQUFBQUFBQUVvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpcjg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJcXZPV0F4RUFBQUFBQUFBQUFGSU9DS3p6bGdNUkFBQUFBQUFBQUFCU0RnaXI4NVlERVFBQUFBQUFBQUFBV2drSWdJQ0FnSUFFRUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCaUVBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCaURnaXE4NVlERVFBQUFBQUFBUEEvWWc0SXJQT1dBeEVBQUFBQUFBQUFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQnhBQUFBd1BBaUR6OTVBQUFBb0xmQUVqK0JBUUFBQUNBWnBIaEJpUUVBQUFDZ3NvTmlRWkVCQUFBQU9QbnlnRUdaQVFBQUFHRDNvWUJCb1FFQUFBQ2dsLzVvUWFrQkFBQUFTSjNoaGtHQUFwUURpZ0krTUM0d01EVTNNak1zTVM0d01EQXdNREFzTVM0d01EUTNOVEFzTVM0eU1UVTNOelFzTVM0ek1EQXdNREFzTVM0ME1EQXdNREFzTVM0MU1EQXdNRENaQW12bis2bngwdTAvb1FJMXhwV1EzRHYwUWNvQ0N3Z0JFYm9pNGNlb2Q0Qy95Z0lMQ0FJUis2bngwazFpY0wvWkFtQURtajQ0S1ZkQjRRSkFEYlBSUXBKR1Fla0NqQ1JMMnBXMjFFR0tBekFBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQrWkE4cmlWQU45MnZsQm9RTkxPakNzQ0RGcFFya0RubjBOT1VRYTNUL0JBK3FoOWxXMEV1RS95UU1HNjFMVDVwdmtQOUVEZEZSUHQ5Mmc2ei82QXcwS0NVOXlaR1Z5VkdsbGNoQUQrZ01SQ2cxSmRHVnRVSEpwWTJWVWFXVnlFQVA2QXdrS0JVbHpUbEJDRUFENkF3c0tCMUp2YVZScFpYSVFBNEVFQUFBQUlCQ0VCaitKQkFBQUFJQTlwd0Eva0FTYkE1Z0VtTXJQeXJ1M0NLQUVnUGlDclJhb0JJRDRncTBXd0FTQStJS3RGc2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFBZ08zRjNQNkVGQUFBQUFBQUE4RCtwQlFBQUFFQjFFL0Evc1FVQUFBQ2d6M1B6UDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQS3TcBN+hmMBgoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKGQoQcmVjYWxsX3F1ZXVlX2lkcxIFIgNvcmcKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAQpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoUCg51c2VyX2JsYWNrbGlzdBICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmcKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0OSwiYXBpMl9sYXRlbmN5X21zIjo5NCwiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTUsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjYxLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTU0MCwiYXBpMl9hZHNfY291bnQiOjMxNCwiYXBpM19hZHNfY291bnQiOjR9ChIKDHZvdWNoZXJfbGVucxICEAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfNDIxMjMwMTEyNTMKDQoHaXNfdnNrdRICKAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAALAfgICAgICAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJTXGlZDcO/RB8iUGU0VBUkNIyD4B",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                4
              ]
            },
            "itemid": 42123011253,
            "shopid": 1453736730,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mi9w8rz64f7o03\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018618,844931064601283,1049120,700005490,822059908662278,825465608497696,1718087960,1428713,1015914,700190087,1400285055,844931086908638,2213652,700810080],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":53,\"model_id\":238171217524,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mi9w8rz64f7o03\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018618,844931064601283,1049120,700005490,822059908662278,825465608497696,1718087960,1428713,1015914,700190087,1400285055,844931086908638,2213652,700810080],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":53,\"model_id\":238171217524,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYxOTk1N3w1NTY2MDd8NTAwNTM1fDYzMTU0OXw1NDQ1MDR8NTY5MDQwfDU5Njc1NHw1NDQ1NTF8NTQ3Nzg0fDYxMzg1OXw0NDI2Mzd8NTU0Nzk2fDUzODc1NHw2MTgzNzZ8NTMyMzYwfDYwMjkyM3w2Mjc2Njd8NjA4OTk5fDYzNTc1Mnw1OTM2Mjd8NTgwNzgyfDYwOTMwNHw1OTc4ODN8NjA1NDY3fDYwMDQwNnw2MDkyODh8NTU0MDAwfDYzNTc5MHw1Nzg4Nzd8NTM0MTc4fDYxMzQyMnw2MzQ3NTB8NTgwNzgzfDYyOTQ2MHw2MDMzMzF8NTcwNDY2fDUyNjUwOHw1NDQ1NjF8NjM0NzIxfDYyMDk3OXw2MzA3NzR8NjIwMjEzfDYwOTEzOXw2MjM1MDN8NTk3MDk4fDUwNTc5MHw1Mjc0Mjl8EP2t/KsCGNuz/M0BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeW9XK1ZsL0psb1RMKzdjR2dvQ1Q4bDM0UEQwWUV1TGd6RVI1cEQwM3ZJTnhTdCtqZFFPVWdRTkd1V3NrT3Q0OFA1aWRjNDZIZHZxY3RKM1RDd0Vtc2MxOUZQNnZlZ25LZmVTT2ErWTR0bEdSMnBKb25DVms3enBWaEI4QmFIZFpoY0FSS01tMVRjNFZ4R1FUVDhudkRHYy9YNXBUSXdGcGxDRUxELzBYaGFMNVpWcUZHYm5aM3dHMUwwMGZxQXBMS2pQRDVKam5IbEtPeDNnRWVVSnZucFpVL2lWdjF1bjJ0M1hqbDRiYU5jSkd2aFpXOVlnWVBYRkRoUG4xUS9oWjE3dmtIZ05KMHZ6L1lEOHlVMy9VZTkySDNDRUxDWVEwYUFXdkVheGN2K0Q1NU9SWTlaLy9MYkQ2T2JhSTFtOEFMbzRJZWRtRzIzKzRKWGhrMnRLVTdSNDJ5MTNmVVJKeHpzUkJJRVNWcVRXdmxlL1BxV3pwbGZ1bkJqNmllckozVUR6b211azRVK3EwT2VpeVpOakdhVkRvRDN0QlRTQXZzMDFGWkZ3UEVlb1dzYUJ3VnNyT3pxMHgySzRYNk12S0V5dG1Ddys4cnlSMUNPOHZYUDVzZXl3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjVxexSuR+F6lD+CAQlhYyB3aW5kb3eQAau7ncsGuAEB4AHgyoXrzwPpAQAAAOCVJfE/8QEAAADg2W/xP8gMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ17FK5H4XqUP6ENAAAAAAAA8D/4DYCAtMC3C7AOiOzgxwHiDgyqjQbHjQbVjgbwkAbIDxbiGbwKRW0wd0xqa3lNalk0TEMweExDMHhMQzB4TEMweExEQXVPVE14T1RrNU9UazVPVGs1T1RrNU9Dd3hMRFl1TXpVM05qWTFORGN4T0RjNU1qYzFMREF1T1N3dE1Td3dMalEyTnpReU9UVXlNREk0TXpneE16azJMQzB4TERVdU1qSXdPRFkzTVRJMk1EQTNOREExTEMweEhTL2FnRTBnNm9lQWF5M0NOR3cvTlFBQWdEODV5dUpVQTMzYStVRkJTem93ckFneGFVSktFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQktEZ2lxODVZREVRQUFBQUFBQUFBQVNnNElyUE9XQXhFQUFBQUFBQUFBQUVvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpcjg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJcXZPV0F4RUFBQUFBQUFBQUFGSU9DS3p6bGdNUkFBQUFBQUFBQUFCU0RnaXI4NVlERVFBQUFBQUFBQUFBV2drSWdJQ0FnSUFFRUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCaUVBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCaURnaXE4NVlERVFBQUFBQUFBUEEvWWc0SXJQT1dBeEVBQUFBQUFBQUFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQnhBQUFBd1BBaUR6OTVBQUFBb0xmQUVqK0JBUUFBQUNBWnBIaEJpUUVBQUFDZ3NvTmlRWkVCQUFBQU9QbnlnRUdaQVFBQUFHRDNvWUJCb1FFQUFBQ2dsLzVvUWFrQkFBQUFTSjNoaGtHQUFwUURpZ0krTUM0d01EVTNNak1zTVM0d01EQXdNREFzTVM0d01EUTNOVEFzTVM0eU1UVTNOelFzTVM0ek1EQXdNREFzTVM0ME1EQXdNREFzTVM0MU1EQXdNRENaQW12bis2bngwdTAvb1FJMXhwV1EzRHYwUWNvQ0N3Z0JFYm9pNGNlb2Q0Qy95Z0lMQ0FJUis2bngwazFpY0wvWkFtQURtajQ0S1ZkQjRRSkFEYlBSUXBKR1Fla0NqQ1JMMnBXMjFFR0tBekFBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQrWkE4cmlWQU45MnZsQm9RTkxPakNzQ0RGcFFya0RubjBOT1VRYTNUL0JBK3FoOWxXMEV1RS95UU1HNjFMVDVwdmtQOUVEZEZSUHQ5Mmc2ei82QXcwS0NVOXlaR1Z5VkdsbGNoQUQrZ01SQ2cxSmRHVnRVSEpwWTJWVWFXVnlFQVA2QXdrS0JVbHpUbEJDRUFENkF3c0tCMUp2YVZScFpYSVFBNEVFQUFBQUlCQ0VCaitKQkFBQUFJQTlwd0Eva0FTYkE1Z0VtTXJQeXJ1M0NLQUVnUGlDclJhb0JJRDRncTBXd0FTQStJS3RGc2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFBZ08zRjNQNkVGQUFBQUFBQUE4RCtwQlFBQUFFQjFFL0Evc1FVQUFBQ2d6M1B6UDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQS3TcBN+hmMBgoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKGQoQcmVjYWxsX3F1ZXVlX2lkcxIFIgNvcmcKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAQpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoUCg51c2VyX2JsYWNrbGlzdBICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmcKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0OSwiYXBpMl9sYXRlbmN5X21zIjo5NCwiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTUsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjYxLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTU0MCwiYXBpMl9hZHNfY291bnQiOjMxNCwiYXBpM19hZHNfY291bnQiOjR9ChIKDHZvdWNoZXJfbGVucxICEAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfNDIxMjMwMTEyNTMKDQoHaXNfdnNrdRICKAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAALAfgICAgICAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJTXGlZDcO/RB8iUGU0VBUkNIyD4B",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42123011253",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28642825421,
              "shopid": 1521655113,
              "name": "oli cina husus kipas angin COD",
              "label_ids": [
                844931086908638,
                844931064601283,
                1718093079,
                1015914,
                700190087,
                2108629,
                1718087960,
                1428713,
                1400285055,
                2023641,
                2018619,
                1059152,
                1049124,
                822059908662278,
                825465608493600,
                825465608499232,
                825465608497696,
                298888358,
                298938357,
                298933384,
                299103323,
                2098629
              ],
              "image": "id-11134207-8224q-mj2fj1ndzi87fa",
              "images": [
                "id-11134207-8224q-mj2fj1ndzi87fa",
                "id-11134207-82251-mj2fj1ne0wsn26"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760258236,
              "sold": 1000,
              "historical_sold": 3000,
              "liked": false,
              "liked_count": 231,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 1159,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1000000000,
              "price_min": 1000000000,
              "price_max": 1000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6vdva-mhqyzuwzcg777e.16000091764638108.mp4",
                  "thumb_url": "id-11110107-6vdva-mhqyzuwzcg777e_cover",
                  "duration": 43,
                  "version": 2,
                  "vid": "id-11110107-6vdva-mhqyzuwzcg777e",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6vdva-mhqyzuwzcg777e.16000091764638108.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdva-mhqyzuwzcg777e.16000091764638108.mp4",
                      "width": 270,
                      "height": 330
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdva-mhqyzuwzcg777e.default.mp4",
                    "width": 288,
                    "height": 352
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.864538395168249,
                "rating_count": [
                  1159,
                  4,
                  1,
                  25,
                  88,
                  1041
                ],
                "rcount_with_context": 234,
                "rcount_with_image": 182
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": true,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390389012989,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3000,
                "rounded_local_monthly_sold_count": 1000,
                "local_monthly_sold_count_text": "1RB+",
                "rounded_display_sold_count": 3000,
                "display_sold_count_text": "3RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "sejuk service",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 28642825421,
            "shopid": 1521655113,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mj2fj1ndzi87fa\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1718093079,1015914,700190087,2108629,1718087960,1428713,1400285055,2023641,2018619,1059152,1049124,822059908662278,825465608493600,825465608499232,825465608497696,298888358,298938357,298933384,299103323,2098629],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":54,\"model_id\":390389012989,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mj2fj1ndzi87fa\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1718093079,1015914,700190087,2108629,1718087960,1428713,1400285055,2023641,2018619,1059152,1049124,822059908662278,825465608493600,825465608499232,825465608497696,298888358,298938357,298933384,299103323,2098629],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":54,\"model_id\":390389012989,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28642825421",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24802862390,
              "shopid": 1134378503,
              "name": "Miss Life Air Purifier HEPA Filter Penyaring Udara Ruangan CADR Tinggi UV Anion Pembersih Udara Aman Bayi Pet Anti Debu Asap Bau Filter Udara Penjernih Udara Ruangan Kamar Tidur Office Rumah Jangkauan Luas Jakarta Surabaya Bandung ONE HOME Air Purifier",
              "label_ids": [
                822059908662278,
                825465608497696,
                825465608499232,
                1400285055,
                1015914,
                700190087,
                1000031,
                1718087960,
                1428713,
                1049112,
                700005493,
                1119699,
                1718093079,
                1988623,
                2018619,
                2023641,
                1918643,
                298463379,
                298893311,
                1400095022,
                700830032,
                844931086908638,
                2068629,
                298938357,
                298933384,
                700810080,
                298623321,
                1993623,
                998091078,
                298938368,
                1718088045,
                2098629,
                2098628,
                298468389
              ],
              "image": "id-11134207-8224p-mhh411nm1m2q9d",
              "images": [
                "id-11134207-8224p-mhh411nm1m2q9d",
                "id-11134207-7rbkd-m65amzu5i7bxb7",
                "id-11134207-7rask-m4yw56b8y6pu5b",
                "id-11134207-7rbk0-m66a04djajtf2a",
                "id-11134207-7rbkd-m65amzu5l0gt58",
                "id-11134207-7rbkc-m65amzu5jlwd18",
                "id-11134207-7rbk0-m66a04djbydvad",
                "id-11134207-7rbkd-m65amzu5fe7127"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1701935715,
              "sold": 1000,
              "historical_sold": 10000,
              "liked": false,
              "liked_count": 26991,
              "view_count": null,
              "catid": 100010,
              "brand": "MISS LIFE",
              "cmt_count": 6325,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "normal",
              "price": 29900000000,
              "price_min": 29900000000,
              "price_max": 29900000000,
              "price_min_before_discount": 43800000000,
              "price_max_before_discount": 43800000000,
              "hidden_price_display": null,
              "price_before_discount": 43800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-32%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1k-m1h1fpn26m6101.16000081729169035.mp4",
                  "thumb_url": "id-11110105-7rasc-m1h1g16paprpaf",
                  "duration": 46,
                  "version": 2,
                  "vid": "id-11110105-6ke1k-m1h1fpn26m6101",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1k-m1h1fpn26m6101.16003251730274542.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1k-m1h1fpn26m6101.16003251730274542.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1k-m1h1fpn26m6101.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Air Purifier",
                  "options": [
                    "K1 UV Max 1 FiIter",
                    "K1 UV Max 2 FiIter",
                    "K2 Basic 1 Filter",
                    "K2 Basic 2 FiIter",
                    "K5 UV Pro 1 FiIter",
                    "K5 UV Pro 2 FiIter",
                    "K15 Ultra 1 Filter",
                    "K15 Ultra 2 Filter",
                    "Aroma Pure 1 Filter",
                    "Aroma Pure 2 Filter",
                    "K1 + Dry Air Pro",
                    "K2 + Dry Air Pro",
                    "K5 + Dry Air Pro",
                    "K15 + Dry Air Pro",
                    "Aroma + Dry Air Pro",
                    "Purru Air One"
                  ],
                  "images": [
                    "id-11134207-7rbk6-m900av477x1783",
                    "id-11134207-7rbkd-matain3gwfmm39",
                    "id-11134207-7rbkd-m900av47aq6397",
                    "id-11134207-7rbk1-m900av47c4qja3",
                    "id-11134207-7rbk6-m9018da9xw5t76",
                    "id-11134207-7rbk4-m9018da9zaq90a",
                    "id-11134207-7rbk2-ma2euplgk9ea1b",
                    "id-11134207-7ra0p-mc1k6i4555jl42",
                    "id-11134207-7rbk8-ma2axwxfwlwt64",
                    "id-11134207-7rbkc-ma2axwxfy0h942",
                    "id-11134207-8224s-mg7mhdkim77tbe",
                    "id-11134207-82250-mg7mhdkinls993",
                    "id-11134207-8224z-mg7mhdkip0cp94",
                    "id-11134207-82251-mg7mhdkiqex538",
                    "id-11134207-8224p-mg7mhdkirthl78",
                    "id-11134207-7ra0o-mcriv1ybu71366"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.8828380270732845,
                "rating_count": [
                  6427,
                  28,
                  23,
                  62,
                  448,
                  5866
                ],
                "rcount_with_context": 1547,
                "rcount_with_image": 1430
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134601-7ra0o-mcacq59pj98b89",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 410025881515412,
                "add_on_deal_label": "Kombo Hemat",
                "sub_type": 0,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Cirebon",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp99RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228025048514562,
                "price": 29800000000,
                "strikethrough_price": 43800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1320018567774208,
                "discount_text": "-32%",
                "model_id": 176253130050,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1320018567774208,
                  "voucher_code": "MISSDRQRF",
                  "voucher_discount": 100000000,
                  "time_info": {
                    "start_time": 1766818200,
                    "end_time": 1774857000,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 19999900000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 43800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10000,
                "rounded_local_monthly_sold_count": 1000,
                "local_monthly_sold_count_text": "1RB+",
                "rounded_display_sold_count": 10000,
                "display_sold_count_text": "10RB+"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp99RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Miss Life Indonesia ",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                91
              ]
            },
            "itemid": 24802862390,
            "shopid": 1134378503,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mhh411nm1m2q9d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[822059908662278,825465608497696,825465608499232,1400285055,1015914,700190087,1000031,1718087960,1428713,1049112,700005493,1119699,1718093079,1988623,2018619,2023641,1918643,298463379,298893311,1400095022,700830032,844931086908638,2068629,298938357,298933384,700810080,298623321,1993623,998091078,298938368,1718088045,2098629,2098628,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":55,\"model_id\":176253130050,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mhh411nm1m2q9d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[822059908662278,825465608497696,825465608499232,1400285055,1015914,700190087,1000031,1718087960,1428713,1049112,700005493,1119699,1718093079,1988623,2018619,2023641,1918643,298463379,298893311,1400095022,700830032,844931086908638,2068629,298938357,298933384,700810080,298623321,1993623,998091078,298938368,1718088045,2098629,2098628,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":55,\"model_id\":176253130050,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24802862390",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42977624587,
              "shopid": 1126544232,
              "name": "PRIBINRUIS Mini Ac Kipas Kabut Portable Mendinginkan Melembabkan 880ML",
              "label_ids": [
                1012729,
                2018618,
                2153644,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                1049120,
                1718093079,
                822059908662278,
                2048661,
                825465608494624,
                825465608499232,
                825465608497696,
                2048660,
                1718596,
                700765096,
                2213652,
                1015914,
                700190087,
                298488495,
                1400285055,
                2213765,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82252-mj23ffbhx5oi3d",
              "images": [
                "id-11134207-82252-mj23ffbhx5oi3d",
                "id-11134207-8224r-mitu2x77rgnc18",
                "id-11134207-8224v-mitu2x6r29ky95",
                "id-11134207-8224q-mitj3cc39rsxaa",
                "id-11134207-82252-mitj3cc3b6dd68",
                "id-11134207-8224t-mitj3cc3ckxt47",
                "id-11134207-82250-mitu2x71r56p26",
                "id-11134207-8224u-mitj3cc3dzi985",
                "id-11134207-82251-mitj3cc3fe2pbf"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766991526,
              "sold": 4,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 57,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 5,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 14599900000,
              "price_min": 14599900000,
              "price_max": 14599900000,
              "price_min_before_discount": 49999900000,
              "price_max_before_discount": 49999900000,
              "hidden_price_display": null,
              "price_before_discount": 49999900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-71%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvl-mitu8o92yfbcc5.16000031766990956.mp4",
                  "thumb_url": "id-11110105-6vdvl-mitu8o92yfbcc5_cover",
                  "duration": 54,
                  "version": 2,
                  "vid": "id-11110105-6vdvl-mitu8o92yfbcc5",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvl-mitu8o92yfbcc5.16000031766990956.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvl-mitu8o92yfbcc5.16000031766990956.mp4",
                      "width": 480,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvl-mitu8o92yfbcc5.default.mp4",
                    "width": 480,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "Putih",
                    "hijau",
                    "warna oranye"
                  ],
                  "images": [
                    "id-11134207-8224t-mitu2x7aez9g13",
                    "id-11134207-8224v-mitu2x7agdtwa7",
                    "id-11134207-8224t-mitu2x7ahsecd4"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 5,
                "rcount_with_image": 5
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227944694038528,
                "price": 14299900000,
                "strikethrough_price": 49999900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1317867711250440,
                "discount_text": "-71%",
                "model_id": 430368771946,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1317867711250440,
                  "voucher_code": "PRIBAZ09",
                  "voucher_discount": 300000000,
                  "time_info": {
                    "start_time": 1766561760,
                    "end_time": 1772267760,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 49999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Pribinruis Official Store",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000
              ]
            },
            "itemid": 42977624587,
            "shopid": 1126544232,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj23ffbhx5oi3d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2018618,2153644,1428713,1718087960,844931064601283,844931086908638,298463379,700005490,1049120,1718093079,822059908662278,2048661,825465608494624,825465608499232,825465608497696,2048660,1718596,700765096,2213652,1015914,700190087,298488495,1400285055,2213765,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\"],\"merge_rank\":56,\"model_id\":430368771946,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj23ffbhx5oi3d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2018618,2153644,1428713,1718087960,844931064601283,844931086908638,298463379,700005490,1049120,1718093079,822059908662278,2048661,825465608494624,825465608499232,825465608497696,2048660,1718596,700765096,2213652,1015914,700190087,298488495,1400285055,2213765,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\"],\"merge_rank\":56,\"model_id\":430368771946,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42977624587",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41206517641,
              "shopid": 1555741217,
              "name": "Relay Switch AC 220 DC 12V 1CH Remote Control Saklar ON /OFF Remote Control Relay Switch Saklar On Off AC 220 DC 12V 1CH /Sakelar Kontrol Jarak Jauh Nirkabel",
              "label_ids": [
                844931064601283,
                844931086908638,
                1119699,
                1718093079,
                1718087960,
                1428713,
                1400285055,
                2023641,
                2018619,
                1015914,
                700190087,
                1059152,
                700005487,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093065,
                700830032,
                298933384,
                2218763
              ],
              "image": "sg-11134201-7ra1x-mbjfs9ny4o4a0c",
              "images": [
                "sg-11134201-7ra1x-mbjfs9ny4o4a0c",
                "sg-11134201-7ra39-mbjfs9wjs4lyab",
                "sg-11134201-7ra3q-mbjfsa2djjvp77",
                "sg-11134201-7ra32-mbjfsa918gdx90",
                "sg-11134201-7ra2x-mbjfsaeuzvl324",
                "sg-11134201-7ra0j-mbjfsalsr6k523",
                "sg-11134201-7ra24-mbjfsarmh8y512",
                "sg-11134201-7ra0s-mbjfsayk9v86a3",
                "sg-11134201-7ra3w-mbjfsb61yxzhf3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1751106621,
              "sold": 114,
              "historical_sold": 419,
              "liked": false,
              "liked_count": 83,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 143,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4680000000,
              "price_min": 4680000000,
              "price_max": 4680000000,
              "price_min_before_discount": 11000000000,
              "price_max_before_discount": 11000000000,
              "hidden_price_display": null,
              "price_before_discount": 11000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-57%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kouc-mdo0vg8g8kkv02.16000031755742700.mp4",
                  "thumb_url": "id-11110105-6kouc-mdo0vg8g8kkv02_cover",
                  "duration": 27,
                  "version": 2,
                  "vid": "id-11110105-6kouc-mdo0vg8g8kkv02",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kouc-mdo0vg8g8kkv02.16000031755742700.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kouc-mdo0vg8g8kkv02.16000031755742700.mp4",
                      "width": 480,
                      "height": 854
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kouc-mdo0vg8g8kkv02.default.mp4",
                    "width": 480,
                    "height": 854
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "type",
                  "options": [
                    "1 AC 220V + 1 Remote",
                    "1 DC + 2 Remote"
                  ],
                  "images": [
                    "id-11134207-7ra0t-md6xbau3am5x94",
                    "sg-11134201-825ad-mft3lbq88ydof2"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.811188811188811,
                "rating_count": [
                  143,
                  1,
                  1,
                  6,
                  8,
                  127
                ],
                "rcount_with_context": 25,
                "rcount_with_image": 20
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 799985122213888,
                "price": 4680000000,
                "strikethrough_price": 11000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-57%",
                "model_id": 281009829558,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 11000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 419,
                "rounded_local_monthly_sold_count": 114,
                "local_monthly_sold_count_text": "114",
                "rounded_display_sold_count": 419,
                "display_sold_count_text": "419"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CarCareX.ID",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 41206517641,
            "shopid": 1555741217,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7ra1x-mbjfs9ny4o4a0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1119699,1718093079,1718087960,1428713,1400285055,2023641,2018619,1015914,700190087,1059152,700005487,822059908662278,825465608497696,825465608499232,1718093065,700830032,298933384,2218763],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":57,\"model_id\":281009829558,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7ra1x-mbjfs9ny4o4a0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1119699,1718093079,1718087960,1428713,1400285055,2023641,2018619,1015914,700190087,1059152,700005487,822059908662278,825465608497696,825465608499232,1718093065,700830032,298933384,2218763],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":57,\"model_id\":281009829558,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41206517641",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24935288267,
              "shopid": 1249634646,
              "name": "GOGEOUS Kipas Angin Gantung Plafon 42/52Inci Daun Besi 6 Kecepatan Kipas Angin Baling Baling Gantung",
              "label_ids": [
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                1718093079,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                837860934119952,
                1000031,
                1015914,
                700190087,
                1400285055,
                2018619,
                298893311,
                298463379,
                700830032,
                700700063,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7rask-m4l8z00sx7i25c",
              "images": [
                "id-11134207-7rask-m4l8z00sx7i25c",
                "id-11134207-7ras8-m3mzp4xr1zv8aa",
                "id-11134207-7rasa-m3mzp4xrhfxqdb",
                "id-11134207-7rasd-m3mzp4xrhfkf26",
                "id-11134207-7rasi-m3mzp4xr1zbj13",
                "id-11134207-7rasj-m3mzp4xrhg446a",
                "id-11134207-7rasl-m3mzp4xr1zou1f",
                "id-11134207-7rasg-m3mzp4xrhg7s6d",
                "id-11134207-7rasm-m3mzp4xr1zywee"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1724737323,
              "sold": 11,
              "historical_sold": 1000,
              "liked": false,
              "liked_count": 370,
              "view_count": null,
              "catid": 100010,
              "brand": "GOGEOUS",
              "cmt_count": 155,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 76630000000,
              "price_min": 76630000000,
              "price_max": 76630000000,
              "price_min_before_discount": 265000000000,
              "price_max_before_discount": 265000000000,
              "hidden_price_display": null,
              "price_before_discount": 265000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-71%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1n-m3n4bpdjzppf17.16000081733895575.mp4",
                  "thumb_url": "id-11110105-6ke1n-m3n4bpdjzppf17_cover",
                  "duration": 58,
                  "version": 2,
                  "vid": "id-11110105-6ke1n-m3n4bpdjzppf17",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1n-m3n4bpdjzppf17.16006711734099064.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m3n4bpdjzppf17.16006711734099064.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1n-m3n4bpdjzppf17.16000081733895575.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m3n4bpdjzppf17.16000081733895575.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1n-m3n4bpdjzppf17.16003251734099064.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m3n4bpdjzppf17.16003251734099064.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m3n4bpdjzppf17.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "ukuran",
                  "options": [
                    "Hitam52\" ใ€Daun Kayuใ€‘",
                    "Putih52\" ใ€Daun Kayuใ€‘",
                    "Hitam 46Inci",
                    "Putih 46Inci",
                    "Hitam46Inciใ€Model Bใ€‘",
                    "Putih46Inciใ€Model Bใ€‘",
                    "Hitam42\" ใ€Daun Besiใ€‘",
                    "Hitam52\" ใ€Daun Besiใ€‘",
                    "Perak42\" ใ€Daun Besiใ€‘",
                    "Perak52\" ใ€Daun Besiใ€‘",
                    "Emas42โ€˜โ€™ใ€Daun Besiใ€‘",
                    "Emas52โ€˜โ€™ใ€Daun Besiใ€‘",
                    "Aksesorใ€Garansiใ€‘"
                  ],
                  "images": [
                    "id-11134207-7rasj-m2af94v6qi8341",
                    "id-11134207-7rasd-m2an5any9ug3f1",
                    "id-11134207-7rbk7-m733tepbl1kk50",
                    "id-11134207-7rbk3-m733tepbnupgaa",
                    "id-11134207-7rbke-m733tepbmg50a0",
                    "id-11134207-7rbkc-m733tepbp99w91",
                    "id-11134207-7rasg-m2qevgpm3dj36f",
                    "id-11134207-7rasa-m2qevgpm4s3jc4",
                    "id-11134207-7rasg-m2qevgpm66nz91",
                    "id-11134207-7rasl-m2qevgpm7l8f22",
                    "id-11134207-7rbk5-m733tepbi8fo93",
                    "id-11134207-7rbk8-m733tepbjn04fd",
                    "id-11134207-7rbk3-m733tepbtgz8cf"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.8930817610062896,
                "rating_count": [
                  159,
                  3,
                  0,
                  2,
                  1,
                  153
                ],
                "rcount_with_context": 23,
                "rcount_with_image": 25
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227618419126274,
                "price": 76630000000,
                "strikethrough_price": 265000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-71%",
                "model_id": 99125152360,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 265000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1000,
                "rounded_local_monthly_sold_count": 11,
                "local_monthly_sold_count_text": "11",
                "rounded_display_sold_count": 1000,
                "display_sold_count_text": "1RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GOGEOUS Lampu-Toko",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 24935288267,
            "shopid": 1249634646,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m4l8z00sx7i25c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,1718093079,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,1000031,1015914,700190087,1400285055,2018619,298893311,298463379,700830032,700700063,298933384,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":58,\"model_id\":99125152360,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m4l8z00sx7i25c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,1718093079,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,1000031,1015914,700190087,1400285055,2018619,298893311,298463379,700830032,700700063,298933384,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":58,\"model_id\":99125152360,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24935288267",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24222571302,
              "shopid": 45345744,
              "name": "AC Window Reiwa 1/2 PK R32 CW0501RA",
              "label_ids": [
                1015914,
                700190087,
                1400285055,
                1000031,
                2018619,
                2018618,
                1012763,
                1718093079,
                1213641,
                298893311,
                298463379,
                2153644,
                1049117,
                1049116,
                822059908662278,
                825465608497696,
                822120592853526,
                844931086908638,
                834403089593352,
                2048660,
                2048661,
                700765096,
                2213652,
                700005543,
                2008656,
                1718088044,
                298468390,
                298468389,
                298458396,
                298458398,
                1718088045,
                1718093084
              ],
              "image": "id-11134207-7r98t-ltrhxui9j8g585",
              "images": [
                "id-11134207-7r98t-ltrhxui9j8g585",
                "id-11134207-7r98p-lvba1o5t85vt4b",
                "id-11134207-7r98u-ltrhxuij3d6g7c",
                "id-11134207-7r98x-ltrhxui93sbn2a",
                "id-11134207-7r98w-ltrhxui93shp09",
                "id-11134207-7ra0h-mdr1ebei6er312"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1712368350,
              "sold": 141,
              "historical_sold": 1000,
              "liked": false,
              "liked_count": 4718,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 803,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194900000000,
              "price_min": 194900000000,
              "price_max": 194900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1d-lxdih543thn139.16000081720238608.mp4",
                  "thumb_url": "id-11110105-7r98s-lxdihw1afk8ye5",
                  "duration": 47,
                  "version": 2,
                  "vid": "id-11110105-6ke1d-lxdih543thn139",
                  "formats": [
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1d-lxdih543thn139.16004081762047430.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1d-lxdih543thn139.16004081762047430.mp4",
                      "width": 360,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1d-lxdih543thn139.default.mp4",
                    "width": 478,
                    "height": 850
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Type",
                  "options": [
                    "CW0501RA 1/2PK PUTIH",
                    "CW0501RA 1/2PK HITAM"
                  ],
                  "images": [
                    "id-11134207-8224v-mjer92ysr0n5ca",
                    "id-11134207-8224q-mjer92ytrjeoed"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.879012345679012,
                "rating_count": [
                  810,
                  4,
                  3,
                  9,
                  55,
                  739
                ],
                "rcount_with_context": 245,
                "rcount_with_image": 195
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Madiun",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 194900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 234060167863,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 194900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1000,
                "rounded_local_monthly_sold_count": 141,
                "local_monthly_sold_count_text": "141",
                "rounded_display_sold_count": 1000,
                "display_sold_count_text": "1RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "TERBAIKTRONICS",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 504087649,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9tbIGTwTTM9mmFQaSB5kZvAMLFN3o48UQMVovGWO6ZyoW+Vl/JloTL+7cGgoCT8l34PD0YEuLgzER5pD03vINxSt+jdQOUgQNGuWskOt48P5idc46HdvqctJ3TCwEmsc19FP6vegnKfeSOa+Y4tlGR2pJonCVk7zpVhB8BaHdZhcARKMm1Tc4VxGQTT8nvDGc/X5pTIwFplCELD/0XhaL5ZVqFGbnZ3wG1L00fqApLKjPD5JjnHlKOx3gEeUJvnpZU/iVv1un2t3Xjl4baNcJGvhZW9YgYPXFDhPn1Q/hZ17vkHgNJ0vz/YD8yU3/Ue92H3CELCYQ0aAWvEaxcv+D55ORY9Z//LbD6ObaI1m8ALo4IedmG23+4JXhk2tKU7R42y13fURJxzsRBIESVqTWvle/PqWzplfunBj6ierJ3UDzomuk4U+q0OeiyZNjGaVDoD3tBTSAvs01FZFwPEeoWsaBwVsrOzq0x2K4X6MvKEGtafRwJw/44CTVSVJFxC1g==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDYxOTk1N3w1NTY2MDd8NTAwNTM1fDYzMTU0OXw1NDQ1MDR8NTY5MDQwfDU5Njc1NHw1NDQ1NTF8NTQ3Nzg0fDYxMzg1OXw0NDI2Mzd8NTU0Nzk2fDUzODc1NHw2MTgzNzZ8NTMyMzYwfDYwMjkyM3w2Mjc2Njd8NjA4OTk5fDYzNTc1Mnw1OTM2Mjd8NTgwNzgyfDYwOTMwNHw1OTc4ODN8NjA1NDY3fDYwMDQwNnw2MDkyODh8NTU0MDAwfDYzNTc5MHw1Nzg4Nzd8NTM0MTc4fDYxMzQyMnw2MzQ3NTB8NTgwNzgzfDYyOTQ2MHw2MDMzMzF8NTcwNDY2fDUyNjUwOHw1NDQ1NjF8NjM0NzIxfDYyMDk3OXw2MzA3NzR8NjIwMjEzfDYwOTEzOXw2MjM1MDN8NTk3MDk4fDUwNTc5MHw1Mjc0Mjl8EOGIr/ABGOiP2b8BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeW9XK1ZsL0psb1RMKzdjR2dvQ1Q4bDM0UEQwWUV1TGd6RVI1cEQwM3ZJTnhTdCtqZFFPVWdRTkd1V3NrT3Q0OFA1aWRjNDZIZHZxY3RKM1RDd0Vtc2MxOUZQNnZlZ25LZmVTT2ErWTR0bEdSMnBKb25DVms3enBWaEI4QmFIZFpoY0FSS01tMVRjNFZ4R1FUVDhudkRHYy9YNXBUSXdGcGxDRUxELzBYaGFMNVpWcUZHYm5aM3dHMUwwMGZxQXBMS2pQRDVKam5IbEtPeDNnRWVVSnZucFpVL2lWdjF1bjJ0M1hqbDRiYU5jSkd2aFpXOVlnWVBYRkRoUG4xUS9oWjE3dmtIZ05KMHZ6L1lEOHlVMy9VZTkySDNDRUxDWVEwYUFXdkVheGN2K0Q1NU9SWTlaLy9MYkQ2T2JhSTFtOEFMbzRJZWRtRzIzKzRKWGhrMnRLVTdSNDJ5MTNmVVJKeHpzUkJJRVNWcVRXdmxlL1BxV3pwbGZ1bkJqNmllckozVUR6b211azRVK3EwT2VpeVpOakdhVkRvRDN0QlRTQXZzMDFGWkZ3UEVlb1dzYUJ3VnNyT3pxMHgySzRYNk12S0VHdGFmUndKdy80NENUVlNWSkZ4QzFnPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjVxexSuR+F6lD+CAQlhYyB3aW5kb3eQAau7ncsG4AHkuMmQlQTpAQAAAOCVJfE/8QEAAABAKrr8P8gMD+AMAekMAAAAAB+0pD+JDXsUrkfhepQ/kQ17FK5H4XqUP6ENAAAAAAAA8D/4DYCA7oTOBbAO7ZTUT+IODKqNBseNBtWOBvCQBsgPHOIZqApFbDB3TGpNNU5pd3RNU3d0TVN3dE1Td3RNU3d3TGpRc01Td3dMalk0TVRFME1UazVOemMyTWpjeE1qa3NNQzQ1TEMweExEQXVOakV4T0RJMk16YzVOall4TVRBeE1Td3RNU3d3TGpRMU16SXdORFV5T0RReE9USXpNRGtzTFRFZGxQYXlTeUNob2Y0RExZUEF5ajQxQUFDQVB6bDg4MXdzMmJMWlFVRzFwMEd1OWZGQlFrb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRW9PQ0t2emxnTVJBQUFBQUFBQUFBQlNFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJhQndpczg1WURFQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFHSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFIRUFBQURneWJjSFAza0FBQURnWEZjRlA0RUJBQUFBNEs5cFlrR0pBUUFBQU9BQTgyTkJrUUVBQUFCZ1dDNXpRWmtCQUFBQVFIcmJhRUdoQVFBQUFHQjA3bXBCcVFFQUFBQlE5K1I1UWVnQkFZQUNsQU9LQWo0d0xqQXdOVEF5TWl3eExqQXdNREF3TUN3eExqQXlNalU1T1N3eExqSTFNREF3TUN3eExqTXdNREF3TUN3eExqUXdNREF3TUN3eExqVXdNREF3TUprQ21wbVptWm1aMlQraEFxM3ZOSGpDU2NGQnlnSUxDQUVSSDV5MkozYzhqci9LQWdzSUFoSDdxZkhTVFdKd3Y5a0NBR0kxcWNrMVJFSGhBZ0JUaDYzblhVcEI2UUtsSEh3U1NDT2tRWW9ETUFBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1A1a0RmUE5jTE5teTJVR2hBN1duUWE3MThVRkN1UU5RcG1Mc2hCN2VQOEVEbWN2enZEcTM0VC9KQTh4OUtNN094T1UvMFFQR2w2UWFVbFBzUC9vRENRb0ZTWE5PVUVJUUFQb0RDd29IVW05cFZHbGxjaEFEK2dNTkNnbFBjbVJsY2xScFpYSVFBL29ERVFvTlNYUmxiVkJ5YVdObFZHbGxjaEFEZ1FRQUFBQWdyckVCUDRrRUFBQUE0TzRSK2o2UUJKc0RtQVNncW9ETCtBU2dCSURFeFpBRHFBU0F4TVdRQThBRWdNVEZrQVBKQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQVFFdVNkRCtoQlFBQUFBQUFBUEEvcVFVQUFBQWdrVnp3UDdFRkFBQUFBQUFBOUQrNUJRQUFBTURNelBRL3dRVUFBQUJnWm1iMlA4a0ZBQUFBQUFBQStEOD3qGQS5TcJN+hmaBgpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKIwoQcmVjYWxsX3F1ZXVlX2lkcxIPIg02MTEwMjAzMDQsb3JnChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKEgoMdm91Y2hlcl9sZW5zEgIQAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0OSwiYXBpMl9sYXRlbmN5X21zIjo5NCwiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTUsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjYxLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTU0MCwiYXBpMl9hZHNfY291bnQiOjMxNCwiYXBpM19hZHNfY291bnQiOjR9ChQKDnVzZXJfYmxhY2tsaXN0EgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMjQyMjI1NzEzMDIKDQoHaXNfdnNrdRICKAAKGgoNYml6X3F1ZXVlX2lkcxIJIgdhZHMsb3JnsB/HgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0jIPgE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000,
                97,
                88,
                91,
                4
              ]
            },
            "itemid": 24222571302,
            "shopid": 45345744,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98t-ltrhxui9j8g585\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1015914,700190087,1400285055,1000031,2018619,2018618,1012763,1718093079,1213641,298893311,298463379,2153644,1049117,1049116,822059908662278,825465608497696,822120592853526,844931086908638,834403089593352,2048660,2048661,700765096,2213652,700005543,2008656,1718088044,298468390,298468389,298458396,298458398,1718088045,1718093084],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":59,\"model_id\":234060167863,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0,1000,1000,1000,97,88,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98t-ltrhxui9j8g585\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1015914,700190087,1400285055,1000031,2018619,2018618,1012763,1718093079,1213641,298893311,298463379,2153644,1049117,1049116,822059908662278,825465608497696,822120592853526,844931086908638,834403089593352,2048660,2048661,700765096,2213652,700005543,2008656,1718088044,298468390,298468389,298458396,298458398,1718088045,1718093084],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":59,\"model_id\":234060167863,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0,1000,1000,1000,97,88,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYxOTk1N3w1NTY2MDd8NTAwNTM1fDYzMTU0OXw1NDQ1MDR8NTY5MDQwfDU5Njc1NHw1NDQ1NTF8NTQ3Nzg0fDYxMzg1OXw0NDI2Mzd8NTU0Nzk2fDUzODc1NHw2MTgzNzZ8NTMyMzYwfDYwMjkyM3w2Mjc2Njd8NjA4OTk5fDYzNTc1Mnw1OTM2Mjd8NTgwNzgyfDYwOTMwNHw1OTc4ODN8NjA1NDY3fDYwMDQwNnw2MDkyODh8NTU0MDAwfDYzNTc5MHw1Nzg4Nzd8NTM0MTc4fDYxMzQyMnw2MzQ3NTB8NTgwNzgzfDYyOTQ2MHw2MDMzMzF8NTcwNDY2fDUyNjUwOHw1NDQ1NjF8NjM0NzIxfDYyMDk3OXw2MzA3NzR8NjIwMjEzfDYwOTEzOXw2MjM1MDN8NTk3MDk4fDUwNTc5MHw1Mjc0Mjl8EOGIr/ABGOiP2b8BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeW9XK1ZsL0psb1RMKzdjR2dvQ1Q4bDM0UEQwWUV1TGd6RVI1cEQwM3ZJTnhTdCtqZFFPVWdRTkd1V3NrT3Q0OFA1aWRjNDZIZHZxY3RKM1RDd0Vtc2MxOUZQNnZlZ25LZmVTT2ErWTR0bEdSMnBKb25DVms3enBWaEI4QmFIZFpoY0FSS01tMVRjNFZ4R1FUVDhudkRHYy9YNXBUSXdGcGxDRUxELzBYaGFMNVpWcUZHYm5aM3dHMUwwMGZxQXBMS2pQRDVKam5IbEtPeDNnRWVVSnZucFpVL2lWdjF1bjJ0M1hqbDRiYU5jSkd2aFpXOVlnWVBYRkRoUG4xUS9oWjE3dmtIZ05KMHZ6L1lEOHlVMy9VZTkySDNDRUxDWVEwYUFXdkVheGN2K0Q1NU9SWTlaLy9MYkQ2T2JhSTFtOEFMbzRJZWRtRzIzKzRKWGhrMnRLVTdSNDJ5MTNmVVJKeHpzUkJJRVNWcVRXdmxlL1BxV3pwbGZ1bkJqNmllckozVUR6b211azRVK3EwT2VpeVpOakdhVkRvRDN0QlRTQXZzMDFGWkZ3UEVlb1dzYUJ3VnNyT3pxMHgySzRYNk12S0VHdGFmUndKdy80NENUVlNWSkZ4QzFnPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjVxexSuR+F6lD+CAQlhYyB3aW5kb3eQAau7ncsG4AHkuMmQlQTpAQAAAOCVJfE/8QEAAABAKrr8P8gMD+AMAekMAAAAAB+0pD+JDXsUrkfhepQ/kQ17FK5H4XqUP6ENAAAAAAAA8D/4DYCA7oTOBbAO7ZTUT+IODKqNBseNBtWOBvCQBsgPHOIZqApFbDB3TGpNNU5pd3RNU3d0TVN3dE1Td3RNU3d3TGpRc01Td3dMalk0TVRFME1UazVOemMyTWpjeE1qa3NNQzQ1TEMweExEQXVOakV4T0RJMk16YzVOall4TVRBeE1Td3RNU3d3TGpRMU16SXdORFV5T0RReE9USXpNRGtzTFRFZGxQYXlTeUNob2Y0RExZUEF5ajQxQUFDQVB6bDg4MXdzMmJMWlFVRzFwMEd1OWZGQlFrb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRW9PQ0t2emxnTVJBQUFBQUFBQUFBQlNFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJhQndpczg1WURFQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFHSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFIRUFBQURneWJjSFAza0FBQURnWEZjRlA0RUJBQUFBNEs5cFlrR0pBUUFBQU9BQTgyTkJrUUVBQUFCZ1dDNXpRWmtCQUFBQVFIcmJhRUdoQVFBQUFHQjA3bXBCcVFFQUFBQlE5K1I1UWVnQkFZQUNsQU9LQWo0d0xqQXdOVEF5TWl3eExqQXdNREF3TUN3eExqQXlNalU1T1N3eExqSTFNREF3TUN3eExqTXdNREF3TUN3eExqUXdNREF3TUN3eExqVXdNREF3TUprQ21wbVptWm1aMlQraEFxM3ZOSGpDU2NGQnlnSUxDQUVSSDV5MkozYzhqci9LQWdzSUFoSDdxZkhTVFdKd3Y5a0NBR0kxcWNrMVJFSGhBZ0JUaDYzblhVcEI2UUtsSEh3U1NDT2tRWW9ETUFBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1A1a0RmUE5jTE5teTJVR2hBN1duUWE3MThVRkN1UU5RcG1Mc2hCN2VQOEVEbWN2enZEcTM0VC9KQTh4OUtNN094T1UvMFFQR2w2UWFVbFBzUC9vRENRb0ZTWE5PVUVJUUFQb0RDd29IVW05cFZHbGxjaEFEK2dNTkNnbFBjbVJsY2xScFpYSVFBL29ERVFvTlNYUmxiVkJ5YVdObFZHbGxjaEFEZ1FRQUFBQWdyckVCUDRrRUFBQUE0TzRSK2o2UUJKc0RtQVNncW9ETCtBU2dCSURFeFpBRHFBU0F4TVdRQThBRWdNVEZrQVBKQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQVFFdVNkRCtoQlFBQUFBQUFBUEEvcVFVQUFBQWdrVnp3UDdFRkFBQUFBQUFBOUQrNUJRQUFBTURNelBRL3dRVUFBQUJnWm1iMlA4a0ZBQUFBQUFBQStEOD3qGQS5TcJN+hmaBgpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKIwoQcmVjYWxsX3F1ZXVlX2lkcxIPIg02MTEwMjAzMDQsb3JnChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKEgoMdm91Y2hlcl9sZW5zEgIQAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0OSwiYXBpMl9sYXRlbmN5X21zIjo5NCwiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTUsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjYxLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTU0MCwiYXBpMl9hZHNfY291bnQiOjMxNCwiYXBpM19hZHNfY291bnQiOjR9ChQKDnVzZXJfYmxhY2tsaXN0EgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMjQyMjI1NzEzMDIKDQoHaXNfdnNrdRICKAAKGgoNYml6X3F1ZXVlX2lkcxIJIgdhZHMsb3JnsB/HgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0jIPgE=",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24222571302",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41214282043,
              "shopid": 1598560327,
              "name": "LAMPU LED  STRIP 3528 2835 RGB WATERPROOF WARNA WARNI IP44 5M AC 220V + ADAPTOR + REMOTE 3528",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                1718093079,
                298933384,
                1015914,
                700190087,
                1400285055,
                844931086908638,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696
              ],
              "image": "id-11134207-7ra0h-mdo66m6zbo6n88",
              "images": [
                "id-11134207-7ra0h-mdo66m6zbo6n88",
                "id-11134207-7ra0g-mdo66m6zbohg5c",
                "id-11134207-7ra0u-mdo66m6pc2s27a",
                "id-11134207-7ra0h-mdo66m6zbo243a",
                "id-11134207-7ra0s-mdo66m6fchpw28"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1755751756,
              "sold": 1000,
              "historical_sold": 3000,
              "liked": false,
              "liked_count": 376,
              "view_count": null,
              "catid": 100636,
              "brand": "",
              "cmt_count": 1009,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1995000000,
              "price_min": 1995000000,
              "price_max": 1995000000,
              "price_min_before_discount": 4000000000,
              "price_max_before_discount": 4000000000,
              "hidden_price_display": null,
              "price_before_discount": 4000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Tipe",
                  "options": [
                    "2835 5M ip20 Remot"
                  ],
                  "images": [
                    "id-11134207-7ra0g-mdo67wwez1qmba"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.6798810703667,
                "rating_count": [
                  1009,
                  26,
                  14,
                  48,
                  81,
                  840
                ],
                "rcount_with_context": 170,
                "rcount_with_image": 119
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 773987928440832,
                "price": 1995000000,
                "strikethrough_price": 4000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 179029633799,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3000,
                "rounded_local_monthly_sold_count": 1000,
                "local_monthly_sold_count_text": "1RB+",
                "rounded_display_sold_count": 3000,
                "display_sold_count_text": "3RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ALDI.LISTRIK",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 41214282043,
            "shopid": 1598560327,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0h-mdo66m6zbo6n88\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1718093079,298933384,1015914,700190087,1400285055,844931086908638,822059908662278,825465608494624,825465608499232,825465608497696],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":60,\"model_id\":179029633799,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0h-mdo66m6zbo6n88\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1718093079,298933384,1015914,700190087,1400285055,844931086908638,822059908662278,825465608494624,825465608499232,825465608497696],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":60,\"model_id\":179029633799,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41214282043",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40177836355,
              "shopid": 1535166921,
              "name": "[Kipas angin gratis]  Midea AC Air Conditioner Standard  0.5PK MSAFE-05CRN2X / 1pk",
              "label_ids": [
                700700063,
                2018618,
                2153644,
                1012729,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1049116,
                1049117,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1718596,
                2213765,
                2213652,
                298488495,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224p-mjanlhr2cttua5",
              "images": [
                "id-11134207-8224p-mjanlhr2cttua5",
                "id-11134207-82252-mjanlhr7p9mtc7",
                "id-11134207-8224z-mj6nhrl9i8eb68",
                "id-11134207-8224v-mj6nhrl4s9oicd",
                "id-11134207-8224x-mj6nhrl57pxg30",
                "id-11134207-8224x-mj6nhrl9p98h03",
                "id-11134207-82250-mj6nhrl6qi2t9f",
                "id-11134207-8224w-mj6nhrl4bev611",
                "id-11134207-8224p-mj6nhrl594hwb5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767767318,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 7,
              "view_count": null,
              "catid": 100010,
              "brand": "Midea",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 288500000000,
              "price_min": 288500000000,
              "price_max": 288500000000,
              "price_min_before_discount": 349900000000,
              "price_max_before_discount": 349900000000,
              "hidden_price_display": null,
              "price_before_discount": 349900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-18%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdva-mj6oqen6o35sf1.16000081767768646.mp4",
                  "thumb_url": "id-11110105-6vdva-mj6oqen6o35sf1_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6vdva-mj6oqen6o35sf1",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdva-mj6oqen6o35sf1.16000081767768646.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdva-mj6oqen6o35sf1.16000081767768646.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdva-mj6oqen6o35sf1.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Varian",
                  "options": [
                    "0.5Pk",
                    "1PK"
                  ],
                  "images": [
                    "id-11134207-8224t-mjanlhr7mghx46",
                    "id-11134207-8224y-mjanlhr7nv2d60"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 413345429860401,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228248927879168,
                "price": 288500000000,
                "strikethrough_price": 349900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-18%",
                "model_id": 315402178594,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 349900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Midea Electronics Authorized Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000
              ]
            },
            "itemid": 40177836355,
            "shopid": 1535166921,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjanlhr2cttua5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018618,2153644,1012729,1428713,1718087960,844931064601283,298463379,1049116,1049117,822059908662278,825465608499232,825465608497696,1718093079,1718596,2213765,2213652,298488495,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":61,\"model_id\":315402178594,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjanlhr2cttua5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018618,2153644,1012729,1428713,1718087960,844931064601283,298463379,1049116,1049117,822059908662278,825465608499232,825465608497696,1718093079,1718596,2213765,2213652,298488495,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":61,\"model_id\":315402178594,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40177836355",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40508483489,
              "shopid": 67984280,
              "name": "AC Window Reiwa 0.5PK CW-0501RA Hemat Dan Praktis",
              "label_ids": [
                1000167,
                2018619,
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232,
                825465608497696,
                1400066568,
                1718093079,
                298463379,
                298933384,
                2048661,
                2048660,
                700765096,
                1718093065,
                2023641,
                700750053,
                1400285055,
                2108629,
                1015914,
                700190087,
                822120592853526,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7ra0s-mc6i5no3bbuz67",
              "images": [
                "id-11134207-7ra0s-mc6i5no3bbuz67",
                "id-11134207-7ra0p-mc6i5no3bbfl5c",
                "id-11134207-7ra0j-mdby8i8d3o39e2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1752503421,
              "sold": 5,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 5,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 238900000000,
              "price_min": 238900000000,
              "price_max": 238900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Pengiriman",
                  "options": [
                    "AC UNIT ONLY",
                    "AC + PACKING KAYU"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 238900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 300715415269,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 238900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "gudangserbaada12",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                1000,
                0,
                1000,
                4
              ]
            },
            "itemid": 40508483489,
            "shopid": 67984280,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0s-mc6i5no3bbuz67\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,1049134,700005505,822059908662278,825465608499232,825465608497696,1400066568,1718093079,298463379,298933384,2048661,2048660,700765096,1718093065,2023641,700750053,1400285055,2108629,1015914,700190087,822120592853526,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":800,\"model_id\":300715415269,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[1000,1000,1000,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0s-mc6i5no3bbuz67\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,1049134,700005505,822059908662278,825465608499232,825465608497696,1400066568,1718093079,298463379,298933384,2048661,2048660,700765096,1718093065,2023641,700750053,1400285055,2108629,1015914,700190087,822120592853526,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":800,\"model_id\":300715415269,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[1000,1000,1000,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40508483489",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43365427744,
              "shopid": 1372273443,
              "name": "AC Window Bestlife BWA-05PLD 1/2 PK Low Watt BWA05PLD AC Jendela",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                298463379,
                1049142,
                1049143,
                822059908662278,
                825465608497696,
                822120592853526,
                825465608492064,
                825465608499232,
                834403089593352,
                1718093079,
                298933384,
                844931086908638,
                1015914,
                700190087,
                2048660,
                2048661,
                2108629,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824go-mdy5j15r1gcief",
              "images": [
                "sg-11134201-824go-mdy5j15r1gcief",
                "sg-11134201-824gz-mdy5j15iuh3946",
                "sg-11134201-824gt-mdy5j10ydrt382",
                "sg-11134201-824i9-mdy5j116oyrkfa"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1756355972,
              "sold": 2,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "Bestlife",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 252960000000,
              "price_min": 252960000000,
              "price_max": 252960000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Pekanbaru",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 252960000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 159264648999,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 252960000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SM.Elektro",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                0,
                1000,
                1000
              ]
            },
            "itemid": 43365427744,
            "shopid": 1372273443,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824go-mdy5j15r1gcief\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049142,1049143,822059908662278,825465608497696,822120592853526,825465608492064,825465608499232,834403089593352,1718093079,298933384,844931086908638,1015914,700190087,2048660,2048661,2108629,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\"],\"merge_rank\":1353,\"model_id\":159264648999,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824go-mdy5j15r1gcief\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049142,1049143,822059908662278,825465608497696,822120592853526,825465608492064,825465608499232,834403089593352,1718093079,298933384,844931086908638,1015914,700190087,2048660,2048661,2108629,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\"],\"merge_rank\":1353,\"model_id\":159264648999,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43365427744",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25632233263,
              "shopid": 373228675,
              "name": "AC REIWA AC Window 1/2 PK CW-0501RA 0,5 PK - NEW BERGARANSI!!!",
              "label_ids": [
                700005487,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                825465608492064,
                825465608494624,
                844931064601283,
                844931086908638,
                1015914,
                700190087,
                1213641,
                1000031,
                1400285055,
                1918643,
                2018619,
                2023641,
                1718093079,
                298463379,
                298933384,
                2048661,
                2048660,
                700765096,
                2068629,
                298938357,
                298458398,
                2098628,
                298468389,
                1718088044,
                298458396,
                298938368,
                298468390,
                1718088045,
                1718093084,
                2098629
              ],
              "image": "id-11134207-7r98q-lwia43tolacs94",
              "images": [
                "id-11134207-7r98q-lwia43tolacs94",
                "id-11134207-7r98t-lwia43tomox888",
                "id-11134207-7r98r-lwia43toh2ngd2",
                "id-11134207-7r98u-lwia43too3ho8d",
                "id-11134207-7r98q-lwia43toqwmka2",
                "id-11134207-7r98w-lwia43topi24e8",
                "id-11134207-7r98x-lwia43totprgcc",
                "id-11134207-7r98p-lwia43tosb7088",
                "id-11134207-7r990-lwia43tosawe17"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1718348335,
              "sold": 0,
              "historical_sold": 8,
              "liked": false,
              "liked_count": 206,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 7,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 206000000000,
              "price_min": 206000000000,
              "price_max": 206000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "AC REIWA",
                  "options": [
                    "1/2 PK",
                    "1 PK"
                  ],
                  "images": [
                    "id-11134207-7rasl-m2bxllw29e9g56",
                    "id-11134207-7rasm-m2bxllw2astwef"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.857142857142857,
                "rating_count": [
                  7,
                  0,
                  0,
                  0,
                  1,
                  6
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp686RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 206000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 109313756722,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 206000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 8,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 8,
                "display_sold_count_text": "8"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp686RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Quella Electric",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 25632233263,
            "shopid": 373228675,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-lwia43tolacs94\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005487,1059152,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,825465608492064,825465608494624,844931064601283,844931086908638,1015914,700190087,1213641,1000031,1400285055,1918643,2018619,2023641,1718093079,298463379,298933384,2048661,2048660,700765096,2068629,298938357,298458398,2098628,298468389,1718088044,298458396,298938368,298468390,1718088045,1718093084,2098629],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4244,\"model_id\":109313756722,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-lwia43tolacs94\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005487,1059152,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,825465608492064,825465608494624,844931064601283,844931086908638,1015914,700190087,1213641,1000031,1400285055,1918643,2018619,2023641,1718093079,298463379,298933384,2048661,2048660,700765096,2068629,298938357,298458398,2098628,298468389,1718088044,298458396,298938368,298468390,1718088045,1718093084,2098629],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4244,\"model_id\":109313756722,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25632233263",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43705180521,
              "shopid": 10681204,
              "name": "REIWA AC Window 1/2pk CW-0501RA CW 0501 RA CW0501RA 0,5pk 0,5 pk 1/2 pk UNIT ONLY",
              "label_ids": [
                2018619,
                844931064601283,
                1718093065,
                1015914,
                700190087,
                1718093079,
                700765096,
                1059152,
                1049124,
                2048660,
                2048661,
                822059908662278,
                822120592853526,
                825465608492064,
                834403089593352,
                1400025118,
                1400285055,
                2023641,
                298933384,
                298463379,
                1400066568,
                1718088045,
                298468389,
                997921049,
                1718093085,
                700585042,
                1718088046,
                997921050
              ],
              "image": "id-11134207-7ra0p-mb6htlt2ucymca",
              "images": [
                "id-11134207-7ra0p-mb6htlt2ucymca",
                "id-11134207-7ra0q-mb6htlt2vrj27e",
                "id-11134207-7ra0k-mb6htlt2x63ifc",
                "id-11134207-7ra0h-mb6htlt2ykny2b",
                "id-11134207-7ra0g-mb6htlt2zz8e2f",
                "id-11134207-7ra0g-mb6htlt31dsu4b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1750323565,
              "sold": 1,
              "historical_sold": 20,
              "liked": false,
              "liked_count": 16,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 5,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 204900000000,
              "price_min": 204900000000,
              "price_max": 204900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 204900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 305436197134,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 204900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 20,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 20,
                "display_sold_count_text": "20"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "FLOREN Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000,
                88
              ]
            },
            "itemid": 43705180521,
            "shopid": 10681204,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mb6htlt2ucymca\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1718093065,1015914,700190087,1718093079,700765096,1059152,1049124,2048660,2048661,822059908662278,822120592853526,825465608492064,834403089593352,1400025118,1400285055,2023641,298933384,298463379,1400066568,1718088045,298468389,997921049,1718093085,700585042,1718088046,997921050],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":496,\"model_id\":305436197134,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mb6htlt2ucymca\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1718093065,1015914,700190087,1718093079,700765096,1059152,1049124,2048660,2048661,822059908662278,822120592853526,825465608492064,834403089593352,1400025118,1400285055,2023641,298933384,298463379,1400066568,1718088045,298468389,997921049,1718093085,700585042,1718088046,997921050],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":496,\"model_id\":305436197134,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43705180521",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 22256375047,
              "shopid": 57328541,
              "name": "Instalasi AC 0.5 - 1 Pk Paket 5 M",
              "label_ids": [
                27,
                48,
                1000109,
                1002164,
                1013565,
                1400095067,
                1400285005,
                1049122,
                1059152,
                822059908662278,
                844931064601283,
                1015914,
                700190087,
                1668726,
                1400285055,
                825465608497696,
                825465608499232,
                700585046,
                298458395,
                1718087960,
                1428713,
                1718093079,
                1000031,
                2018618,
                1012763,
                298893311,
                2068629,
                298938357,
                298933384,
                298463379,
                2153644,
                700830032,
                2048660,
                2048661,
                700765096,
                2213652,
                2008656,
                2098628,
                298468389,
                1718088045,
                2098629,
                298938368
              ],
              "image": "id-11134207-7rbk3-ma3n6p2pfeul51",
              "images": [
                "id-11134207-7rbk3-ma3n6p2pfeul51",
                "id-11134207-7rbk3-ma3n6p2pclppd1",
                "id-11134207-7r98u-lm8qyolpkubw8d",
                "id-11134207-7r98o-lm8qyolpgmmk03",
                "id-11134207-7rbk2-ma3n6p2pe0a50d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1695978914,
              "sold": 8,
              "historical_sold": 363,
              "liked": false,
              "liked_count": 668,
              "view_count": null,
              "catid": 100010,
              "brand": "Eroc",
              "cmt_count": 107,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 95900000000,
              "price_min": 95900000000,
              "price_max": 95900000000,
              "price_min_before_discount": 200000000000,
              "price_max_before_discount": 200000000000,
              "hidden_price_display": null,
              "price_before_discount": 200000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-52%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.633928571428571,
                "rating_count": [
                  112,
                  6,
                  1,
                  1,
                  12,
                  92
                ],
                "rcount_with_context": 26,
                "rcount_with_image": 16
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp319RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 817277306470400,
                "price": 95900000000,
                "strikethrough_price": 200000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-52%",
                "model_id": 207069297913,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 200000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 363,
                "rounded_local_monthly_sold_count": 8,
                "local_monthly_sold_count_text": "8",
                "rounded_display_sold_count": 363,
                "display_sold_count_text": "363"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp319RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gree Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 344156989,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT5r+jFhtKvyOp4cgpiiUIOxA5pUg9FQ2t5r7kSWXh/yDUApQ+gcYGDWOXzAEdm9vDyMy552aHbq4pJleyIvlllUbvStA6zsbuphon++bEjGM5KbDGuTgihBTJ2snqnnAUmhZzyIjwOqwyVRjGgbl2cZA0QY+nsBPY0dNAFOywv2eHYa1BORTy4Oxw1EbH4mPfY3EpJ0yzjHN8LTMRyKbrnS6l1fZMh8sf15UxxlkDvNfNX27oCTZLUo5jmXA7WmI78/qI8QgZbspTf+scamTQvIkHpbTRKI6bB0Gi+iZZsPu+LFQY+Ibgk+1MV4jgTkDOWt0kg+tuHmLrMGC6qf8xHjO9LRiZ7aYSaw1NtXkpS000EUly6ODDe2fNbYJ5GJ3YxduTylN1HgqDGHM+FDlqje/OOKIiKgWxqg+YLwwgjE4QkIl4+ClnoZbj8lajf9eF/XismnnkuML0b0jAvv75BD7bZMXIG6zigS5WdNyWa5cwQfQ3RMwrN7bP2Cx9K0hTw==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EL3WjaQBGICLvIgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUNXIrakZodEt2eU9wNGNncGlpVUlPeEE1cFVnOUZRMnQ1cjdrU1dYaC95RFVBcFErZ2NZR0RXT1h6QUVkbTl2RHlNeTU1MmFIYnE0cEpsZXlJdmxsbFVidlN0QTZ6c2J1cGhvbisrYkVqR001S2JER3VUZ2loQlRKMnNucW5uQVVtaFp6eUlqd09xd3lWUmpHZ2JsMmNaQTBRWStuc0JQWTBkTkFGT3l3djJlSFlhMUJPUlR5NE94dzFFYkg0bVBmWTNFcEoweXpqSE44TFRNUnlLYnJuUzZsMWZaTWg4c2YxNVV4eGxrRHZOZk5YMjdvQ1RaTFVvNWptWEE3V21JNzgvcUk4UWdaYnNwVGYrc2NhbVRRdklrSHBiVFJLSTZiQjBHaStpWlpzUHUrTEZRWStJYmdrKzFNVjRqZ1RrRE9XdDBrZyt0dUhtTHJNR0M2cWY4eEhqTzlMUmlaN2FZU2F3MU50WGtwUzAwMEVVbHk2T0REZTJmTmJZSjVHSjNZeGR1VHlsTjFIZ3FER0hNK0ZEbHFqZS9PT0tJaUtnV3hxZytZTHd3Z2pFNFFrSWw0K0Nsbm9aYmo4bGFqZjllRi9YaXNtbm5rdU1MMGIwakF2djc1QkQ3YlpNWElHNnppZ1M1V2ROeVdhNWN3UWZRM1JNd3JON2JQMkN4OUswaFR3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAABoiD95j8L1KFx/Yj+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHUhZWjiwrpAQAAAOCVJfE/8QEAAAAg/JDwP8gMD+AMAekMAAAAgEtSuT+JDXsUrkfhepQ/kQ0AAMBoCA70QKENAAAAAG9LWkG5DbH5RguVM1NA+A2AgIC05wKwDpjxqjHiDgyqjQbHjQbVjgbwkAa5D3Joke18h2Y/wQ9JcVaQ2zkBP8gPBeIZrApFbkF3TGpNc0xURXNMVEVzTFRFc0xURXNNQzR6TERFc01DNHhNemcwTmpRMk5qa3dPRGd3TmpBek1pd3RNU3d3TGpreU16ZzFPRFkyTkRVMk9UQXlNREVzTVM0d01EQXdNVEl6TERJekxqWXdORGs1TmpBeU1qVXpOVEExT0N3eExqTXlPRFl3TXpRek5ETTFNRFEyTEMweEhUbE1yMHNndTl1a0F5MmFtWmsrTlFBQWdEOUtEZ2p3OStFRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUVvT0NLenpsZ01SQUFBQUFBQUFBQUJLRGdpYyt1RUVFUUFBQUFBQUFBQUFTZzRJcS9PV0F4RUFBQUFBQUFBQUFFb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DS3p6bGdNUkFBQUFBQUFBQUFCU0RnaXI4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SThQZmhCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQmFCd2lxODVZREVBQmFCd2lzODVZREVBQmFCd2lyODVZREVBQmFDUWlBZ0lDQWdBUVFBRm9IQ1BEMzRRUVFBR0lRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBR0lPQ1BEMzRRUVJBQUFBQUFBQUFBQmlEZ2lxODVZREVRQUFBQUFBQVBBL1lnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJ4QUFBQTRJaDJVajk1QUFBQWdJRklLeitCQVFBQUFLQmRzcHhCaVFFQUFBQmdwYytSUVpFQkFBQUFnQUZCcDBHWkFRQUFBRUNQVnA5Qm9RRUFBQUNnaFF1WVFha0JBQUFBY0FxeHEwSG9BUUdBQXBRRGlnSStNQzR3TURBNE56Y3NNUzR3TURBd01EQXNNUzR3TmpFME9EZ3NNUzR5TlRBd01EQXNNUzR6TURBd01EQXNNUzQwTURBd01EQXNNUzQxTURBd01EQ1pBak16TXpNek05TS9vUUlBQUFCd0NyR3JRYmtDRGVJRE8vNEwyai9CQWdBQUFBQUFBQUNBeWdJTENBRVJBQUFBQUFBQUFBREtBZ3NJQWhFQUFBQUFBQUFBZ05rQ1lEdjh1bmdpZ2tIaEFvQ01YUWlNSFh0QjZRSUlYNnR0dlpLU1FZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDdrRDIwaDBFYXJpNXovQkErQ1JsYmgyaU9rL3lRT2VBUzFJSUd2clA5RUR5QXBhVEtoYTdqK0JCQUFBQUtEdEsxQS9pUVFBQUFCQWczSk5QNUFFbXdPWUJKL1kvdXFCdFFHZ0JMT2VrbXlvQklES3RlNEJ1QVROcTZPQ0FjQUVnTXExN2dISkJBQUFBQUFBYUlnLzRRUUFBQUFBQUdpSVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFZRGE5VEQraEJRQUFBQUFBQVBBL3FRVUFBQURBMnZ2d1A3RUZBQUFBQUFBQTlEKzVCUUFBQU1ETXpQUS93UVVBQUFCZ1ptYjJQOGtGQUFBQUFBQUErRDg96hkCChX6GYwGCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQlfAregXkZaQQoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCg0KB2lzX3Zza3USAigAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChIKDHZvdWNoZXJfbGVucxICEAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yMjI1NjM3NTA0NwokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCY+UE6wrCvRAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZwoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo1NywiYXBpMV9sYXRlbmN5X21zIjozNywiYXBpMl9sYXRlbmN5X21zIjo2MywiYXBpM19sYXRlbmN5X21zIjoyLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjMzLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTUxMiwiYXBpMl9hZHNfY291bnQiOjMwNiwiYXBpM19hZHNfY291bnQiOjh9CioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lksB/PgoCAiICBqCDIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUAAABwCrGrQdklfj1Ix3MzU0DpJVoCNZrZhlJA8iUGU0VBUkNI",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                97,
                88
              ]
            },
            "itemid": 22256375047,
            "shopid": 57328541,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":6892988,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-ma3n6p2pfeul51\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1049122,1059152,822059908662278,844931064601283,1015914,700190087,1668726,1400285055,825465608497696,825465608499232,700585046,298458395,1718087960,1428713,1718093079,1000031,2018618,1012763,298893311,2068629,298938357,298933384,298463379,2153644,700830032,2048660,2048661,700765096,2213652,2008656,2098628,298468389,1718088045,2098629,298938368],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":522,\"model_id\":207069297913,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":6892988,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-ma3n6p2pfeul51\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1049122,1059152,822059908662278,844931064601283,1015914,700190087,1668726,1400285055,825465608497696,825465608499232,700585046,298458395,1718087960,1428713,1718093079,1000031,2018618,1012763,298893311,2068629,298938357,298933384,298463379,2153644,700830032,2048660,2048661,700765096,2213652,2008656,2098628,298468389,1718088045,2098629,298938368],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":522,\"model_id\":207069297913,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EL3WjaQBGICLvIgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUNXIrakZodEt2eU9wNGNncGlpVUlPeEE1cFVnOUZRMnQ1cjdrU1dYaC95RFVBcFErZ2NZR0RXT1h6QUVkbTl2RHlNeTU1MmFIYnE0cEpsZXlJdmxsbFVidlN0QTZ6c2J1cGhvbisrYkVqR001S2JER3VUZ2loQlRKMnNucW5uQVVtaFp6eUlqd09xd3lWUmpHZ2JsMmNaQTBRWStuc0JQWTBkTkFGT3l3djJlSFlhMUJPUlR5NE94dzFFYkg0bVBmWTNFcEoweXpqSE44TFRNUnlLYnJuUzZsMWZaTWg4c2YxNVV4eGxrRHZOZk5YMjdvQ1RaTFVvNWptWEE3V21JNzgvcUk4UWdaYnNwVGYrc2NhbVRRdklrSHBiVFJLSTZiQjBHaStpWlpzUHUrTEZRWStJYmdrKzFNVjRqZ1RrRE9XdDBrZyt0dUhtTHJNR0M2cWY4eEhqTzlMUmlaN2FZU2F3MU50WGtwUzAwMEVVbHk2T0REZTJmTmJZSjVHSjNZeGR1VHlsTjFIZ3FER0hNK0ZEbHFqZS9PT0tJaUtnV3hxZytZTHd3Z2pFNFFrSWw0K0Nsbm9aYmo4bGFqZjllRi9YaXNtbm5rdU1MMGIwakF2djc1QkQ3YlpNWElHNnppZ1M1V2ROeVdhNWN3UWZRM1JNd3JON2JQMkN4OUswaFR3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAABoiD95j8L1KFx/Yj+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHUhZWjiwrpAQAAAOCVJfE/8QEAAAAg/JDwP8gMD+AMAekMAAAAgEtSuT+JDXsUrkfhepQ/kQ0AAMBoCA70QKENAAAAAG9LWkG5DbH5RguVM1NA+A2AgIC05wKwDpjxqjHiDgyqjQbHjQbVjgbwkAa5D3Joke18h2Y/wQ9JcVaQ2zkBP8gPBeIZrApFbkF3TGpNc0xURXNMVEVzTFRFc0xURXNNQzR6TERFc01DNHhNemcwTmpRMk5qa3dPRGd3TmpBek1pd3RNU3d3TGpreU16ZzFPRFkyTkRVMk9UQXlNREVzTVM0d01EQXdNVEl6TERJekxqWXdORGs1TmpBeU1qVXpOVEExT0N3eExqTXlPRFl3TXpRek5ETTFNRFEyTEMweEhUbE1yMHNndTl1a0F5MmFtWmsrTlFBQWdEOUtEZ2p3OStFRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUVvT0NLenpsZ01SQUFBQUFBQUFBQUJLRGdpYyt1RUVFUUFBQUFBQUFBQUFTZzRJcS9PV0F4RUFBQUFBQUFBQUFFb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DS3p6bGdNUkFBQUFBQUFBQUFCU0RnaXI4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SThQZmhCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQmFCd2lxODVZREVBQmFCd2lzODVZREVBQmFCd2lyODVZREVBQmFDUWlBZ0lDQWdBUVFBRm9IQ1BEMzRRUVFBR0lRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBR0lPQ1BEMzRRUVJBQUFBQUFBQUFBQmlEZ2lxODVZREVRQUFBQUFBQVBBL1lnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJ4QUFBQTRJaDJVajk1QUFBQWdJRklLeitCQVFBQUFLQmRzcHhCaVFFQUFBQmdwYytSUVpFQkFBQUFnQUZCcDBHWkFRQUFBRUNQVnA5Qm9RRUFBQUNnaFF1WVFha0JBQUFBY0FxeHEwSG9BUUdBQXBRRGlnSStNQzR3TURBNE56Y3NNUzR3TURBd01EQXNNUzR3TmpFME9EZ3NNUzR5TlRBd01EQXNNUzR6TURBd01EQXNNUzQwTURBd01EQXNNUzQxTURBd01EQ1pBak16TXpNek05TS9vUUlBQUFCd0NyR3JRYmtDRGVJRE8vNEwyai9CQWdBQUFBQUFBQUNBeWdJTENBRVJBQUFBQUFBQUFBREtBZ3NJQWhFQUFBQUFBQUFBZ05rQ1lEdjh1bmdpZ2tIaEFvQ01YUWlNSFh0QjZRSUlYNnR0dlpLU1FZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDdrRDIwaDBFYXJpNXovQkErQ1JsYmgyaU9rL3lRT2VBUzFJSUd2clA5RUR5QXBhVEtoYTdqK0JCQUFBQUtEdEsxQS9pUVFBQUFCQWczSk5QNUFFbXdPWUJKL1kvdXFCdFFHZ0JMT2VrbXlvQklES3RlNEJ1QVROcTZPQ0FjQUVnTXExN2dISkJBQUFBQUFBYUlnLzRRUUFBQUFBQUdpSVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFZRGE5VEQraEJRQUFBQUFBQVBBL3FRVUFBQURBMnZ2d1A3RUZBQUFBQUFBQTlEKzVCUUFBQU1ETXpQUS93UVVBQUFCZ1ptYjJQOGtGQUFBQUFBQUErRDg96hkCChX6GYwGCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQlfAregXkZaQQoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCg0KB2lzX3Zza3USAigAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChIKDHZvdWNoZXJfbGVucxICEAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yMjI1NjM3NTA0NwokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCY+UE6wrCvRAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZwoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo1NywiYXBpMV9sYXRlbmN5X21zIjozNywiYXBpMl9sYXRlbmN5X21zIjo2MywiYXBpM19sYXRlbmN5X21zIjoyLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjMzLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTUxMiwiYXBpMl9hZHNfY291bnQiOjMwNiwiYXBpM19hZHNfY291bnQiOjh9CioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lksB/PgoCAiICBqCDIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUAAABwCrGrQdklfj1Ix3MzU0DpJVoCNZrZhlJA8iUGU0VBUkNI",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_22256375047",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 23856375480,
              "shopid": 57328541,
              "name": "Instalasi AC 1.5 PK PAKET 3 M",
              "label_ids": [
                27,
                48,
                1000109,
                1002164,
                1013565,
                1400095067,
                1400285005,
                1049122,
                1059152,
                822059908662278,
                1668726,
                700585046,
                825465608499232,
                825465608497696,
                1015914,
                700190087,
                298458395,
                1718087960,
                1428713,
                1718093079,
                1000031,
                2018618,
                1012763,
                298893311,
                2068629,
                298938357,
                298933384,
                298463379,
                2153644,
                2048660,
                2048661,
                700765096,
                2213652,
                298938368,
                2098628,
                298468389,
                1718088045,
                2098629
              ],
              "image": "id-11134207-7rbk6-ma3n6p2pjmjxf9",
              "images": [
                "id-11134207-7rbk6-ma3n6p2pjmjxf9",
                "id-11134207-7r98s-lm8qyolpm8wc52",
                "id-11134207-7r98x-lm8qyolpnngs1e",
                "id-11134207-7r98r-lm8r8qqdetgrda",
                "id-11134207-7r990-lzpxqwfvk7woee"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1695979076,
              "sold": 1,
              "historical_sold": 31,
              "liked": false,
              "liked_count": 98,
              "view_count": null,
              "catid": 100010,
              "brand": "Eroc",
              "cmt_count": 8,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 100900000000,
              "price_min": 100900000000,
              "price_max": 100900000000,
              "price_min_before_discount": 175000000000,
              "price_max_before_discount": 175000000000,
              "hidden_price_display": null,
              "price_before_discount": 175000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-42%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  8,
                  0,
                  0,
                  0,
                  0,
                  8
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp336RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 817277306470400,
                "price": 100900000000,
                "strikethrough_price": 175000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-42%",
                "model_id": 29734584310,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 175000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 31,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 31,
                "display_sold_count_text": "31"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp336RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gree Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 344157792,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGTxyoVukr0Sf0Z5kcjuQy6J60gAjUdIkmd9QBWnjadU11chrT0rpqN7n9ELf464KsD40f5KHDNhJ9ikX9f1c/FWxg7J02GIZenwZm40iou0PMCusL0XxrV1wlCdvc3TAhJMwOx2S2l6GTJymyTRZwbIO+3snVDyzVyRtnv0l62bEwvQM7I3j5FI9iZvPhNhaDy2Y/021ujuULpMjM9vuX5Zsk2Pq7GoMW/yaBZyIX49TCjOiXXIiGkCqC0Sy6omZlIip6aYbgcuMZF4pnzkWs/9to14c59Vy89HXogEx2EvFrogtrMDpab/BzOFWO+3QX5x7+9UIoBNh5yWTFkzTvA4Yem0mxZJCrEGjIrvSes3S/i063mfrQHSjwEqtRsxjnqePReXwTSM9E5VU1kvvvkl8goo/sEYJpw2BlpxZJytLH2ANSUUdhfTtDNcPtyoDCaKUlTaFP2cVaYk41N1HZZ0OnleDWc7/urV+CYvRCYcZfQl116mRCLS/6I4rMtp7dGw==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EODcjaQBGJOlvIgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUeHlvVnVrcjBTZjBaNWtjanVReTZKNjBnQWpVZElrbWQ5UUJXbmphZFUxMWNoclQwcnBxTjduOUVMZjQ2NEtzRDQwZjVLSEROaEo5aWtYOWYxYy9GV3hnN0owMkdJWmVud1ptNDBpb3UwUE1DdXNMMFh4clYxd2xDZHZjM1RBaEpNd094MlMybDZHVEp5bXlUUlp3YklPKzNzblZEeXpWeVJ0bnYwbDYyYkV3dlFNN0kzajVGSTlpWnZQaE5oYUR5MlkvMDIxdWp1VUxwTWpNOXZ1WDVac2syUHE3R29NVy95YUJaeUlYNDlUQ2pPaVhYSWlHa0NxQzBTeTZvbVpsSWlwNmFZYmdjdU1aRjRwbnprV3MvOXRvMTRjNTlWeTg5SFhvZ0V4MkV2RnJvZ3RyTURwYWIvQnpPRldPKzNRWDV4Nys5VUlvQk5oNXlXVEZrelR2QTRZZW0wbXhaSkNyRUdqSXJ2U2VzM1MvaTA2M21mclFIU2p3RXF0UnN4am5xZVBSZVh3VFNNOUU1VlUxa3Z2dmtsOGdvby9zRVlKcHcyQmxweFpKeXRMSDJBTlNVVWRoZlR0RE5jUHR5b0RDYUtVbFRhRlAyY1ZhWWs0MU4xSFpaME9ubGVEV2M3L3VyVitDWXZSQ1ljWmZRbDExNm1SQ0xTLzZJNHJNdHA3ZEd3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAACsez95L90kBoF1UD+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHozPHxiwrpAQAAAKDEHfE/8QEAAACgeonwP8gMD+AMAekMAAAAgEtSuT+JDXsUrkfhepQ/kQ0AAPBxko7nQKENAAAAgM49W0G5DX49SMdzM1NA+A2AgIro+AKwDof40DPiDgyqjQbHjQbVjgbwkAa5Dz0K16NwnVQ/wQ9JcVaQ2zkBP8gPBuIZ2ApFbzhCTUM0ME9EUXpNVEU1TlRNME5EUTJOalU0TEMweExDMHhMQzB4TEMweExEQXVORGcwTXpFeE9UVXpORFEwTmpZMU9Dd3hMREF1TWpBd09UZzROVE0yT0RjNU5qa3hPVE1zTFRFc01TNHdNRGt4TmpVd01qWXhNVEE0TnprekxERXVNREF3TURFeU15dzBNQzQzTWpVeU56UXdORE0yTWpNek5pd3dMamcxTWpZeE5qVTVPVEEzTVRjek1ESXNMVEVkcFAxZ1N5QzU3ck1ETGIzMzl6NDFBQUNBUDBvT0NLdnpsZ01SQUFBQUFBQUFBQUJLRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJLRGdqdzkrRUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SThQZmhCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSENLdnpsZ01RQUZvSkNJQ0FnSUNBQkJBQVdnY0k4UGZoQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNEk4UGZoQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFIRUFBQUFBcVdkQ1Aza0FBQURnaUY4aFA0RUJBQUFBd0E0QWprR0pBUUFBQU9CanA0WkJrUUVBQUFCUXVWT2FRWmtCQUFBQUFBcEFsRUdoQVFBQUFFQXRsWTVCcVFFQUFBQlFVTVdoUWVnQkFZQUNsQU9LQWo0d0xqQXdNRE0xTUN3eExqQXdNREF3TUN3eExqRXdOVGMyT0N3eExqSTFNREF3TUN3eExqTXdNREF3TUN3eExqUXdNREF3TUN3eExqVXdNREF3TUprQ2FOUkdrUGYrM2oraEFnQUFBRkJReGFGQnVRSXBreHJhQUd6YVA4RUNBQUFBQUFBQUFJREtBZ3NJQVJFQUFBQUFBQUFBQU1vQ0N3Z0NFUUFBQUFBQUFBQ0EyUUlBbGRhbWhJaHhRZUVDQU51Sng1Rm5jVUhwQWlmUUFWcG51NFpCaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS91UU5wQmFpam9HM25QOEVEdExrZmFEUmI2VC9KQXgvb05odllxT3MvMFFNOVNqS0ZYMUh1UDRFRUFBQUFRQTFZUUQrSkJBQUFBRURRRnowL2tBU2JBNWdFbU9hMDFvaTFBYUFFaWJMUEE2Z0VnTXExN2dHNEJQZVg1dW9Cd0FTQXlyWHVBY2tFQUFBQUFBQ3Nlei9oQkFBQUFBQUFySHMvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFEQUt2STJQNkVGQUFBQUFBQUE4RCtwQlFBQUFPQTVzZkUvc1FVQUFBQUFBQUQwUDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQIMFfoZjAYKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCVWwP9ZWO1tBChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmcKEgoMdm91Y2hlcl9sZW5zEgIQAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo1NywiYXBpMV9sYXRlbmN5X21zIjozNywiYXBpMl9sYXRlbmN5X21zIjo2MywiYXBpM19sYXRlbmN5X21zIjoyLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjMzLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTUxMiwiYXBpMl9hZHNfY291bnQiOjMwNiwiYXBpM19hZHNfY291bnQiOjh9CiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzIzODU2Mzc1NDgwCg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJG1OFN3CM50CwH8+CgICogIGIIMgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJQAAAFBQxaFB2SWyGPOWajNTQOklV04tHAHOUkDyJQZTRUFSQ0g=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                88
              ]
            },
            "itemid": 23856375480,
            "shopid": 57328541,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":7141178,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk6-ma3n6p2pjmjxf9\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1049122,1059152,822059908662278,1668726,700585046,825465608499232,825465608497696,1015914,700190087,298458395,1718087960,1428713,1718093079,1000031,2018618,1012763,298893311,2068629,298938357,298933384,298463379,2153644,2048660,2048661,700765096,2213652,298938368,2098628,298468389,1718088045,2098629],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":736,\"model_id\":29734584310,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":7141178,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk6-ma3n6p2pjmjxf9\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1049122,1059152,822059908662278,1668726,700585046,825465608499232,825465608497696,1015914,700190087,298458395,1718087960,1428713,1718093079,1000031,2018618,1012763,298893311,2068629,298938357,298933384,298463379,2153644,2048660,2048661,700765096,2213652,298938368,2098628,298468389,1718088045,2098629],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":736,\"model_id\":29734584310,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EODcjaQBGJOlvIgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUeHlvVnVrcjBTZjBaNWtjanVReTZKNjBnQWpVZElrbWQ5UUJXbmphZFUxMWNoclQwcnBxTjduOUVMZjQ2NEtzRDQwZjVLSEROaEo5aWtYOWYxYy9GV3hnN0owMkdJWmVud1ptNDBpb3UwUE1DdXNMMFh4clYxd2xDZHZjM1RBaEpNd094MlMybDZHVEp5bXlUUlp3YklPKzNzblZEeXpWeVJ0bnYwbDYyYkV3dlFNN0kzajVGSTlpWnZQaE5oYUR5MlkvMDIxdWp1VUxwTWpNOXZ1WDVac2syUHE3R29NVy95YUJaeUlYNDlUQ2pPaVhYSWlHa0NxQzBTeTZvbVpsSWlwNmFZYmdjdU1aRjRwbnprV3MvOXRvMTRjNTlWeTg5SFhvZ0V4MkV2RnJvZ3RyTURwYWIvQnpPRldPKzNRWDV4Nys5VUlvQk5oNXlXVEZrelR2QTRZZW0wbXhaSkNyRUdqSXJ2U2VzM1MvaTA2M21mclFIU2p3RXF0UnN4am5xZVBSZVh3VFNNOUU1VlUxa3Z2dmtsOGdvby9zRVlKcHcyQmxweFpKeXRMSDJBTlNVVWRoZlR0RE5jUHR5b0RDYUtVbFRhRlAyY1ZhWWs0MU4xSFpaME9ubGVEV2M3L3VyVitDWXZSQ1ljWmZRbDExNm1SQ0xTLzZJNHJNdHA3ZEd3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAACsez95L90kBoF1UD+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHozPHxiwrpAQAAAKDEHfE/8QEAAACgeonwP8gMD+AMAekMAAAAgEtSuT+JDXsUrkfhepQ/kQ0AAPBxko7nQKENAAAAgM49W0G5DX49SMdzM1NA+A2AgIro+AKwDof40DPiDgyqjQbHjQbVjgbwkAa5Dz0K16NwnVQ/wQ9JcVaQ2zkBP8gPBuIZ2ApFbzhCTUM0ME9EUXpNVEU1TlRNME5EUTJOalU0TEMweExDMHhMQzB4TEMweExEQXVORGcwTXpFeE9UVXpORFEwTmpZMU9Dd3hMREF1TWpBd09UZzROVE0yT0RjNU5qa3hPVE1zTFRFc01TNHdNRGt4TmpVd01qWXhNVEE0TnprekxERXVNREF3TURFeU15dzBNQzQzTWpVeU56UXdORE0yTWpNek5pd3dMamcxTWpZeE5qVTVPVEEzTVRjek1ESXNMVEVkcFAxZ1N5QzU3ck1ETGIzMzl6NDFBQUNBUDBvT0NLdnpsZ01SQUFBQUFBQUFBQUJLRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJLRGdqdzkrRUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SThQZmhCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSENLdnpsZ01RQUZvSkNJQ0FnSUNBQkJBQVdnY0k4UGZoQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNEk4UGZoQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFIRUFBQUFBcVdkQ1Aza0FBQURnaUY4aFA0RUJBQUFBd0E0QWprR0pBUUFBQU9CanA0WkJrUUVBQUFCUXVWT2FRWmtCQUFBQUFBcEFsRUdoQVFBQUFFQXRsWTVCcVFFQUFBQlFVTVdoUWVnQkFZQUNsQU9LQWo0d0xqQXdNRE0xTUN3eExqQXdNREF3TUN3eExqRXdOVGMyT0N3eExqSTFNREF3TUN3eExqTXdNREF3TUN3eExqUXdNREF3TUN3eExqVXdNREF3TUprQ2FOUkdrUGYrM2oraEFnQUFBRkJReGFGQnVRSXBreHJhQUd6YVA4RUNBQUFBQUFBQUFJREtBZ3NJQVJFQUFBQUFBQUFBQU1vQ0N3Z0NFUUFBQUFBQUFBQ0EyUUlBbGRhbWhJaHhRZUVDQU51Sng1Rm5jVUhwQWlmUUFWcG51NFpCaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS91UU5wQmFpam9HM25QOEVEdExrZmFEUmI2VC9KQXgvb05odllxT3MvMFFNOVNqS0ZYMUh1UDRFRUFBQUFRQTFZUUQrSkJBQUFBRURRRnowL2tBU2JBNWdFbU9hMDFvaTFBYUFFaWJMUEE2Z0VnTXExN2dHNEJQZVg1dW9Cd0FTQXlyWHVBY2tFQUFBQUFBQ3Nlei9oQkFBQUFBQUFySHMvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFEQUt2STJQNkVGQUFBQUFBQUE4RCtwQlFBQUFPQTVzZkUvc1FVQUFBQUFBQUQwUDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQIMFfoZjAYKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCVWwP9ZWO1tBChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmcKEgoMdm91Y2hlcl9sZW5zEgIQAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo1NywiYXBpMV9sYXRlbmN5X21zIjozNywiYXBpMl9sYXRlbmN5X21zIjo2MywiYXBpM19sYXRlbmN5X21zIjoyLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjMzLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTUxMiwiYXBpMl9hZHNfY291bnQiOjMwNiwiYXBpM19hZHNfY291bnQiOjh9CiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzIzODU2Mzc1NDgwCg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJG1OFN3CM50CwH8+CgICogIGIIMgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJQAAAFBQxaFB2SWyGPOWajNTQOklV04tHAHOUkDyJQZTRUFSQ0g=",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_23856375480",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28188086472,
              "shopid": 1064833635,
              "name": "Reiwa Window Air Cinditioner CW-0501RA 1/2PK",
              "label_ids": [
                2018619,
                700025282,
                1718093079,
                1049116,
                700005516,
                822059908662278,
                825465608499232,
                1213641,
                825465608497696,
                298463379,
                298933384,
                834403089593352,
                825465608494624,
                1718093065,
                1428713,
                1718087960,
                2023641,
                1015914,
                700190087,
                700700063,
                1718088045,
                1718088044,
                298458398,
                298468390,
                1718093084,
                298458396,
                298468389
              ],
              "image": "id-11134207-8224t-mjcosz9sdatcaf",
              "images": [
                "id-11134207-8224t-mjcosz9sdatcaf",
                "id-11134207-7ra0m-mbhpbvnywlom3d",
                "id-11134207-7ra0n-mbhpbvnyy092c7",
                "id-11134207-7ra0k-mbhpbvnyzeti17",
                "id-11134207-7ra0q-mbhpbvnz0tdy0e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1751003447,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 215000000000,
              "price_min": 215000000000,
              "price_max": 215000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven8-mh79kylgelfyce.16000041763445220.mp4",
                  "thumb_url": "id-11110105-6ven8-mh79kylgelfyce_cover",
                  "duration": 15,
                  "version": 2,
                  "vid": "id-11110105-6ven8-mh79kylgelfyce",
                  "formats": [
                    {
                      "format": 1600004,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven8-mh79kylgelfyce.16000041763445220.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven8-mh79kylgelfyce.16000041763445220.mp4",
                      "width": 360,
                      "height": 642
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven8-mh79kylgelfyce.default.mp4",
                    "width": 476,
                    "height": 850
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Sidoarjo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 215000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 305533769326,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 215000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Hore Electronic",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 28188086472,
            "shopid": 1064833635,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjcosz9sdatcaf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700025282,1718093079,1049116,700005516,822059908662278,825465608499232,1213641,825465608497696,298463379,298933384,834403089593352,825465608494624,1718093065,1428713,1718087960,2023641,1015914,700190087,700700063,1718088045,1718088044,298458398,298468390,1718093084,298458396,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4421,\"model_id\":305533769326,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjcosz9sdatcaf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700025282,1718093079,1049116,700005516,822059908662278,825465608499232,1213641,825465608497696,298463379,298933384,834403089593352,825465608494624,1718093065,1428713,1718087960,2023641,1015914,700190087,700700063,1718088045,1718088044,298458398,298468390,1718093084,298458396,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4421,\"model_id\":305533769326,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28188086472",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44372375455,
              "shopid": 39001145,
              "name": "AC AQUA 1/2PK, 1PK - KCR05FQAL/KCR05FQDL/KCR09FQAL/KCR09FQDL - Garansi Resmi",
              "label_ids": [
                2018619,
                2023641,
                844931086908638,
                844931064601283,
                1049128,
                700005504,
                822059908662278,
                825465608497696,
                1400285055,
                1015914,
                700190087,
                822120592853526,
                825465608492064,
                298463379,
                1718093079,
                1718088045,
                298468389
              ],
              "image": "id-11134207-81ztq-mf96bw86of0q9c",
              "images": [
                "id-11134207-81ztq-mf96bw86of0q9c",
                "id-11134207-8224r-mhigndkmxgjk24",
                "id-11134207-81zte-mf96bw7nk4r14b",
                "id-11134207-81ztd-mf96bw8omk9ae7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759203174,
              "sold": 4,
              "historical_sold": 26,
              "liked": false,
              "liked_count": 27,
              "view_count": null,
              "catid": 100010,
              "brand": "AQUA",
              "cmt_count": 12,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 285000000000,
              "price_min": 285000000000,
              "price_max": 285000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Tipe",
                  "options": [
                    "Instan 1/2PK",
                    "Kargo 1/2PK",
                    "Instan 1PK",
                    "Kargo 1PK",
                    "Instan 1/2PK+Pasang",
                    "Instan 1PK+Pasang",
                    "Kargo 1/2pk + bahan",
                    "Kargo 1pk + bahan",
                    "Instan 1/2pk + bahan",
                    "Kargo1/2pk+bahan @5m"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  12,
                  0,
                  0,
                  0,
                  0,
                  12
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Palembang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 275000000000,
                "strikethrough_price": 285000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1333049371934720,
                "discount_text": null,
                "model_id": 296819990218,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1333049371934720,
                  "voucher_code": "JASWJ6BP5",
                  "voucher_discount": 10000000000,
                  "time_info": {
                    "start_time": 1768371152,
                    "end_time": 1769321400,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 120000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 285000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 26,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 26,
                "display_sold_count_text": "26"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Listrik Jaya 88",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 680162900,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT8rvoyBvL5zu587EE2QEauOTEPbZNu4XGiwbbMoK7LtlWUIKLiLe+TKAG3LfWaSDivaXwoaPQlfSthdGAxEqyFuc6H+igjJ436otWJ4h4NP/OUUyZR9njvCGY0raeuJq4P/B19GwFTNc6SOdaiM41ovO1n9v6XSaa8x8DcVvaJrR2HCObEs58G0Y9yI/W+7tv1ARgsb3ZEtu+g5j3TNhhW5wsmJHdvehVq14nLkY3SUCugt3thoODb0zH3HS2Qt5VmjBGSGa8EbjnZUXidDKFvzdfUcBmJgLCrWixbxPp4HmU53PBJXKj1i7+b7LQZTwPp8/bY3cK1AL4SeBQZdH7mKPhBnet/aJIa0pkuGchiNgRF4QbxsjGr4gH3YFFOBjZwwxQYV9ZGauEqOBmmEuM4qlX8QnOE1PG/jOLuYVJi2LzrTeevLa001Xz727++nIcwwyjvuoLy5EbH/jcriowJt/M/zweVRgDewf3S5K6CLno7pIPXPhZU8DdoB0ZaoKBA==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8ENTsqcQCGNnf8dcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOHJ2b3lCdkw1enU1ODdFRTJRRWF1T1RFUGJaTnU0WEdpd2JiTW9LN0x0bFdVSUtMaUxlK1RLQUczTGZXYVNEaXZhWHdvYVBRbGZTdGhkR0F4RXF5RnVjNkgraWdqSjQzNm90V0o0aDROUC9PVVV5WlI5bmp2Q0dZMHJhZXVKcTRQL0IxOUd3RlROYzZTT2RhaU00MW92TzFuOXY2WFNhYTh4OERjVnZhSnJSMkhDT2JFczU4RzBZOXlJL1crN3R2MUFSZ3NiM1pFdHUrZzVqM1ROaGhXNXdzbUpIZHZlaFZxMTRuTGtZM1NVQ3VndDN0aG9PRGIwekgzSFMyUXQ1Vm1qQkdTR2E4RWJqblpVWGlkREtGdnpkZlVjQm1KZ0xDcldpeGJ4UHA0SG1VNTNQQkpYS2oxaTcrYjdMUVpUd1BwOC9iWTNjSzFBTDRTZUJRWmRIN21LUGhCbmV0L2FKSWEwcGt1R2NoaU5nUkY0UWJ4c2pHcjRnSDNZRkZPQmpad3d4UVlWOVpHYXVFcU9CbW1FdU00cWxYOFFuT0UxUEcvak9MdVlWSmkyTHpyVGVldkxhMDAxWHo3MjcrK25JY3d3eWp2dW9MeTVFYkgvamNyaW93SnQvTS96d2VWUmdEZXdmM1M1SzZDTG5vN3BJUFhQaFpVOERkb0IwWmFvS0JBPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAADoZz95oBov3STWYD+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHSo4OmgwTpAQAAAKDEHfE/8QEAAACAbfzzP8gMD+AMAekMAAAAgKXDqj+JDXsUrkfhepQ/kQ0AAFATvcziQKENAAAAQCYqaUG5DQwVGVRhM1NA+A2AgO7YhgmwDs+O8KUB4g4Mqo0Gx40G1Y4G8JAGuQ8GgZVDi6BiP8EPSXFWkNs5AT/IDwjiGcAKRW84Qk1DNDNOamcyTXpNd01qZzFNemcwTURFeUxDMHhMQzB4TEMweExDMHhMREF1TnpjMk16azJPVGs0TlRJek5qTTNOaXd4TERBdU1ETTJOemt6TWpVNU9UZzVNekl4Tnprc0xURXNNQzQzTVRNMk1qRXhNalE0T1RReU16STNMREV1TURBd01ERXlNeXd4TkRJdU5qUXpNVEkxTWpZM056QTVOellzTUM0NU9USTFORFl6TVRBM05UY3pNemNzTFRFZE92V0NTeUN4b3FVR0xTTEZSRDgxQUFDQVAwb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0Rnanc5K0VFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNEluUHJoQkJFQUFBQUFBQUFBQUZJT0NQRDM0UVFSQUFBQUFBQUFBQUJTRGdpcTg1WURFUUFBQUFBQUFBQUFVZzRJclBPV0F4RUFBQUFBQUFBQUFGSU9DS3Z6bGdNUkFBQUFBQUFBQUFCYUJ3anc5K0VFRUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCYUNRaUFnSUNBZ0FRUUFGb0hDSno2NFFRUUFHSU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBWWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBWWc0SW5QcmhCQkVBQUFBQUFBQUFBR0lPQ1BEMzRRUVJBQUFBQUFBQUFBQmlEZ2lxODVZREVRQUFBQUFBQVBBL2NRQUFBQ0RXMmtzL2VRQUFBTUEzbWhBL2dRRUFBQURBc25PeFFZa0JBQUFBb083SlpVR1JBUUFBQURVQ0lySkJtUUVBQUFDQUlhZXlRYUVCQUFBQVlEVnFiVUdwQVFBQUFDdHprck5CaWdJK01DNHdNREV4TlRrc01TNHdNREF3TURBc01TNHdOVE0zTnprc01TNHlOVEF3TURBc01TNHpNREF3TURBc01TNDBNREF3TURBc01TNDFNREF3TURDWkFnVGtxNFErMk9nL29RSUFBQUFyYzVLelFia0NRZStOSVFDNDRqL0JBZ0FBQUFBQUFBQ0F5Z0lMQ0FFUkFBQUFBQUFBQUFES0Fnc0lBaEVBQUFBQUFBQUFnTmtDQVArZGFLdnZua0hoQWtBYTBTWHhKRlpCNlFLbXFVMWpTQnlpUWJrRE5DQUZpOUJGNkQvQkEwY0MzdlVldCtrL3lRTngwczZVK0l6clA5RURQQmIxaDUwQjd6K0JCQUFBQU9DdkVrZy9pUVFBQUFCQXdrNUZQNUFFbXdPWUJNSE96NEl2b0FTLzdkbW1BcWdFZ1BLTHFBbTRCTUdFc29FSHdBU0E4b3VvQ2NrRUFBQUFBQURvWnovaEJBQUFBQUFBNkdjLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBRGdyZjVTUDZFRkFBQUFBQUFBOEQrcEJRQUFBQ0JIM1BBL3NRVUFBQUFBQUFEMFA3a0ZBQUFBd016TTlEL0JCUUFBQUdCbVp2WS95UVVBQUFBQUFBRDRQdz096hkCDBb6GYwGChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKFAoOdXNlcl9ibGFja2xpc3QSAigAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjM3LCJhcGkyX2xhdGVuY3lfbXMiOjYzLCJhcGkzX2xhdGVuY3lfbXMiOjIsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzMsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTEyLCJhcGkyX2Fkc19jb3VudCI6MzA2LCJhcGkzX2Fkc19jb3VudCI6OH0KDQoHaXNfdnNrdRICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmcKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQmoHmMqRxdpQQoSCgx2b3VjaGVyX2xlbnMSAhAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQ0MzcyMzc1NDU1CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJp4xq6qO+4kAKFAoOc2hvcF9ibGFja2xpc3QSAigAsB+AgICA6ICBgIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklAAAAK3OSs0HZJePgPp0kM1NA6SUa3RBDa+JSQPIlBlNFQVJDSA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000
              ]
            },
            "itemid": 44372375455,
            "shopid": 39001145,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":13193522,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztq-mf96bw86of0q9c\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,2023641,844931086908638,844931064601283,1049128,700005504,822059908662278,825465608497696,1400285055,1015914,700190087,822120592853526,825465608492064,298463379,1718093079,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":3759,\"model_id\":296819990218,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":13193522,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztq-mf96bw86of0q9c\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,2023641,844931086908638,844931064601283,1049128,700005504,822059908662278,825465608497696,1400285055,1015914,700190087,822120592853526,825465608492064,298463379,1718093079,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":3759,\"model_id\":296819990218,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8ENTsqcQCGNnf8dcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOHJ2b3lCdkw1enU1ODdFRTJRRWF1T1RFUGJaTnU0WEdpd2JiTW9LN0x0bFdVSUtMaUxlK1RLQUczTGZXYVNEaXZhWHdvYVBRbGZTdGhkR0F4RXF5RnVjNkgraWdqSjQzNm90V0o0aDROUC9PVVV5WlI5bmp2Q0dZMHJhZXVKcTRQL0IxOUd3RlROYzZTT2RhaU00MW92TzFuOXY2WFNhYTh4OERjVnZhSnJSMkhDT2JFczU4RzBZOXlJL1crN3R2MUFSZ3NiM1pFdHUrZzVqM1ROaGhXNXdzbUpIZHZlaFZxMTRuTGtZM1NVQ3VndDN0aG9PRGIwekgzSFMyUXQ1Vm1qQkdTR2E4RWJqblpVWGlkREtGdnpkZlVjQm1KZ0xDcldpeGJ4UHA0SG1VNTNQQkpYS2oxaTcrYjdMUVpUd1BwOC9iWTNjSzFBTDRTZUJRWmRIN21LUGhCbmV0L2FKSWEwcGt1R2NoaU5nUkY0UWJ4c2pHcjRnSDNZRkZPQmpad3d4UVlWOVpHYXVFcU9CbW1FdU00cWxYOFFuT0UxUEcvak9MdVlWSmkyTHpyVGVldkxhMDAxWHo3MjcrK25JY3d3eWp2dW9MeTVFYkgvamNyaW93SnQvTS96d2VWUmdEZXdmM1M1SzZDTG5vN3BJUFhQaFpVOERkb0IwWmFvS0JBPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAADoZz95oBov3STWYD+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHSo4OmgwTpAQAAAKDEHfE/8QEAAACAbfzzP8gMD+AMAekMAAAAgKXDqj+JDXsUrkfhepQ/kQ0AAFATvcziQKENAAAAQCYqaUG5DQwVGVRhM1NA+A2AgO7YhgmwDs+O8KUB4g4Mqo0Gx40G1Y4G8JAGuQ8GgZVDi6BiP8EPSXFWkNs5AT/IDwjiGcAKRW84Qk1DNDNOamcyTXpNd01qZzFNemcwTURFeUxDMHhMQzB4TEMweExDMHhMREF1TnpjMk16azJPVGs0TlRJek5qTTNOaXd4TERBdU1ETTJOemt6TWpVNU9UZzVNekl4Tnprc0xURXNNQzQzTVRNMk1qRXhNalE0T1RReU16STNMREV1TURBd01ERXlNeXd4TkRJdU5qUXpNVEkxTWpZM056QTVOellzTUM0NU9USTFORFl6TVRBM05UY3pNemNzTFRFZE92V0NTeUN4b3FVR0xTTEZSRDgxQUFDQVAwb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0Rnanc5K0VFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNEluUHJoQkJFQUFBQUFBQUFBQUZJT0NQRDM0UVFSQUFBQUFBQUFBQUJTRGdpcTg1WURFUUFBQUFBQUFBQUFVZzRJclBPV0F4RUFBQUFBQUFBQUFGSU9DS3Z6bGdNUkFBQUFBQUFBQUFCYUJ3anc5K0VFRUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCYUNRaUFnSUNBZ0FRUUFGb0hDSno2NFFRUUFHSU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBWWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBWWc0SW5QcmhCQkVBQUFBQUFBQUFBR0lPQ1BEMzRRUVJBQUFBQUFBQUFBQmlEZ2lxODVZREVRQUFBQUFBQVBBL2NRQUFBQ0RXMmtzL2VRQUFBTUEzbWhBL2dRRUFBQURBc25PeFFZa0JBQUFBb083SlpVR1JBUUFBQURVQ0lySkJtUUVBQUFDQUlhZXlRYUVCQUFBQVlEVnFiVUdwQVFBQUFDdHprck5CaWdJK01DNHdNREV4TlRrc01TNHdNREF3TURBc01TNHdOVE0zTnprc01TNHlOVEF3TURBc01TNHpNREF3TURBc01TNDBNREF3TURBc01TNDFNREF3TURDWkFnVGtxNFErMk9nL29RSUFBQUFyYzVLelFia0NRZStOSVFDNDRqL0JBZ0FBQUFBQUFBQ0F5Z0lMQ0FFUkFBQUFBQUFBQUFES0Fnc0lBaEVBQUFBQUFBQUFnTmtDQVArZGFLdnZua0hoQWtBYTBTWHhKRlpCNlFLbXFVMWpTQnlpUWJrRE5DQUZpOUJGNkQvQkEwY0MzdlVldCtrL3lRTngwczZVK0l6clA5RURQQmIxaDUwQjd6K0JCQUFBQU9DdkVrZy9pUVFBQUFCQXdrNUZQNUFFbXdPWUJNSE96NEl2b0FTLzdkbW1BcWdFZ1BLTHFBbTRCTUdFc29FSHdBU0E4b3VvQ2NrRUFBQUFBQURvWnovaEJBQUFBQUFBNkdjLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBRGdyZjVTUDZFRkFBQUFBQUFBOEQrcEJRQUFBQ0JIM1BBL3NRVUFBQUFBQUFEMFA3a0ZBQUFBd016TTlEL0JCUUFBQUdCbVp2WS95UVVBQUFBQUFBRDRQdz096hkCDBb6GYwGChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKFAoOdXNlcl9ibGFja2xpc3QSAigAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjM3LCJhcGkyX2xhdGVuY3lfbXMiOjYzLCJhcGkzX2xhdGVuY3lfbXMiOjIsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzMsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTEyLCJhcGkyX2Fkc19jb3VudCI6MzA2LCJhcGkzX2Fkc19jb3VudCI6OH0KDQoHaXNfdnNrdRICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmcKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQmoHmMqRxdpQQoSCgx2b3VjaGVyX2xlbnMSAhAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQ0MzcyMzc1NDU1CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJp4xq6qO+4kAKFAoOc2hvcF9ibGFja2xpc3QSAigAsB+AgICA6ICBgIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklAAAAK3OSs0HZJePgPp0kM1NA6SUa3RBDa+JSQPIlBlNFQVJDSA==",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44372375455",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25636840335,
              "shopid": 1232840,
              "name": "REIWA CW-0501RA 0,5 PK AC Window 1/2 PK",
              "label_ids": [
                1400095067,
                1400285005,
                844931064601283,
                1059152,
                700005489,
                1000031,
                1213641,
                1918643,
                2018619,
                2023641,
                1718093079,
                822059908662278,
                834403089593352,
                825465608492064,
                1400066568,
                825465608497696,
                2048661,
                2048660,
                700765096,
                298463379,
                298458396,
                1718088045,
                298468390,
                1718088044,
                298468389,
                298458398,
                1718093084
              ],
              "image": "id-11134207-7rask-m12av3dq3cwq21",
              "images": [
                "id-11134207-7rask-m12av3dq3cwq21"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1728277645,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 212500000000,
              "price_min": 212500000000,
              "price_max": 212500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "CW-0501RA",
                  "options": [
                    "UNIT ONLY",
                    "PLUSPETIKAYU"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 212500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 233297106666,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 212500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Feli tjokro",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 25636840335,
            "shopid": 1232840,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m12av3dq3cwq21\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,844931064601283,1059152,700005489,1000031,1213641,1918643,2018619,2023641,1718093079,822059908662278,834403089593352,825465608492064,1400066568,825465608497696,2048661,2048660,700765096,298463379,298458396,1718088045,298468390,1718088044,298468389,298458398,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5018,\"model_id\":233297106666,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m12av3dq3cwq21\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,844931064601283,1059152,700005489,1000031,1213641,1918643,2018619,2023641,1718093079,822059908662278,834403089593352,825465608492064,1400066568,825465608497696,2048661,2048660,700765096,298463379,298458396,1718088045,298468390,1718088044,298468389,298458398,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5018,\"model_id\":233297106666,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25636840335",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25987679250,
              "shopid": 61769069,
              "name": "REIWA AC Window 1/2 PK CW-0501RA 0,5 PK",
              "label_ids": [
                1000167,
                1000544,
                1400095067,
                1400285005,
                1718087960,
                1428713,
                844931064601283,
                1213641,
                1000031,
                1015914,
                700190087,
                1400285055,
                1400066568,
                2018619,
                844931086908638,
                298893311,
                1718093079,
                298463379,
                1049112,
                1049147,
                822059908662278,
                825465608492064,
                825465608499232,
                834403089593352,
                825465608497696,
                822120592853526,
                2048660,
                2048661,
                2023641,
                2108629,
                2068629,
                298938357,
                1718093084,
                298458396,
                298468390,
                2098629,
                298468389,
                1718088044,
                1718088045,
                298938368,
                298458398,
                2098628
              ],
              "image": "id-11134207-7rbkc-m6qnztwmxv9886",
              "images": [
                "id-11134207-7rbkc-m6qnztwmxv9886",
                "id-11134207-7rbk1-m6qnztwmz9to9c",
                "id-11134207-7rbk5-m6qnztwn0oe45b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1730103836,
              "sold": 1,
              "historical_sold": 44,
              "liked": false,
              "liked_count": 49,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 24,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 209100000000,
              "price_min": 209100000000,
              "price_max": 209100000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "UKURAN",
                  "options": [
                    "1/2 PK CW-0501 RA",
                    "1 PK CW-0901 RA"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.791666666666667,
                "rating_count": [
                  24,
                  0,
                  1,
                  0,
                  2,
                  21
                ],
                "rcount_with_context": 11,
                "rcount_with_image": 8
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp697RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 209100000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 237680456523,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 209100000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 44,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 44,
                "display_sold_count_text": "44"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp697RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "NiagaBaru",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000,
                88
              ]
            },
            "itemid": 25987679250,
            "shopid": 61769069,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkc-m6qnztwmxv9886\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1000544,1400095067,1400285005,1718087960,1428713,844931064601283,1213641,1000031,1015914,700190087,1400285055,1400066568,2018619,844931086908638,298893311,1718093079,298463379,1049112,1049147,822059908662278,825465608492064,825465608499232,834403089593352,825465608497696,822120592853526,2048660,2048661,2023641,2108629,2068629,298938357,1718093084,298458396,298468390,2098629,298468389,1718088044,1718088045,298938368,298458398,2098628],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":2257,\"model_id\":237680456523,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkc-m6qnztwmxv9886\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1000544,1400095067,1400285005,1718087960,1428713,844931064601283,1213641,1000031,1015914,700190087,1400285055,1400066568,2018619,844931086908638,298893311,1718093079,298463379,1049112,1049147,822059908662278,825465608492064,825465608499232,834403089593352,825465608497696,822120592853526,2048660,2048661,2023641,2108629,2068629,298938357,1718093084,298458396,298468390,2098629,298468389,1718088044,1718088045,298938368,298458398,2098628],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":2257,\"model_id\":237680456523,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25987679250",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24339032436,
              "shopid": 227051644,
              "name": "REIWA AC Window 1/2 PK CW-0501RA 0,5 PK",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                822120592853526,
                1213641,
                1000031,
                298463379,
                2018619,
                1015914,
                700190087,
                700830032,
                2023641,
                298468390,
                298458396,
                298458398,
                298468389
              ],
              "image": "id-11134207-7ra0r-md1jsirr2auc8c",
              "images": [
                "id-11134207-7ra0r-md1jsirr2auc8c",
                "id-11134207-7ra0u-md1jsirr0w9wd6",
                "id-11134207-7ra0o-md1jsirqwokkd9",
                "id-11134207-7ra0q-md1jsirqva0443",
                "id-11134207-7ra0p-md1jsirqy35052",
                "id-11134207-7ra0j-md1jsirqzhpg4d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1733201293,
              "sold": 0,
              "historical_sold": 8,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 4,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199900000000,
              "price_min": 199900000000,
              "price_max": 199900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmiz-m5ieyah8i7l4ae.16000031737969258.mp4",
                  "thumb_url": "id-11110105-6kmiz-m5ieyah8i7l4ae_cover",
                  "duration": 17,
                  "version": 2,
                  "vid": "id-11110105-6kmiz-m5ieyah8i7l4ae",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmiz-m5ieyah8i7l4ae.16000031737969258.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiz-m5ieyah8i7l4ae.16000031737969258.mp4",
                      "width": 480,
                      "height": 864
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiz-m5ieyah8i7l4ae.default.mp4",
                    "width": 480,
                    "height": 864
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "TYPE",
                  "options": [
                    "AC REIWA 0.5/ 1/2PK",
                    "AC REIWA 1PK",
                    "+JSA PSG JBDTBK 1/2",
                    "+JSA PSG JBDTBK 1PK"
                  ],
                  "images": [
                    "id-11134207-7ra0u-md1jsirr0w9wd6",
                    "id-11134207-7ra0q-md1jsirqva0443",
                    "id-11134207-7ra0r-md1jsirr2auc8c",
                    "id-11134207-7ra0o-md1jsirqwokkd9"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "PACKING",
                  "options": [
                    "TANPA BUBBLE",
                    "DENGAN BUBBLE"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.5,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  2,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 272329954589,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 8,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 8,
                "display_sold_count_text": "8"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "WIJOYO ELEKTRONIK",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 24339032436,
            "shopid": 227051644,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0r-md1jsirr2auc8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,822120592853526,1213641,1000031,298463379,2018619,1015914,700190087,700830032,2023641,298468390,298458396,298458398,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4581,\"model_id\":272329954589,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0r-md1jsirr2auc8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,822120592853526,1213641,1000031,298463379,2018619,1015914,700190087,700830032,2023641,298468390,298458396,298458398,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4581,\"model_id\":272329954589,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24339032436",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26078484738,
              "shopid": 1486653998,
              "name": "AC WINDOW REIWA 1/2PK CW0501RA Low Watt",
              "label_ids": [
                844931064601283,
                1049116,
                700005516,
                822059908662278,
                825465608499232,
                825465608497696,
                837860934119952,
                825465608494624,
                1718093079,
                1015914,
                700190087,
                2023641,
                2018619,
                2068629,
                298938357,
                2098629
              ],
              "image": "id-11134207-7rbkd-m6z02ah7c3rd53",
              "images": [
                "id-11134207-7rbkd-m6z02ah7c3rd53",
                "id-11134207-7rbk0-m6z02ah7c3zoec",
                "id-11134207-7rbk5-m6z02ah7c3u4c1",
                "id-11134207-7rbkc-m6z02ah7c3vx9a",
                "id-11134207-7rbk8-m6z02ah7dibt2d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1741152816,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194900000000,
              "price_min": 194900000000,
              "price_max": 194900000000,
              "price_min_before_discount": 199900000000,
              "price_max_before_discount": 199900000000,
              "hidden_price_display": null,
              "price_before_discount": 199900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-3%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Sidoarjo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp641RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 826577227677696,
                "price": 192400000000,
                "strikethrough_price": 199900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1328605523755008,
                "discount_text": "-3%",
                "model_id": 195845995259,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1328605523755008,
                  "voucher_code": "SINA1Z814",
                  "voucher_discount": 2500000000,
                  "time_info": {
                    "start_time": 1767841413,
                    "end_time": 1773543660,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 150000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp641RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SINAR pasifik Sidoarjo",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 26078484738,
            "shopid": 1486653998,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkd-m6z02ah7c3rd53\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,700005516,822059908662278,825465608499232,825465608497696,837860934119952,825465608494624,1718093079,1015914,700190087,2023641,2018619,2068629,298938357,2098629],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5080,\"model_id\":195845995259,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkd-m6z02ah7c3rd53\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,700005516,822059908662278,825465608499232,825465608497696,837860934119952,825465608494624,1718093079,1015914,700190087,2023641,2018619,2068629,298938357,2098629],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5080,\"model_id\":195845995259,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26078484738",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24917644470,
              "shopid": 1012420674,
              "name": "AC WINDOW REIWA 0.5 PK 5000 BTU Window Air Conditioner CW - 0501RA AC JENDELA 0,5 PK 1/2 PK 370 WATT LOW WATT",
              "label_ids": [
                298463379,
                1049124,
                1059152,
                822059908662278,
                825465608492064,
                825465608494624,
                825465608499232,
                825465608497696,
                837860934119952,
                1213641,
                844931086908638,
                1000031,
                298458395,
                1718093079,
                2018619,
                1400066568,
                2048661,
                2048660,
                700765096,
                1718088044,
                298458398,
                298458396,
                298468389,
                1718093084,
                298468390,
                1718088045
              ],
              "image": "id-11134207-7r98v-lsmoipzdtza162",
              "images": [
                "id-11134207-7r98v-lsmoipzdtza162",
                "id-11134207-7r98s-lsmoipzdvduha0",
                "id-11134207-7r991-lsmoipzdwsex04",
                "id-11134207-7r98q-lsmoipzdy6zdb2",
                "id-11134207-7r98s-lsmoipzdzljt77"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1709897663,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 6,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "normal",
              "price": 219900000000,
              "price_min": 219900000000,
              "price_max": 219900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 219900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 236109086143,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 219900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Urbanย Nest",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 24917644470,
            "shopid": 1012420674,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98v-lsmoipzdtza162\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,1049124,1059152,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696,837860934119952,1213641,844931086908638,1000031,298458395,1718093079,2018619,1400066568,2048661,2048660,700765096,1718088044,298458398,298458396,298468389,1718093084,298468390,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5371,\"model_id\":236109086143,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98v-lsmoipzdtza162\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,1049124,1059152,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696,837860934119952,1213641,844931086908638,1000031,298458395,1718093079,2018619,1400066568,2048661,2048660,700765096,1718088044,298458398,298458396,298468389,1718093084,298468390,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5371,\"model_id\":236109086143,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24917644470",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28887594172,
              "shopid": 1479757725,
              "name": "Reiwa AC Window 1/2 PK / AC Window Reiwa 1/2 PK",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                298463379,
                1049145,
                1049148,
                822059908662278,
                825465608492064,
                825465608497696,
                1213641,
                1718093065,
                2108629,
                1400285055,
                1015914,
                700190087,
                2048660,
                2048661,
                700765096,
                844931086908638,
                298458396,
                298458398,
                298468389,
                298468390
              ],
              "image": "id-11134207-7rbk9-mb0k0cpquqpgc2",
              "images": [
                "id-11134207-7rbk9-mb0k0cpquqpgc2",
                "id-11134207-7rbkb-mb0k0cpqrxkk9c",
                "id-11134207-7rbk3-mb0k0cpqqjha22",
                "id-11134207-7rbkd-mb0k0cpqry6u1d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1749963828,
              "sold": 2,
              "historical_sold": 17,
              "liked": false,
              "liked_count": 17,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 9,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 208472400000,
              "price_min": 208472400000,
              "price_max": 208472400000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Tujuan",
                  "options": [
                    "Bandar Lampung",
                    "Luar Bandar Lampung"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  9,
                  0,
                  0,
                  0,
                  0,
                  9
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Bandar Lampung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 207972400000,
                "strikethrough_price": 208472400000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1324505592250416,
                "discount_text": null,
                "model_id": 149205127963,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1324505592250416,
                  "voucher_code": "GUDAFEB",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1767353040,
                    "end_time": 1774959840,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 100000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 208472400000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 17,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 17,
                "display_sold_count_text": "17"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gudang Rey",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000,
                88
              ]
            },
            "itemid": 28887594172,
            "shopid": 1479757725,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-mb0k0cpquqpgc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049145,1049148,822059908662278,825465608492064,825465608497696,1213641,1718093065,2108629,1400285055,1015914,700190087,2048660,2048661,700765096,844931086908638,298458396,298458398,298468389,298468390],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":765,\"model_id\":149205127963,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-mb0k0cpquqpgc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049145,1049148,822059908662278,825465608492064,825465608497696,1213641,1718093065,2108629,1400285055,1015914,700190087,2048660,2048661,700765096,844931086908638,298458396,298458398,298468389,298468390],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":765,\"model_id\":149205127963,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28887594172",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44751916265,
              "shopid": 202812301,
              "name": "[GARANSI GANTI UNIT INDOOR BARU 3 TAHUN] NEW PRODUCT CHANGHONG AC 1/2 PK GUARDIAN SERIES STANDARD CHOL-05L4S [INDOOR + OUTDOOR UNIT ONLY] [ANTI CORROSION PRO] [BABY CARE MODE] [3 IN 1 FILTER]  [FAST COOLING] [SLEEP MODE] [ECO MODE]] [DOUBLE GOLDEN FIN]",
              "label_ids": [
                1000230,
                1000381,
                1668726,
                1002164,
                1011692,
                1000544,
                1000109,
                2018618,
                2153644,
                1400095067,
                1718072935,
                1400285005,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                700005490,
                1049120,
                1718093079,
                822059908662278,
                825465608499232,
                834403089593352,
                825465608497696,
                1015914,
                700190087,
                2213652,
                1400285055,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224u-mj99p5n82e4j27",
              "images": [
                "id-11134207-8224u-mj99p5n82e4j27",
                "id-11134207-8224y-mhbrve2qhwctfe",
                "id-11134201-8224s-mhll9t4kxgxtc3",
                "id-11134201-8224u-mhll9s1o7e9u03",
                "id-11134201-8224w-mhll9syx3i8447",
                "id-11134201-8224v-mhll9ssonu2p95",
                "id-11134201-82252-mhll9snckpvlf5",
                "id-11134201-8224y-mhll9t83jk7c59",
                "id-11134201-8224p-mhlrgb39cb2b3d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763717642,
              "sold": 23,
              "historical_sold": 24,
              "liked": false,
              "liked_count": 43,
              "view_count": null,
              "catid": 100010,
              "brand": "Changhong",
              "cmt_count": 13,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 269800000000,
              "price_min": 269800000000,
              "price_max": 269800000000,
              "price_min_before_discount": 499900000000,
              "price_max_before_discount": 499900000000,
              "hidden_price_display": null,
              "price_before_discount": 499900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-46%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven8-mitx47kolzpg3b.16000101766995797.mp4",
                  "thumb_url": "id-11110105-6ven8-mitx47kolzpg3b_cover",
                  "duration": 54,
                  "version": 2,
                  "vid": "id-11110105-6ven8-mitx47kolzpg3b",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven8-mitx47kolzpg3b.16000101766995797.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven8-mitx47kolzpg3b.16000101766995797.mp4",
                      "width": 952,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven8-mitx47kolzpg3b.default.mp4",
                    "width": 952,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  13,
                  0,
                  0,
                  0,
                  0,
                  13
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134201-8224v-mhlrfjo50t1i4d",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 413763337728626,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227866059223042,
                "price": 264800000000,
                "strikethrough_price": 499900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1287524397236224,
                "discount_text": "-46%",
                "model_id": 330182600772,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1287524397236224,
                  "voucher_code": "CHANASIAK",
                  "voucher_discount": 5000000000,
                  "time_info": {
                    "start_time": 1762944120,
                    "end_time": 1770637800,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 499900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 24,
                "rounded_local_monthly_sold_count": 23,
                "local_monthly_sold_count_text": "23",
                "rounded_display_sold_count": 24,
                "display_sold_count_text": "24"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Changhong Home Appliance Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 656652954,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT1Bt/eTt45r8FwNprdKbuY5EmXuGsxHdNbPuKBbYwKlnuGVf4Bu1tweujV0Phl0lguw+B8Tg5YjnH6fuhbvBcnTQnfPBDoYqJQkwNV4yJpcpEACaJZTb6R4NpDpNL0OaydqJXt/xX0w+Zku/tVM0O2Se3LfmbD2P7TnPNgCumnJ9kYwiRFNh+pEk+kzC5JbEq07JWbFkOJbc8PGG18b0cbdZ5jFuqnrPAT5Igwn5n3RTooUPawsVnds56Emh9E0M9KHoWGwn3UNbIxE9f9+cDZ45T2AJrX4iKTTlSPp/UU+j88nXGf3HOuE7rizg+jvpOhrLZ9WfIOuv3jfZOfrHZqkPZsvmPndHdhBn1aHai2pM1a/VVJkABdx9vdXkCKl6HZHXPwDaYNp68cD2SL1HpAfglFpctnc41c7t8/Yw5t7Se0Xs9sj6kxYXj7kolut1Fzs7H7DqbhxLZpGrr/Y6WbfcxvZVpIUBnlD3ntcobC5CrVghERVPaJFF3G0rcxWptQ==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EJr1jrkCGIbn4NMBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUMUJ0L2VUdDQ1cjhGd05wcmRLYnVZNUVtWHVHc3hIZE5iUHVLQmJZd0tsbnVHVmY0QnUxdHdldWpWMFBobDBsZ3V3K0I4VGc1WWpuSDZmdWhidkJjblRRbmZQQkRvWXFKUWt3TlY0eUpwY3BFQUNhSlpUYjZSNE5wRHBOTDBPYXlkcUpYdC94WDB3K1prdS90Vk0wTzJTZTNMZm1iRDJQN1RuUE5nQ3Vtbko5a1l3aVJGTmgrcEVrK2t6QzVKYkVxMDdKV2JGa09KYmM4UEdHMThiMGNiZFo1akZ1cW5yUEFUNUlnd241bjNSVG9vVVBhd3NWbmRzNTZFbWg5RTBNOUtIb1dHd24zVU5iSXhFOWY5K2NEWjQ1VDJBSnJYNGlLVFRsU1BwL1VVK2o4OG5YR2YzSE91RTdyaXpnK2p2cE9ockxaOVdmSU91djNqZlpPZnJIWnFrUFpzdm1QbmRIZGhCbjFhSGFpMnBNMWEvVlZKa0FCZHg5dmRYa0NLbDZIWkhYUHdEYVlOcDY4Y0QyU0wxSHBBZmdsRnBjdG5jNDFjN3Q4L1l3NXQ3U2UwWHM5c2o2a3hZWGo3a29sdXQxRnpzN0g3RHFiaHhMWnBHcnIvWTZXYmZjeHZaVnBJVUJubEQzbnRjb2JDNUNyVmdoRVJWUGFKRkYzRzByY3hXcHRRPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAACkcz95+n5qvHSTej+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHAmev48gbpAQAAAOCVJfE/8QEAAAAAaGjwP8gMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ0AACE1EkgvQaENAAAA5K17qUG5DTbrdGnnMVNA+A2AgMGAzwewDv2jioUB4g4Mqo0Gx40G1Y4G8JAGuQ8v3SQGgU19P8EPSXFWkNs5AT/IDw/iGawLRXBvQk15NHhNakF3TXpVMU1UVTFPVGd4TXpjMkxDMHhMQzB4TEMweExDMHhMRE11TVRVeE5UVXhNREkxT0RVMk56QTBPQ3d4TERBdU16SXlPVEExT0RrM01UVTRPVFEzTml3d0xqa3NNQzQzTlRRM016VTFNVEEzTlRFek1USTBMREF1TXpnNE9EYzRORFl4TlRVMk5ESXhOalFzTUM0d01qa3hOREkwTWpZM05qQTRPVEV5T0N3MExqUXdNVGs1TlRVMU9URTVNelEzTnl3dE1SMktNNUZNSVBHdDkyVXRxYTVIUURVQUFJQS9PUmFjYzhXT0J3aENRYmFtT2NtTmVrdENTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFhZXdvcFJSZmpTN0JjUUFBQUFDOXZXby9lUUFBQUlDRHcxWS9nUUVBQUFBQVBUTE1RWWtCQUFBQW9Ob2d0RUdSQVFBQUFDaFZJZE5CbVFFQUFBQkFBUUxRUWFFQkFBQUFZRm9zdTBHcEFRQUFBTmdYemRaQjZBRUJnQUtVQTRvQ1BqQXVNREF5TnpnM0xERXVNREF3TURBd0xERXVNRFl5TXpRMUxERXVNalV3TURBd0xERXVNekF3TURBd0xERXVOREF3TURBd0xERXVOVEF3TURBd21RS2cxbDFpWURZSlFLRUNBQUFBMkJmTjFrRzVBbDhJT2UvLzQrRS93UUxzS0tVVVg0MHV3Y29DQ3dnQkVUcUJNcmhDY1NUQnlnSUxDQUlSN0NpbEZGK05Mc0haQWdDMHJvMldvTGhCNFFLZ2JxTGpnSUtpUWVrQ2FwdURoaGs3eEVHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCtaQTZCSFl4UUZ0d3hDb1FPRWFCdmlzd0pRUXJrRDVLL2Rhc3RiNkQvQkEyQ1VOYnpvdU9rL3lRUHhXSC9vRmt6clA5RUR5MkNiRGFXbTdqLzZBd2tLQlVselRsQkNFQUQ2QXdzS0IxSnZhVlJwWlhJUUEvb0REUW9KVDNKa1pYSlVhV1Z5RUFMNkF4RUtEVWwwWlcxUWNtbGpaVlJwWlhJUUE0RUVBQUFBQUVUUlpqK0pCQUFBQUNBazhHUS9rQVNiQTVnRW4rbk56SWVYQWFBRThNdWZzUlNvQklDdXpiNFV1QVNRNHEwTndBU0FyczIrRk1rRUFBQUFBQUNrY3ovaEJBQUFBQUFBcEhNLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBQ2d0OVJtUDZFRkFBQUFBQUFBOEQrcEJRQUFBS0JkLy9BL3NRVUFBQUFBQUFEMFA3a0ZBQUFBd016TTlEL0JCUUFBQUdCbVp2WS95UVVBQUFBQUFBRDRQdz096hkEuk3BTfoZjAYKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAPA/ChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQ0NzUxOTE2MjY1ChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnCvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjM3LCJhcGkyX2xhdGVuY3lfbXMiOjYzLCJhcGkzX2xhdGVuY3lfbXMiOjIsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzMsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTEyLCJhcGkyX2Fkc19jb3VudCI6MzA2LCJhcGkzX2Fkc19jb3VudCI6OH0KDQoHaXNfdnNrdRICKAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoSCgx2b3VjaGVyX2xlbnMSAhAACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJtNA2qPNHL0EKFAoOc2hvcF9ibGFja2xpc3QSAigAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJz14LtS92zD8KGgoNdHJhZmZpY19ib29zdBIJCc8QOfeiPc8/ChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZwogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAACwH4CAgICAgICogAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUAAADYF83WQdkl/GZoMN8xU0DpJW0VyQyn/1JA8iUGU0VBUkNI",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                4
              ]
            },
            "itemid": 44751916265,
            "shopid": 202812301,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":4983774,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mj99p5n82e4j27\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1000230,1000381,1668726,1002164,1011692,1000544,1000109,2018618,2153644,1400095067,1718072935,1400285005,1428713,1718087960,844931064601283,298463379,700005490,1049120,1718093079,822059908662278,825465608499232,834403089593352,825465608497696,1015914,700190087,2213652,1400285055,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":3681,\"model_id\":330182600772,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:10 match_weight:1 loss_weight:1 extra_info:\\\"CYtXACDMyQTAEdYNS6fI9gPAGaHRmZmrbKI/IYrOyRyi2azA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3771307419895180\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":4983774,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mj99p5n82e4j27\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1000230,1000381,1668726,1002164,1011692,1000544,1000109,2018618,2153644,1400095067,1718072935,1400285005,1428713,1718087960,844931064601283,298463379,700005490,1049120,1718093079,822059908662278,825465608499232,834403089593352,825465608497696,1015914,700190087,2213652,1400285055,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":3681,\"model_id\":330182600772,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:10 match_weight:1 loss_weight:1 extra_info:\\\"CYtXACDMyQTAEdYNS6fI9gPAGaHRmZmrbKI/IYrOyRyi2azA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3771307419895180\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EJr1jrkCGIbn4NMBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUMUJ0L2VUdDQ1cjhGd05wcmRLYnVZNUVtWHVHc3hIZE5iUHVLQmJZd0tsbnVHVmY0QnUxdHdldWpWMFBobDBsZ3V3K0I4VGc1WWpuSDZmdWhidkJjblRRbmZQQkRvWXFKUWt3TlY0eUpwY3BFQUNhSlpUYjZSNE5wRHBOTDBPYXlkcUpYdC94WDB3K1prdS90Vk0wTzJTZTNMZm1iRDJQN1RuUE5nQ3Vtbko5a1l3aVJGTmgrcEVrK2t6QzVKYkVxMDdKV2JGa09KYmM4UEdHMThiMGNiZFo1akZ1cW5yUEFUNUlnd241bjNSVG9vVVBhd3NWbmRzNTZFbWg5RTBNOUtIb1dHd24zVU5iSXhFOWY5K2NEWjQ1VDJBSnJYNGlLVFRsU1BwL1VVK2o4OG5YR2YzSE91RTdyaXpnK2p2cE9ockxaOVdmSU91djNqZlpPZnJIWnFrUFpzdm1QbmRIZGhCbjFhSGFpMnBNMWEvVlZKa0FCZHg5dmRYa0NLbDZIWkhYUHdEYVlOcDY4Y0QyU0wxSHBBZmdsRnBjdG5jNDFjN3Q4L1l3NXQ3U2UwWHM5c2o2a3hZWGo3a29sdXQxRnpzN0g3RHFiaHhMWnBHcnIvWTZXYmZjeHZaVnBJVUJubEQzbnRjb2JDNUNyVmdoRVJWUGFKRkYzRzByY3hXcHRRPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAACkcz95+n5qvHSTej+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHAmev48gbpAQAAAOCVJfE/8QEAAAAAaGjwP8gMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ0AACE1EkgvQaENAAAA5K17qUG5DTbrdGnnMVNA+A2AgMGAzwewDv2jioUB4g4Mqo0Gx40G1Y4G8JAGuQ8v3SQGgU19P8EPSXFWkNs5AT/IDw/iGawLRXBvQk15NHhNakF3TXpVMU1UVTFPVGd4TXpjMkxDMHhMQzB4TEMweExDMHhMRE11TVRVeE5UVXhNREkxT0RVMk56QTBPQ3d4TERBdU16SXlPVEExT0RrM01UVTRPVFEzTml3d0xqa3NNQzQzTlRRM016VTFNVEEzTlRFek1USTBMREF1TXpnNE9EYzRORFl4TlRVMk5ESXhOalFzTUM0d01qa3hOREkwTWpZM05qQTRPVEV5T0N3MExqUXdNVGs1TlRVMU9URTVNelEzTnl3dE1SMktNNUZNSVBHdDkyVXRxYTVIUURVQUFJQS9PUmFjYzhXT0J3aENRYmFtT2NtTmVrdENTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFhZXdvcFJSZmpTN0JjUUFBQUFDOXZXby9lUUFBQUlDRHcxWS9nUUVBQUFBQVBUTE1RWWtCQUFBQW9Ob2d0RUdSQVFBQUFDaFZJZE5CbVFFQUFBQkFBUUxRUWFFQkFBQUFZRm9zdTBHcEFRQUFBTmdYemRaQjZBRUJnQUtVQTRvQ1BqQXVNREF5TnpnM0xERXVNREF3TURBd0xERXVNRFl5TXpRMUxERXVNalV3TURBd0xERXVNekF3TURBd0xERXVOREF3TURBd0xERXVOVEF3TURBd21RS2cxbDFpWURZSlFLRUNBQUFBMkJmTjFrRzVBbDhJT2UvLzQrRS93UUxzS0tVVVg0MHV3Y29DQ3dnQkVUcUJNcmhDY1NUQnlnSUxDQUlSN0NpbEZGK05Mc0haQWdDMHJvMldvTGhCNFFLZ2JxTGpnSUtpUWVrQ2FwdURoaGs3eEVHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCtaQTZCSFl4UUZ0d3hDb1FPRWFCdmlzd0pRUXJrRDVLL2Rhc3RiNkQvQkEyQ1VOYnpvdU9rL3lRUHhXSC9vRmt6clA5RUR5MkNiRGFXbTdqLzZBd2tLQlVselRsQkNFQUQ2QXdzS0IxSnZhVlJwWlhJUUEvb0REUW9KVDNKa1pYSlVhV1Z5RUFMNkF4RUtEVWwwWlcxUWNtbGpaVlJwWlhJUUE0RUVBQUFBQUVUUlpqK0pCQUFBQUNBazhHUS9rQVNiQTVnRW4rbk56SWVYQWFBRThNdWZzUlNvQklDdXpiNFV1QVNRNHEwTndBU0FyczIrRk1rRUFBQUFBQUNrY3ovaEJBQUFBQUFBcEhNLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBQ2d0OVJtUDZFRkFBQUFBQUFBOEQrcEJRQUFBS0JkLy9BL3NRVUFBQUFBQUFEMFA3a0ZBQUFBd016TTlEL0JCUUFBQUdCbVp2WS95UVVBQUFBQUFBRDRQdz096hkEuk3BTfoZjAYKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAPA/ChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQ0NzUxOTE2MjY1ChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnCvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjM3LCJhcGkyX2xhdGVuY3lfbXMiOjYzLCJhcGkzX2xhdGVuY3lfbXMiOjIsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzMsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTEyLCJhcGkyX2Fkc19jb3VudCI6MzA2LCJhcGkzX2Fkc19jb3VudCI6OH0KDQoHaXNfdnNrdRICKAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoSCgx2b3VjaGVyX2xlbnMSAhAACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJtNA2qPNHL0EKFAoOc2hvcF9ibGFja2xpc3QSAigAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJz14LtS92zD8KGgoNdHJhZmZpY19ib29zdBIJCc8QOfeiPc8/ChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZwogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAACwH4CAgICAgICogAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUAAADYF83WQdkl/GZoMN8xU0DpJW0VyQyn/1JA8iUGU0VBUkNI",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44751916265",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 16594279250,
              "shopid": 297026995,
              "name": "KIPAS PENDINGIN MINI AC PORTABLE AIR COLLER MOBIL DAN RUANGAN /AC",
              "label_ids": [
                844931064601283,
                844931086908638,
                700190087,
                1015914,
                1400285055,
                1000031,
                1718087960,
                1428713,
                1718093079,
                1049116,
                1049117,
                822059908662278,
                825465608499232,
                825465608497696,
                837860934119952,
                2018619,
                2023641,
                298893311,
                700830032,
                298933384,
                299103323
              ],
              "image": "id-11134201-7qul2-lfw4b581trs812",
              "images": [
                "id-11134201-7qul2-lfw4b581trs812",
                "id-11134201-7qul4-lfw4bhj5tbst7e",
                "id-11134201-7quky-lfw4bhhrvd0u2d",
                "id-11134207-7qul7-lfoz8nizmime20",
                "id-11134207-7qul6-lfoz8myqg57u00",
                "id-11134207-7qul7-lfoz8n0edpvx2a",
                "id-11134207-7qul7-lfoz8n3g9942bd",
                "id-11134201-7qul3-lfw4bhhrvd2g61",
                "id-11134201-7qul4-lfw4bhk9rpgu55"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1681706655,
              "sold": 61,
              "historical_sold": 1000,
              "liked": false,
              "liked_count": 588,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 702,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 6900000000,
              "price_min": 6900000000,
              "price_max": 6900000000,
              "price_min_before_discount": 19000000000,
              "price_max_before_discount": 19000000000,
              "hidden_price_display": null,
              "price_before_discount": 19000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-64%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "c67d5710af194dfca3b5a4af47789c3b",
                  "thumb_url": "b343caadaab472a81445666360c53392",
                  "duration": 55,
                  "version": 2,
                  "vid": "id-11110107-6jt79-lfw3rcws7la71b",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6jt79-lfw3rcws7la71b.16000081682137675.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6jt79-lfw3rcws7la71b.16000081682137675.mp4",
                      "width": 288,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6jt79-lfw3rcws7la71b.default.mp4",
                    "width": 288,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.627906976744186,
                "rating_count": [
                  731,
                  20,
                  16,
                  20,
                  104,
                  571
                ],
                "rcount_with_context": 141,
                "rcount_with_image": 89
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228055897620480,
                "price": 6900000000,
                "strikethrough_price": 19000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-64%",
                "model_id": 204221834117,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 19000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1000,
                "rounded_local_monthly_sold_count": 61,
                "local_monthly_sold_count_text": "61",
                "rounded_display_sold_count": 1000,
                "display_sold_count_text": "1RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Semangat_Terus",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 340667923,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT19nBAYnD13ez+y6KXs6u0ta8/pg/+6SnehzTyRroUAg5QUJw2m9whlwpXGAxmB0QbtA00DFFwwRqfBT62FLr+uxTN0X+m1HdIcRLhC5oofY6il3EFyLR9M7lRwAcbw3BRM09RVNnl5FW9Mv/UedcBIj6lHbTBCZLkTmJ5BdDl1MNlS4ZGP8GT9IFx7VgONTof8VId83DKznTG3mzUmH1YE6KgswDcJ9lhCqkZjBGfHvYYgw62HQnBpKaoNE14nIyESEJ+FlOmpWkMOa4MDLWu8ZT9SZqZVZpwUvM8evIldQ8CMz14DWYaIYYBXB9jhFvKahm9jISC+77rB42KFmyzUGVTDNFeLzZuR7cCdFwQA3wVbDY++Eb0XrhoV4x3bxRUfTgh1+n4NNB/UjNVMOzf2hYF+8X9/+9rSgNl5A0vd+b6BF42Nwi8/XQKsaxJN0es9z+pIG8DpAdBOznULh3Z+7ts3gz6XQYERaV1CcLNJFNWhtMuDgjTQqlwnXsMc2zA==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EJPcuKIBGLm56YcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUMTluQkFZbkQxM2V6K3k2S1hzNnUwdGE4L3BnLys2U25laHpUeVJyb1VBZzVRVUp3Mm05d2hsd3BYR0F4bUIwUWJ0QTAwREZGd3dScWZCVDYyRkxyK3V4VE4wWCttMUhkSWNSTGhDNW9vZlk2aWwzRUZ5TFI5TTdsUndBY2J3M0JSTTA5UlZObmw1Rlc5TXYvVWVkY0JJajZsSGJUQkNaTGtUbUo1QmREbDFNTmxTNFpHUDhHVDlJRng3VmdPTlRvZjhWSWQ4M0RLem5URzNtelVtSDFZRTZLZ3N3RGNKOWxoQ3FrWmpCR2ZIdllZZ3c2MkhRbkJwS2FvTkUxNG5JeUVTRUorRmxPbXBXa01PYTRNRExXdThaVDlTWnFaVlpwd1V2TThldklsZFE4Q016MTREV1lhSVlZQlhCOWpoRnZLYWhtOWpJU0MrNzdyQjQyS0ZteXpVR1ZURE5GZUx6WnVSN2NDZEZ3UUEzd1ZiRFkrK0ViMFhyaG9WNHgzYnhSVWZUZ2gxK240Tk5CL1VqTlZNT3pmMmhZRis4WDkvKzlyU2dObDVBMHZkK2I2QkY0Mk53aTgvWFFLc2F4Sk4wZXM5eitwSUc4RHBBZEJPem5VTGgzWis3dHMzZ3o2WFFZRVJhVjFDY0xOSkZOV2h0TXVEZ2pUUXFsd25Yc01jMnpBPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAACkeD95GARWDi3SeT+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AGi97yrCekBAAAA4CmV9T/xAQAAAGC7L/8/yAwP4AwB6QwAAADgiZ3IP4kNexSuR+F6lD+RDQAAUJvG99dAoQ0AAACAViBPQbkN/GZoMN8xU0D4DYCcvIgYsA731+cK4g4Mqo0Gx40G1Y4G8pAGuQ+oxks3iXF4P8EPSXFWkNs5AT/IDxDiGZALRW84Qk1DNHpPVGt5TURBNE1qZzVNekUzTmpBMExDMHhMQzB4TEMweExDMHhMREF1TkRBek1qTXpNVFl3TlRNM01UTXhOeXd4TERBdU1EYzJNekExT0RJeE1qTTBOVGd3Tnl3d0xqa3NNQzQxTURFNE5UVXdPRGd3TWprMk9UUTVMREV1TURBd01ERXlNeXczT0M0d05Ea3lOamt4TnpFeU5qRTROeXd3TGpZMU5qWXhPREEyTWpVeE9UYzNORElzTFRFZEtVVXRTeUNzZ2ZrQkxRMWt6RDQxQUFDQVB6bnJ1N1dXdmpMZ1FVSFBMVGRQbGFNRFFrb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRW9PQ0t2emxnTVJBQUFBQUFBQUFBQlNFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJhQndpcTg1WURFQUJhQndpczg1WURFQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUdJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AzRUFBQUNBdTNwMFAza0FBQURBNE1JNFA0RUJBQUFBNE9mNWcwR0pBUUFBQU1BNUxEeEJrUUVBQUFDdVNkdUVRWmtCQUFBQTRNWDNpa0doQVFBQUFLQkFCRU5CcVFFQUFBRHFDU2lNUWVnQkFZQUNsQU9LQWo0d0xqQXdNelV4T1N3eExqQXdNREF3TUN3eExqQXdNREF3TUN3eExqSXlPRGd3Tml3eExqSTRNak0xTkN3eExqTXhNamM0Tml3eExqTXhNamM0TnBrQ1Y5eEtkWkxPMlQraEFnQUFBT29KS0l4QnVRTDZRc2g1L3gvWVA4RUNBQUFBQUFBQUFJREtBZ3NJQVJFQUFBQUFBQUFBQU1vQ0N3Z0NFUUFBQUFBQUFBQ0EyUUpBSWhmaVV4cDdRZUVDZ09aeStSSjVNMEhwQXQrZjdzVi9OWU5CaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9tUU1NM0psTk5UbmhRYUVERy80UVdpanVCMEs1QTRreGVCb0Y3K2svd1FOYUVpZm5Sd1hyUDhrRG5Cb1JnMVV2N0QvUkEvSEdjaDFxZ2U0LytnTUpDZ1ZKYzA1UVFoQUErZ01MQ2dkU2IybFVhV1Z5RUFMNkF3MEtDVTl5WkdWeVZHbGxjaEFEK2dNUkNnMUpkR1Z0VUhKcFkyVlVhV1Z5RUFLQkJBQUFBT0JETlhJL2lRUUFBQUNnVjlkd1A1QUVtd09ZQlBxUGlhNlNES0FFOHE3VHBRZW9CSUR5aTZnSnVBU093N2lDQXNBRWdQS0xxQW5KQkFBQUFBQUFwSGcvNFFRQUFBQUFBS1I0UCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQUlQelNiRCtoQlFBQUFBQUFBUEEvcVFVQUFBQUFBQUR3UDdFRkFBQUFBRENwOHorNUJRQUFBRUNGaFBRL3dRVUFBQUJnS3dIMVA4a0ZBQUFBWUNzQjlUOD3qGQS3TcFN+hmMBgogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJQtC9enQKT0EKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAK+wEKE2VuZ2luZWVyaW5nX21ldHJpY3MS4wEi4AF7ImFwaTBfbGF0ZW5jeV9tcyI6NTcsImFwaTFfbGF0ZW5jeV9tcyI6MzcsImFwaTJfbGF0ZW5jeV9tcyI6NjMsImFwaTNfbGF0ZW5jeV9tcyI6MiwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjozMywiYXBpMF9hZHNfY291bnQiOjI4MiwiYXBpMV9hZHNfY291bnQiOjE1MTIsImFwaTJfYWRzX2NvdW50IjozMDYsImFwaTNfYWRzX2NvdW50Ijo4fQogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMTY1OTQyNzkyNTAKDQoHaXNfdnNrdRICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKEgoMdm91Y2hlcl9sZW5zEgIQAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCf1oA/Hs5tdACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZ7Afz4KAgICAgCjIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUAAADqCSiMQdklPzAB6LoxU0DpJZT+J1ND/lJA8iUGU0VBUkNI",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                1000,
                4
              ]
            },
            "itemid": 16594279250,
            "shopid": 297026995,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":4079789,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul2-lfw4b581trs812\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,844931086908638,700190087,1015914,1400285055,1000031,1718087960,1428713,1718093079,1049116,1049117,822059908662278,825465608499232,825465608497696,837860934119952,2018619,2023641,298893311,700830032,298933384,299103323],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\",\"ac window\"],\"merge_rank\":2030,\"model_id\":204221834117,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":4079789,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul2-lfw4b581trs812\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,844931086908638,700190087,1015914,1400285055,1000031,1718087960,1428713,1718093079,1049116,1049117,822059908662278,825465608499232,825465608497696,837860934119952,2018619,2023641,298893311,700830032,298933384,299103323],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\",\"ac window\"],\"merge_rank\":2030,\"model_id\":204221834117,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EJPcuKIBGLm56YcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUMTluQkFZbkQxM2V6K3k2S1hzNnUwdGE4L3BnLys2U25laHpUeVJyb1VBZzVRVUp3Mm05d2hsd3BYR0F4bUIwUWJ0QTAwREZGd3dScWZCVDYyRkxyK3V4VE4wWCttMUhkSWNSTGhDNW9vZlk2aWwzRUZ5TFI5TTdsUndBY2J3M0JSTTA5UlZObmw1Rlc5TXYvVWVkY0JJajZsSGJUQkNaTGtUbUo1QmREbDFNTmxTNFpHUDhHVDlJRng3VmdPTlRvZjhWSWQ4M0RLem5URzNtelVtSDFZRTZLZ3N3RGNKOWxoQ3FrWmpCR2ZIdllZZ3c2MkhRbkJwS2FvTkUxNG5JeUVTRUorRmxPbXBXa01PYTRNRExXdThaVDlTWnFaVlpwd1V2TThldklsZFE4Q016MTREV1lhSVlZQlhCOWpoRnZLYWhtOWpJU0MrNzdyQjQyS0ZteXpVR1ZURE5GZUx6WnVSN2NDZEZ3UUEzd1ZiRFkrK0ViMFhyaG9WNHgzYnhSVWZUZ2gxK240Tk5CL1VqTlZNT3pmMmhZRis4WDkvKzlyU2dObDVBMHZkK2I2QkY0Mk53aTgvWFFLc2F4Sk4wZXM5eitwSUc4RHBBZEJPem5VTGgzWis3dHMzZ3o2WFFZRVJhVjFDY0xOSkZOV2h0TXVEZ2pUUXFsd25Yc01jMnpBPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAACkeD95GARWDi3SeT+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AGi97yrCekBAAAA4CmV9T/xAQAAAGC7L/8/yAwP4AwB6QwAAADgiZ3IP4kNexSuR+F6lD+RDQAAUJvG99dAoQ0AAACAViBPQbkN/GZoMN8xU0D4DYCcvIgYsA731+cK4g4Mqo0Gx40G1Y4G8pAGuQ+oxks3iXF4P8EPSXFWkNs5AT/IDxDiGZALRW84Qk1DNHpPVGt5TURBNE1qZzVNekUzTmpBMExDMHhMQzB4TEMweExDMHhMREF1TkRBek1qTXpNVFl3TlRNM01UTXhOeXd4TERBdU1EYzJNekExT0RJeE1qTTBOVGd3Tnl3d0xqa3NNQzQxTURFNE5UVXdPRGd3TWprMk9UUTVMREV1TURBd01ERXlNeXczT0M0d05Ea3lOamt4TnpFeU5qRTROeXd3TGpZMU5qWXhPREEyTWpVeE9UYzNORElzTFRFZEtVVXRTeUNzZ2ZrQkxRMWt6RDQxQUFDQVB6bnJ1N1dXdmpMZ1FVSFBMVGRQbGFNRFFrb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRW9PQ0t2emxnTVJBQUFBQUFBQUFBQlNFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJhQndpcTg1WURFQUJhQndpczg1WURFQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUdJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AzRUFBQUNBdTNwMFAza0FBQURBNE1JNFA0RUJBQUFBNE9mNWcwR0pBUUFBQU1BNUxEeEJrUUVBQUFDdVNkdUVRWmtCQUFBQTRNWDNpa0doQVFBQUFLQkFCRU5CcVFFQUFBRHFDU2lNUWVnQkFZQUNsQU9LQWo0d0xqQXdNelV4T1N3eExqQXdNREF3TUN3eExqQXdNREF3TUN3eExqSXlPRGd3Tml3eExqSTRNak0xTkN3eExqTXhNamM0Tml3eExqTXhNamM0TnBrQ1Y5eEtkWkxPMlQraEFnQUFBT29KS0l4QnVRTDZRc2g1L3gvWVA4RUNBQUFBQUFBQUFJREtBZ3NJQVJFQUFBQUFBQUFBQU1vQ0N3Z0NFUUFBQUFBQUFBQ0EyUUpBSWhmaVV4cDdRZUVDZ09aeStSSjVNMEhwQXQrZjdzVi9OWU5CaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9tUU1NM0psTk5UbmhRYUVERy80UVdpanVCMEs1QTRreGVCb0Y3K2svd1FOYUVpZm5Sd1hyUDhrRG5Cb1JnMVV2N0QvUkEvSEdjaDFxZ2U0LytnTUpDZ1ZKYzA1UVFoQUErZ01MQ2dkU2IybFVhV1Z5RUFMNkF3MEtDVTl5WkdWeVZHbGxjaEFEK2dNUkNnMUpkR1Z0VUhKcFkyVlVhV1Z5RUFLQkJBQUFBT0JETlhJL2lRUUFBQUNnVjlkd1A1QUVtd09ZQlBxUGlhNlNES0FFOHE3VHBRZW9CSUR5aTZnSnVBU093N2lDQXNBRWdQS0xxQW5KQkFBQUFBQUFwSGcvNFFRQUFBQUFBS1I0UCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQUlQelNiRCtoQlFBQUFBQUFBUEEvcVFVQUFBQUFBQUR3UDdFRkFBQUFBRENwOHorNUJRQUFBRUNGaFBRL3dRVUFBQUJnS3dIMVA4a0ZBQUFBWUNzQjlUOD3qGQS3TcFN+hmMBgogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJQtC9enQKT0EKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAK+wEKE2VuZ2luZWVyaW5nX21ldHJpY3MS4wEi4AF7ImFwaTBfbGF0ZW5jeV9tcyI6NTcsImFwaTFfbGF0ZW5jeV9tcyI6MzcsImFwaTJfbGF0ZW5jeV9tcyI6NjMsImFwaTNfbGF0ZW5jeV9tcyI6MiwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjozMywiYXBpMF9hZHNfY291bnQiOjI4MiwiYXBpMV9hZHNfY291bnQiOjE1MTIsImFwaTJfYWRzX2NvdW50IjozMDYsImFwaTNfYWRzX2NvdW50Ijo4fQogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMTY1OTQyNzkyNTAKDQoHaXNfdnNrdRICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKEgoMdm91Y2hlcl9sZW5zEgIQAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCf1oA/Hs5tdACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZ7Afz4KAgICAgCjIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUAAADqCSiMQdklPzAB6LoxU0DpJZT+J1ND/lJA8iUGU0VBUkNI",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_16594279250",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48154060930,
              "shopid": 28505754,
              "name": "AC LG K05NSA UIN 1/2 PK UNIT ONLY ORGINAL 100% GARANSI RESMI",
              "label_ids": [
                2018619,
                47,
                2068629,
                2023641,
                1000167,
                298938357,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1400066568,
                298463379,
                1049112,
                700005512,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1718596,
                298488495,
                1015914,
                700190087,
                2213765,
                2098628,
                298468389,
                298938368,
                1718088045,
                2098629
              ],
              "image": "id-11134207-8224x-mizr9qp64q9w37",
              "images": [
                "id-11134207-8224x-mizr9qp64q9w37",
                "id-11134207-8224w-mizukv3nknpf5e",
                "id-11134207-8224y-mizr9qp664uca7",
                "id-11134207-8224r-mizr9qp67jes07",
                "id-11134207-8224x-mizukv3oe5mvaf"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767355947,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 11,
              "view_count": null,
              "catid": 100010,
              "brand": "LG",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 299900000000,
              "price_min": 299900000000,
              "price_max": 299900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven9-mizump8k4l4y8e.16000041767354817.mp4",
                  "thumb_url": "id-11110105-6ven9-mizump8k4l4y8e_cover",
                  "duration": 23,
                  "version": 2,
                  "vid": "id-11110105-6ven9-mizump8k4l4y8e",
                  "formats": [
                    {
                      "format": 1600004,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven9-mizump8k4l4y8e.16000041767354817.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven9-mizump8k4l4y8e.16000041767354817.mp4",
                      "width": 360,
                      "height": 646
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven9-mizump8k4l4y8e.default.mp4",
                    "width": 464,
                    "height": 832
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp999RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 299900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 425383753963,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 299900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp999RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "123surya",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 673532289,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT86YfDw4In2fThR5bD+9T4ZixMcsFBLVvFBSCAFAhMR8nIJAeMpWHGHxPqdw1A9iSXQz8/iC9Ad4N9zsoiGjipJAqhnP8+evYfW3Pvq9ecHXSEVLbo1t3G0CHmF5/xeW+ZwH+OjuL81VkSUbfn8N5pmmYqInden5m8CZfr+4Rf5rfQLiwKibJPcigGRYRAQA/MyCtWMZaKyHdsHnXjWUp27bxXCsJXizeqnrpeNy6WGUQzpsVnd0kGhkPjfOK5eY5wiaR4JHLuoKghb4oE/hxCd2YeOGMX2RT0ZbxsxXShq8RMBBsEjWhGEE277R1EZ+uiVPMMhwBgeEhlhPZKpoT3Z9Z7uQl02C2VpvJfJ2FFZN0lfGc9n66C3LFHwumnj5qyGt1JuDh2QeqK5WiIzy2gndPSfammwHefm/oXEzC6NCOgLGKx7vCYA0yYWS+jq0JO5/BDL9RvNRBfS59uUDhbJy4z4R0hUoGKPdns5mTU0KsvrbYtkNaTOXBAm1csIhtQ==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EIGTlcECGMT0iNcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUODZZZkR3NEluMmZUaFI1YkQrOVQ0Wml4TWNzRkJMVnZGQlNDQUZBaE1SOG5JSkFlTXBXSEdIeFBxZHcxQTlpU1hRejgvaUM5QWQ0Tjl6c29pR2ppcEpBcWhuUDgrZXZZZlczUHZxOWVjSFhTRVZMYm8xdDNHMENIbUY1L3hlVytad0grT2p1TDgxVmtTVWJmbjhONXBtbVlxSW5kZW41bThDWmZyKzRSZjVyZlFMaXdLaWJKUGNpZ0dSWVJBUUEvTXlDdFdNWmFLeUhkc0huWGpXVXAyN2J4WENzSlhpemVxbnJwZU55NldHVVF6cHNWbmQwa0doa1BqZk9LNWVZNXdpYVI0SkhMdW9LZ2hiNG9FL2h4Q2QyWWVPR01YMlJUMFpieHN4WFNocThSTUJCc0VqV2hHRUUyNzdSMUVaK3VpVlBNTWh3QmdlRWhsaFBaS3BvVDNaOVo3dVFsMDJDMlZwdkpmSjJGRlpOMGxmR2M5bjY2QzNMRkh3dW1uajVxeUd0MUp1RGgyUWVxSzVXaUl6eTJnbmRQU2ZhbW13SGVmbS9vWEV6QzZOQ09nTEdLeDd2Q1lBMHlZV1MranEwSk81L0JETDlSdk5SQmZTNTl1VURoYkp5NHo0UjBoVW9HS1BkbnM1bVRVMEtzdnJiWXRrTmFUT1hCQW0xY3NJaHRRPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAADAZD95mpmZmZklMT+CAQlhYyB3aW5kb3eQAa67ncsG4AHD/aWApAHpAQAAAOCVJfE/8QEAAABADfzwP8gMD+AMAekMAAAAQNDcqj+JDXsUrkfhepQ/kQ0AAAD3U73aQKENAAAAQFOeZEG5DT8wAei6MVNA+A2AgLyb3QiwDtfx56AB4g4Mqo0Gx40G1Y4G8JAGuQ/Idr6fGp9ZP8EPSXFWkNs5AT/IDxGgEALiGYALRW9VQk15NHdNamswTEMweExDMHhMQzB4TEMweExETXVNRFl3TURBd01EQXdNREF3TURBeE5Dd3hMREF1TURFeE5URTVNVGsxTnpneU1EazFOVGtzTFRFc01DNDNOVFk1TVRjME1qTTRPREExTVRNekxERXVNREF3TURFeU15d3hOamd4TGpZNU1UazBOekkwTWpVM05qWXNNQzR5TURZek16YzJPRGN5TmpFeU9Ea3hNaXd0TVIyNnkxbEtJSm5sa3dVdHNlRkJRRFVBQUlBL1NoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNEluUHJoQkJFQUFBQUFBQUFBQUVvT0NNQ0g0Z1FSQUFBQUFBQUFBQUJLRGdpRWd1SUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBVWc0SWhJTGlCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NKejY0UVFSQUFBQUFBQUFBQUJTRGdqQWgrSUVFUUFBQUFBQUFBQUFXZ2NJblByaEJCQUFXZ2NJd0lmaUJCQUFXZ2NJaElMaUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFXZ2tJZ0lDQWdJQUVFQUJpRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJpRGdpYyt1RUVFUUFBQUFBQUFBQUFZZzRJd0lmaUJCRUFBQUFBQUFBQUFHSU9DSVNDNGdRUkFBQUFBQUFBQUFCaURnaXE4NVlERVFBQUFBQUFBUEEvWWc0SXJQT1dBeEVBQUFBQUFBQUFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQnhBQUFBNE1TcEl6OTVBQUFBd0ZRRzZUNkJBUUFBQUFEVndZZEJpUUVBQUFBZ3FnUWhRWkVCQUFDQXFPY0ZpRUdaQVFBQUFLQThDWkJCb1FFQUFBQkFmL2ttUWFrQkFBQ0FuaTgza0VHS0FqNHdMakF3TURFMU1Dd3hMakF3TURBd01Dd3hMakEyTkRFMk5Dd3hMakkxTURBd01Dd3hMakk1T1RJeE55d3hMalF3TURBd01Dd3hMalV3TURBd01Ka0NmaFN1UitGNkNFQ2hBZ0FBZ0o0dk41QkJ1UUkyZFI0Vi8vZmlQOEVDQUFBQUFBQUFBSURLQWdzSUFSRUFBQUFBQUFBQUFNb0NDd2dDRVFBQUFBQUFBQUNBMlFJQUZMdDN1N0p0UWVFQ0FGdWwvbHREREVIcEFsZENNVis3UkhaQnVRT3RtU1hCNkpIb1A4RURndGZPUWVMSDZUL0pBNXF2b0UrSmNPcy8wUU9temFSQi9ZdnZQNEVFQUFBQW9DUGhJRCtKQkFBQUFBQzJSeDQva0FTYkE1Z0VpcUt3akpQN0FxQUV0OWVPN0J5b0JJQ280c2FsQXJnRXpxZUJ0MGZBQklYL2o2Tmt5UVFBQUFBQUFNQmtQK0VFQUFBQUFBREFaRC9wQkFBQUFBQUFBUEEvOFFRQUFBQUFBQUR3UC9rRUFBQUFBQUFBOEQrQkJRQUFBQUFBQVBBL2lRVUFBQUFBQUFEd1A1RUZBQUFBQUFBQThEK1pCUUFBQUFDL3BpTS9vUVVBQUFBQUFBRHdQNmtGQUFBQW9OQUc4VCt4QlFBQUFBQUFBUFEvdVFVQUFBQWdtTW4wUDhFRkFBQUFZR1ptOWovSkJRQUFBQUFBQVBnL+oZAgsW8hkCzQj6GZoGCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQlEuYHT9JhkQQoaCg10cmFmZmljX2Jvb3N0EgkJ/LP81UG9vz8KFAoOc2hvcF9ibGFja2xpc3QSAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigBChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjM3LCJhcGkyX2xhdGVuY3lfbXMiOjYzLCJhcGkzX2xhdGVuY3lfbXMiOjIsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzMsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTEyLCJhcGkyX2Fkc19jb3VudCI6MzA2LCJhcGkzX2Fkc19jb3VudCI6OH0KKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKEgoMdm91Y2hlcl9sZW5zEgIQAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF80ODE1NDA2MDkzMAoaCg1iaXpfcXVldWVfaWRzEgkiB2FkcyxvcmcKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQlEPEyCXbbaQAojChByZWNhbGxfcXVldWVfaWRzEg8iDTYxMTAxMDEwNCxvcmegHwOwH4CAgIDggIUkyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklAACAni83kEHZJWQa7umrMVNA6SUAxbwyJ/hSQPIlBlNFQVJDSA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 48154060930,
            "shopid": 28505754,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":10810010,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mizr9qp64q9w37\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,47,2068629,2023641,1000167,298938357,1428713,1718087960,844931064601283,844931086908638,1400066568,298463379,1049112,700005512,822059908662278,825465608499232,825465608497696,1718093079,1718596,298488495,1015914,700190087,2213765,2098628,298468389,298938368,1718088045,2098629],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":1856,\"model_id\":425383753963,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:20 match_weight:1 loss_weight:1 extra_info:\\\"CaimXmffAM2/EWAaL7pFpaG/GUOBxXT3rKY/IfKK5+mlEC9A\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3424674154262910\",\"rule_id\":\"569568\",\"target\":\"1\"},\"relevance_level\":1,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":10810010,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mizr9qp64q9w37\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,47,2068629,2023641,1000167,298938357,1428713,1718087960,844931064601283,844931086908638,1400066568,298463379,1049112,700005512,822059908662278,825465608499232,825465608497696,1718093079,1718596,298488495,1015914,700190087,2213765,2098628,298468389,298938368,1718088045,2098629],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":1856,\"model_id\":425383753963,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:20 match_weight:1 loss_weight:1 extra_info:\\\"CaimXmffAM2/EWAaL7pFpaG/GUOBxXT3rKY/IfKK5+mlEC9A\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3424674154262910\",\"rule_id\":\"569568\",\"target\":\"1\"},\"relevance_level\":1,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EIGTlcECGMT0iNcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUODZZZkR3NEluMmZUaFI1YkQrOVQ0Wml4TWNzRkJMVnZGQlNDQUZBaE1SOG5JSkFlTXBXSEdIeFBxZHcxQTlpU1hRejgvaUM5QWQ0Tjl6c29pR2ppcEpBcWhuUDgrZXZZZlczUHZxOWVjSFhTRVZMYm8xdDNHMENIbUY1L3hlVytad0grT2p1TDgxVmtTVWJmbjhONXBtbVlxSW5kZW41bThDWmZyKzRSZjVyZlFMaXdLaWJKUGNpZ0dSWVJBUUEvTXlDdFdNWmFLeUhkc0huWGpXVXAyN2J4WENzSlhpemVxbnJwZU55NldHVVF6cHNWbmQwa0doa1BqZk9LNWVZNXdpYVI0SkhMdW9LZ2hiNG9FL2h4Q2QyWWVPR01YMlJUMFpieHN4WFNocThSTUJCc0VqV2hHRUUyNzdSMUVaK3VpVlBNTWh3QmdlRWhsaFBaS3BvVDNaOVo3dVFsMDJDMlZwdkpmSjJGRlpOMGxmR2M5bjY2QzNMRkh3dW1uajVxeUd0MUp1RGgyUWVxSzVXaUl6eTJnbmRQU2ZhbW13SGVmbS9vWEV6QzZOQ09nTEdLeDd2Q1lBMHlZV1MranEwSk81L0JETDlSdk5SQmZTNTl1VURoYkp5NHo0UjBoVW9HS1BkbnM1bVRVMEtzdnJiWXRrTmFUT1hCQW0xY3NJaHRRPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAADAZD95mpmZmZklMT+CAQlhYyB3aW5kb3eQAa67ncsG4AHD/aWApAHpAQAAAOCVJfE/8QEAAABADfzwP8gMD+AMAekMAAAAQNDcqj+JDXsUrkfhepQ/kQ0AAAD3U73aQKENAAAAQFOeZEG5DT8wAei6MVNA+A2AgLyb3QiwDtfx56AB4g4Mqo0Gx40G1Y4G8JAGuQ/Idr6fGp9ZP8EPSXFWkNs5AT/IDxGgEALiGYALRW9VQk15NHdNamswTEMweExDMHhMQzB4TEMweExETXVNRFl3TURBd01EQXdNREF3TURBeE5Dd3hMREF1TURFeE5URTVNVGsxTnpneU1EazFOVGtzTFRFc01DNDNOVFk1TVRjME1qTTRPREExTVRNekxERXVNREF3TURFeU15d3hOamd4TGpZNU1UazBOekkwTWpVM05qWXNNQzR5TURZek16YzJPRGN5TmpFeU9Ea3hNaXd0TVIyNnkxbEtJSm5sa3dVdHNlRkJRRFVBQUlBL1NoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNEluUHJoQkJFQUFBQUFBQUFBQUVvT0NNQ0g0Z1FSQUFBQUFBQUFBQUJLRGdpRWd1SUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBVWc0SWhJTGlCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NKejY0UVFSQUFBQUFBQUFBQUJTRGdqQWgrSUVFUUFBQUFBQUFBQUFXZ2NJblByaEJCQUFXZ2NJd0lmaUJCQUFXZ2NJaElMaUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFXZ2tJZ0lDQWdJQUVFQUJpRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJpRGdpYyt1RUVFUUFBQUFBQUFBQUFZZzRJd0lmaUJCRUFBQUFBQUFBQUFHSU9DSVNDNGdRUkFBQUFBQUFBQUFCaURnaXE4NVlERVFBQUFBQUFBUEEvWWc0SXJQT1dBeEVBQUFBQUFBQUFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQnhBQUFBNE1TcEl6OTVBQUFBd0ZRRzZUNkJBUUFBQUFEVndZZEJpUUVBQUFBZ3FnUWhRWkVCQUFDQXFPY0ZpRUdaQVFBQUFLQThDWkJCb1FFQUFBQkFmL2ttUWFrQkFBQ0FuaTgza0VHS0FqNHdMakF3TURFMU1Dd3hMakF3TURBd01Dd3hMakEyTkRFMk5Dd3hMakkxTURBd01Dd3hMakk1T1RJeE55d3hMalF3TURBd01Dd3hMalV3TURBd01Ka0NmaFN1UitGNkNFQ2hBZ0FBZ0o0dk41QkJ1UUkyZFI0Vi8vZmlQOEVDQUFBQUFBQUFBSURLQWdzSUFSRUFBQUFBQUFBQUFNb0NDd2dDRVFBQUFBQUFBQUNBMlFJQUZMdDN1N0p0UWVFQ0FGdWwvbHREREVIcEFsZENNVis3UkhaQnVRT3RtU1hCNkpIb1A4RURndGZPUWVMSDZUL0pBNXF2b0UrSmNPcy8wUU9temFSQi9ZdnZQNEVFQUFBQW9DUGhJRCtKQkFBQUFBQzJSeDQva0FTYkE1Z0VpcUt3akpQN0FxQUV0OWVPN0J5b0JJQ280c2FsQXJnRXpxZUJ0MGZBQklYL2o2Tmt5UVFBQUFBQUFNQmtQK0VFQUFBQUFBREFaRC9wQkFBQUFBQUFBUEEvOFFRQUFBQUFBQUR3UC9rRUFBQUFBQUFBOEQrQkJRQUFBQUFBQVBBL2lRVUFBQUFBQUFEd1A1RUZBQUFBQUFBQThEK1pCUUFBQUFDL3BpTS9vUVVBQUFBQUFBRHdQNmtGQUFBQW9OQUc4VCt4QlFBQUFBQUFBUFEvdVFVQUFBQWdtTW4wUDhFRkFBQUFZR1ptOWovSkJRQUFBQUFBQVBnL+oZAgsW8hkCzQj6GZoGCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQlEuYHT9JhkQQoaCg10cmFmZmljX2Jvb3N0EgkJ/LP81UG9vz8KFAoOc2hvcF9ibGFja2xpc3QSAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigBChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjM3LCJhcGkyX2xhdGVuY3lfbXMiOjYzLCJhcGkzX2xhdGVuY3lfbXMiOjIsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzMsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTEyLCJhcGkyX2Fkc19jb3VudCI6MzA2LCJhcGkzX2Fkc19jb3VudCI6OH0KKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKEgoMdm91Y2hlcl9sZW5zEgIQAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF80ODE1NDA2MDkzMAoaCg1iaXpfcXVldWVfaWRzEgkiB2FkcyxvcmcKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQlEPEyCXbbaQAojChByZWNhbGxfcXVldWVfaWRzEg8iDTYxMTAxMDEwNCxvcmegHwOwH4CAgIDggIUkyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklAACAni83kEHZJWQa7umrMVNA6SUAxbwyJ/hSQPIlBlNFQVJDSA==",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48154060930",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 5608458516,
              "shopid": 202812301,
              "name": "[HEMAT DAYA] CHANGHONG AC 1 PK STANDARD - CSC 09RDX4A  Low Watt [INDOOR + OUTDOOR UNIT ONLY] [LOW WATT] [SLEEP MODE] [DOUBLE CORROSION PROTECTION]",
              "label_ids": [
                1000109,
                1000230,
                1000381,
                1000544,
                1002164,
                1011692,
                1400095067,
                1400285005,
                1000245,
                1000380,
                68,
                1000961,
                22,
                1001036,
                1113619,
                1015914,
                700190087,
                844931026694327,
                844931046478970,
                844931064601283,
                1400285055,
                1,
                298458335,
                1668726,
                1134053,
                700585046,
                1718072935,
                1718087960,
                1428713,
                2018618,
                1012763,
                298463379,
                1718093079,
                2153644,
                700830032,
                2213652,
                700005490,
                1049120,
                822059908662278,
                834403089593352,
                825465608497696,
                2008656,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224y-miworrj0lm9t68",
              "images": [
                "id-11134207-8224y-miworrj0lm9t68",
                "id-11134207-8224q-mgwerqbtr7ke3d",
                "id-11134207-7r98o-lvhqrwrlujyg44",
                "id-11134207-7r98x-lvhqrwrluk0ie3",
                "id-11134207-7r98w-lvhqrwrluk1zf4",
                "id-11134207-7r98p-lvhqrwrlujzjbb",
                "id-11134207-7r992-lvhqrwrlvyiw3d",
                "id-11134207-7r98q-lvhqrwszsjb702",
                "id-11134207-7r98t-lvhqrwrlujt56d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1574672804,
              "sold": 24,
              "historical_sold": 649,
              "liked": false,
              "liked_count": 1903,
              "view_count": null,
              "catid": 100010,
              "brand": "Changhong",
              "cmt_count": 255,
              "flag": 917504,
              "cb_option": 0,
              "item_status": "normal",
              "price": 374900000000,
              "price_min": 374900000000,
              "price_max": 374900000000,
              "price_min_before_discount": 599900000000,
              "price_max_before_discount": 599900000000,
              "hidden_price_display": null,
              "price_before_discount": 599900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-38%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvc-mdyfkybewc938b.16000081756372789.mp4",
                  "thumb_url": "id-11110105-6vdvc-mdyfkybewc938b_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6vdvc-mdyfkybewc938b",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvc-mdyfkybewc938b.16000081756372789.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvc-mdyfkybewc938b.16000081756372789.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvc-mdyfkybewc938b.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.837037037037037,
                "rating_count": [
                  270,
                  5,
                  1,
                  3,
                  15,
                  246
                ],
                "rcount_with_context": 74,
                "rcount_with_image": 63
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-7r98t-lrn9f48hlc3d67",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227866059223042,
                "price": 344900000000,
                "strikethrough_price": 599900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1287522198765568,
                "discount_text": "-38%",
                "model_id": 247983314868,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1287522198765568,
                  "voucher_code": "CHANVOUCH",
                  "voucher_discount": 30000000000,
                  "time_info": {
                    "start_time": 1762943880,
                    "end_time": 1770741840,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 599900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 649,
                "rounded_local_monthly_sold_count": 24,
                "local_monthly_sold_count_text": "24",
                "rounded_display_sold_count": 649,
                "display_sold_count_text": "649"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Changhong Home Appliance Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 537711538,
            "campaignid": 418854133,
            "distance": null,
            "match_type": 1,
            "ads_keyword": "ac changhong",
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT6ZVq6bRzs0CPQV+QELB0rypam8TU9snrW0E4n3y/09i/Qd4idMZDTVpVw3BUE0QjdicPSnl8gSXrS5R9jtqSaUcmkGsBBqCIQTkg2zYhyN9dN35a9TTswlmAKwK98CqwTRMTsb7wbUzX7jX4/pbRTb/URPw0gVsrJ5yXBWcvYZkfMwdypI/2ZKnVbEe1Bdn6eMDIQlFnsBB5BugXYo6qKQMRBAOEkr1fELWnsCl8V+lyCX463eBBikJsDI9xsoq7TJK5pZpF8qEYHAjatpRD40DuYg3TqLCqiU42xrBoo75lR8B4YcrM6xcN2n8esZMSgj0hlXp2I1+a4P4Yc+KvcMuH+2fvmFP4KMU+rjApsBrUqpZk8TFxt1LBi17WU/LG6xE70NdW9UIlUYdilz11IJfqQ8ZXW1TiO5Zwd+eY2rNmUZQpRSuN3Jf7NqgAvuOIg829k+Vd8ixn+WtT0GGhrld1ucAjFrcMilZQlSnTCR0qcuI5mBa0AiAORMHttQLCA==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8ELKns4ACGPXp3McBIgxhYyBjaGFuZ2hvbmcoATKYBGRXdGtWR0ZSUVVGQlFVSnpXakpHVDZaVnE2YlJ6czBDUFFWK1FFTEIwcnlwYW04VFU5c25yVzBFNG4zeS8wOWkvUWQ0aWRNWkRUVnBWdzNCVUUwUWpkaWNQU25sOGdTWHJTNVI5anRxU2FVY21rR3NCQnFDSVFUa2cyelloeU45ZE4zNWE5VFRzd2xtQUt3Szk4Q3F3VFJNVHNiN3diVXpYN2pYNC9wYlJUYi9VUlB3MGdWc3JKNXlYQldjdllaa2ZNd2R5cEkvMlpLblZiRWUxQmRuNmVNRElRbEZuc0JCNUJ1Z1hZbzZxS1FNUkJBT0VrcjFmRUxXbnNDbDhWK2x5Q1g0NjNlQkJpa0pzREk5eHNvcTdUSks1cFpwRjhxRVlIQWphdHBSRDQwRHVZZzNUcUxDcWlVNDJ4ckJvbzc1bFI4QjRZY3JNNnhjTjJuOGVzWk1TZ2owaGxYcDJJMSthNFA0WWMrS3ZjTXVIKzJmdm1GUDRLTVUrcmpBcHNCclVxcFprOFRGeHQxTEJpMTdXVS9MRzZ4RTcwTmRXOVVJbFVZZGlsejExSUpmcVE4WlhXMVRpTzVad2QrZVkyck5tVVpRcFJTdU4zSmY3TnFnQXZ1T0lnODI5aytWZDhpeG4rV3RUMEdHaHJsZDF1Y0FqRnJjTWlsWlFsU25UQ1IwcWN1STVtQmEwQWlBT1JNSHR0UUxDQT09UqMBYmZmLXNlYXJjaF9pZF9zZzEyXzEwLjE0OS40Ny44MV97YjExYmEzYWY0ODU1N2QyMmY0ZWNlMTRlMGVmMDZkMDA6MDIwMDAwYTIyNjZhYjc5OTowMTAwMDE1ZjA3ZTA5ODIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIxMjQ3MDY3MXEAAAAAAIxrP3lcj8L1KJAnP4IBCWFjIHdpbmRvd5ABrrudywbgAfKhwoXxBukBAAAA4JUl8T/xAQAAAOAUavA/yAwC4AwBiQ17FK5H4XqUP5ENAABAYjnJDkGhDQAAAACj4ZFBuQ1kGu7pqzFTQPgNgICW7doJsA6Ah6cO4g4Mqo0Gx40G1Y4G8JAGuQ8pXI/C9eBjP8EPSK+8mvLXyj7IDxLiGdwBRWxBekxqUXhNVGd5TmpFMk1qTTJOemszTkN3dE1Td3RNU3d0TVN3dE1Td3RNU3d0TVN3dE1Td3RNU3d0TVN3dE1Td3hNUzR6TXpjNE56UTBOQ3d6Tmk0eU16STVOemMwT1RVeU16azFOaXd0TVIwSFpSVk9JUEMrN1B3SExWeGJXa0ExQUFDQVA2RUNmWm9rNHFDc3drRzVBaGhjYzBmL3krRS93UUlBQUFBQUFBQUFnTW9DQ3dnQkVRQUFBQUFBQUFBQXlnSUxDQUlSQUFBQUFBQUFBSUNRQkpzROoZBLpNwk36GaIGCiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF81NjA4NDU4NTE2Cg0KB2lzX3Zza3USAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo1NywiYXBpMV9sYXRlbmN5X21zIjozNywiYXBpMl9sYXRlbmN5X21zIjo2MywiYXBpM19sYXRlbmN5X21zIjoyLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjMzLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTUxMiwiYXBpMl9hZHNfY291bnQiOjMwNiwiYXBpM19hZHNfY291bnQiOjh9ChIKDHZvdWNoZXJfbGVucxICEAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACi0KEHJlY2FsbF9xdWV1ZV9pZHMSGSIXMTExNTIwMzAxLDYxMTAzMDExMCxvcmcKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKGQoNYml6X3F1ZXVlX2lkcxIIIgYtMSxvcmcKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoALAfkIKAkICAgIAYyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklfZok4qCswkHZJWb7R2uZMVNA6SVkGu5pBf5SQPIlBlNFQVJDSA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                4
              ]
            },
            "itemid": 5608458516,
            "shopid": 202812301,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":75000000,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-miworrj0lm9t68\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"ads\",\"label_ids\":[1000109,1000230,1000381,1000544,1002164,1011692,1400095067,1400285005,1000245,1000380,68,1000961,22,1001036,1113619,1015914,700190087,844931026694327,844931046478970,844931064601283,1400285055,1,298458335,1668726,1134053,700585046,1718072935,1718087960,1428713,2018618,1012763,298463379,1718093079,2153644,700830032,2213652,700005490,1049120,822059908662278,834403089593352,825465608497696,2008656,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4253,\"model_id\":247983314868,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":2,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":75000000,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-miworrj0lm9t68\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"ads\",\"label_ids\":[1000109,1000230,1000381,1000544,1002164,1011692,1400095067,1400285005,1000245,1000380,68,1000961,22,1001036,1113619,1015914,700190087,844931026694327,844931046478970,844931064601283,1400285055,1,298458335,1668726,1134053,700585046,1718072935,1718087960,1428713,2018618,1012763,298463379,1718093079,2153644,700830032,2213652,700005490,1049120,822059908662278,834403089593352,825465608497696,2008656,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4253,\"model_id\":247983314868,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":2,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": "",
            "creative_id": "",
            "creative_id_int": 0,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 2,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8ELKns4ACGPXp3McBIgxhYyBjaGFuZ2hvbmcoATKYBGRXdGtWR0ZSUVVGQlFVSnpXakpHVDZaVnE2YlJ6czBDUFFWK1FFTEIwcnlwYW04VFU5c25yVzBFNG4zeS8wOWkvUWQ0aWRNWkRUVnBWdzNCVUUwUWpkaWNQU25sOGdTWHJTNVI5anRxU2FVY21rR3NCQnFDSVFUa2cyelloeU45ZE4zNWE5VFRzd2xtQUt3Szk4Q3F3VFJNVHNiN3diVXpYN2pYNC9wYlJUYi9VUlB3MGdWc3JKNXlYQldjdllaa2ZNd2R5cEkvMlpLblZiRWUxQmRuNmVNRElRbEZuc0JCNUJ1Z1hZbzZxS1FNUkJBT0VrcjFmRUxXbnNDbDhWK2x5Q1g0NjNlQkJpa0pzREk5eHNvcTdUSks1cFpwRjhxRVlIQWphdHBSRDQwRHVZZzNUcUxDcWlVNDJ4ckJvbzc1bFI4QjRZY3JNNnhjTjJuOGVzWk1TZ2owaGxYcDJJMSthNFA0WWMrS3ZjTXVIKzJmdm1GUDRLTVUrcmpBcHNCclVxcFprOFRGeHQxTEJpMTdXVS9MRzZ4RTcwTmRXOVVJbFVZZGlsejExSUpmcVE4WlhXMVRpTzVad2QrZVkyck5tVVpRcFJTdU4zSmY3TnFnQXZ1T0lnODI5aytWZDhpeG4rV3RUMEdHaHJsZDF1Y0FqRnJjTWlsWlFsU25UQ1IwcWN1STVtQmEwQWlBT1JNSHR0UUxDQT09UqMBYmZmLXNlYXJjaF9pZF9zZzEyXzEwLjE0OS40Ny44MV97YjExYmEzYWY0ODU1N2QyMmY0ZWNlMTRlMGVmMDZkMDA6MDIwMDAwYTIyNjZhYjc5OTowMTAwMDE1ZjA3ZTA5ODIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIxMjQ3MDY3MXEAAAAAAIxrP3lcj8L1KJAnP4IBCWFjIHdpbmRvd5ABrrudywbgAfKhwoXxBukBAAAA4JUl8T/xAQAAAOAUavA/yAwC4AwBiQ17FK5H4XqUP5ENAABAYjnJDkGhDQAAAACj4ZFBuQ1kGu7pqzFTQPgNgICW7doJsA6Ah6cO4g4Mqo0Gx40G1Y4G8JAGuQ8pXI/C9eBjP8EPSK+8mvLXyj7IDxLiGdwBRWxBekxqUXhNVGd5TmpFMk1qTTJOemszTkN3dE1Td3RNU3d0TVN3dE1Td3RNU3d0TVN3dE1Td3RNU3d0TVN3dE1Td3hNUzR6TXpjNE56UTBOQ3d6Tmk0eU16STVOemMwT1RVeU16azFOaXd0TVIwSFpSVk9JUEMrN1B3SExWeGJXa0ExQUFDQVA2RUNmWm9rNHFDc3drRzVBaGhjYzBmL3krRS93UUlBQUFBQUFBQUFnTW9DQ3dnQkVRQUFBQUFBQUFBQXlnSUxDQUlSQUFBQUFBQUFBSUNRQkpzROoZBLpNwk36GaIGCiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF81NjA4NDU4NTE2Cg0KB2lzX3Zza3USAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo1NywiYXBpMV9sYXRlbmN5X21zIjozNywiYXBpMl9sYXRlbmN5X21zIjo2MywiYXBpM19sYXRlbmN5X21zIjoyLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjMzLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTUxMiwiYXBpMl9hZHNfY291bnQiOjMwNiwiYXBpM19hZHNfY291bnQiOjh9ChIKDHZvdWNoZXJfbGVucxICEAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACi0KEHJlY2FsbF9xdWV1ZV9pZHMSGSIXMTExNTIwMzAxLDYxMTAzMDExMCxvcmcKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKGQoNYml6X3F1ZXVlX2lkcxIIIgYtMSxvcmcKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoALAfkIKAkICAgIAYyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklfZok4qCswkHZJWb7R2uZMVNA6SVkGu5pBf5SQPIlBlNFQVJDSA==",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_5608458516",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42024860765,
              "shopid": 273223463,
              "name": "AC Reiwa CW0501RA Window 1/2 PK CW 0501RA 0,5 PK",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1049116,
                1049117,
                1718093079,
                822059908662278,
                825465608497696,
                825465608492064,
                825465608499232,
                1015914,
                700190087,
                1400025118,
                2048660,
                2048661,
                1400285055,
                2108629,
                1718088045,
                997921049,
                1718088046,
                997921050,
                298468389,
                700585042,
                1718093085
              ],
              "image": "id-11134207-82252-mfyuh8utks24d0",
              "images": [
                "id-11134207-82252-mfyuh8utks24d0",
                "id-11134207-8224s-mfyuh8utm6mk03",
                "id-11134207-82250-mfyuh8utnl70ee",
                "id-11134207-8224y-mfyuh8utozrg48",
                "id-11134207-8224s-mfyuh8utqebw07",
                "id-11134207-82251-mfyuh8uthyx836"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760757869,
              "sold": 2,
              "historical_sold": 16,
              "liked": false,
              "liked_count": 20,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 9,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194900000000,
              "price_min": 194900000000,
              "price_max": 194900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.777777777777778,
                "rating_count": [
                  9,
                  0,
                  0,
                  0,
                  2,
                  7
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 194900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 249041350244,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 194900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 16,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 16,
                "display_sold_count_text": "16"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EJG Elektronik",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000,
                97,
                4
              ]
            },
            "itemid": 42024860765,
            "shopid": 273223463,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mfyuh8utks24d0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1049116,1049117,1718093079,822059908662278,825465608497696,825465608492064,825465608499232,1015914,700190087,1400025118,2048660,2048661,1400285055,2108629,1718088045,997921049,1718088046,997921050,298468389,700585042,1718093085],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\"],\"merge_rank\":3112,\"model_id\":249041350244,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mfyuh8utks24d0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1049116,1049117,1718093079,822059908662278,825465608497696,825465608492064,825465608499232,1015914,700190087,1400025118,2048660,2048661,1400285055,2108629,1718088045,997921049,1718088046,997921050,298468389,700585042,1718093085],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\"],\"merge_rank\":3112,\"model_id\":249041350244,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42024860765",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44458669661,
              "shopid": 1580715481,
              "name": "Window AC 1/2 PK REIWA CW0501RA / Tanpa Pipa AC / Window Air Conditioner 0,5 PK Palembang",
              "label_ids": [
                844931064601283,
                844931086908638,
                298463379,
                1049128,
                700005504,
                822059908662278,
                825465608499232,
                834403089593352,
                825465608497696,
                825465608492064,
                1718093079,
                2023641,
                1400285055,
                2018619,
                1718093065,
                2048660,
                2048661,
                2108629,
                298933384,
                700765096,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7ra0l-mc8u2778g9txc5",
              "images": [
                "id-11134207-7ra0l-mc8u2778g9txc5",
                "id-11134207-7ra0m-mc8u2778j2yt8d",
                "sg-11134201-7rdws-mc8vovc5bkohb7",
                "sg-11134201-7rdvq-mc8uoctqzmbl11",
                "id-11134207-7ra0g-mc8u2778dgp170",
                "id-11134207-7ra0n-mc8u2778ev9hc5",
                "id-11134207-7ra0j-mc8u2778hoed81",
                "sg-11134201-7rdw8-mc8vovqkqg7t6b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1752646727,
              "sold": 0,
              "historical_sold": 14,
              "liked": false,
              "liked_count": 6,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 8,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 223500000000,
              "price_min": 223500000000,
              "price_max": 223500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6ko2h-mc923dylhi6f34.16000091752657496.mp4",
                  "thumb_url": "id-11110107-6ko2h-mc923dylhi6f34_cover",
                  "duration": 29,
                  "version": 2,
                  "vid": "id-11110107-6ko2h-mc923dylhi6f34",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ko2h-mc923dylhi6f34.16000091752657496.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ko2h-mc923dylhi6f34.16000091752657496.mp4",
                      "width": 270,
                      "height": 480
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ko2h-mc923dylhi6f34.default.mp4",
                    "width": 360,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  8,
                  0,
                  0,
                  0,
                  0,
                  8
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Palembang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 223300000000,
                "strikethrough_price": 223500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1306322126520320,
                "discount_text": null,
                "model_id": 295730292897,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1306322126520320,
                  "voucher_code": "CIPTUFPIE",
                  "voucher_discount": 200000000,
                  "time_info": {
                    "start_time": 1765185015,
                    "end_time": 1768468080,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 223500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 14,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 14,
                "display_sold_count_text": "14"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Cipta jaya",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                1000,
                1000,
                0,
                1000
              ]
            },
            "itemid": 44458669661,
            "shopid": 1580715481,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0l-mc8u2778g9txc5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1049128,700005504,822059908662278,825465608499232,834403089593352,825465608497696,825465608492064,1718093079,2023641,1400285055,2018619,1718093065,2048660,2048661,2108629,298933384,700765096,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":959,\"model_id\":295730292897,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0l-mc8u2778g9txc5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1049128,700005504,822059908662278,825465608499232,834403089593352,825465608497696,825465608492064,1718093079,2023641,1400285055,2018619,1718093065,2048660,2048661,2108629,298933384,700765096,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":959,\"model_id\":295730292897,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44458669661",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29269741745,
              "shopid": 466645045,
              "name": "FLIFE AC 1/2 PK Standard - Turbo Mode - Gold Fin Anti Korosi  - Fitur Dehumidifier - FAC-05FMOO3",
              "label_ids": [
                1002164,
                1011692,
                1428713,
                1718087960,
                844931064601283,
                1059152,
                1049122,
                1718093079,
                1015914,
                700190087,
                1000031,
                1918643,
                1400285055,
                298813370,
                2018618,
                1993653,
                298463379,
                1012729,
                298893311,
                822059908662278,
                834403089593352,
                825465608497696,
                825465608499232,
                825465608494624,
                2153644,
                700830032,
                298888358,
                298938357,
                2213652,
                700810055,
                700700063,
                2008656,
                1718088045,
                2098629,
                2098628,
                298468389,
                298938368
              ],
              "image": "id-11134207-8224w-mivdnqjae9z79d",
              "images": [
                "id-11134207-8224w-mivdnqjae9z79d",
                "id-11134207-81ztk-mepj18yz21ol6c",
                "id-11134207-81zti-mepj18zan8cib1",
                "id-11134207-81zte-mepj18yw63nq68",
                "id-11134207-81ztm-mepj18zcr30k4f",
                "id-11134207-81ztc-mepj18z7afib57",
                "id-11134207-81zti-mepj18z7en7n4a",
                "id-11134207-81ztn-meqw5cowu77mb5",
                "id-11134207-81zte-meqw5cowssn627"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1733367869,
              "sold": 45,
              "historical_sold": 381,
              "liked": false,
              "liked_count": 884,
              "view_count": null,
              "catid": 100010,
              "brand": "Flife",
              "cmt_count": 153,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 304900000000,
              "price_min": 304900000000,
              "price_max": 304900000000,
              "price_min_before_discount": 569900000000,
              "price_max_before_discount": 569900000000,
              "hidden_price_display": null,
              "price_before_discount": 569900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-46%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6knay-m5v3skm5es4o03.16000041738737430.mp4",
                  "thumb_url": "id-11110105-6knay-m5v3skm5es4o03_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6knay-m5v3skm5es4o03",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knay-m5v3skm5es4o03.default.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knay-m5v3skm5es4o03.default.mp4",
                      "width": 640,
                      "height": 360
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knay-m5v3skm5es4o03.default.mp4",
                    "width": 640,
                    "height": 360
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Type",
                  "options": [
                    "1/2PK LOW WATT",
                    "1PK LOW WATT",
                    "1,5PK LOW WATT",
                    "1/2PK STANDARD",
                    "3/4PK STANDARD",
                    "1PK STANDARD",
                    "1,5PK STANDARD"
                  ],
                  "images": [
                    "id-11134207-8224v-mivdnqjafojnea",
                    "id-11134207-8224s-mivdnqja5ukje8",
                    "id-11134207-82252-mivdnqja794z00",
                    "id-11134207-8224w-mivdnqjae9z79d",
                    "id-11134207-8224p-mivdnqjaa29v30",
                    "id-11134207-8224q-mivdnqjabgub40",
                    "id-11134207-8224s-mivdnqjacver10"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.928104575163399,
                "rating_count": [
                  153,
                  1,
                  0,
                  0,
                  7,
                  145
                ],
                "rcount_with_context": 57,
                "rcount_with_image": 42
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134601-82251-mhh3zi3xepz418",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp508RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227858450755586,
                "price": 304900000000,
                "strikethrough_price": 569900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-46%",
                "model_id": 253732819368,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 569900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 381,
                "rounded_local_monthly_sold_count": 45,
                "local_monthly_sold_count_text": "45",
                "rounded_display_sold_count": 381,
                "display_sold_count_text": "381"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp508RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Flife Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 398919469,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT5nL0kENNPyHMaGGxEBTysYx6BSALubRTaHIgJY9DxoFWsE52QKLyA7Eb3UHmDWYX+Crj7rGMHjdFzZ/QE04Ub1B89DZKBQXCwVC6BxofIL3hKxR/cvxkcRzMuXDcgbVxOimsvP7uEYrLwmLarXFt0MUspgCL1OTcmkWnOMOLaMx4vNCEGdYHILgIE4AiMel8TkAdvE8Y1/y+NVg8h0TfDNcP4Ta6RDBzozR/pZ06RWaQvK83mZ3U63bUjmqhdqbhI2C66rOv+KAKAFqQKRb7fcic56tN8I/zO2p71kHqyqo0EO539C7iypdNRHRu8H5BJlfJLvHKutvQpgW4aSlyqN/AbxNtIxlMmxE51UZqPNtNoaicONIVX5vx0NT8enWOPsIB6BM/d2uHLV3oPOj4FYzVX4136sF9qZAj5LIXFYg7iiGW8wiB/C8kMJuuLyyT2JBW1ryW9OjXprBVhiTHMTNaWDMoAc54KhXdhZbfPMMkdePFJguRMv3iBAWPLGiRw==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EK2OnL4BGJfTpIsBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUNW5MMGtFTk5QeUhNYUdHeEVCVHlzWXg2QlNBTHViUlRhSElnSlk5RHhvRldzRTUyUUtMeUE3RWIzVUhtRFdZWCtDcmo3ckdNSGpkRnpaL1FFMDRVYjFCODlEWktCUVhDd1ZDNkJ4b2ZJTDNoS3hSL2N2eGtjUnpNdVhEY2diVnhPaW1zdlA3dUVZckx3bUxhclhGdDBNVXNwZ0NMMU9UY21rV25PTU9MYU14NHZOQ0VHZFlISUxnSUU0QWlNZWw4VGtBZHZFOFkxL3krTlZnOGgwVGZETmNQNFRhNlJEQnpvelIvcFowNlJXYVF2SzgzbVozVTYzYlVqbXFoZHFiaEkyQzY2ck92K0tBS0FGcVFLUmI3ZmNpYzU2dE44SS96TzJwNzFrSHF5cW8wRU81MzlDN2l5cGROUkhSdThINUJKbGZKTHZIS3V0dlFwZ1c0YVNseXFOL0FieE50SXhsTW14RTUxVVpxUE50Tm9haWNPTklWWDV2eDBOVDhlbldPUHNJQjZCTS9kMnVITFYzb1BPajRGWXpWWDQxMzZzRjlxWkFqNUxJWEZZZzdpaUdXOHdpQi9DOGtNSnV1THl5VDJKQlcxcnlXOU9qWHByQlZoaVRITVROYVdETW9BYzU0S2hYZGhaYmZQTU1rZGVQRkpndVJNdjNpQkFXUExHaVJ3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAADIZz953SQGgZXDSD+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHcrLPY+QbpAQAAAOCVJfE/8QEAAAAADB/2P8gMD+AMAekMAAAAoJmZqT+JDXsUrkfhepQ/kQ0AAMh2qF7jQKENAAAAIFwQakG5DS4z4ol4MVNA+A2AgNqkogiwDq7hlZEB4g4Mqo0Gx40G1Y4G8JAGuQ/pJjEIrJhRP8EPSXFWkNs5AT/IDxXiGZgLRXBRQk1TNDFNRE13TXpnNE9EYzFOREUyTXpnMUxDMHhMQzB4TEMweExDMHhMREV1TlRFNE1qSXhNRGs0TlRJMk9UQTNOaXd4TGpJc01DNHdNakV3TURRNU5ERTVOemc0T0RFM01UUXNNQzQ1TERBdU56UXlPVEV4TlRVeU56WTJNekU0Tml3eExqQXdNREF4TWpNc05EQTBMamt5T0RRek5qSXlOVE13TWpnMUxEQXVORGcyTnpjd09EQTJOekEyTnpRME5pd3RNUjFPY3dCTElPQ0Z3Z1l0bEdQQVB6VUFBSUEvT1ZEZ3RCTXhkQlZDUWFZZHNNWFNrbUZDU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBY1FBQUFBQUgyak0vZVFBQUFDREZJUjQvZ1FFQUFBQ0F3YnlXUVlrQkFBQUE0QWtaZ2tHUkFRQUFBSEJHeVo5Qm1RRUFBQUJBdSt5YlFhRUJBQUFBSUpwdWlFR3BBUUFBQUNnRUVxUkI2QUVCZ0FLVUE0b0NQakF1TURBd05EZ3lMREV1TURBd01EQXdMREV1TURrM01Ua3dMREV1TWpVd01EQXdMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUwrVXVRMG9rcjRQNkVDQUFBQUtBUVNwRUc1QXBzNmo0ci9PK0Uvd1FJQUFBQUFBQUFBZ01vQ0N3Z0JFUUFBQUFBQUFBQUF5Z0lMQ0FJUkFBQUFBQUFBQUlEWkFnQlRQcHZyMDROQjRRS2d5YlF2eGNOd1Fla0M5dXRYU2ovVWtVR0tBekFBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQrWkEraVpheWU0V1JWQ29RTVJQSTRWQStKaFFya0RFV0ZkL0pPVDVEL0JBNFllcXM0Q28rWS95UU9BanRQS3l0L3BQOUVEWFNZbm5HeGI3ai82QXdrS0JVbHpUbEJDRUFENkF3c0tCMUp2YVZScFpYSVFBL29ERFFvSlQzSmtaWEpVYVdWeUVBUDZBeEVLRFVsMFpXMVFjbWxqWlZScFpYSVFBNEVFQUFBQW9QZE5MeitKQkFBQUFPQlZpQ2sva0FTYkE1Z0V1cW5Cb0psNm9BVGt4WmozSWFnRWdLekg4RGU0Qkp6bXJ2a1Z3QVNBck1md044a0VBQUFBQUFESVp6L2hCQUFBQUFBQXlHYy82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUNBZVpZL1A2RUZBQUFBQUFBQThEK3BCUUFBQUtBWGp2RS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQUFBQUQ0UHc9PeoZBLhNyU36GYwGChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJx43Rc1lU40AKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmcKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQnTepoTfQJqQQoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yOTI2OTc0MTc0NQoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjM3LCJhcGkyX2xhdGVuY3lfbXMiOjYzLCJhcGkzX2xhdGVuY3lfbXMiOjIsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzMsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTEyLCJhcGkyX2Fkc19jb3VudCI6MzA2LCJhcGkzX2Fkc19jb3VudCI6OH0KDQoHaXNfdnNrdRICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChIKDHZvdWNoZXJfbGVucxICEAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lksB/PgoCAoICAKMgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJQAAACgEEqRB2SWz1/kkTDFTQOkl3ErPEQ7eUkDyJQZTRUFSQ0g=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88
              ]
            },
            "itemid": 29269741745,
            "shopid": 466645045,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":13664993,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mivdnqjae9z79d\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,1011692,1428713,1718087960,844931064601283,1059152,1049122,1718093079,1015914,700190087,1000031,1918643,1400285055,298813370,2018618,1993653,298463379,1012729,298893311,822059908662278,834403089593352,825465608497696,825465608499232,825465608494624,2153644,700830032,298888358,298938357,2213652,700810055,700700063,2008656,1718088045,2098629,2098628,298468389,298938368],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4696,\"model_id\":253732819368,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":13664993,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mivdnqjae9z79d\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,1011692,1428713,1718087960,844931064601283,1059152,1049122,1718093079,1015914,700190087,1000031,1918643,1400285055,298813370,2018618,1993653,298463379,1012729,298893311,822059908662278,834403089593352,825465608497696,825465608499232,825465608494624,2153644,700830032,298888358,298938357,2213652,700810055,700700063,2008656,1718088045,2098629,2098628,298468389,298938368],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4696,\"model_id\":253732819368,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EK2OnL4BGJfTpIsBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUNW5MMGtFTk5QeUhNYUdHeEVCVHlzWXg2QlNBTHViUlRhSElnSlk5RHhvRldzRTUyUUtMeUE3RWIzVUhtRFdZWCtDcmo3ckdNSGpkRnpaL1FFMDRVYjFCODlEWktCUVhDd1ZDNkJ4b2ZJTDNoS3hSL2N2eGtjUnpNdVhEY2diVnhPaW1zdlA3dUVZckx3bUxhclhGdDBNVXNwZ0NMMU9UY21rV25PTU9MYU14NHZOQ0VHZFlISUxnSUU0QWlNZWw4VGtBZHZFOFkxL3krTlZnOGgwVGZETmNQNFRhNlJEQnpvelIvcFowNlJXYVF2SzgzbVozVTYzYlVqbXFoZHFiaEkyQzY2ck92K0tBS0FGcVFLUmI3ZmNpYzU2dE44SS96TzJwNzFrSHF5cW8wRU81MzlDN2l5cGROUkhSdThINUJKbGZKTHZIS3V0dlFwZ1c0YVNseXFOL0FieE50SXhsTW14RTUxVVpxUE50Tm9haWNPTklWWDV2eDBOVDhlbldPUHNJQjZCTS9kMnVITFYzb1BPajRGWXpWWDQxMzZzRjlxWkFqNUxJWEZZZzdpaUdXOHdpQi9DOGtNSnV1THl5VDJKQlcxcnlXOU9qWHByQlZoaVRITVROYVdETW9BYzU0S2hYZGhaYmZQTU1rZGVQRkpndVJNdjNpQkFXUExHaVJ3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAADIZz953SQGgZXDSD+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHcrLPY+QbpAQAAAOCVJfE/8QEAAAAADB/2P8gMD+AMAekMAAAAoJmZqT+JDXsUrkfhepQ/kQ0AAMh2qF7jQKENAAAAIFwQakG5DS4z4ol4MVNA+A2AgNqkogiwDq7hlZEB4g4Mqo0Gx40G1Y4G8JAGuQ/pJjEIrJhRP8EPSXFWkNs5AT/IDxXiGZgLRXBRQk1TNDFNRE13TXpnNE9EYzFOREUyTXpnMUxDMHhMQzB4TEMweExDMHhMREV1TlRFNE1qSXhNRGs0TlRJMk9UQTNOaXd4TGpJc01DNHdNakV3TURRNU5ERTVOemc0T0RFM01UUXNNQzQ1TERBdU56UXlPVEV4TlRVeU56WTJNekU0Tml3eExqQXdNREF4TWpNc05EQTBMamt5T0RRek5qSXlOVE13TWpnMUxEQXVORGcyTnpjd09EQTJOekEyTnpRME5pd3RNUjFPY3dCTElPQ0Z3Z1l0bEdQQVB6VUFBSUEvT1ZEZ3RCTXhkQlZDUWFZZHNNWFNrbUZDU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBY1FBQUFBQUgyak0vZVFBQUFDREZJUjQvZ1FFQUFBQ0F3YnlXUVlrQkFBQUE0QWtaZ2tHUkFRQUFBSEJHeVo5Qm1RRUFBQUJBdSt5YlFhRUJBQUFBSUpwdWlFR3BBUUFBQUNnRUVxUkI2QUVCZ0FLVUE0b0NQakF1TURBd05EZ3lMREV1TURBd01EQXdMREV1TURrM01Ua3dMREV1TWpVd01EQXdMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUwrVXVRMG9rcjRQNkVDQUFBQUtBUVNwRUc1QXBzNmo0ci9PK0Uvd1FJQUFBQUFBQUFBZ01vQ0N3Z0JFUUFBQUFBQUFBQUF5Z0lMQ0FJUkFBQUFBQUFBQUlEWkFnQlRQcHZyMDROQjRRS2d5YlF2eGNOd1Fla0M5dXRYU2ovVWtVR0tBekFBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQrWkEraVpheWU0V1JWQ29RTVJQSTRWQStKaFFya0RFV0ZkL0pPVDVEL0JBNFllcXM0Q28rWS95UU9BanRQS3l0L3BQOUVEWFNZbm5HeGI3ai82QXdrS0JVbHpUbEJDRUFENkF3c0tCMUp2YVZScFpYSVFBL29ERFFvSlQzSmtaWEpVYVdWeUVBUDZBeEVLRFVsMFpXMVFjbWxqWlZScFpYSVFBNEVFQUFBQW9QZE5MeitKQkFBQUFPQlZpQ2sva0FTYkE1Z0V1cW5Cb0psNm9BVGt4WmozSWFnRWdLekg4RGU0Qkp6bXJ2a1Z3QVNBck1md044a0VBQUFBQUFESVp6L2hCQUFBQUFBQXlHYy82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUNBZVpZL1A2RUZBQUFBQUFBQThEK3BCUUFBQUtBWGp2RS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQUFBQUQ0UHc9PeoZBLhNyU36GYwGChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJx43Rc1lU40AKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmcKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQnTepoTfQJqQQoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yOTI2OTc0MTc0NQoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjM3LCJhcGkyX2xhdGVuY3lfbXMiOjYzLCJhcGkzX2xhdGVuY3lfbXMiOjIsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzMsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTEyLCJhcGkyX2Fkc19jb3VudCI6MzA2LCJhcGkzX2Fkc19jb3VudCI6OH0KDQoHaXNfdnNrdRICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChIKDHZvdWNoZXJfbGVucxICEAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lksB/PgoCAoICAKMgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJQAAACgEEqRB2SWz1/kkTDFTQOkl3ErPEQ7eUkDyJQZTRUFSQ0g=",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29269741745",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 10654526997,
              "shopid": 256661214,
              "name": "AC Window CW-0501RA 1/2 PK 5000 Btu/h",
              "label_ids": [
                844931064601283,
                1400285055,
                844931086908638,
                1049112,
                1059151,
                822059908662278,
                837860934119952,
                840955085144628,
                825465608492064,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1213641,
                1000031,
                2018619,
                298893311,
                298933384,
                1015914,
                700190087,
                2048661,
                2048660,
                2068629,
                298938357,
                298463379,
                2023641,
                298458396,
                298468389,
                298938368,
                298458398,
                298468390
              ],
              "image": "id-11134207-7r98p-ls9sko2behfxef",
              "images": [
                "id-11134207-7r98p-ls9sko2behfxef",
                "id-11134207-7r98q-ls9sko2bfw0d53",
                "c1c7a8371b8f2314e5c927a2caae7715",
                "3730078f04e61385387173c2ab318e59",
                "698bb47bb6107aa6eef311e21c8bc379"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1632992193,
              "sold": 0,
              "historical_sold": 54,
              "liked": false,
              "liked_count": 431,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 23,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 221900000000,
              "price_min": 221900000000,
              "price_max": 221900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.897435897435898,
                "rating_count": [
                  39,
                  0,
                  0,
                  0,
                  4,
                  35
                ],
                "rcount_with_context": 14,
                "rcount_with_image": 9
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp739RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 221900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 112806487994,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 221900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 54,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 54,
                "display_sold_count_text": "54"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp739RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "PT.MaxindoTeknik",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                91,
                0,
                1000
              ]
            },
            "itemid": 10654526997,
            "shopid": 256661214,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98p-ls9sko2behfxef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,844931086908638,1049112,1059151,822059908662278,837860934119952,840955085144628,825465608492064,825465608494624,825465608499232,825465608497696,840990690654214,1213641,1000031,2018619,298893311,298933384,1015914,700190087,2048661,2048660,2068629,298938357,298463379,2023641,298458396,298468389,298938368,298458398,298468390],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":3826,\"model_id\":112806487994,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98p-ls9sko2behfxef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,844931086908638,1049112,1059151,822059908662278,837860934119952,840955085144628,825465608492064,825465608494624,825465608499232,825465608497696,840990690654214,1213641,1000031,2018619,298893311,298933384,1015914,700190087,2048661,2048660,2068629,298938357,298463379,2023641,298458396,298468389,298938368,298458398,298468390],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":3826,\"model_id\":112806487994,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_10654526997",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25489786746,
              "shopid": 1427006631,
              "name": "WINDOW AC REIWA CW0501RA 1/2 PK WINDOW AIR CONDITIONER PALEMBANG",
              "label_ids": [
                844931064601283,
                1400285055,
                1213641,
                2018619,
                1015914,
                700190087,
                298893311,
                844931086908638,
                2023641,
                298933384,
                1049128,
                700005504,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                700765096,
                2108629,
                834403089593352,
                298458396
              ],
              "image": "id-11134207-7rask-m45jg4qbiiho4a",
              "images": [
                "id-11134207-7rask-m45jg4qbiiho4a",
                "id-11134207-7rbk3-m8fnps3qdpi6df",
                "id-11134207-7rbka-m8fnps3qf42m90",
                "id-11134207-7rbk9-m8fnps3qgin23a",
                "id-11134207-7ra0h-mbkg1x18mimeb3",
                "id-11134207-7ra0p-mbkg1x18pbrac2",
                "id-11134207-7ra0i-mbkg1x18nx6u61"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1735028340,
              "sold": 0,
              "historical_sold": 86,
              "liked": false,
              "liked_count": 78,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 45,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 210000000000,
              "price_min": 210000000000,
              "price_max": 210000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6knay-m8pm30xnkkqq9b.16000081744942704.mp4",
                  "thumb_url": "id-11110105-6knay-m8pm30xnkkqq9b_cover",
                  "duration": 32,
                  "version": 2,
                  "vid": "id-11110105-6knay-m8pm30xnkkqq9b",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knay-m8pm30xnkkqq9b.16000081744942704.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knay-m8pm30xnkkqq9b.16000081744942704.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knay-m8pm30xnkkqq9b.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.977777777777778,
                "rating_count": [
                  45,
                  0,
                  0,
                  0,
                  1,
                  44
                ],
                "rcount_with_context": 12,
                "rcount_with_image": 12
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Palembang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 210000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 227195363817,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 210000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 86,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 86,
                "display_sold_count_text": "86"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Pusatย Electronikย Palembang",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                1000,
                1000,
                0,
                1000
              ]
            },
            "itemid": 25489786746,
            "shopid": 1427006631,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m45jg4qbiiho4a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1213641,2018619,1015914,700190087,298893311,844931086908638,2023641,298933384,1049128,700005504,822059908662278,825465608499232,825465608497696,2048660,2048661,700765096,2108629,834403089593352,298458396],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":1089,\"model_id\":227195363817,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m45jg4qbiiho4a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1213641,2018619,1015914,700190087,298893311,844931086908638,2023641,298933384,1049128,700005504,822059908662278,825465608499232,825465608497696,2048660,2048661,700765096,2108629,834403089593352,298458396],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":1089,\"model_id\":227195363817,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25489786746",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26735859540,
              "shopid": 302036739,
              "name": "REIWA AC WINDOW CW-0901RA Pendingin Ruangan 1 PK Auto Voltage Garansi Resmi",
              "label_ids": [
                1002164,
                2018618,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1049112,
                700000501,
                1718093079,
                822059908662278,
                822120592853526,
                825465608494624,
                825465608499232,
                825465608497696,
                1213641,
                1718093065,
                1015914,
                700190087,
                2153644,
                2068629,
                298938357,
                2048660,
                2048661,
                700765096,
                1400025118,
                1400066568,
                2213652,
                2008656,
                298468390,
                1718088046,
                1718093085,
                997921050,
                2098629,
                1718088045,
                700585042,
                2108637,
                298938368,
                298458398,
                2098628,
                997921049,
                2103632,
                2098630,
                1718088044,
                298458396,
                298838363,
                298468389,
                1718093084
              ],
              "image": "id-11134207-81ztj-mf20n5o8u8suef",
              "images": [
                "id-11134207-81ztj-mf20n5o8u8suef",
                "id-11134207-7rbka-m9jpccnghjot64",
                "id-11134207-7rbk0-m9jpccngwzxp01",
                "id-11134207-7rbk4-m9jpccp4f3oe74",
                "id-11134207-7rbk4-m9jpccnglrejf1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1746253614,
              "sold": 0,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 13,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 258000000000,
              "price_min": 258000000000,
              "price_max": 258000000000,
              "price_min_before_discount": 642500000000,
              "price_max_before_discount": 642500000000,
              "hidden_price_display": null,
              "price_before_discount": 642500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-60%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp860RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 754217682272256,
                "price": 258000000000,
                "strikethrough_price": 642500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-60%",
                "model_id": 227788938026,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 642500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp860RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "OXO Warehouse Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 26735859540,
            "shopid": 302036739,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztj-mf20n5o8u8suef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,2018618,1718087960,1428713,844931086908638,844931064601283,298463379,1049112,700000501,1718093079,822059908662278,822120592853526,825465608494624,825465608499232,825465608497696,1213641,1718093065,1015914,700190087,2153644,2068629,298938357,2048660,2048661,700765096,1400025118,1400066568,2213652,2008656,298468390,1718088046,1718093085,997921050,2098629,1718088045,700585042,2108637,298938368,298458398,2098628,997921049,2103632,2098630,1718088044,298458396,298838363,298468389,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4485,\"model_id\":227788938026,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztj-mf20n5o8u8suef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,2018618,1718087960,1428713,844931086908638,844931064601283,298463379,1049112,700000501,1718093079,822059908662278,822120592853526,825465608494624,825465608499232,825465608497696,1213641,1718093065,1015914,700190087,2153644,2068629,298938357,2048660,2048661,700765096,1400025118,1400066568,2213652,2008656,298468390,1718088046,1718093085,997921050,2098629,1718088045,700585042,2108637,298938368,298458398,2098628,997921049,2103632,2098630,1718088044,298458396,298838363,298468389,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4485,\"model_id\":227788938026,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26735859540",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24230058145,
              "shopid": 363348820,
              "name": "Reiwa - AC Window 1/2 PK - CW 0501RA",
              "label_ids": [
                700025282,
                1049112,
                700005493,
                822059908662278,
                844931064601283,
                1015914,
                700190087,
                822120592853526,
                2018619,
                298463379,
                825465608497696,
                825465608499232,
                1718093079,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7ra0h-mc5x1nkzu6xtdb",
              "images": [
                "id-11134207-7ra0h-mc5x1nkzu6xtdb",
                "id-11134207-7ra0p-mcekq9cm0ll3d6",
                "id-11134207-7ra0j-mc5x1nkzvli9e7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1715481149,
              "sold": 0,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 29,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 4,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 220000000000,
              "price_min": 220000000000,
              "price_max": 220000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1f-m2q88phi4jwx5b.16000101731904548.mp4",
                  "thumb_url": "id-11110105-7rask-m2q89g6x3e520b",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6ke1f-m2q88phi4jwx5b",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1f-m2q88phi4jwx5b.16000101731904548.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1f-m2q88phi4jwx5b.16000101731904548.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1f-m2q88phi4jwx5b.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "PILIH",
                  "options": [
                    "HANYA AC WINDOW",
                    "AC + PACKING KAYU"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  0,
                  4
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Cirebon",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 220000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 89590229102,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 220000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "AIO Store.",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                1000,
                1000
              ]
            },
            "itemid": 24230058145,
            "shopid": 363348820,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0h-mc5x1nkzu6xtdb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,1049112,700005493,822059908662278,844931064601283,1015914,700190087,822120592853526,2018619,298463379,825465608497696,825465608499232,1718093079,298933384,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":4121,\"model_id\":89590229102,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0h-mc5x1nkzu6xtdb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,1049112,700005493,822059908662278,844931064601283,1015914,700190087,822120592853526,2018619,298463379,825465608497696,825465608499232,1718093079,298933384,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":4121,\"model_id\":89590229102,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24230058145",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28625262201,
              "shopid": 952672181,
              "name": "JUAL AC MURAH WINDOW PORTABLE 1/2PK Reiwa CW-0501RA garansi resmi - serang banten [ SRG ]",
              "label_ids": [
                844931064601283,
                700005490,
                1049137,
                822059908662278,
                825465608492064,
                825465608494624,
                825465608499232,
                825465608497696,
                822120592853526,
                1213641,
                1400285055,
                2018619,
                1015914,
                700190087,
                1718093079,
                298463379,
                2048660,
                2048661,
                700765096,
                2023641,
                298933384,
                1718088045,
                298458398,
                298458396,
                1718088044,
                1718093084,
                298468390,
                298468389
              ],
              "image": "id-11134207-7rasm-m5wj4dobw7sye5",
              "images": [
                "id-11134207-7rasm-m5wj4dobw7sye5",
                "id-11134207-7rasi-m5wj4doc7g6077",
                "id-11134207-7rask-m5wj4dobxm8j79"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1738824144,
              "sold": 0,
              "historical_sold": 26,
              "liked": false,
              "liked_count": 26,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 9,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 209900000000,
              "price_min": 209900000000,
              "price_max": 209900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "packing",
                  "options": [
                    "dus bawaan",
                    "pcking kayu"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  9,
                  0,
                  0,
                  0,
                  0,
                  9
                ],
                "rcount_with_context": 6,
                "rcount_with_image": 5
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Serang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 209900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 237341892863,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 209900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 26,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 26,
                "display_sold_count_text": "26"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "pgps.co",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                1000,
                1000,
                1000,
                88,
                0,
                1000
              ]
            },
            "itemid": 28625262201,
            "shopid": 952672181,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m5wj4dobw7sye5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,1049137,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696,822120592853526,1213641,1400285055,2018619,1015914,700190087,1718093079,298463379,2048660,2048661,700765096,2023641,298933384,1718088045,298458398,298458396,1718088044,1718093084,298468390,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":3344,\"model_id\":237341892863,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,1000,88,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m5wj4dobw7sye5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,1049137,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696,822120592853526,1213641,1400285055,2018619,1015914,700190087,1718093079,298463379,2048660,2048661,700765096,2023641,298933384,1718088045,298458398,298458396,1718088044,1718093084,298468390,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":3344,\"model_id\":237341892863,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,1000,88,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28625262201",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28140387220,
              "shopid": 85857077,
              "name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK LOW WATT HEMAT LISTRIK AC PORTABLE",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                298463379,
                1718093079,
                700005505,
                1049134,
                822059908662278,
                825465608497696,
                825465608492064,
                825465608499232,
                1718093065,
                2108629,
                2048660,
                2048661,
                700765096,
                2068629,
                298938357,
                298938368,
                2098629,
                2098628,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7ra0u-mdr4e4l0hzf203",
              "images": [
                "id-11134207-7ra0u-mdr4e4l0hzf203",
                "id-11134207-7ra0t-mdr4e4k6j79qfe",
                "id-11134207-7ra0p-mdr4e4kgisunb0",
                "id-11134207-7ra0m-mdr4e4kqieh794",
                "id-11134207-7ra0h-mdr4e4kgit0887"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1755930308,
              "sold": 1,
              "historical_sold": 8,
              "liked": false,
              "liked_count": 13,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 2,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 228900000000,
              "price_min": 228900000000,
              "price_max": 228900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp763RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 228900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 306223681193,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 228900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 8,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 8,
                "display_sold_count_text": "8"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp763RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "elecstore_77",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000,
                1000,
                97,
                88
              ]
            },
            "itemid": 28140387220,
            "shopid": 85857077,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0u-mdr4e4l0hzf203\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1718093079,700005505,1049134,822059908662278,825465608497696,825465608492064,825465608499232,1718093065,2108629,2048660,2048661,700765096,2068629,298938357,298938368,2098629,2098628,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":199,\"model_id\":306223681193,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0u-mdr4e4l0hzf203\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1718093079,700005505,1049134,822059908662278,825465608497696,825465608492064,825465608499232,1718093065,2108629,2048660,2048661,700765096,2068629,298938357,298938368,2098629,2098628,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":199,\"model_id\":306223681193,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28140387220",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43700836359,
              "shopid": 76017981,
              "name": "Reiwa AC Window / AC Reiwa 1/2 PK",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                1718093079,
                1213641,
                1015914,
                700190087,
                1400285055,
                298463379,
                700765096,
                844931086908638,
                1049116,
                700005516,
                822059908662278,
                825465608494624,
                825465608492064,
                825465608499232,
                840990690654214,
                2048661,
                840955085144628,
                825465608497696,
                837860934119952,
                2048660,
                1718088044,
                1718088045,
                298458398,
                298468390,
                298458396,
                1718093084,
                298468389
              ],
              "image": "id-11134207-7rbke-m9qqrcmk2mml55",
              "images": [
                "id-11134207-7rbke-m9qqrcmk2mml55"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1747205798,
              "sold": 0,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194900000000,
              "price_min": 194900000000,
              "price_max": 194900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Sidoarjo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 194900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 177179177135,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 194900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Lapak Beruntung",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 43700836359,
            "shopid": 76017981,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbke-m9qqrcmk2mml55\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1718093079,1213641,1015914,700190087,1400285055,298463379,700765096,844931086908638,1049116,700005516,822059908662278,825465608494624,825465608492064,825465608499232,840990690654214,2048661,840955085144628,825465608497696,837860934119952,2048660,1718088044,1718088045,298458398,298468390,298458396,1718093084,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4567,\"model_id\":177179177135,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbke-m9qqrcmk2mml55\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1718093079,1213641,1015914,700190087,1400285055,298463379,700765096,844931086908638,1049116,700005516,822059908662278,825465608494624,825465608492064,825465608499232,840990690654214,2048661,840955085144628,825465608497696,837860934119952,2048660,1718088044,1718088045,298458398,298468390,298458396,1718093084,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4567,\"model_id\":177179177135,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43700836359",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25287937756,
              "shopid": 15287203,
              "name": "REIWA CW-0901RA Ac Window 1 PK",
              "label_ids": [
                844931064601283,
                298463379,
                1400066568,
                1718093079,
                1059152,
                700005489,
                822059908662278,
                822120592853526,
                834403089593352,
                1000031,
                1400285055,
                2018619,
                2018618,
                1213641,
                825465608497696,
                2153644,
                1015914,
                700190087,
                2213652,
                2008656,
                1718088045,
                1718088044,
                1718093084,
                298468390,
                298458398,
                298458396,
                298468389
              ],
              "image": "id-11134207-7ra0k-md6yl1lpg6qvf3",
              "images": [
                "id-11134207-7ra0k-md6yl1lpg6qvf3",
                "id-11134207-7rbk8-m8ed132e6adnb2",
                "id-11134207-7rasj-m267kaxtxpqic1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1730706945,
              "sold": 0,
              "historical_sold": 33,
              "liked": false,
              "liked_count": 79,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 13,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 270000000000,
              "price_min": 270000000000,
              "price_max": 270000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1n-m26fymniwex685.16000081730706825.mp4",
                  "thumb_url": "id-11110105-7rasi-m26fz1w2m14w2f",
                  "duration": 13,
                  "version": 2,
                  "vid": "id-11110105-6ke1n-m26fymniwex685",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1n-m26fymniwex685.16000081730706825.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m26fymniwex685.16000081730706825.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m26fymniwex685.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "OPSI",
                  "options": [
                    "NON PACKING",
                    "Kargo-PACKING KAYU"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.615384615384615,
                "rating_count": [
                  13,
                  0,
                  1,
                  1,
                  0,
                  11
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 270000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 205524940115,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 270000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 33,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 33,
                "display_sold_count_text": "33"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ALWAYS BAHAGIA Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                91,
                97
              ]
            },
            "itemid": 25287937756,
            "shopid": 15287203,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0k-md6yl1lpg6qvf3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1400066568,1718093079,1059152,700005489,822059908662278,822120592853526,834403089593352,1000031,1400285055,2018619,2018618,1213641,825465608497696,2153644,1015914,700190087,2213652,2008656,1718088045,1718088044,1718093084,298468390,298458398,298458396,298468389],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4816,\"model_id\":205524940115,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0k-md6yl1lpg6qvf3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1400066568,1718093079,1059152,700005489,822059908662278,822120592853526,834403089593352,1000031,1400285055,2018619,2018618,1213641,825465608497696,2153644,1015914,700190087,2213652,2008656,1718088045,1718088044,1718093084,298468390,298458398,298458396,298468389],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4816,\"model_id\":205524940115,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25287937756",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41072339850,
              "shopid": 1582531231,
              "name": "AC Reiwa Window 1/2 PK R32 CW-0501RA / CW-0501RA",
              "label_ids": [
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1049128,
                700005504,
                822059908662278,
                825465608499232,
                834403089593352,
                825465608497696,
                1015914,
                700190087,
                2048660,
                2048661,
                700765096,
                2023641,
                2108629,
                2018619,
                298468389,
                1718088045
              ],
              "image": "id-11134207-81zte-mf91z5njponh0f",
              "images": [
                "id-11134207-81zte-mf91z5njponh0f",
                "id-11134207-81ztl-mf91z5ouf2fi38",
                "id-11134207-81ztf-mf91z5nsly4o81",
                "id-11134207-81zth-mf91z5nj0efd5e",
                "id-11134207-81ztm-mf91z5nt1edlf0",
                "id-11134207-81ztk-mf91z5njmvil19",
                "id-11134207-81ztm-mf91z5ngfoy695",
                "id-11134207-81zte-mf91z5njoa3118",
                "id-11134207-81ztg-mf91z5njr37x99"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759195394,
              "sold": 2,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 219500000000,
              "price_min": 219500000000,
              "price_max": 219500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6vena-mf921xk5girwd8.16000031759195148.mp4",
                  "thumb_url": "id-11110107-6vena-mf921xk5girwd8_cover",
                  "duration": 14,
                  "version": 2,
                  "vid": "id-11110107-6vena-mf921xk5girwd8",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6vena-mf921xk5girwd8.16000031759195148.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vena-mf921xk5girwd8.16000031759195148.mp4",
                      "width": 480,
                      "height": 608
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vena-mf921xk5girwd8.default.mp4",
                    "width": 506,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "TIPE",
                  "options": [
                    "1/2 PK",
                    "1PK"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Palembang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 219500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 350080551106,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 219500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CIPTA ABADI 888",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000
              ]
            },
            "itemid": 41072339850,
            "shopid": 1582531231,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zte-mf91z5njponh0f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1718093079,1049128,700005504,822059908662278,825465608499232,834403089593352,825465608497696,1015914,700190087,2048660,2048661,700765096,2023641,2108629,2018619,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":704,\"model_id\":350080551106,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zte-mf91z5njponh0f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1718093079,1049128,700005504,822059908662278,825465608499232,834403089593352,825465608497696,1015914,700190087,2048660,2048661,700765096,2023641,2108629,2018619,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":704,\"model_id\":350080551106,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41072339850",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25287937756,
              "shopid": 15287203,
              "name": "REIWA CW-0901RA Ac Window 1 PK",
              "label_ids": [
                844931064601283,
                298463379,
                1400066568,
                1718093079,
                1059152,
                700005489,
                822059908662278,
                822120592853526,
                834403089593352,
                1000031,
                1400285055,
                2018619,
                2018618,
                1213641,
                825465608497696,
                2153644,
                1015914,
                700190087,
                2213652,
                2008656,
                298458398,
                298458396,
                1718088045,
                298468389,
                298468390,
                1718093084,
                1718088044
              ],
              "image": "id-11134207-7ra0k-md6yl1lpg6qvf3",
              "images": [
                "id-11134207-7ra0k-md6yl1lpg6qvf3",
                "id-11134207-7rbk8-m8ed132e6adnb2",
                "id-11134207-7rasj-m267kaxtxpqic1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1730706945,
              "sold": 0,
              "historical_sold": 33,
              "liked": false,
              "liked_count": 79,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 13,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 270000000000,
              "price_min": 270000000000,
              "price_max": 270000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1n-m26fymniwex685.16000081730706825.mp4",
                  "thumb_url": "id-11110105-7rasi-m26fz1w2m14w2f",
                  "duration": 13,
                  "version": 2,
                  "vid": "id-11110105-6ke1n-m26fymniwex685",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1n-m26fymniwex685.16000081730706825.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m26fymniwex685.16000081730706825.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m26fymniwex685.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "OPSI",
                  "options": [
                    "NON PACKING",
                    "Kargo-PACKING KAYU"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.615384615384615,
                "rating_count": [
                  13,
                  0,
                  1,
                  1,
                  0,
                  11
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 270000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 205524940115,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 270000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 33,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 33,
                "display_sold_count_text": "33"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ALWAYS BAHAGIA Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                91,
                97
              ]
            },
            "itemid": 25287937756,
            "shopid": 15287203,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0k-md6yl1lpg6qvf3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1400066568,1718093079,1059152,700005489,822059908662278,822120592853526,834403089593352,1000031,1400285055,2018619,2018618,1213641,825465608497696,2153644,1015914,700190087,2213652,2008656,298458398,298458396,1718088045,298468389,298468390,1718093084,1718088044],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4827,\"model_id\":205524940115,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0k-md6yl1lpg6qvf3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1400066568,1718093079,1059152,700005489,822059908662278,822120592853526,834403089593352,1000031,1400285055,2018619,2018618,1213641,825465608497696,2153644,1015914,700190087,2213652,2008656,298458398,298458396,1718088045,298468389,298468390,1718093084,1718088044],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4827,\"model_id\":205524940115,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25287937756",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41072339850,
              "shopid": 1582531231,
              "name": "AC Reiwa Window 1/2 PK R32 CW-0501RA / CW-0501RA",
              "label_ids": [
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1049128,
                700005504,
                822059908662278,
                825465608499232,
                834403089593352,
                825465608497696,
                1015914,
                700190087,
                2048660,
                2048661,
                700765096,
                2023641,
                2108629,
                2018619,
                1718088045,
                298468389
              ],
              "image": "id-11134207-81zte-mf91z5njponh0f",
              "images": [
                "id-11134207-81zte-mf91z5njponh0f",
                "id-11134207-81ztl-mf91z5ouf2fi38",
                "id-11134207-81ztf-mf91z5nsly4o81",
                "id-11134207-81zth-mf91z5nj0efd5e",
                "id-11134207-81ztm-mf91z5nt1edlf0",
                "id-11134207-81ztk-mf91z5njmvil19",
                "id-11134207-81ztm-mf91z5ngfoy695",
                "id-11134207-81zte-mf91z5njoa3118",
                "id-11134207-81ztg-mf91z5njr37x99"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759195394,
              "sold": 2,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 219500000000,
              "price_min": 219500000000,
              "price_max": 219500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6vena-mf921xk5girwd8.16000031759195148.mp4",
                  "thumb_url": "id-11110107-6vena-mf921xk5girwd8_cover",
                  "duration": 14,
                  "version": 2,
                  "vid": "id-11110107-6vena-mf921xk5girwd8",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6vena-mf921xk5girwd8.16000031759195148.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vena-mf921xk5girwd8.16000031759195148.mp4",
                      "width": 480,
                      "height": 608
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vena-mf921xk5girwd8.default.mp4",
                    "width": 506,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "TIPE",
                  "options": [
                    "1/2 PK",
                    "1PK"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Palembang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 219500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 350080551106,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 219500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CIPTA ABADI 888",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000
              ]
            },
            "itemid": 41072339850,
            "shopid": 1582531231,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zte-mf91z5njponh0f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1718093079,1049128,700005504,822059908662278,825465608499232,834403089593352,825465608497696,1015914,700190087,2048660,2048661,700765096,2023641,2108629,2018619,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":704,\"model_id\":350080551106,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zte-mf91z5njponh0f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1718093079,1049128,700005504,822059908662278,825465608499232,834403089593352,825465608497696,1015914,700190087,2048660,2048661,700765096,2023641,2108629,2018619,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":704,\"model_id\":350080551106,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41072339850",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25391293614,
              "shopid": 102037641,
              "name": "AC Window Reiwa CW-0901RA 1 PK - GW0901RA 1pk",
              "label_ids": [
                844931064601283,
                298463379,
                1718093079,
                2018619,
                2023641,
                1059154,
                1059152,
                825465608497696,
                822059908662278,
                837860934119952,
                822120592853526,
                834403089593352,
                298623321,
                998091078,
                1993623,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-7rbkd-m63urvnq4jggd4",
              "images": [
                "sg-11134201-7rbkd-m63urvnq4jggd4",
                "sg-11134201-7rbnc-m63urvsfxosgc6",
                "sg-11134201-7rbmx-m63urvy9p3zo13",
                "sg-11134201-7rbmu-m63urwar6u803c",
                "sg-11134201-7rbka-m63urwg0z5y68e",
                "sg-11134201-7rbls-m63urwroi2by51"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1739267073,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 243299900000,
              "price_min": 243299900000,
              "price_max": 243299900000,
              "price_min_before_discount": 253000000000,
              "price_max_before_discount": 253000000000,
              "hidden_price_display": null,
              "price_before_discount": 253000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-4%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 324,
                "promotion_id": 10000010290,
                "price": 243299900000,
                "strikethrough_price": 253000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-4%",
                "model_id": 198205820299,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 253000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KiosElektronik",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 25391293614,
            "shopid": 102037641,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rbkd-m63urvnq4jggd4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1718093079,2018619,2023641,1059154,1059152,825465608497696,822059908662278,837860934119952,822120592853526,834403089593352,298623321,998091078,1993623,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4646,\"model_id\":198205820299,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rbkd-m63urvnq4jggd4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1718093079,2018619,2023641,1059154,1059152,825465608497696,822059908662278,837860934119952,822120592853526,834403089593352,298623321,998091078,1993623,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4646,\"model_id\":198205820299,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25391293614",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40707202325,
              "shopid": 127092802,
              "name": "WINDOW AC 1/2 PK REIWA CW0501RA / TANPA PIPA AC / WINDOW AIR CONDITIONER 0,5 PK PALEMBANG",
              "label_ids": [
                2018619,
                1718087960,
                1428713,
                844931064601283,
                1049128,
                700005504,
                822059908662278,
                825465608499232,
                834403089593352,
                825465608497696,
                1015914,
                700190087,
                1400285055,
                1718093079,
                1718093065,
                700830032,
                844931086908638,
                825465608492064,
                822120592853526,
                2023641,
                298933384,
                2048660,
                2048661,
                700765096,
                700810080,
                298463379,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7ra0h-mc1z4t0669893f",
              "images": [
                "id-11134207-7ra0h-mc1z4t0669893f",
                "id-11134207-7ra0p-mc1z4t067nsp22",
                "id-11134207-7ra0r-mc1z4t0692d5c5",
                "id-11134207-7ra0h-mc1z4t06agxl21",
                "id-11134207-7ra0l-mc1z4t0621ix5a",
                "id-11134207-7ra0k-mc1z4t063g3d62",
                "id-11134207-7ra0o-mc1z4t064unt30",
                "id-11134207-7ra0r-mc1z4t06bvi100"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1751554249,
              "sold": 0,
              "historical_sold": 9,
              "liked": false,
              "liked_count": 28,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 5,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 220000000000,
              "price_min": 220000000000,
              "price_max": 220000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6kouh-mcw8m67o3lgj03.16000091754060757.mp4",
                  "thumb_url": "id-11110107-6kouh-mcw8m67o3lgj03_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110107-6kouh-mcw8m67o3lgj03",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6kouh-mcw8m67o3lgj03.16000091754060757.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6kouh-mcw8m67o3lgj03.16000091754060757.mp4",
                      "width": 270,
                      "height": 482
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6kouh-mcw8m67o3lgj03.default.mp4",
                    "width": 358,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Palembang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 220000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 305609610551,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 220000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 9,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 9,
                "display_sold_count_text": "9"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Sinarjaya688",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000
              ]
            },
            "itemid": 40707202325,
            "shopid": 127092802,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0h-mc1z4t0669893f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,1049128,700005504,822059908662278,825465608499232,834403089593352,825465608497696,1015914,700190087,1400285055,1718093079,1718093065,700830032,844931086908638,825465608492064,822120592853526,2023641,298933384,2048660,2048661,700765096,700810080,298463379,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2602,\"model_id\":305609610551,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0h-mc1z4t0669893f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,1049128,700005504,822059908662278,825465608499232,834403089593352,825465608497696,1015914,700190087,1400285055,1718093079,1718093065,700830032,844931086908638,825465608492064,822120592853526,2023641,298933384,2048660,2048661,700765096,700810080,298463379,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2602,\"model_id\":305609610551,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40707202325",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41904695535,
              "shopid": 948608327,
              "name": "AC Window REIWA 0501 Standard 0,5 PK - AC Reiwa 1/2PK Low Watt - AC Window bisa pasang sendiri",
              "label_ids": [
                844931064601283,
                1718093065,
                1428713,
                1718087960,
                2018619,
                1400285055,
                1015914,
                700190087,
                700830032,
                700765096,
                298463379,
                1718093079,
                1049117,
                1049116,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                298933384,
                2108629,
                2023641,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7ra0s-mb3w0o6hgup7ab",
              "images": [
                "id-11134207-7ra0s-mb3w0o6hgup7ab"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1750077540,
              "sold": 0,
              "historical_sold": 36,
              "liked": false,
              "liked_count": 13,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 17,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 202500000000,
              "price_min": 202500000000,
              "price_max": 202500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "Kardus",
                    "Paking kayu"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.823529411764706,
                "rating_count": [
                  17,
                  0,
                  0,
                  0,
                  3,
                  14
                ],
                "rcount_with_context": 12,
                "rcount_with_image": 9
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 202500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 300398624269,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 202500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 36,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 36,
                "display_sold_count_text": "36"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Elektronic New Palapa rungkut",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                1000,
                1000,
                0,
                1000
              ]
            },
            "itemid": 41904695535,
            "shopid": 948608327,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0s-mb3w0o6hgup7ab\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093065,1428713,1718087960,2018619,1400285055,1015914,700190087,700830032,700765096,298463379,1718093079,1049117,1049116,822059908662278,825465608499232,825465608497696,2048660,2048661,298933384,2108629,2023641,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":3744,\"model_id\":300398624269,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0s-mb3w0o6hgup7ab\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093065,1428713,1718087960,2018619,1400285055,1015914,700190087,700830032,700765096,298463379,1718093079,1049117,1049116,822059908662278,825465608499232,825465608497696,2048660,2048661,298933384,2108629,2023641,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":3744,\"model_id\":300398624269,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41904695535",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56903044971,
              "shopid": 1697720829,
              "name": "AC Window Reiwa 1/2PK CW 0501RA Low Watt 5000Btu Refrigerant R32 Direct Cooling Tanpa Instalasi Pipa",
              "label_ids": [
                844931064601283,
                1400066568,
                298463379,
                1049116,
                700005516,
                1718093079,
                822059908662278,
                825465608497696,
                1428713,
                1718087960,
                298488495,
                298933384,
                299033477,
                1015914,
                700190087,
                2023641,
                2108629,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82252-mjgls978s0zk00",
              "images": [
                "id-11134207-82252-mjgls978s0zk00",
                "id-11134207-8224q-mi88fes0datk5e",
                "id-11134207-8224w-mi88fes09348b2",
                "id-11134207-8224q-mi88fes0ahood3",
                "id-11134207-8224p-mi88fes07ojs4a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765683800,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 204900000000,
              "price_min": 204900000000,
              "price_max": 204900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvf-mi88hntqfzlwd1.16000081765683158.mp4",
                  "thumb_url": "id-11110105-6vdvf-mi88hntqfzlwd1_cover",
                  "duration": 15,
                  "version": 2,
                  "vid": "id-11110105-6vdvf-mi88hntqfzlwd1",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvf-mi88hntqfzlwd1.16000081765683158.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvf-mi88hntqfzlwd1.16000081765683158.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvf-mi88hntqfzlwd1.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 415519434092727,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Sidoarjo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 204500000000,
                "strikethrough_price": 204900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1309213562388480,
                "discount_text": null,
                "model_id": 262253916752,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1309213562388480,
                  "voucher_code": "UNIV4000",
                  "voucher_discount": 400000000,
                  "time_info": {
                    "start_time": 1765529640,
                    "end_time": 1773568920,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 199900000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 204900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UNIVITECH",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000
              ]
            },
            "itemid": 56903044971,
            "shopid": 1697720829,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjgls978s0zk00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,298463379,1049116,700005516,1718093079,822059908662278,825465608497696,1428713,1718087960,298488495,298933384,299033477,1015914,700190087,2023641,2108629,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":3204,\"model_id\":262253916752,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjgls978s0zk00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,298463379,1049116,700005516,1718093079,822059908662278,825465608497696,1428713,1718087960,298488495,298933384,299033477,1015914,700190087,2023641,2108629,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":3204,\"model_id\":262253916752,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56903044971",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25938588217,
              "shopid": 42517678,
              "name": "AC WINDOWS 1/2PK 05PK REIWA AC REIWA 0.5Pk CW-0501RA 1/2Pk Window Air Conditioner 0.5 Pk 1/2 Pk Ac Portable Ac Duduk Garansi Resmi",
              "label_ids": [
                1000167,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                2018619,
                2023641,
                1015914,
                700190087,
                1718093079,
                1400285055,
                700005505,
                1049134,
                822059908662278,
                825465608499232,
                825465608497696,
                822120592853526,
                700830032,
                298933384,
                2068629,
                298938357,
                298468389,
                2098629,
                2098628,
                298938368,
                1718088045
              ],
              "image": "id-11134207-7rasi-m2uo7ba7dpslec",
              "images": [
                "id-11134207-7rasi-m2uo7ba7dpslec",
                "id-11134207-7rash-m2uo7ba7f4d1c6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1732180243,
              "sold": 0,
              "historical_sold": 10,
              "liked": false,
              "liked_count": 22,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 6,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 239900000000,
              "price_min": 239900000000,
              "price_max": 239900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  6,
                  0,
                  0,
                  0,
                  0,
                  6
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 239900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 215574292952,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 239900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 10,
                "display_sold_count_text": "10"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "putra elektronik pontianak",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                1000,
                0,
                1000,
                88,
                97
              ]
            },
            "itemid": 25938588217,
            "shopid": 42517678,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m2uo7ba7dpslec\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1428713,1718087960,844931064601283,298463379,2018619,2023641,1015914,700190087,1718093079,1400285055,700005505,1049134,822059908662278,825465608499232,825465608497696,822120592853526,700830032,298933384,2068629,298938357,298468389,2098629,2098628,298938368,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":3251,\"model_id\":215574292952,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,1000,0,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m2uo7ba7dpslec\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1428713,1718087960,844931064601283,298463379,2018619,2023641,1015914,700190087,1718093079,1400285055,700005505,1049134,822059908662278,825465608499232,825465608497696,822120592853526,700830032,298933384,2068629,298938357,298468389,2098629,2098628,298938368,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":3251,\"model_id\":215574292952,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,1000,0,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25938588217",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43712002743,
              "shopid": 1341982589,
              "name": "REIWA AC Window CW-0501RA / CW0901RA Pendingin Ruangan",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                298463379,
                1049134,
                700005505,
                822059908662278,
                822120592853526,
                1718093065,
                2068629,
                298938357,
                825465608497696,
                1718093079,
                1400066568,
                1718088045,
                2098629,
                298938368,
                298468389,
                2098628
              ],
              "image": "id-11134207-8224w-mhww6g0bop342a",
              "images": [
                "id-11134207-8224w-mhww6g0bop342a",
                "id-11134207-8224s-mhww6g0bq3nkea",
                "id-11134207-82251-mhww6g0bri8002",
                "id-11134207-8224r-mhww6g0bswsged",
                "id-11134207-7ra0h-md5gcl8a8v2451"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1754649540,
              "sold": 0,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 3,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 239900000000,
              "price_min": 239900000000,
              "price_max": 239900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemw-mhwzvii78qo06e.16000101765002793.mp4",
                  "thumb_url": "id-11110105-6vemw-mhwzvii78qo06e_cover",
                  "duration": 27,
                  "version": 2,
                  "vid": "id-11110105-6vemw-mhwzvii78qo06e",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemw-mhwzvii78qo06e.16000101765002793.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemw-mhwzvii78qo06e.16000101765002793.mp4",
                      "width": 540,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemw-mhwzvii78qo06e.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Ukuran",
                  "options": [
                    "CW-0501RA",
                    "CW-0901RA"
                  ],
                  "images": [
                    "id-11134207-7ra0m-md5gcl8aa9mk35",
                    "id-11134207-7ra0g-md5gcl8abo70b1"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.666666666666667,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  1,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp799RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 239900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 306005415472,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 239900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp799RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Eraya Elektronik Online",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                1000,
                1000,
                0,
                1000
              ]
            },
            "itemid": 43712002743,
            "shopid": 1341982589,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mhww6g0bop342a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049134,700005505,822059908662278,822120592853526,1718093065,2068629,298938357,825465608497696,1718093079,1400066568,1718088045,2098629,298938368,298468389,2098628],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":3564,\"model_id\":306005415472,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mhww6g0bop342a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049134,700005505,822059908662278,822120592853526,1718093065,2068629,298938357,825465608497696,1718093079,1400066568,1718088045,2098629,298938368,298468389,2098628],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":3564,\"model_id\":306005415472,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43712002743",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27716968233,
              "shopid": 17470865,
              "name": "Reiwa AC Window 1 PK CW-0901RA 775 watt",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                834403089593352,
                825465608497696,
                822120592853526,
                825465608499232,
                825465608494624,
                837860934119952,
                1000031,
                1400285055,
                298463379,
                2018619,
                2018618,
                1918643,
                1718093079,
                700700063,
                1012763,
                1015914,
                700190087,
                2048661,
                2048660,
                298893311,
                700765096,
                2108629,
                298933384,
                2153644,
                700750053,
                2213652,
                1428713,
                1718087960,
                2008656,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7rase-m3uc9lmwy1en96",
              "images": [
                "id-11134207-7rase-m3uc9lmwy1en96",
                "id-11134207-7rase-m2c55a5fyeryec",
                "id-11134207-7rasg-m2c55a5g17wu09",
                "id-11134207-7rask-m2c55a5fztce15",
                "id-11134207-7rask-m2c55a5g2mhaab"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1731052095,
              "sold": 5,
              "historical_sold": 33,
              "liked": false,
              "liked_count": 76,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 18,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 259900000000,
              "price_min": 259900000000,
              "price_max": 259900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "packing",
                  "options": [
                    "wrapping",
                    "packing kayu"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.888888888888889,
                "rating_count": [
                  18,
                  0,
                  0,
                  1,
                  0,
                  17
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 259900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 260559009487,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 259900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 33,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 33,
                "display_sold_count_text": "33"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "STARLYN Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                97
              ]
            },
            "itemid": 27716968233,
            "shopid": 17470865,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rase-m3uc9lmwy1en96\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,834403089593352,825465608497696,822120592853526,825465608499232,825465608494624,837860934119952,1000031,1400285055,298463379,2018619,2018618,1918643,1718093079,700700063,1012763,1015914,700190087,2048661,2048660,298893311,700765096,2108629,298933384,2153644,700750053,2213652,1428713,1718087960,2008656,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4484,\"model_id\":260559009487,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rase-m3uc9lmwy1en96\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,834403089593352,825465608497696,822120592853526,825465608499232,825465608494624,837860934119952,1000031,1400285055,298463379,2018619,2018618,1918643,1718093079,700700063,1012763,1015914,700190087,2048661,2048660,298893311,700765096,2108629,298933384,2153644,700750053,2213652,1428713,1718087960,2008656,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4484,\"model_id\":260559009487,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27716968233",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26330156051,
              "shopid": 1217324123,
              "name": "AC REIWA CW-0901RA AC WINDOW 1 PK",
              "label_ids": [
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                837860934119952,
                825465608492064,
                825465608497696,
                1213641,
                2018619,
                2048660,
                2048661,
                844931086908638,
                700765096,
                1718088045,
                1718088044,
                1718093084,
                298468390,
                298458398,
                298458396,
                298468389
              ],
              "image": "id-11134207-7rbk0-m7j6a852285ge3",
              "images": [
                "id-11134207-7rbk0-m7j6a852285ge3",
                "id-11134207-7rbk2-m7j6a8523mpw9d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1742374178,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 249900000000,
              "price_min": 249900000000,
              "price_max": 249900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "VARIASI",
                  "options": [
                    "UNIT ONLY",
                    "UNIT+PASANG"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 249900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 216099495180,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 249900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MASTERCOOL INDONESIA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 26330156051,
            "shopid": 1217324123,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk0-m7j6a852285ge3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1059152,1059154,1718093079,822059908662278,837860934119952,825465608492064,825465608497696,1213641,2018619,2048660,2048661,844931086908638,700765096,1718088045,1718088044,1718093084,298468390,298458398,298458396,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5111,\"model_id\":216099495180,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk0-m7j6a852285ge3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1059152,1059154,1718093079,822059908662278,837860934119952,825465608492064,825465608497696,1213641,2018619,2048660,2048661,844931086908638,700765096,1718088045,1718088044,1718093084,298468390,298458398,298458396,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5111,\"model_id\":216099495180,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26330156051",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25333864260,
              "shopid": 212026963,
              "name": "Ac Window 1/2 PK Reiwa CW-0501RA CW 0501RA",
              "label_ids": [
                700025282,
                1049112,
                1049127,
                822059908662278,
                1213641,
                2018619,
                822120592853526,
                825465608497696,
                2048661,
                2048660,
                700765096,
                1718093079,
                298463379,
                298933384,
                700810080,
                298468389,
                1718088044,
                298458396,
                298458398,
                1718088045,
                298468390,
                1718093084
              ],
              "image": "id-11134207-8224v-mgho0llk7y1a9a",
              "images": [
                "id-11134207-8224v-mgho0llk7y1a9a",
                "id-11134207-7r98o-ly3155f86qmzc9",
                "id-11134207-7r98v-ly3155f8857fbf"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1721783814,
              "sold": 0,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 12,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 210000000000,
              "price_min": 210000000000,
              "price_max": 210000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 210000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 236575196615,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 210000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ABC ELEKTRONIK 123",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000
              ]
            },
            "itemid": 25333864260,
            "shopid": 212026963,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mgho0llk7y1a9a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,1049112,1049127,822059908662278,1213641,2018619,822120592853526,825465608497696,2048661,2048660,700765096,1718093079,298463379,298933384,700810080,298468389,1718088044,298458396,298458398,1718088045,298468390,1718093084],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":3282,\"model_id\":236575196615,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mgho0llk7y1a9a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,1049112,1049127,822059908662278,1213641,2018619,822120592853526,825465608497696,2048661,2048660,700765096,1718093079,298463379,298933384,700810080,298468389,1718088044,298458396,298458398,1718088045,298468390,1718093084],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":3282,\"model_id\":236575196615,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25333864260",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26826571846,
              "shopid": 1366248929,
              "name": "Ac Window Reiwa 1 Pk - CW-0901RA",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                2018619,
                2048661,
                2048660,
                700765096,
                298933384,
                844931086908638
              ],
              "image": "id-11134207-7rbkc-m9n3p0l5lan1a7",
              "images": [
                "id-11134207-7rbkc-m9n3p0l5lan1a7",
                "id-11134207-7rbk5-m9h2nc8wshyzfd",
                "id-11134207-7rbk6-m9h2nc8x55alf9",
                "id-11134207-7rbkd-m9h2nc8x7y7hf6",
                "id-11134207-7rbk3-m9h2nc8wshylef"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1739869875,
              "sold": 0,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 236500000000,
              "price_min": 236500000000,
              "price_max": 236500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmj6-m9h2nlzwit8ybe.16000081746604997.mp4",
                  "thumb_url": "id-11110105-6kmj6-m9h2nlzwit8ybe_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6kmj6-m9h2nlzwit8ybe",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj6-m9h2nlzwit8ybe.16000081746604997.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj6-m9h2nlzwit8ybe.16000081746604997.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj6-m9h2nlzwit8ybe.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 236500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 138219255580,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 236500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Viviย Electrindo Official",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 26826571846,
            "shopid": 1366248929,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkc-m9n3p0l5lan1a7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,2018619,2048661,2048660,700765096,298933384,844931086908638],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4540,\"model_id\":138219255580,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkc-m9n3p0l5lan1a7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,2018619,2048661,2048660,700765096,298933384,844931086908638],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4540,\"model_id\":138219255580,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26826571846",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27267141698,
              "shopid": 31400119,
              "name": "AC Window Reiwa 1 PK CW-0901RA R32 1PK Garansi Resmi - Instalasi Mudah",
              "label_ids": [
                1400066568,
                1000167,
                844931064601283,
                1000031,
                2018619,
                298463379,
                700005490,
                700005510,
                822059908662278,
                825465608497696,
                822120592853526,
                834403089593352,
                1718093079,
                844931086908638,
                298933384,
                2023641,
                298623321,
                1993623,
                998091078,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7rasf-m2et3lwobq03ad",
              "images": [
                "id-11134207-7rasf-m2et3lwobq03ad"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1731213312,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 244899900000,
              "price_min": 244899900000,
              "price_max": 244899900000,
              "price_min_before_discount": 246736700000,
              "price_max_before_discount": 246736700000,
              "hidden_price_display": null,
              "price_before_discount": 246736700000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-1%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1b-m31lnjc4f9hf02.16000101732592951.mp4",
                  "thumb_url": "id-11110105-7rasi-m31lnom6toya02",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6ke1b-m31lnjc4f9hf02",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1b-m31lnjc4f9hf02.16000101732592951.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-m31lnjc4f9hf02.16000101732592951.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-m31lnjc4f9hf02.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 324,
                "promotion_id": 10000017140,
                "price": 244899900000,
                "strikethrough_price": 246736700000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-1%",
                "model_id": 237002587247,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 246736700000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "multielektronik1",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 27267141698,
            "shopid": 31400119,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasf-m2et3lwobq03ad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1000167,844931064601283,1000031,2018619,298463379,700005490,700005510,822059908662278,825465608497696,822120592853526,834403089593352,1718093079,844931086908638,298933384,2023641,298623321,1993623,998091078,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4393,\"model_id\":237002587247,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasf-m2et3lwobq03ad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1000167,844931064601283,1000031,2018619,298463379,700005490,700005510,822059908662278,825465608497696,822120592853526,834403089593352,1718093079,844931086908638,298933384,2023641,298623321,1993623,998091078,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4393,\"model_id\":237002587247,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27267141698",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28916352789,
              "shopid": 144447241,
              "name": "AC Window Reiwa 1PK CW 0901RA Low Watt 9000Btu Refrigerant R32 Direct Cooling Tanpa Instalasi Pipa",
              "label_ids": [
                1400066568,
                1000167,
                844931064601283,
                822059908662278,
                825465608492064,
                1718093079,
                700005516,
                1049116,
                1918643,
                1400285055,
                1213641,
                1015914,
                700190087,
                1000031,
                2018619,
                825465608497696,
                844931086908638,
                298933384,
                2068629,
                298938357,
                2098629,
                298458396,
                1718093084
              ],
              "image": "id-11134207-8224r-mgnl8zqk7u3320",
              "images": [
                "id-11134207-8224r-mgnl8zqk7u3320",
                "id-11134207-7rasg-m2b0cfnxeuv417",
                "id-11134207-7rash-m2b0cfnxg9fkb7",
                "id-11134207-7rash-m2b0cfnxho007d",
                "id-11134207-7rash-m2b0cfnxj2kgb1",
                "id-11134207-7rask-m2b2p2tg2ssu7c",
                "id-11134207-7rasi-m2b2p2tg47da19",
                "id-11134207-7rasi-m2f2mp6dw72bd7",
                "id-11134207-7ras9-m2f2mp6dz07772"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1730555881,
              "sold": 0,
              "historical_sold": 79,
              "liked": false,
              "liked_count": 154,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 41,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199778000000,
              "price_min": 199778000000,
              "price_max": 199778000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke16-m28zwv1sdscj8c.16000081730861430.mp4",
                  "thumb_url": "id-11110105-7rasb-m28zx0wntjtj33",
                  "duration": 15,
                  "version": 2,
                  "vid": "id-11110105-6ke16-m28zwv1sdscj8c",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke16-m28zwv1sdscj8c.16003251732988188.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke16-m28zwv1sdscj8c.16003251732988188.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke16-m28zwv1sdscj8c.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Kapasitas",
                  "options": [
                    "1/2PK (CW-0501RA)",
                    "1PK (CW-0901RA)"
                  ],
                  "images": [
                    "id-11134207-8224p-mgnl8zqk50y769",
                    "id-11134207-8224t-mgnl8zqk6fin4b"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Paket Bonus",
                  "options": [
                    "AC Only",
                    "AC + Packing Kayu"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.878048780487805,
                "rating_count": [
                  41,
                  1,
                  0,
                  0,
                  1,
                  39
                ],
                "rcount_with_context": 14,
                "rcount_with_image": 7
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Sidoarjo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199478000000,
                "strikethrough_price": 199778000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1293973935374336,
                "discount_text": null,
                "model_id": 420072535811,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1293973935374336,
                  "voucher_code": "GRAN1499",
                  "voucher_discount": 300000000,
                  "time_info": {
                    "start_time": 1763713440,
                    "end_time": 1771752240,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 149900000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 199778000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 79,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 79,
                "display_sold_count_text": "79"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "grandivo",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                88
              ]
            },
            "itemid": 28916352789,
            "shopid": 144447241,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mgnl8zqk7u3320\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1000167,844931064601283,822059908662278,825465608492064,1718093079,700005516,1049116,1918643,1400285055,1213641,1015914,700190087,1000031,2018619,825465608497696,844931086908638,298933384,2068629,298938357,2098629,298458396,1718093084],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4276,\"model_id\":420072535811,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mgnl8zqk7u3320\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1000167,844931064601283,822059908662278,825465608492064,1718093079,700005516,1049116,1918643,1400285055,1213641,1015914,700190087,1000031,2018619,825465608497696,844931086908638,298933384,2068629,298938357,2098629,298458396,1718093084],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4276,\"model_id\":420072535811,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28916352789",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28653651024,
              "shopid": 1214971896,
              "name": "REIWA AC Window 1/2 PK CW-0501RA AC Low Watt 0,5 PK",
              "label_ids": [
                844931064601283,
                1059156,
                700000553,
                822059908662278,
                1718093079,
                1000031,
                1213641,
                1015914,
                700190087,
                1400285055,
                2018619,
                825465608497696,
                298463379,
                2048660,
                2048661,
                700765096,
                2023641,
                2068629,
                298938357,
                700810080,
                1718093084,
                1718088045,
                2098629,
                1718088044,
                298458398,
                298468389,
                298458396,
                2098628,
                298938368,
                298468390
              ],
              "image": "id-11134207-7rbk0-m9y3keg95xjxb4",
              "images": [
                "id-11134207-7rbk0-m9y3keg95xjxb4",
                "id-11134207-7r98w-lwxmpwzry7il4a",
                "id-11134207-7r98t-lwxms95yqhii43",
                "id-11134207-7r98q-lwxmpwzrwsve90",
                "id-11134207-7r98z-lwxmppyq8i8r70",
                "id-11134207-7r98u-lwxmpwzrwsy58e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1719277365,
              "sold": 0,
              "historical_sold": 9,
              "liked": false,
              "liked_count": 17,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 6,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 220000000000,
              "price_min": 220000000000,
              "price_max": 220000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  6,
                  0,
                  0,
                  0,
                  0,
                  6
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tegal",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp733RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 220000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 166541272953,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 220000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 9,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 9,
                "display_sold_count_text": "9"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp733RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Mataram Tegal",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                97
              ]
            },
            "itemid": 28653651024,
            "shopid": 1214971896,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk0-m9y3keg95xjxb4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700000553,822059908662278,1718093079,1000031,1213641,1015914,700190087,1400285055,2018619,825465608497696,298463379,2048660,2048661,700765096,2023641,2068629,298938357,700810080,1718093084,1718088045,2098629,1718088044,298458398,298468389,298458396,2098628,298938368,298468390],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":1281,\"model_id\":166541272953,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk0-m9y3keg95xjxb4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700000553,822059908662278,1718093079,1000031,1213641,1015914,700190087,1400285055,2018619,825465608497696,298463379,2048660,2048661,700765096,2023641,2068629,298938357,700810080,1718093084,1718088045,2098629,1718088044,298458398,298468389,298458396,2098628,298938368,298468390],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":1281,\"model_id\":166541272953,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28653651024",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24638538780,
              "shopid": 234197686,
              "name": "REIWA Ac Window 1 PK - CW0901RA - 100% ORI",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1059152,
                700005489,
                1718093079,
                822059908662278,
                825465608499232,
                834403089593352,
                825465608497696,
                837860934119952,
                1000031,
                2018619,
                2023641,
                1015914,
                700190087,
                298463379,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7rasi-m2tcgm1dcf8161",
              "images": [
                "id-11134207-7rasi-m2tcgm1dcf8161",
                "id-11134207-7ras9-m2tcgm1ddtshdd",
                "id-11134207-7rash-m2tcgm1df8cx95"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1732095947,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 244500000000,
              "price_min": 244500000000,
              "price_max": 244500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 244500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 59489284990,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 244500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ReeSeLL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 24638538780,
            "shopid": 234197686,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m2tcgm1dcf8161\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1059152,700005489,1718093079,822059908662278,825465608499232,834403089593352,825465608497696,837860934119952,1000031,2018619,2023641,1015914,700190087,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4461,\"model_id\":59489284990,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m2tcgm1dcf8161\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1059152,700005489,1718093079,822059908662278,825465608499232,834403089593352,825465608497696,837860934119952,1000031,2018619,2023641,1015914,700190087,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4461,\"model_id\":59489284990,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24638538780",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40511260787,
              "shopid": 1086389122,
              "name": "WINDOW AC 1 PK REIWA CW-0901RA /INSTALASI MUDAH/TANPA PIPA/ WINDOW AIR CONDITIONER 1PK",
              "label_ids": [
                2018619,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1049128,
                700005504,
                1718093079,
                822059908662278,
                834403089593352,
                825465608497696,
                825465608492064,
                825465608499232,
                1015914,
                700190087,
                1718093065,
                2048660,
                2048661,
                700765096,
                2023641,
                298933384,
                844931086908638,
                2068629,
                298938357,
                298468389,
                1718088045,
                2098628,
                2098629,
                298938368
              ],
              "image": "sg-11134201-7rdyt-mcx71v1784iuc3",
              "images": [
                "sg-11134201-7rdyt-mcx71v1784iuc3",
                "sg-11134201-7rdvx-mcx71uvxfu9209",
                "sg-11134201-7rdwu-mcx71uq3od7q4a",
                "sg-11134201-7rdxy-mcx71v5x17snc3",
                "sg-11134201-7rdyw-mcx71vawtwx296",
                "sg-11134201-7rdy2-mcx71vhupdivf9",
                "sg-11134201-7rdya-mcx71vned2s4a9",
                "sg-11134201-7rdyg-mcx71vso3yhg66",
                "sg-11134201-7rdwi-mcx71vzvtd1qf8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1754118658,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 289900000000,
              "price_min": 289900000000,
              "price_max": 289900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6ko2b-mcx830mbtuljaa.16000041754120401.mp4",
                  "thumb_url": "id-11110107-6ko2b-mcx830mbtuljaa_cover",
                  "duration": 52,
                  "version": 2,
                  "vid": "id-11110107-6ko2b-mcx830mbtuljaa",
                  "formats": [
                    {
                      "format": 1600004,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ko2b-mcx830mbtuljaa.16000041754120401.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ko2b-mcx830mbtuljaa.16000041754120401.mp4",
                      "width": 360,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ko2b-mcx830mbtuljaa.default.mp4",
                    "width": 360,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Palembang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp966RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 289900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 270944340780,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 289900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp966RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Sinarjaya1688",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000,
                88
              ]
            },
            "itemid": 40511260787,
            "shopid": 1086389122,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdyt-mcx71v1784iuc3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1049128,700005504,1718093079,822059908662278,834403089593352,825465608497696,825465608492064,825465608499232,1015914,700190087,1718093065,2048660,2048661,700765096,2023641,298933384,844931086908638,2068629,298938357,298468389,1718088045,2098628,2098629,298938368],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":2672,\"model_id\":270944340780,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdyt-mcx71v1784iuc3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1049128,700005504,1718093079,822059908662278,834403089593352,825465608497696,825465608492064,825465608499232,1015914,700190087,1718093065,2048660,2048661,700765096,2023641,298933384,844931086908638,2068629,298938357,298468389,1718088045,2098628,2098629,298938368],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":2672,\"model_id\":270944340780,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40511260787",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24324027411,
              "shopid": 825863,
              "name": "REIWA AC Window 1/2 PK CW-0501RA AC Low Watt 0,5 PK - Khusus Jabotabek",
              "label_ids": [
                47,
                1000167,
                1059152,
                700005487,
                822059908662278,
                844931064601283,
                844931086908638,
                1000031,
                1400066568,
                1718087960,
                1428713,
                1400285055,
                1015914,
                700190087,
                825465608499232,
                1718093079,
                825465608494624,
                1918643,
                2018619,
                825465608497696,
                298463379,
                298933384,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7r98z-lu39oxla5wunbf",
              "images": [
                "id-11134207-7r98z-lu39oxla5wunbf",
                "id-11134207-7r98z-lu39oxla7bf3ef",
                "id-11134207-7r98r-lu39oxla8pzja7",
                "id-11134207-7rasb-m1mecmvwj6fw93",
                "id-11134207-7rase-m1mecmvwkl0c64"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1713080800,
              "sold": 0,
              "historical_sold": 25,
              "liked": false,
              "liked_count": 91,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 15,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 215000000000,
              "price_min": 215000000000,
              "price_max": 215000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke14-m1mfpllop4yn20.16000101729495700.mp4",
                  "thumb_url": "id-11110105-7rasg-m1mfppfb43lj8b",
                  "duration": 57,
                  "version": 2,
                  "vid": "id-11110105-6ke14-m1mfpllop4yn20",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke14-m1mfpllop4yn20.16000101729495700.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-m1mfpllop4yn20.16000101729495700.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-m1mfpllop4yn20.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  17,
                  0,
                  0,
                  0,
                  0,
                  17
                ],
                "rcount_with_context": 7,
                "rcount_with_image": 6
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 215000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 118333438661,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 215000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 25,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 25,
                "display_sold_count_text": "25"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Mega Solution",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 24324027411,
            "shopid": 825863,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98z-lu39oxla5wunbf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,1059152,700005487,822059908662278,844931064601283,844931086908638,1000031,1400066568,1718087960,1428713,1400285055,1015914,700190087,825465608499232,1718093079,825465608494624,1918643,2018619,825465608497696,298463379,298933384,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4218,\"model_id\":118333438661,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98z-lu39oxla5wunbf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,1059152,700005487,822059908662278,844931064601283,844931086908638,1000031,1400066568,1718087960,1428713,1400285055,1015914,700190087,825465608499232,1718093079,825465608494624,1918643,2018619,825465608497696,298463379,298933384,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4218,\"model_id\":118333438661,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24324027411",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27132983145,
              "shopid": 616226822,
              "name": "AC WIDOW REIWA 1/2 Pk Tanpa Pipa / AC Pakai Freon R32 / AC REIWA Window 1/2 / AC PORTABLE / AC MOBILE / PENDINGIN RUANGAN",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                1049112,
                700005512,
                822059908662278,
                825465608492064,
                834403089593352,
                1718093079,
                1213641,
                825465608499232,
                825465608497696,
                298463379,
                844931086908638,
                298933384,
                1015914,
                700190087,
                1718093084,
                298468389,
                298468390,
                298458398,
                298458396,
                1718088044,
                1718088045
              ],
              "image": "sg-11134201-7rdwc-mbt5quspuurd04",
              "images": [
                "sg-11134201-7rdwc-mbt5quspuurd04",
                "sg-11134201-7rdx5-mbt5qv6lajxh3b",
                "sg-11134201-7rdyg-mbt5qve2zmzga9",
                "sg-11134201-7rdwn-mbt5qvlkvneh10",
                "sg-11134201-7rdxa-mbt5qvu6dg1186",
                "sg-11134201-7rdvz-mbt5qw2rzi32cf",
                "sg-11134201-7rdxe-mbt5qw9ppcm41e",
                "sg-11134201-7rdwk-mbt5qwgdfk7ua7",
                "sg-11134201-7rdxt-mbt5qwpt4klybc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1744345159,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 6,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199207300000,
              "price_min": 199207300000,
              "price_max": 199207300000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199207300000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 258147256956,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199207300000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Megajaya Sukses Abadi",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                1000,
                0,
                1000,
                97
              ]
            },
            "itemid": 27132983145,
            "shopid": 616226822,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdwc-mbt5quspuurd04\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1718093079,1213641,825465608499232,825465608497696,298463379,844931086908638,298933384,1015914,700190087,1718093084,298468389,298468390,298458398,298458396,1718088044,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":2573,\"model_id\":258147256956,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,1000,0,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdwc-mbt5quspuurd04\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1718093079,1213641,825465608499232,825465608497696,298463379,844931086908638,298933384,1015914,700190087,1718093084,298468389,298468390,298458398,298458396,1718088044,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":2573,\"model_id\":258147256956,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,1000,0,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27132983145",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26279785437,
              "shopid": 887499464,
              "name": "REIWA AC PORTABLE WINDOW 1/2 PK CW-0501RA 0,5 PK",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                1718093079,
                1049117,
                1049116,
                822059908662278,
                825465608499232,
                834403089593352,
                825465608497696,
                822120592853526,
                825465608492064,
                1213641,
                1400285055,
                298463379,
                298933384,
                2108629,
                298458398,
                298458396,
                1718088044,
                298468389,
                1718093084,
                298468390,
                1718088045
              ],
              "image": "id-11134207-7rbk9-m7eiwj0zkt1i9e",
              "images": [
                "id-11134207-7rbk9-m7eiwj0zkt1i9e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1742093074,
              "sold": 1,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 15,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 206100000000,
              "price_min": 206100000000,
              "price_max": 206100000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 206100000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 178785471374,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 206100000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "JASINDO SUKSES",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                91,
                97,
                88
              ]
            },
            "itemid": 26279785437,
            "shopid": 887499464,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-m7eiwj0zkt1i9e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1718093079,1049117,1049116,822059908662278,825465608499232,834403089593352,825465608497696,822120592853526,825465608492064,1213641,1400285055,298463379,298933384,2108629,298458398,298458396,1718088044,298468389,1718093084,298468390,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":4307,\"model_id\":178785471374,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-m7eiwj0zkt1i9e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1718093079,1049117,1049116,822059908662278,825465608499232,834403089593352,825465608497696,822120592853526,825465608492064,1213641,1400285055,298463379,298933384,2108629,298458398,298458396,1718088044,298468389,1718093084,298468390,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":4307,\"model_id\":178785471374,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26279785437",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26376262669,
              "shopid": 10511402,
              "name": "Reiwa AC Window 1/2 PK CW-0501RA",
              "label_ids": [
                844931064601283,
                1059152,
                700005489,
                1718093079,
                822059908662278,
                825465608499232,
                822120592853526,
                825465608492064,
                1213641,
                2018619,
                837860934119952,
                825465608497696,
                298463379,
                2048660,
                2048661,
                700765096,
                1718088045,
                298458398,
                1718093084,
                298468389,
                298468390,
                298458396,
                1718088044
              ],
              "image": "id-11134207-7rbk7-m69enh4wal5kaf",
              "images": [
                "id-11134207-7rbk7-m69enh4wal5kaf",
                "id-11134207-7rbk3-m69enh4wbzq08d",
                "id-11134207-7rbk9-m69enh4wdeag72"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1739604015,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194900000000,
              "price_min": 194900000000,
              "price_max": 194900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 194900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 138215763971,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 194900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "rinz olshop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000
              ]
            },
            "itemid": 26376262669,
            "shopid": 10511402,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk7-m69enh4wal5kaf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005489,1718093079,822059908662278,825465608499232,822120592853526,825465608492064,1213641,2018619,837860934119952,825465608497696,298463379,2048660,2048661,700765096,1718088045,298458398,1718093084,298468389,298468390,298458396,1718088044],\"matched_keywords\":[\"ac window\",\"air conditioner\"],\"merge_rank\":3420,\"model_id\":138215763971,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk7-m69enh4wal5kaf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005489,1718093079,822059908662278,825465608499232,822120592853526,825465608492064,1213641,2018619,837860934119952,825465608497696,298463379,2048660,2048661,700765096,1718088045,298458398,1718093084,298468389,298468390,298458396,1718088044],\"matched_keywords\":[\"ac window\",\"air conditioner\"],\"merge_rank\":3420,\"model_id\":138215763971,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26376262669",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26471943768,
              "shopid": 104115537,
              "name": "Ac Window Reiwa CW 0501 RA / CW0501RA, Air Conditioner Portable 0.5PK Low Watt Turbo Cooling",
              "label_ids": [
                844931064601283,
                2018619,
                1015914,
                700190087,
                700700063,
                1400285055,
                298463379,
                1718093079,
                700005490,
                700005523,
                1428713,
                1718087960,
                1400066568,
                700765096,
                298933384,
                822059908662278,
                825465608497696,
                2048660,
                2048661,
                825465608494624,
                822120592861206,
                825465608499232,
                298623321,
                1993623,
                998091078,
                2023641,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7ra0o-mcer76cle2md25",
              "images": [
                "id-11134207-7ra0o-mcer76cle2md25",
                "sg-11134201-7rcci-m66nrj7fwk0ob8",
                "sg-11134201-7rccn-m66nriq8lopa9b",
                "id-11134207-7rbk1-maxk5s5t0sv2a2",
                "sg-11134201-7rcdc-m66nrhvzvcjy1f",
                "id-11134207-7rbk4-maxk5s5t27fi4d",
                "id-11134207-7rbk8-maxk5s5t3lzyb4",
                "sg-11134201-7rcc5-m66nrhkccg5m10"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1735306649,
              "sold": 0,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 16,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 4,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 198552100000,
              "price_min": 198552100000,
              "price_max": 198552100000,
              "price_min_before_discount": 260000000000,
              "price_max_before_discount": 260000000000,
              "hidden_price_display": null,
              "price_before_discount": 260000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-24%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kou9-mdv7dx2e99xs9f.16000081756177395.mp4",
                  "thumb_url": "id-11110105-6kou9-mdv7dx2e99xs9f_cover",
                  "duration": 15,
                  "version": 2,
                  "vid": "id-11110105-6kou9-mdv7dx2e99xs9f",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kou9-mdv7dx2e99xs9f.16000081756177395.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kou9-mdv7dx2e99xs9f.16000081756177395.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kou9-mdv7dx2e99xs9f.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "VARIASI",
                  "options": [
                    "CW0501RA + Bubble",
                    "CW 0501 RA + Kayu",
                    "CW 0901 RA + Bubble",
                    "CW 0901 RA + Kayu"
                  ],
                  "images": [
                    "id-11134207-7ra0r-mcer76clfh6t83",
                    "sg-11134201-7rcd2-m66nqh83hi2yd4",
                    "id-11134201-8224o-mhy9llvnh24k2e",
                    "id-11134207-8224x-mhy9kk9ivu2sae"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  0,
                  4
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Serang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 324,
                "promotion_id": 10000014360,
                "price": 198352100000,
                "strikethrough_price": 260000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1326463954075648,
                "discount_text": "-24%",
                "model_id": 370261743493,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1326463954075648,
                  "voucher_code": "AMBA001",
                  "voucher_discount": 200000000,
                  "time_info": {
                    "start_time": 1767586500,
                    "end_time": 1769836500,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 100000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 260000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "TRISULA ELEKTRONIK SERANG",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 26471943768,
            "shopid": 104115537,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0o-mcer76cle2md25\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,2018619,1015914,700190087,700700063,1400285055,298463379,1718093079,700005490,700005523,1428713,1718087960,1400066568,700765096,298933384,822059908662278,825465608497696,2048660,2048661,825465608494624,822120592861206,825465608499232,298623321,1993623,998091078,2023641,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4285,\"model_id\":370261743493,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0o-mcer76cle2md25\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,2018619,1015914,700190087,700700063,1400285055,298463379,1718093079,700005490,700005523,1428713,1718087960,1400066568,700765096,298933384,822059908662278,825465608497696,2048660,2048661,825465608494624,822120592861206,825465608499232,298623321,1993623,998091078,2023641,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4285,\"model_id\":370261743493,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26471943768",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25717778883,
              "shopid": 11252525,
              "name": "Reiwa AC Window Air Conditioner 0.5 PK Pendingin Ruangan CW-0501RA",
              "label_ids": [
                1000167,
                1400066568,
                1134053,
                844931064601283,
                844931086908638,
                1213641,
                298458395,
                1718087960,
                1428713,
                1015914,
                700190087,
                1718093079,
                1918643,
                1000031,
                2018619,
                2023641,
                700700063,
                700005489,
                1059152,
                822059908662278,
                825465608497696,
                837860934119952,
                825465608492064,
                825465608494624,
                825465608499232,
                2048660,
                2048661,
                1718093084,
                298458396
              ],
              "image": "sg-11134201-7rccu-lsnyahfh07ahe5",
              "images": [
                "sg-11134201-7rccu-lsnyahfh07ahe5",
                "sg-11134201-7rce7-lsnyahk6talz7e",
                "sg-11134201-7rcdy-lsnyahpgll2id4",
                "sg-11134201-7rcc5-lsnyahyc8ky05e",
                "sg-11134201-7rce4-lsnyai9zsxqxaa",
                "sg-11134201-7rce6-lsnyaifjjeu251",
                "sg-11134201-7rcdb-lsnyaiof6fejf0",
                "id-11134207-7rbk3-m8h8upm5uixqd3",
                "id-11134207-7rbk1-m8h8upjdylf182"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1709974312,
              "sold": 0,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 19,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199900000000,
              "price_min": 199900000000,
              "price_max": 199900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1a-m15fwig0gbuq71.16000041728466948.mp4",
                  "thumb_url": "id-11110105-7rasm-m15fwuqkh2ilcd",
                  "duration": 33,
                  "version": 2,
                  "vid": "id-11110105-6ke1a-m15fwig0gbuq71",
                  "formats": [
                    {
                      "format": 1600004,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1a-m15fwig0gbuq71.16000041728466948.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m15fwig0gbuq71.16000041728466948.mp4",
                      "width": 638,
                      "height": 360
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m15fwig0gbuq71.default.mp4",
                    "width": 848,
                    "height": 478
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Packing",
                  "options": [
                    "Bubble Wrap",
                    "Paking Kayu"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 177107662867,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Puserba",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 25717778883,
            "shopid": 11252525,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rccu-lsnyahfh07ahe5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1400066568,1134053,844931064601283,844931086908638,1213641,298458395,1718087960,1428713,1015914,700190087,1718093079,1918643,1000031,2018619,2023641,700700063,700005489,1059152,822059908662278,825465608497696,837860934119952,825465608492064,825465608494624,825465608499232,2048660,2048661,1718093084,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":3600,\"model_id\":177107662867,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rccu-lsnyahfh07ahe5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1400066568,1134053,844931064601283,844931086908638,1213641,298458395,1718087960,1428713,1015914,700190087,1718093079,1918643,1000031,2018619,2023641,700700063,700005489,1059152,822059908662278,825465608497696,837860934119952,825465608492064,825465608494624,825465608499232,2048660,2048661,1718093084,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":3600,\"model_id\":177107662867,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25717778883",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25217774208,
              "shopid": 27731826,
              "name": "Reiwa CW-0501RA AC Window 0.5PK 370 Watt Pendingin Ruangan",
              "label_ids": [
                1400066568,
                1134053,
                844931064601283,
                844931086908638,
                1213641,
                1718087960,
                1428713,
                1718093079,
                1015914,
                700190087,
                1000031,
                1918643,
                2018619,
                1059152,
                700005489,
                822059908662278,
                825465608492064,
                825465608494624,
                825465608499232,
                825465608497696,
                837860934119952,
                2048660,
                2048661,
                1718093084,
                298458396
              ],
              "image": "sg-11134201-7rcfd-lsny61kay6mpf9",
              "images": [
                "sg-11134201-7rcfd-lsny61kay6mpf9",
                "sg-11134201-7rces-lsny61puq2db4a",
                "sg-11134201-7rcds-lsny61uajkyc07",
                "sg-11134201-7rcbu-lsny620eanht3d",
                "sg-11134201-7rcec-lsny6268246qb8",
                "id-11134207-7rbk7-m8h93d4fzslq75",
                "id-11134207-7rbk5-m8h93d4fzsp953"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1709974103,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199900000000,
              "price_min": 199900000000,
              "price_max": 199900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmir-mb1r3chtu2hwee.16000041750036022.mp4",
                  "thumb_url": "id-11110105-6kmir-mb1r3chtu2hwee_cover",
                  "duration": 33,
                  "version": 2,
                  "vid": "id-11110105-6kmir-mb1r3chtu2hwee",
                  "formats": [
                    {
                      "format": 1600004,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmir-mb1r3chtu2hwee.16000041750036022.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmir-mb1r3chtu2hwee.16000041750036022.mp4",
                      "width": 638,
                      "height": 360
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmir-mb1r3chtu2hwee.default.mp4",
                    "width": 848,
                    "height": 478
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Packing",
                  "options": [
                    "Bubble Wrap",
                    "Packing Kayu"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 237668910348,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Master Networks",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 25217774208,
            "shopid": 27731826,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rcfd-lsny61kay6mpf9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1134053,844931064601283,844931086908638,1213641,1718087960,1428713,1718093079,1015914,700190087,1000031,1918643,2018619,1059152,700005489,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696,837860934119952,2048660,2048661,1718093084,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":809,\"model_id\":237668910348,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rcfd-lsny61kay6mpf9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1134053,844931064601283,844931086908638,1213641,1718087960,1428713,1718093079,1015914,700190087,1000031,1918643,2018619,1059152,700005489,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696,837860934119952,2048660,2048661,1718093084,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":809,\"model_id\":237668910348,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25217774208",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27752750922,
              "shopid": 1005115671,
              "name": "Ac Window Reiwa 0.5pk Protecth 5.000BTU/h",
              "label_ids": [
                298458395,
                700005490,
                700005495,
                822059908662278,
                825465608494624,
                825465608499232,
                834403089593352,
                825465608497696,
                837860934119952,
                844931064601283,
                1000031,
                1718093079,
                2018619,
                298463379,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7r98p-lwh1e9jho0715c",
              "images": [
                "id-11134207-7r98p-lwh1e9jho0715c",
                "id-11134207-7r98u-lwh1e9jhperh71"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1718273472,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 22,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199999900000,
              "price_min": 199999900000,
              "price_max": 199999900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199999900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 246013967241,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KITCHEN_TOOLS",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 27752750922,
            "shopid": 1005115671,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98p-lwh1e9jho0715c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298458395,700005490,700005495,822059908662278,825465608494624,825465608499232,834403089593352,825465608497696,837860934119952,844931064601283,1000031,1718093079,2018619,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5346,\"model_id\":246013967241,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98p-lwh1e9jho0715c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298458395,700005490,700005495,822059908662278,825465608494624,825465608499232,834403089593352,825465608497696,837860934119952,844931064601283,1000031,1718093079,2018619,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5346,\"model_id\":246013967241,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27752750922",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26669277120,
              "shopid": 27092381,
              "name": "REIWA CW 0901RA AC WINDOW 1 PK 775 LOW WATT DIRECT COOLING SISTEM PORTABLE AC CEPAT DINGIN 9.000BTU",
              "label_ids": [
                844931064601283,
                1059156,
                700005499,
                822059908662278,
                825465608492064,
                834403089593352,
                1015914,
                700190087,
                1213641,
                1000031,
                2018619,
                1400285055,
                825465608497696,
                834230400556567,
                844931086908638,
                298463379,
                298933384,
                822120592853526,
                2048660,
                2048661,
                2108629,
                1718093079,
                1718093084,
                298458396,
                1718088044,
                298468390,
                1718088045,
                298458398,
                298468389
              ],
              "image": "id-11134207-7rasg-m37ja0gljrprfb",
              "images": [
                "id-11134207-7rasg-m37ja0gljrprfb",
                "id-11134207-7rasa-m37ja0mzafin32",
                "id-11134207-7rasi-m37ja0gbk6paf4",
                "id-11134207-7ras8-m37ja0hpi5skc2",
                "id-11134207-7rasm-m37ja0krdotq5c",
                "id-11134207-7ras8-m37ja0i9hcns90"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1732952271,
              "sold": 1,
              "historical_sold": 11,
              "liked": false,
              "liked_count": 21,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 5,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 271900000000,
              "price_min": 271900000000,
              "price_max": 271900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1a-m37ja5dcd55kbd.16000081732952166.mp4",
                  "thumb_url": "id-11110105-7rasf-m37ja812hd2s9c",
                  "duration": 15,
                  "version": 2,
                  "vid": "id-11110105-6ke1a-m37ja5dcd55kbd",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1a-m37ja5dcd55kbd.16000081732952166.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m37ja5dcd55kbd.16000081732952166.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m37ja5dcd55kbd.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "ac reiwa",
                  "options": [
                    "REIWA CW 0901RA 1 PK"
                  ],
                  "images": [
                    "id-11134207-7rasd-m37ja0gbll9q12"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 271900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 227093232142,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 271900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 11,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 11,
                "display_sold_count_text": "11"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Elektronik Semarang",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 26669277120,
            "shopid": 27092381,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasg-m37ja0gljrprfb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700005499,822059908662278,825465608492064,834403089593352,1015914,700190087,1213641,1000031,2018619,1400285055,825465608497696,834230400556567,844931086908638,298463379,298933384,822120592853526,2048660,2048661,2108629,1718093079,1718093084,298458396,1718088044,298468390,1718088045,298458398,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4351,\"model_id\":227093232142,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasg-m37ja0gljrprfb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700005499,822059908662278,825465608492064,834403089593352,1015914,700190087,1213641,1000031,2018619,1400285055,825465608497696,834230400556567,844931086908638,298463379,298933384,822120592853526,2048660,2048661,2108629,1718093079,1718093084,298458396,1718088044,298468390,1718088045,298458398,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4351,\"model_id\":227093232142,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26669277120",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27709291351,
              "shopid": 1329886519,
              "name": "REIWA AC Window CW-0501RA 1/2 PK 370 WATT - AC 0,5 PK-Garansi Resmi",
              "label_ids": [
                844931064601283,
                844931086908638,
                1400066568,
                1718093079,
                1000031,
                1059152,
                700005487,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                837860934119952,
                1718087960,
                1428713,
                2018619,
                1015914,
                700190087,
                834403089593352,
                298463379,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7r98y-lzh173pz49j97d",
              "images": [
                "id-11134207-7r98y-lzh173pz49j97d",
                "id-11134207-7r98u-lzh173pz5o3pe2",
                "id-11134207-7r98u-lzh173pz72o587",
                "id-11134207-7r98w-lzh173pz8h8l47",
                "id-11134207-7r98w-lzh173pz9vt140"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1724811179,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 248000000000,
              "price_min": 248000000000,
              "price_max": 248000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1b-lzkh15n9e49s08.16000081725018377.mp4",
                  "thumb_url": "id-11110105-7r98s-lzkh1dk7uvb3c7",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6ke1b-lzkh15n9e49s08",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1b-lzkh15n9e49s08.16000081725018377.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-lzkh15n9e49s08.16000081725018377.mp4",
                      "width": 576,
                      "height": 1024
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-lzkh15n9e49s08.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 248000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 157437968754,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 248000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "electronik blora",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 27709291351,
            "shopid": 1329886519,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98y-lzh173pz49j97d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1400066568,1718093079,1000031,1059152,700005487,822059908662278,825465608494624,825465608499232,825465608497696,837860934119952,1718087960,1428713,2018619,1015914,700190087,834403089593352,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":1805,\"model_id\":157437968754,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98y-lzh173pz49j97d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1400066568,1718093079,1000031,1059152,700005487,822059908662278,825465608494624,825465608499232,825465608497696,837860934119952,1718087960,1428713,2018619,1015914,700190087,834403089593352,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":1805,\"model_id\":157437968754,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27709291351",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25617814373,
              "shopid": 6689912,
              "name": "Reiwa AC Window Air Conditioner Pendingin AC Ruangan 0.5 PK CW-0501RA",
              "label_ids": [
                1000167,
                1213641,
                844931086908638,
                1400066568,
                298458395,
                1718087960,
                1428713,
                1015914,
                700190087,
                1718093079,
                1400285055,
                1000031,
                1918643,
                2018619,
                2023641,
                700005489,
                1059152,
                822059908662278,
                825465608497696,
                837860934119952,
                825465608492064,
                825465608499232,
                825465608494624,
                2048661,
                2048660,
                298933384,
                298458396,
                1718093084
              ],
              "image": "sg-11134201-7rcdi-lsoa364pubzya7",
              "images": [
                "sg-11134201-7rcdi-lsoa364pubzya7",
                "sg-11134201-7rcda-lsoa368lon6144",
                "sg-11134201-7rcby-lsoa36ezfay5ea",
                "sg-11134201-7rcch-lsoa36j598fff0",
                "sg-11134201-7rccc-lsoa36pszgv6d8",
                "id-11134207-7rbk0-m8h8f0e1f0r2da",
                "id-11134207-7rbkb-m8h8f0e0zki61b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1709994147,
              "sold": 0,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 17,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 2,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199900000000,
              "price_min": 199900000000,
              "price_max": 199900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmj7-mb1r28vnt36z38.16000041750035970.mp4",
                  "thumb_url": "id-11110105-6kmj7-mb1r28vnt36z38_cover",
                  "duration": 33,
                  "version": 2,
                  "vid": "id-11110105-6kmj7-mb1r28vnt36z38",
                  "formats": [
                    {
                      "format": 1600004,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj7-mb1r28vnt36z38.16000041750035970.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj7-mb1r28vnt36z38.16000041750035970.mp4",
                      "width": 638,
                      "height": 360
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj7-mb1r28vnt36z38.default.mp4",
                    "width": 848,
                    "height": 478
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Packing",
                  "options": [
                    "Bubble Wrap",
                    "Packing Kayu"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 243156728558,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ACC SuperMart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 25617814373,
            "shopid": 6689912,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rcdi-lsoa364pubzya7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1213641,844931086908638,1400066568,298458395,1718087960,1428713,1015914,700190087,1718093079,1400285055,1000031,1918643,2018619,2023641,700005489,1059152,822059908662278,825465608497696,837860934119952,825465608492064,825465608499232,825465608494624,2048661,2048660,298933384,298458396,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4446,\"model_id\":243156728558,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rcdi-lsoa364pubzya7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1213641,844931086908638,1400066568,298458395,1718087960,1428713,1015914,700190087,1718093079,1400285055,1000031,1918643,2018619,2023641,700005489,1059152,822059908662278,825465608497696,837860934119952,825465608492064,825465608499232,825465608494624,2048661,2048660,298933384,298458396,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4446,\"model_id\":243156728558,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25617814373",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27951043219,
              "shopid": 9500163,
              "name": "REIWA AC Window CW-0501RA 1/2 PK 370 WATT - AC 0,5 PK-Garansi Resmi",
              "label_ids": [
                47,
                1000167,
                1000544,
                1001176,
                700005487,
                1059152,
                822059908662278,
                827380695406658,
                837860934119952,
                822120592861206,
                840990690654214,
                840955085144628,
                825465608494624,
                834403089593352,
                825465608499232,
                825465608497696,
                298458395,
                1428713,
                1718087960,
                1000031,
                844931086908638,
                1015914,
                700190087,
                1718093079,
                1400285055,
                2018619,
                2023641,
                298893311,
                2048661,
                2048660,
                700765096,
                298463379,
                700750053,
                298933384,
                298888358,
                298938357,
                700700063,
                2098629,
                2098628,
                298468389,
                1718088045,
                298938368
              ],
              "image": "id-11134207-7r98x-lvshtwiq897398",
              "images": [
                "id-11134207-7r98x-lvshtwiq897398",
                "id-11134207-7r98x-lvshtwiq9nrjee",
                "id-11134207-7r98y-lvshtwiqb2bzb3",
                "id-11134207-7r98w-lvshtwiqcgwf91",
                "id-11134207-7r98w-lvshtwiqdvgv9a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1716787535,
              "sold": 0,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 121,
              "view_count": null,
              "catid": 100010,
              "brand": "Sogo",
              "cmt_count": 5,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "normal",
              "price": 247500000000,
              "price_min": 247500000000,
              "price_max": 247500000000,
              "price_min_before_discount": 250000000000,
              "price_max_before_discount": 250000000000,
              "hidden_price_display": null,
              "price_before_discount": 250000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-1%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1e-lzkh8a7rxlm577.16000081725018704.mp4",
                  "thumb_url": "id-11110105-7r98o-lzkh8dij45qd61",
                  "duration": 15,
                  "version": 2,
                  "vid": "id-11110105-6ke1e-lzkh8a7rxlm577",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1e-lzkh8a7rxlm577.16000081725018704.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1e-lzkh8a7rxlm577.16000081725018704.mp4",
                      "width": 576,
                      "height": 1024
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1e-lzkh8a7rxlm577.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 395652702158877,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp412RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 791300580884480,
                "price": 247500000000,
                "strikethrough_price": 250000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-1%",
                "model_id": 255900725256,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 250000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp412RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Blora Electrik ",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 27951043219,
            "shopid": 9500163,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-lvshtwiq897398\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,1000544,1001176,700005487,1059152,822059908662278,827380695406658,837860934119952,822120592861206,840990690654214,840955085144628,825465608494624,834403089593352,825465608499232,825465608497696,298458395,1428713,1718087960,1000031,844931086908638,1015914,700190087,1718093079,1400285055,2018619,2023641,298893311,2048661,2048660,700765096,298463379,700750053,298933384,298888358,298938357,700700063,2098629,2098628,298468389,1718088045,298938368],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4355,\"model_id\":255900725256,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-lvshtwiq897398\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,1000544,1001176,700005487,1059152,822059908662278,827380695406658,837860934119952,822120592861206,840990690654214,840955085144628,825465608494624,834403089593352,825465608499232,825465608497696,298458395,1428713,1718087960,1000031,844931086908638,1015914,700190087,1718093079,1400285055,2018619,2023641,298893311,2048661,2048660,700765096,298463379,700750053,298933384,298888358,298938357,700700063,2098629,2098628,298468389,1718088045,298938368],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4355,\"model_id\":255900725256,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27951043219",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27312149044,
              "shopid": 141331730,
              "name": "AC Window 1/2PK REIWA CW-0501RA 370 Watt AC Windows 1/2 PK Reiwa CW0501RA",
              "label_ids": [
                844931064601283,
                1015914,
                700190087,
                1213641,
                1918643,
                1000031,
                2018619,
                700765096,
                844931086908638,
                298933384,
                1718093079,
                298463379,
                1049116,
                1049117,
                2048660,
                2048661,
                822059908662278,
                825465608499232,
                825465608497696,
                822120592853526,
                2108629,
                1718088045,
                298458396,
                298468389,
                1718093084,
                298458398,
                1718088044,
                298468390
              ],
              "image": "id-11134207-7rasj-m0icrt3u9cek71",
              "images": [
                "id-11134207-7rasj-m0icrt3u9cek71"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1727084310,
              "sold": 1,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199900000000,
              "price_min": 199900000000,
              "price_max": 199900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 195413687133,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Perdana Elektronik SBY",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 27312149044,
            "shopid": 141331730,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasj-m0icrt3u9cek71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1015914,700190087,1213641,1918643,1000031,2018619,700765096,844931086908638,298933384,1718093079,298463379,1049116,1049117,2048660,2048661,822059908662278,825465608499232,825465608497696,822120592853526,2108629,1718088045,298458396,298468389,1718093084,298458398,1718088044,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4372,\"model_id\":195413687133,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasj-m0icrt3u9cek71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1015914,700190087,1213641,1918643,1000031,2018619,700765096,844931086908638,298933384,1718093079,298463379,1049116,1049117,2048660,2048661,822059908662278,825465608499232,825465608497696,822120592853526,2108629,1718088045,298458396,298468389,1718093084,298458398,1718088044,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4372,\"model_id\":195413687133,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27312149044",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29470478435,
              "shopid": 1306217813,
              "name": "AC Window Reiwa 1/2 PK CW 0501RA Direct Cooling REIWA AC Window 1/2 PK 370 watt CW-0501RA",
              "label_ids": [
                844931064601283,
                1049112,
                700005486,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                837860934119952,
                1000031,
                2018619,
                2023641,
                298463379,
                844931086908638,
                298933384,
                2068629,
                298938357,
                700810080,
                2098628,
                298938368,
                2098629,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7ras9-m3ovt9tgkhug91",
              "images": [
                "id-11134207-7ras9-m3ovt9tgkhug91",
                "id-11134207-7rasm-m3ovt9tgkh73bd",
                "id-11134207-7rasc-m3ovt9tgj36c2a",
                "id-11134207-7rask-m3ovvhsphlng24",
                "id-11134207-7rasj-m3ovvhsphli54e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1734001798,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 11,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 215000000000,
              "price_min": 215000000000,
              "price_max": 215000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6ke1i-m3ovw17n2ui60e.16000031734002461.mp4",
                  "thumb_url": "id-11110107-6ke1i-m3ovw17n2ui60e_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110107-6ke1i-m3ovw17n2ui60e",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ke1i-m3ovw17n2ui60e.16000031734002461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1i-m3ovw17n2ui60e.16000031734002461.mp4",
                      "width": 480,
                      "height": 848
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1i-m3ovw17n2ui60e.default.mp4",
                    "width": 480,
                    "height": 848
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp716RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 215000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 252238627664,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 215000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp716RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Bandaraย Sparepart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 29470478435,
            "shopid": 1306217813,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m3ovt9tgkhug91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700005486,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,837860934119952,1000031,2018619,2023641,298463379,844931086908638,298933384,2068629,298938357,700810080,2098628,298938368,2098629,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4432,\"model_id\":252238627664,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m3ovt9tgkhug91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700005486,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,837860934119952,1000031,2018619,2023641,298463379,844931086908638,298933384,2068629,298938357,700810080,2098628,298938368,2098629,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4432,\"model_id\":252238627664,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29470478435",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50750573007,
              "shopid": 190065806,
              "name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK",
              "label_ids": [
                1000167,
                2018619,
                2023641,
                844931064601283,
                298463379,
                1049112,
                1049133,
                1718093079,
                822059908662278,
                825465608497696,
                822120592853526,
                2098621,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224v-mgho0llk7y1a9a",
              "images": [
                "id-11134207-8224v-mgho0llk7y1a9a",
                "id-11134207-8224q-mgho0ljh3ytlca",
                "id-11134207-82250-mgho0llngj67ac",
                "id-11134207-8224o-mgho0llk9clq94",
                "id-11134207-8224t-mgho0ljbuc5q0f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761896181,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 222099000000,
              "price_min": 222099000000,
              "price_max": 222099000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Opsi Kirim",
                  "options": [
                    "Kurir toko",
                    "Kargo"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 222099000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 415051301071,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 222099000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Jayaabadijaya1",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 50750573007,
            "shopid": 190065806,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mgho0llk7y1a9a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,2023641,844931064601283,298463379,1049112,1049133,1718093079,822059908662278,825465608497696,822120592853526,2098621,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4921,\"model_id\":415051301071,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mgho0llk7y1a9a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,2023641,844931064601283,298463379,1049112,1049133,1718093079,822059908662278,825465608497696,822120592853526,2098621,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4921,\"model_id\":415051301071,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50750573007",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28677627452,
              "shopid": 123734508,
              "name": "AC Window Reiwa CW 0501RA 1/2PK Digital Remote",
              "label_ids": [
                1400066568,
                844931064601283,
                1718093079,
                1049134,
                700005505,
                822059908662278,
                825465608499232,
                298463379,
                1213641,
                2018619,
                1015914,
                700190087,
                298893311,
                825465608497696,
                2108629,
                2048660,
                2048661,
                700765096,
                822120592853526,
                2023641,
                1400285055,
                1400025118,
                298933384,
                1718088045,
                997921049,
                298458396,
                298468389,
                997921050,
                700585042,
                1718088044,
                1718093084,
                1718088046,
                298458398,
                298838363,
                298468390,
                1718093085
              ],
              "image": "id-11134207-7rbk8-m6pr6zrv3lf8d3",
              "images": [
                "id-11134207-7rbk8-m6pr6zrv3lf8d3",
                "id-11134207-7rbke-m6pr6zrv3lbh08"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1740593035,
              "sold": 0,
              "historical_sold": 18,
              "liked": false,
              "liked_count": 25,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 10,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 239900000000,
              "price_min": 239900000000,
              "price_max": 239900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Option",
                  "options": [
                    "AC Reiwa 1/2PK",
                    "AC+ Packing kayu"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.8,
                "rating_count": [
                  10,
                  0,
                  0,
                  0,
                  2,
                  8
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 239900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 285155192796,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 239900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 18,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 18,
                "display_sold_count_text": "18"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "demishops/ Tk Harko Audio",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                0,
                1000,
                1000,
                1000
              ]
            },
            "itemid": 28677627452,
            "shopid": 123734508,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk8-m6pr6zrv3lf8d3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1718093079,1049134,700005505,822059908662278,825465608499232,298463379,1213641,2018619,1015914,700190087,298893311,825465608497696,2108629,2048660,2048661,700765096,822120592853526,2023641,1400285055,1400025118,298933384,1718088045,997921049,298458396,298468389,997921050,700585042,1718088044,1718093084,1718088046,298458398,298838363,298468390,1718093085],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":1491,\"model_id\":285155192796,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk8-m6pr6zrv3lf8d3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1718093079,1049134,700005505,822059908662278,825465608499232,298463379,1213641,2018619,1015914,700190087,298893311,825465608497696,2108629,2048660,2048661,700765096,822120592853526,2023641,1400285055,1400025118,298933384,1718088045,997921049,298458396,298468389,997921050,700585042,1718088044,1718093084,1718088046,298458398,298838363,298468390,1718093085],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":1491,\"model_id\":285155192796,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28677627452",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 3807237887,
              "shopid": 184185674,
              "name": "Top Brand Ac 1/2PK Window Uchida-MP-W5MZ Murah",
              "label_ids": [
                1059152,
                700005489,
                822059908662278,
                825465608494624,
                822120592839702,
                825465608496160,
                822120592842774,
                825465608499232,
                822120592844310,
                822120592899094,
                844931026694327,
                844931046478970,
                844931064601283,
                1015914,
                700190087
              ],
              "image": "046ae8ccfb2ff791bb8dbfc3ee29493b",
              "images": [
                "046ae8ccfb2ff791bb8dbfc3ee29493b",
                "80f0f0ceb7d420a17d393d62fe103568",
                "1eb5f021060ca449e3323e554631ead8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1573891652,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 26,
              "view_count": null,
              "catid": 100010,
              "brand": "0",
              "cmt_count": 0,
              "flag": 917504,
              "cb_option": 0,
              "item_status": "normal",
              "price": 239850000000,
              "price_min": 239850000000,
              "price_max": 239850000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 239850000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 52856687622,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 239850000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "nazhimahhlaila",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88
              ]
            },
            "itemid": 3807237887,
            "shopid": 184185674,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"046ae8ccfb2ff791bb8dbfc3ee29493b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,700005489,822059908662278,825465608494624,822120592839702,825465608496160,822120592842774,825465608499232,822120592844310,822120592899094,844931026694327,844931046478970,844931064601283,1015914,700190087],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4900,\"model_id\":52856687622,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"046ae8ccfb2ff791bb8dbfc3ee29493b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,700005489,822059908662278,825465608494624,822120592839702,825465608496160,822120592842774,825465608499232,822120592844310,822120592899094,844931026694327,844931046478970,844931064601283,1015914,700190087],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4900,\"model_id\":52856687622,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_3807237887",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51502942451,
              "shopid": 230127244,
              "name": "REIWA AC WINDOW 1/2 PK WAC0501RA / CW-0501RA",
              "label_ids": [
                700700063,
                2018619,
                844931064601283,
                2108629,
                1049141,
                1049156,
                822059908662278,
                822120592853526,
                2023641
              ],
              "image": "id-11134207-82251-mi4i9vq5ibk355",
              "images": [
                "id-11134207-82251-mi4i9vq5ibk355",
                "id-11134207-8224w-mi4i9vq5jq4jfa",
                "id-11134207-8224z-mi4i9vq5l4oz0c",
                "id-11134207-82251-mi4i9vq5mj9f83",
                "id-11134207-82251-mi4i9vq5nxtve8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765457655,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194900000000,
              "price_min": 194900000000,
              "price_max": 194900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Sleman",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 194900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435284670067,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 194900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ATAKRIB ELEKTRONIK JOGJA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000
              ]
            },
            "itemid": 51502942451,
            "shopid": 230127244,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mi4i9vq5ibk355\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,844931064601283,2108629,1049141,1049156,822059908662278,822120592853526,2023641],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":1948,\"model_id\":435284670067,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mi4i9vq5ibk355\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,844931064601283,2108629,1049141,1049156,822059908662278,822120592853526,2023641],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":1948,\"model_id\":435284670067,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51502942451",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29666803773,
              "shopid": 29127246,
              "name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK CW0501RA",
              "label_ids": [
                844931064601283,
                1400066568,
                1213641,
                1000031,
                2018619,
                1718093079,
                1059156,
                700005499,
                822059908662278,
                825465608497696,
                834403089593352,
                844931086908638,
                2023641,
                298463379,
                1718088045,
                298468389,
                298458396,
                298458398,
                1718088044,
                298468390,
                1718093084
              ],
              "image": "id-11134207-7rbkd-m7roeyt1jykhd1",
              "images": [
                "id-11134207-7rbkd-m7roeyt1jykhd1",
                "id-11134207-7rasj-m2ahzwanel56d4",
                "id-11134207-7rase-m2ahzwanekzn14",
                "id-11134207-7rasm-m2ahzwadezj772",
                "id-11134207-7rasa-m2ahzwanekzk3d",
                "id-11134207-7rasi-m2ahzwanelfd3d",
                "id-11134207-7rasc-m2ahzwanelbobe"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1730952614,
              "sold": 0,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 208000000000,
              "price_min": 208000000000,
              "price_max": 208000000000,
              "price_min_before_discount": 267100000000,
              "price_max_before_discount": 267100000000,
              "hidden_price_display": null,
              "price_before_discount": 267100000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-22%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "PACKINGAN",
                  "options": [
                    "STANDART",
                    "EXTRA PACKING"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 755738285244416,
                "price": 208000000000,
                "strikethrough_price": 267100000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-22%",
                "model_id": 176784109285,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 267100000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ELEKTRONIIK MURAH SEMARANG",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                97
              ]
            },
            "itemid": 29666803773,
            "shopid": 29127246,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkd-m7roeyt1jykhd1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1213641,1000031,2018619,1718093079,1059156,700005499,822059908662278,825465608497696,834403089593352,844931086908638,2023641,298463379,1718088045,298468389,298458396,298458398,1718088044,298468390,1718093084],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4543,\"model_id\":176784109285,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkd-m7roeyt1jykhd1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1213641,1000031,2018619,1718093079,1059156,700005499,822059908662278,825465608497696,834403089593352,844931086908638,2023641,298463379,1718088045,298468389,298458396,298458398,1718088044,298468390,1718093084],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4543,\"model_id\":176784109285,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29666803773",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24388845380,
              "shopid": 1393119746,
              "name": "REIWA 1 PK CW-0901RA CW0901 RA 0901RA 1 PK STANDARD LOW WATT AC WINDOW REIWA",
              "label_ids": [
                844931064601283,
                1400066568,
                1049112,
                1718093079,
                1428713,
                1718087960,
                822059908662278,
                298463379,
                2023641,
                2018619,
                825465608497696,
                1015914,
                700190087,
                700830032,
                1059151,
                2048660,
                2048661,
                2068629,
                298938357,
                298468389,
                1718088045,
                298938368,
                2098628,
                2098629
              ],
              "image": "id-11134207-7ras8-m33l7hedide5cb",
              "images": [
                "id-11134207-7ras8-m33l7hedide5cb",
                "id-11134207-7rasc-m33l7hede5ot09",
                "id-11134207-7rasg-m33l7hedfk99c7",
                "id-11134207-7rasl-m33l7hedgytp5b",
                "id-11134207-7ras9-m33l7hedjryl93"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1732718405,
              "sold": 0,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 16,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 259900000000,
              "price_min": 259900000000,
              "price_max": 259900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1j-m33o3kzl7l7t41.16000081732718128.mp4",
                  "thumb_url": "id-11110105-7rasf-m33o3mtcjonf31",
                  "duration": 15,
                  "version": 2,
                  "vid": "id-11110105-6ke1j-m33o3kzl7l7t41",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1j-m33o3kzl7l7t41.16000081732718128.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1j-m33o3kzl7l7t41.16000081732718128.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1j-m33o3kzl7l7t41.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Packing",
                  "options": [
                    "Instant Dus",
                    "Instant Bubble",
                    "Expedisi Dus",
                    "Expedisi Palet Kayu",
                    "Expedisi Bubble"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp866RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 259900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 208016698872,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 259900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp866RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Kerta Electronics",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 24388845380,
            "shopid": 1393119746,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras8-m33l7hedide5cb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1049112,1718093079,1428713,1718087960,822059908662278,298463379,2023641,2018619,825465608497696,1015914,700190087,700830032,1059151,2048660,2048661,2068629,298938357,298468389,1718088045,298938368,2098628,2098629],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4548,\"model_id\":208016698872,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras8-m33l7hedide5cb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1049112,1718093079,1428713,1718087960,822059908662278,298463379,2023641,2018619,825465608497696,1015914,700190087,700830032,1059151,2048660,2048661,2068629,298938357,298468389,1718088045,298938368,2098628,2098629],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4548,\"model_id\":208016698872,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24388845380",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40250426847,
              "shopid": 204649203,
              "name": "Reiwa AC Window 1/2 PK 0,5 PK Direct Cooling 370 Watt CW-0501RA CW 0501RA CW0501RA CW0501",
              "label_ids": [
                2018619,
                700700063,
                1000167,
                1428713,
                1718087960,
                844931064601283,
                1049141,
                1049154,
                298463379,
                822059908662278,
                825465608492064,
                837860934119952,
                822120592853526,
                1718093065,
                1213641,
                825465608497696,
                700830032,
                2048660,
                2048661,
                298933384,
                1015914,
                700190087,
                1718093079,
                298468390,
                1718088044,
                298458396,
                298458398,
                1718093084,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7rbkb-m9lb284kp52lf2",
              "images": [
                "id-11134207-7rbkb-m9lb284kp52lf2",
                "id-11134207-7rbk7-m9lb284kqjn116",
                "id-11134207-7rbke-m9lb284ktcrx02",
                "id-11134207-7rbk1-m9lb284kurcdb9",
                "id-11134207-7rbk2-m9lb284kry7h62"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1746861971,
              "sold": 0,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 2,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 206000000000,
              "price_min": 206000000000,
              "price_max": 206000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6knan-m9lbbcy1l90t3f.16000081746861696.mp4",
                  "thumb_url": "id-11110105-6knan-m9lbbcy1l90t3f_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6knan-m9lbbcy1l90t3f",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knan-m9lbbcy1l90t3f.16000081746861696.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m9lbbcy1l90t3f.16000081746861696.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m9lbbcy1l90t3f.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4,
                "rating_count": [
                  2,
                  0,
                  0,
                  1,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Yogyakarta",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 206000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 285032916936,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 206000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CVSumberCahaya",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000
              ]
            },
            "itemid": 40250426847,
            "shopid": 204649203,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-m9lb284kp52lf2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700700063,1000167,1428713,1718087960,844931064601283,1049141,1049154,298463379,822059908662278,825465608492064,837860934119952,822120592853526,1718093065,1213641,825465608497696,700830032,2048660,2048661,298933384,1015914,700190087,1718093079,298468390,1718088044,298458396,298458398,1718093084,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":731,\"model_id\":285032916936,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-m9lb284kp52lf2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700700063,1000167,1428713,1718087960,844931064601283,1049141,1049154,298463379,822059908662278,825465608492064,837860934119952,822120592853526,1718093065,1213641,825465608497696,700830032,2048660,2048661,298933384,1015914,700190087,1718093079,298468390,1718088044,298458396,298458398,1718093084,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":731,\"model_id\":285032916936,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40250426847",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27414748570,
              "shopid": 397250638,
              "name": "REIWA AC Window CW-0501RA (0,5 PK) / CW-0501 RA",
              "label_ids": [
                844931064601283,
                1059152,
                700005489,
                822059908662278,
                825465608492064,
                2018619,
                2048660,
                2048661,
                700765096
              ],
              "image": "id-11134207-7rasd-m2qckqgmd22r6c",
              "images": [
                "id-11134207-7rasd-m2qckqgmd22r6c",
                "id-11134207-7rasm-m1mnjleit0wf22",
                "id-11134207-7rasf-m1mnjleiufgve7",
                "id-11134207-7rasa-m1mnjleivu1be0",
                "id-11134207-7rasd-m1mnjleix8lrd3",
                "id-11134207-7rasb-m1mnjleiyn671e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1729508931,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 8,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 201500000000,
              "price_min": 201500000000,
              "price_max": 201500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 201500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 195480397980,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 201500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Ok One Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 27414748570,
            "shopid": 397250638,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m2qckqgmd22r6c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005489,822059908662278,825465608492064,2018619,2048660,2048661,700765096],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4994,\"model_id\":195480397980,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m2qckqgmd22r6c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005489,822059908662278,825465608492064,2018619,2048660,2048661,700765096],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4994,\"model_id\":195480397980,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27414748570",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28774776327,
              "shopid": 1119774676,
              "name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK// AC WINDOW  REIWA 0,5 PK GARANSI RESMI[GE]",
              "label_ids": [
                844931064601283,
                1400066568,
                1213641,
                2018619,
                2023641,
                1059156,
                700005499,
                822059908662278,
                1015914,
                700190087,
                298893311,
                825465608497696,
                844931086908638,
                298933384,
                298463379,
                298468389,
                298468390,
                298458396,
                298458398
              ],
              "image": "sg-11134201-7rdxu-mbxmgyvfx4jdae",
              "images": [
                "sg-11134201-7rdxu-mbxmgyvfx4jdae",
                "sg-11134201-7rblk-m5l4uxf4txse7d",
                "sg-11134201-7rbkf-m5l4uxi6qvke21",
                "sg-11134201-7rblz-m5l4uxlikna6a5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1738133875,
              "sold": 0,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 210000000000,
              "price_min": 210000000000,
              "price_max": 210000000000,
              "price_min_before_discount": 267150000000,
              "price_max_before_discount": 267150000000,
              "hidden_price_display": null,
              "price_before_discount": 267150000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-21%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "PACKINGAN",
                  "options": [
                    "STANDART",
                    "EXTRAPACKING"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 758021546901504,
                "price": 210000000000,
                "strikethrough_price": 267150000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-21%",
                "model_id": 242562454583,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 267150000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "grosir elektronic murah",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 28774776327,
            "shopid": 1119774676,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxu-mbxmgyvfx4jdae\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1213641,2018619,2023641,1059156,700005499,822059908662278,1015914,700190087,298893311,825465608497696,844931086908638,298933384,298463379,298468389,298468390,298458396,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4630,\"model_id\":242562454583,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxu-mbxmgyvfx4jdae\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1213641,2018619,2023641,1059156,700005499,822059908662278,1015914,700190087,298893311,825465608497696,844931086908638,298933384,298463379,298468389,298468390,298458396,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4630,\"model_id\":242562454583,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28774776327",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41266948646,
              "shopid": 1467639276,
              "name": "AC WINDOW BESTLIFE 0,5PK/BWA05PLD/1/2pk GOLDFIN Remot control",
              "label_ids": [
                298463379,
                844931064601283,
                1049142,
                1049143,
                1718093079,
                822059908662278,
                825465608499232,
                2018619,
                2048661,
                2048660,
                700765096,
                834403089593352,
                825465608497696,
                1718088045,
                298468389
              ],
              "image": "id-11134207-81zto-me484xf67ugx3d",
              "images": [
                "id-11134207-81zto-me484xf67ugx3d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1756744463,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100010,
              "brand": "Bestlife",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 235000000000,
              "price_min": 235000000000,
              "price_max": 235000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pekanbaru",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 235000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 243844943368,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 235000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ELEKTRONIK AL-FATH",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000
              ]
            },
            "itemid": 41266948646,
            "shopid": 1467639276,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zto-me484xf67ugx3d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,844931064601283,1049142,1049143,1718093079,822059908662278,825465608499232,2018619,2048661,2048660,700765096,834403089593352,825465608497696,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\"],\"merge_rank\":797,\"model_id\":243844943368,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zto-me484xf67ugx3d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,844931064601283,1049142,1049143,1718093079,822059908662278,825465608499232,2018619,2048661,2048660,700765096,834403089593352,825465608497696,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\"],\"merge_rank\":797,\"model_id\":243844943368,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41266948646",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28804568437,
              "shopid": 144447241,
              "name": "AC Window Reiwa 1/2PK CW 0501RA Low Watt 5000Btu Refrigerant R32 Direct Cooling Tanpa Instalasi Pipa",
              "label_ids": [
                1000167,
                844931064601283,
                1400066568,
                1049116,
                700005516,
                822059908662278,
                1213641,
                1015914,
                700190087,
                1400285055,
                1918643,
                1000031,
                2018619,
                825465608497696,
                844931086908638,
                298933384,
                1718093079,
                825465608492064,
                2068629,
                298938357,
                298458396,
                1718093084,
                2098629
              ],
              "image": "id-11134207-8224z-mgnl8zqk3mdrc2",
              "images": [
                "id-11134207-8224z-mgnl8zqk3mdrc2",
                "id-11134207-7r98v-lxc3tk4r8dum78",
                "id-11134207-7r98x-lxc3tk4rcljyaa",
                "id-11134207-7r98y-lxc3tk4r9sf250",
                "id-11134207-7r98r-lxc3tk4rb6zifb",
                "id-11134207-7r98r-lxc3tk4r6za6c4",
                "id-11134207-7r98r-lxc3tk4re04e75",
                "id-11134207-7r98w-lxc3tk4rfeou0a",
                "id-11134207-7r98o-lxc3tk4rgt9a83"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1720153777,
              "sold": 0,
              "historical_sold": 601,
              "liked": false,
              "liked_count": 1098,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 331,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199778000000,
              "price_min": 199778000000,
              "price_max": 199778000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1c-lxc3uxk4to2md4.16000081720153466.mp4",
                  "thumb_url": "id-11110105-7r98q-lxc3v2f7pt0yfb",
                  "duration": 33,
                  "version": 2,
                  "vid": "id-11110105-6ke1c-lxc3uxk4to2md4",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1c-lxc3uxk4to2md4.16003251726289200.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1c-lxc3uxk4to2md4.16003251726289200.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1c-lxc3uxk4to2md4.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Paket Bonus",
                  "options": [
                    "AC Only",
                    "AC + Packing Kayu"
                  ],
                  "images": [
                    "id-11134207-8224t-mg528hm5yqko36",
                    "id-11134207-82250-mgnl8zqli6tkbb"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.893805309734513,
                "rating_count": [
                  339,
                  1,
                  0,
                  4,
                  24,
                  310
                ],
                "rcount_with_context": 140,
                "rcount_with_image": 91
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Sidoarjo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199478000000,
                "strikethrough_price": 199778000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1293973935374336,
                "discount_text": null,
                "model_id": 360072459389,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1293973935374336,
                  "voucher_code": "GRAN1499",
                  "voucher_discount": 300000000,
                  "time_info": {
                    "start_time": 1763713440,
                    "end_time": 1771752240,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 149900000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 199778000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 601,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 601,
                "display_sold_count_text": "601"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "grandivo",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                91,
                97
              ]
            },
            "itemid": 28804568437,
            "shopid": 144447241,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mgnl8zqk3mdrc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1400066568,1049116,700005516,822059908662278,1213641,1015914,700190087,1400285055,1918643,1000031,2018619,825465608497696,844931086908638,298933384,1718093079,825465608492064,2068629,298938357,298458396,1718093084,2098629],\"matched_keywords\":[\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":2888,\"model_id\":360072459389,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mgnl8zqk3mdrc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1400066568,1049116,700005516,822059908662278,1213641,1015914,700190087,1400285055,1918643,1000031,2018619,825465608497696,844931086908638,298933384,1718093079,825465608492064,2068629,298938357,298458396,1718093084,2098629],\"matched_keywords\":[\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":2888,\"model_id\":360072459389,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28804568437",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42475305623,
              "shopid": 170906193,
              "name": "REIWA AC Window CW-0501RA Pendingin Ruangan 0.5 PK GARANSI RESMI",
              "label_ids": [
                2023641,
                2018619,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1718093079,
                1049112,
                1049133,
                822059908662278,
                822120592853526,
                825465608497696,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224y-mg3avc3q8qvdbf",
              "images": [
                "id-11134207-8224y-mg3avc3q8qvdbf",
                "id-11134207-8224y-mg3el1w0tszx2d",
                "id-11134207-8224u-mg3el1w1ant6b0",
                "id-11134207-8224t-mg3el1w1dgy2df"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761032581,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 213500000000,
              "price_min": 213500000000,
              "price_max": 213500000000,
              "price_min_before_discount": 299500000000,
              "price_max_before_discount": 299500000000,
              "hidden_price_display": null,
              "price_before_discount": 299500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-29%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv5-mg3ehiiwgutr8c.16000031761032090.mp4",
                  "thumb_url": "id-11110105-6vdv5-mg3ehiiwgutr8c_cover",
                  "duration": 34,
                  "version": 2,
                  "vid": "id-11110105-6vdv5-mg3ehiiwgutr8c",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv5-mg3ehiiwgutr8c.16000031761032090.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv5-mg3ehiiwgutr8c.16000031761032090.mp4",
                      "width": 480,
                      "height": 854
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv5-mg3ehiiwgutr8c.default.mp4",
                    "width": 480,
                    "height": 854
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 769462257648640,
                "price": 213500000000,
                "strikethrough_price": 299500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-29%",
                "model_id": 254053055979,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 299500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "TOKOLESTARIHAPPY1208",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 42475305623,
            "shopid": 170906193,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mg3avc3q8qvdbf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931064601283,298463379,1718093079,1049112,1049133,822059908662278,822120592853526,825465608497696,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4842,\"model_id\":254053055979,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mg3avc3q8qvdbf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931064601283,298463379,1718093079,1049112,1049133,822059908662278,822120592853526,825465608497696,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4842,\"model_id\":254053055979,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42475305623",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28453328196,
              "shopid": 27569236,
              "name": "AC REIWA AC Window 1/2 PK CW-0501RA 0,5 PK AC 1/2PK",
              "label_ids": [
                47,
                1000167,
                1000544,
                1400095067,
                1400285005,
                844931064601283,
                1015914,
                700190087,
                1400285055,
                1000031,
                1400066568,
                2018619,
                2023641,
                298893311,
                700005490,
                700005495,
                822059908662278,
                834403089593352,
                2048660,
                2048661,
                822120592853526,
                825465608497696,
                700765096,
                1718093079,
                700750053,
                700810080
              ],
              "image": "id-11134207-7r98w-lwr0s8jw1p9qa7",
              "images": [
                "id-11134207-7r98w-lwr0s8jw1p9qa7",
                "id-11134207-7r98s-lwr0s8jvxhke85",
                "id-11134207-7r98z-lwr0s8jvyw4ucc",
                "id-11134207-7r98v-lwr0s8jw0apa9a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1718877218,
              "sold": 0,
              "historical_sold": 42,
              "liked": false,
              "liked_count": 28,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 16,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 205000000000,
              "price_min": 205000000000,
              "price_max": 205000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "packing",
                  "options": [
                    "packing buble",
                    "polos",
                    "packing kayu"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.782608695652174,
                "rating_count": [
                  23,
                  1,
                  0,
                  0,
                  1,
                  21
                ],
                "rcount_with_context": 12,
                "rcount_with_image": 8
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 205000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 79457019306,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 205000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 42,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 42,
                "display_sold_count_text": "42"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Barat Daya Elektronik",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                97,
                91
              ]
            },
            "itemid": 28453328196,
            "shopid": 27569236,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98w-lwr0s8jw1p9qa7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,1000544,1400095067,1400285005,844931064601283,1015914,700190087,1400285055,1000031,1400066568,2018619,2023641,298893311,700005490,700005495,822059908662278,834403089593352,2048660,2048661,822120592853526,825465608497696,700765096,1718093079,700750053,700810080],\"matched_keywords\":[\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":4472,\"model_id\":79457019306,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,97,91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98w-lwr0s8jw1p9qa7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,1000544,1400095067,1400285005,844931064601283,1015914,700190087,1400285055,1000031,1400066568,2018619,2023641,298893311,700005490,700005495,822059908662278,834403089593352,2048660,2048661,822120592853526,825465608497696,700765096,1718093079,700750053,700810080],\"matched_keywords\":[\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":4472,\"model_id\":79457019306,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,97,91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28453328196",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26366076613,
              "shopid": 1386437279,
              "name": "AC WINDOW 1/2 PK REIWA CW 0501RA",
              "label_ids": [
                844931064601283,
                1718093079,
                700005490,
                1049137,
                822059908662278,
                825465608492064,
                837860934119952,
                1400066568,
                1213641,
                1000031,
                2018619,
                825465608497696,
                298463379,
                1015914,
                700190087,
                2048660,
                2048661,
                700765096,
                1718093084,
                298468390,
                1718088044,
                298458398,
                298458396,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7ras9-m20f2jkzvlko01",
              "images": [
                "id-11134207-7ras9-m20f2jkzvlko01",
                "id-11134207-7rasj-m20f2jkzx05418"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1730342501,
              "sold": 0,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 4,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 217300000000,
              "price_min": 217300000000,
              "price_max": 217300000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  0,
                  4
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Serang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 217300000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 256916457776,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 217300000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Alfamegaelectronic",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 26366076613,
            "shopid": 1386437279,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m20f2jkzvlko01\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005490,1049137,822059908662278,825465608492064,837860934119952,1400066568,1213641,1000031,2018619,825465608497696,298463379,1015914,700190087,2048660,2048661,700765096,1718093084,298468390,1718088044,298458398,298458396,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5173,\"model_id\":256916457776,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m20f2jkzvlko01\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005490,1049137,822059908662278,825465608492064,837860934119952,1400066568,1213641,1000031,2018619,825465608497696,298463379,1015914,700190087,2048660,2048661,700765096,1718093084,298468390,1718088044,298458398,298458396,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5173,\"model_id\":256916457776,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26366076613",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27268080687,
              "shopid": 141331730,
              "name": "AC Window 1PK Reiwa CW0901RA",
              "label_ids": [
                844931064601283,
                1049116,
                1049117,
                822059908662278,
                825465608499232,
                822120592853526,
                2018619,
                298893311,
                825465608497696,
                837860934119952,
                844931086908638,
                1718093079,
                298463379,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7rasc-m2rn4ltkrfs0cb",
              "images": [
                "id-11134207-7rasc-m2rn4ltkrfs0cb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1732017886,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 239500000000,
              "price_min": 239500000000,
              "price_max": 239500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 239500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 252062074889,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 239500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Perdana Elektronik SBY",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 27268080687,
            "shopid": 141331730,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasc-m2rn4ltkrfs0cb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049117,822059908662278,825465608499232,822120592853526,2018619,298893311,825465608497696,837860934119952,844931086908638,1718093079,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4313,\"model_id\":252062074889,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasc-m2rn4ltkrfs0cb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049117,822059908662278,825465608499232,822120592853526,2018619,298893311,825465608497696,837860934119952,844931086908638,1718093079,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4313,\"model_id\":252062074889,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27268080687",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27641206050,
              "shopid": 192403421,
              "name": "Ac Window Reiwa 1/2 PK dan 1 PK Low Watt Original",
              "label_ids": [
                1000167,
                2023641,
                2018619,
                844931064601283,
                298463379,
                1049116,
                1049117,
                1718093079,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608499232,
                700765096,
                700750053,
                298933384,
                1718088045,
                298468389
              ],
              "image": "id-11134207-81ztc-mebb2pzzztoj32",
              "images": [
                "id-11134207-81ztc-mebb2pzzztoj32",
                "id-11134207-81ztc-mebb2pzia3uvf3",
                "id-11134207-81ztg-mebb2pzibifbef",
                "id-11134207-81zti-mebb2pztlgjmb4",
                "id-11134207-81ztn-mebb2pzx6osl58",
                "id-11134207-81ztg-mebb2pzuhrly16",
                "id-11134207-81ztm-mebb2pzi5w5j65",
                "id-11134207-81ztm-mebb2pzi7apzd2",
                "id-11134207-81ztj-mebb2pzi8pafa8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1757152645,
              "sold": 1,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 8,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 2,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 205900000000,
              "price_min": 205900000000,
              "price_max": 205900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Ukuran",
                  "options": [
                    "1 PK",
                    "1/2PK"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  1,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 205900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 296465474949,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 205900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BESTMARKET99",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 27641206050,
            "shopid": 192403421,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztc-mebb2pzzztoj32\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2023641,2018619,844931064601283,298463379,1049116,1049117,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608499232,700765096,700750053,298933384,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4440,\"model_id\":296465474949,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztc-mebb2pzzztoj32\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2023641,2018619,844931064601283,298463379,1049116,1049117,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608499232,700765096,700750053,298933384,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4440,\"model_id\":296465474949,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27641206050",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29017675307,
              "shopid": 257396949,
              "name": "AC Window REIWA CW 0901RA / CW0901RA 1 PK 370 Watt Low Watt",
              "label_ids": [
                844931064601283,
                1049127,
                1049112,
                822059908662278,
                825465608492064,
                825465608499232,
                822120592853526,
                1718093079,
                1213641,
                2018619,
                298463379,
                2048661,
                2048660,
                700765096,
                298468389,
                1718093084,
                298458398,
                1718088045,
                298458396,
                298468390,
                1718088044
              ],
              "image": "id-11134207-7ras9-m2lr293d3zoyb2",
              "images": [
                "id-11134207-7ras9-m2lr293d3zoyb2",
                "id-11134207-7rasj-m2lr293d16k237"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1731636258,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 252000000000,
              "price_min": 252000000000,
              "price_max": 252000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 252000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 158885994843,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 252000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "grosirelektronik1",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 29017675307,
            "shopid": 257396949,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m2lr293d3zoyb2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049127,1049112,822059908662278,825465608492064,825465608499232,822120592853526,1718093079,1213641,2018619,298463379,2048661,2048660,700765096,298468389,1718093084,298458398,1718088045,298458396,298468390,1718088044],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4754,\"model_id\":158885994843,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m2lr293d3zoyb2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049127,1049112,822059908662278,825465608492064,825465608499232,822120592853526,1718093079,1213641,2018619,298463379,2048661,2048660,700765096,298468389,1718093084,298458398,1718088045,298458396,298468390,1718088044],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4754,\"model_id\":158885994843,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29017675307",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24386748029,
              "shopid": 60560992,
              "name": "REIWA AC WINDOW 1/2 PK CW 0501 RA - GARANSI RESMI",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                822120592853526,
                2018619,
                298463379,
                2023641,
                298468389
              ],
              "image": "id-11134207-7rasm-m0y43tszokz7e6",
              "images": [
                "id-11134207-7rasm-m0y43tszokz7e6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1728028595,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 205000000000,
              "price_min": 205000000000,
              "price_max": 205000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1f-m1z4ruk5viel8b.16000041730264254.mp4",
                  "thumb_url": "id-11110105-7ras9-m1z4rwmiv12q82",
                  "duration": 12,
                  "version": 2,
                  "vid": "id-11110105-6ke1f-m1z4ruk5viel8b",
                  "formats": [
                    {
                      "format": 1600004,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1f-m1z4ruk5viel8b.16000041730264254.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1f-m1z4ruk5viel8b.16000041730264254.mp4",
                      "width": 360,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1f-m1z4ruk5viel8b.default.mp4",
                    "width": 478,
                    "height": 850
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 205000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 185438227162,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 205000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "pusatglobal",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 24386748029,
            "shopid": 60560992,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m0y43tszokz7e6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822120592853526,2018619,298463379,2023641,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5121,\"model_id\":185438227162,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m0y43tszokz7e6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822120592853526,2018619,298463379,2023641,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5121,\"model_id\":185438227162,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24386748029",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28902148732,
              "shopid": 102037641,
              "name": "AC Window Reiwa CW-0501RA 1/2 PK - GW0501RA 0.5pk 0.5 pk 1/2pk",
              "label_ids": [
                298463379,
                298458395,
                1213641,
                1718093079,
                2018619,
                2023641,
                1059152,
                1059154,
                825465608497696,
                822059908662278,
                825465608492064,
                834403089593352,
                837860934119952,
                2048660,
                2048661,
                700765096,
                1718088044,
                1718088045,
                298458398,
                1718093084,
                298468389,
                298468390,
                298458396
              ],
              "image": "sg-11134201-7rd58-lw9so6opltx1ea",
              "images": [
                "sg-11134201-7rd58-lw9so6opltx1ea",
                "sg-11134201-7rd4f-lw9so6tze3ji7c",
                "sg-11134201-7rd48-lw9so6yf7lm7ee",
                "sg-11134201-7rd57-lw9so72l1ix854",
                "sg-11134201-7rd3q-lw9so77ku7yab5",
                "sg-11134201-7rd4a-lw9so7cumi303a",
                "sg-11134201-7rd50-lw9so7hkfl3s07",
                "sg-11134201-7rd5r-lw9so7ma8p4f5b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1717834341,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 207500000000,
              "price_min": 207500000000,
              "price_max": 207500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 207500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 226421117102,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 207500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KiosElektronik",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 28902148732,
            "shopid": 102037641,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rd58-lw9so6opltx1ea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,298458395,1213641,1718093079,2018619,2023641,1059152,1059154,825465608497696,822059908662278,825465608492064,834403089593352,837860934119952,2048660,2048661,700765096,1718088044,1718088045,298458398,1718093084,298468389,298468390,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4961,\"model_id\":226421117102,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rd58-lw9so6opltx1ea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,298458395,1213641,1718093079,2018619,2023641,1059152,1059154,825465608497696,822059908662278,825465608492064,834403089593352,837860934119952,2048660,2048661,700765096,1718088044,1718088045,298458398,1718093084,298468389,298468390,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4961,\"model_id\":226421117102,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28902148732",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26515760499,
              "shopid": 436536134,
              "name": "AC Paling Murah Reiwa AC Window 1/2 PK CW-0501RA FREE ONGKIR (JABODETABEK) GARANSI RESMI",
              "label_ids": [
                844931064601283,
                1918643,
                298463379,
                2018619,
                700700063,
                1059152,
                1049122,
                822059908662278,
                822120592853526,
                825465608499232,
                825465608497696,
                298468389
              ],
              "image": "id-11134207-7rasi-m1wfby5vsp5r5e",
              "images": [
                "id-11134207-7rasi-m1wfby5vsp5r5e",
                "id-11134207-7rasj-m1wfby5vu3q7c3",
                "id-11134207-7ras9-m2pjosubtns0e7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1730100532,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 195900000000,
              "price_min": 195900000000,
              "price_max": 195900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6knar-m95nf0oiq2du2e.16000031745913498.mp4",
                  "thumb_url": "id-11110105-6knar-m95nf0oiq2du2e_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6knar-m95nf0oiq2du2e",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knar-m95nf0oiq2du2e.16000031745913498.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knar-m95nf0oiq2du2e.16000031745913498.mp4",
                      "width": 480,
                      "height": 848
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knar-m95nf0oiq2du2e.default.mp4",
                    "width": 480,
                    "height": 848
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 195900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 233386702923,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 195900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Prisma Elektro",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 26515760499,
            "shopid": 436536134,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m1wfby5vsp5r5e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1918643,298463379,2018619,700700063,1059152,1049122,822059908662278,822120592853526,825465608499232,825465608497696,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5228,\"model_id\":233386702923,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m1wfby5vsp5r5e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1918643,298463379,2018619,700700063,1059152,1049122,822059908662278,822120592853526,825465608499232,825465608497696,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5228,\"model_id\":233386702923,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26515760499",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28526037830,
              "shopid": 36168193,
              "name": "AC Window Reiwa 0,5pk CW-0501RA 1/2pk Low Watt 370watt CW 0501 RA",
              "label_ids": [
                844931064601283,
                1049112,
                700005512,
                822059908662278,
                825465608492064,
                834403089593352,
                1213641,
                2018619,
                2023641,
                1400066568,
                837860934119952,
                825465608499232,
                825465608497696,
                1718093079,
                298463379,
                2048660,
                2048661,
                298468390,
                298458396,
                1718093084,
                298468389,
                1718088044,
                1718088045,
                298458398
              ],
              "image": "sg-11134201-7repz-m8vx7r7s3hd3f3",
              "images": [
                "sg-11134201-7repz-m8vx7r7s3hd3f3",
                "sg-11134201-7reqp-m8vx7ri1n3o944",
                "sg-11134201-7reop-m8vx7rvx1e8pea",
                "sg-11134201-7reo0-m8vx7s84p3mv70",
                "sg-11134201-7renb-m8vx7skc1m7b5f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1739426901,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199207300000,
              "price_min": 199207300000,
              "price_max": 199207300000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199207300000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 242629738056,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199207300000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Zhuper Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 28526037830,
            "shopid": 36168193,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7repz-m8vx7r7s3hd3f3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1213641,2018619,2023641,1400066568,837860934119952,825465608499232,825465608497696,1718093079,298463379,2048660,2048661,298468390,298458396,1718093084,298468389,1718088044,1718088045,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4345,\"model_id\":242629738056,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7repz-m8vx7r7s3hd3f3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1213641,2018619,2023641,1400066568,837860934119952,825465608499232,825465608497696,1718093079,298463379,2048660,2048661,298468390,298458396,1718093084,298468389,1718088044,1718088045,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4345,\"model_id\":242629738056,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28526037830",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29274149321,
              "shopid": 512607519,
              "name": "REIWA AC Window 1/2 PK CW-0501RA",
              "label_ids": [
                844931064601283,
                1059156,
                700005525,
                822059908662278,
                2018619,
                298463379,
                1718093079,
                825465608497696,
                1400066568,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224p-mfyuh8y62dqga4",
              "images": [
                "id-11134207-8224p-mfyuh8y62dqga4",
                "id-11134207-7rash-m5a0u0qag8t929"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1737468164,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 209900000000,
              "price_min": 209900000000,
              "price_max": 209900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Jepara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 209900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 252518127161,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 209900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "bintangelecto",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 29274149321,
            "shopid": 512607519,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mfyuh8y62dqga4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700005525,822059908662278,2018619,298463379,1718093079,825465608497696,1400066568,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4580,\"model_id\":252518127161,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mfyuh8y62dqga4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700005525,822059908662278,2018619,298463379,1718093079,825465608497696,1400066568,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4580,\"model_id\":252518127161,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29274149321",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25032507133,
              "shopid": 91105112,
              "name": "Reiwa AC Window 1/2 PK CW-0501RA",
              "label_ids": [
                1000167,
                844931064601283,
                1049147,
                1049112,
                822059908662278,
                837860934119952,
                1718093079,
                2018619,
                825465608497696,
                298463379,
                2023641,
                700810080,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7r992-lws5sh6t9mqj6d",
              "images": [
                "id-11134207-7r992-lws5sh6t9mqj6d",
                "id-11134207-7r98u-lws5sh6tb1az44"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1718946250,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 210000000000,
              "price_min": 210000000000,
              "price_max": 210000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 210000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 251059843604,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 210000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "FOE_BOGOR",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 25032507133,
            "shopid": 91105112,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r992-lws5sh6t9mqj6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1049147,1049112,822059908662278,837860934119952,1718093079,2018619,825465608497696,298463379,2023641,700810080,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5374,\"model_id\":251059843604,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r992-lws5sh6t9mqj6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1049147,1049112,822059908662278,837860934119952,1718093079,2018619,825465608497696,298463379,2023641,700810080,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5374,\"model_id\":251059843604,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25032507133",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28472154562,
              "shopid": 785619959,
              "name": "AC REIWA WINDOW CW-0501RA 1/2PK",
              "label_ids": [
                844931064601283,
                1049137,
                700005490,
                822059908662278,
                825465608492064,
                822120592853526,
                1213641,
                2018619,
                2023641,
                825465608497696,
                825465608499232,
                298463379,
                1718093079,
                2048660,
                2048661,
                700765096,
                298468390,
                1718093084,
                298458396,
                1718088045,
                298468389,
                1718088044,
                298458398
              ],
              "image": "sg-11134201-7rfig-m4efdc2a7o63d5",
              "images": [
                "sg-11134201-7rfig-m4efdc2a7o63d5",
                "sg-11134201-7rffp-m4efdcd3ru8872",
                "sg-11134201-7rfh1-m4efdcm9egdw89",
                "sg-11134201-7rfg8-m4efdcq58q2n11",
                "sg-11134201-7rfh9-m4efdd6skejm18"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1735548569,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 218000000000,
              "price_min": 218000000000,
              "price_max": 218000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "PACKING",
                  "options": [
                    "DUS BAWAAN",
                    "+BUBBLE WRAP"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Serang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 218000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 237218854375,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 218000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Global Elektronic Serang",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 28472154562,
            "shopid": 785619959,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rfig-m4efdc2a7o63d5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049137,700005490,822059908662278,825465608492064,822120592853526,1213641,2018619,2023641,825465608497696,825465608499232,298463379,1718093079,2048660,2048661,700765096,298468390,1718093084,298458396,1718088045,298468389,1718088044,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4530,\"model_id\":237218854375,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rfig-m4efdc2a7o63d5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049137,700005490,822059908662278,825465608492064,822120592853526,1213641,2018619,2023641,825465608497696,825465608499232,298463379,1718093079,2048660,2048661,700765096,298468390,1718093084,298458396,1718088045,298468389,1718088044,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4530,\"model_id\":237218854375,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28472154562",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26818931564,
              "shopid": 1003418508,
              "name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK CW0501RA [SG]",
              "label_ids": [
                844931064601283,
                1213641,
                1000031,
                1400066568,
                2018619,
                2023641,
                1059156,
                700005499,
                822059908662278,
                825465608497696,
                1718093079,
                1400285055,
                1015914,
                700190087,
                844931086908638,
                298463379,
                298458398,
                1718088045,
                298468389,
                298468390,
                1718093084,
                298458396,
                1718088044
              ],
              "image": "sg-11134201-7rfg0-m3399z42jb0p44",
              "images": [
                "sg-11134201-7rfg0-m3399z42jb0p44",
                "sg-11134201-7rfg2-m3399zb09689e1",
                "sg-11134201-7rffd-m3399zhxz0ftdc",
                "sg-11134201-7rfhj-m3399ztvizok83",
                "sg-11134201-7rfgj-m339a02h4zzt2e",
                "sg-11134201-7rfhv-m339a0eenifae2",
                "sg-11134201-7rfhs-m339a0s050jdf3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1732693204,
              "sold": 0,
              "historical_sold": 9,
              "liked": false,
              "liked_count": 6,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 5,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 210000000000,
              "price_min": 210000000000,
              "price_max": 210000000000,
              "price_min_before_discount": 234150000000,
              "price_max_before_discount": 234150000000,
              "hidden_price_display": null,
              "price_before_discount": 234150000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-10%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmiw-mamgypoafvqj39.16000081749110974.mp4",
                  "thumb_url": "id-11110105-6kmiw-mamgypoafvqj39_cover",
                  "duration": 46,
                  "version": 2,
                  "vid": "id-11110105-6kmiw-mamgypoafvqj39",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmiw-mamgypoafvqj39.16000081749110974.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiw-mamgypoafvqj39.16000081749110974.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiw-mamgypoafvqj39.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "PACKINGAN",
                  "options": [
                    "STANDART",
                    "EXTRA PACKING"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 755020295881728,
                "price": 210000000000,
                "strikethrough_price": 234150000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-10%",
                "model_id": 119333158040,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 234150000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 9,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 9,
                "display_sold_count_text": "9"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Sentra Grosir SGE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 26818931564,
            "shopid": 1003418508,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rfg0-m3399z42jb0p44\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1000031,1400066568,2018619,2023641,1059156,700005499,822059908662278,825465608497696,1718093079,1400285055,1015914,700190087,844931086908638,298463379,298458398,1718088045,298468389,298468390,1718093084,298458396,1718088044],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4367,\"model_id\":119333158040,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rfg0-m3399z42jb0p44\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1000031,1400066568,2018619,2023641,1059156,700005499,822059908662278,825465608497696,1718093079,1400285055,1015914,700190087,844931086908638,298463379,298458398,1718088045,298468389,298468390,1718093084,298458396,1718088044],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4367,\"model_id\":119333158040,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26818931564",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27050844641,
              "shopid": 782357050,
              "name": "REIWA AC WINDOW 1/2 PK CW-0501RA CW0501 RA 0501RA 0.5 PK STANDARD LOW WATT AC WINDOW REIWA",
              "label_ids": [
                700005495,
                700005490,
                822059908662278,
                834403089593352,
                825465608497696,
                837860934119952,
                825465608492064,
                825465608494624,
                825465608499232,
                1213641,
                1000031,
                1718093079,
                298933384,
                1718093084,
                298458396
              ],
              "image": "id-11134207-7r98t-lvof0jnplkjdde",
              "images": [
                "id-11134207-7r98t-lvof0jnplkjdde"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1716543617,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 1,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 219500000000,
              "price_min": 219500000000,
              "price_max": 219500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1m-lvogyhygaoi7c9.16000081716543431.mp4",
                  "thumb_url": "id-11110105-7r98s-lvogyr2yzokidd",
                  "duration": 33,
                  "version": 2,
                  "vid": "id-11110105-6ke1m-lvogyhygaoi7c9",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1m-lvogyhygaoi7c9.16000081716543431.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1m-lvogyhygaoi7c9.16000081716543431.mp4",
                      "width": 848,
                      "height": 478
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1m-lvogyhygaoi7c9.default.mp4",
                    "width": 848,
                    "height": 478
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 219500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 250887054417,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 219500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "officialelectroniccenter",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 27050844641,
            "shopid": 782357050,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98t-lvof0jnplkjdde\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005495,700005490,822059908662278,834403089593352,825465608497696,837860934119952,825465608492064,825465608494624,825465608499232,1213641,1000031,1718093079,298933384,1718093084,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5091,\"model_id\":250887054417,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98t-lvof0jnplkjdde\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005495,700005490,822059908662278,834403089593352,825465608497696,837860934119952,825465608492064,825465608494624,825465608499232,1213641,1000031,1718093079,298933384,1718093084,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5091,\"model_id\":250887054417,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27050844641",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26502890173,
              "shopid": 10409718,
              "name": "REIWA AC Window CW-0501RA 1/2 PK 370 WATT - AC 0,5 PK-Garansi Resmi",
              "label_ids": [
                47,
                1000167,
                1000544,
                298458395,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1213641,
                1015914,
                700190087,
                1718093079,
                1000031,
                1059152,
                700005487,
                822059908662278,
                837860934119952,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1400066568,
                2018619,
                2023641,
                825465608492064,
                298463379,
                2068629,
                298938357,
                298938368,
                2098629,
                1718088045,
                2098628,
                1718088044,
                298458398,
                298468390,
                1718093084,
                298458396,
                298468389
              ],
              "image": "id-11134207-7r98q-lwihwftoelxm3a",
              "images": [
                "id-11134207-7r98q-lwihwftoelxm3a",
                "id-11134207-7r98z-lwihwftog0i276",
                "id-11134207-7r98u-lwinrlmtq5ca19",
                "id-11134207-7r991-lwinrlmtrjwqc3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1718371223,
              "sold": 0,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 210000000000,
              "price_min": 210000000000,
              "price_max": 210000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 2.5,
                "rating_count": [
                  2,
                  1,
                  0,
                  0,
                  1,
                  0
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp700RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 210000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 236445503191,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 210000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp700RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Blora Store Electrik",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 26502890173,
            "shopid": 10409718,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-lwihwftoelxm3a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,1000544,298458395,1428713,1718087960,844931064601283,844931086908638,1213641,1015914,700190087,1718093079,1000031,1059152,700005487,822059908662278,837860934119952,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1400066568,2018619,2023641,825465608492064,298463379,2068629,298938357,298938368,2098629,1718088045,2098628,1718088044,298458398,298468390,1718093084,298458396,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4517,\"model_id\":236445503191,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-lwihwftoelxm3a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,1000544,298458395,1428713,1718087960,844931064601283,844931086908638,1213641,1015914,700190087,1718093079,1000031,1059152,700005487,822059908662278,837860934119952,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1400066568,2018619,2023641,825465608492064,298463379,2068629,298938357,298938368,2098629,1718088045,2098628,1718088044,298458398,298468390,1718093084,298458396,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4517,\"model_id\":236445503191,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26502890173",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26165749971,
              "shopid": 179876625,
              "name": "Reiwa AC Window 1/2 PK CW 0501RA Pendingin Ruangan 370W Low Watt",
              "label_ids": [
                844931064601283,
                1049116,
                1049117,
                822059908662278,
                822120592853526,
                2018619,
                298463379,
                2068629,
                298938357,
                2023641,
                298938368,
                298468389
              ],
              "image": "id-11134207-7ras9-m1wgvfbvjd1r98",
              "images": [
                "id-11134207-7ras9-m1wgvfbvjd1r98"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1730103903,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 7,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 220000000000,
              "price_min": 220000000000,
              "price_max": 220000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1c-m1z54lwhokqxac.16000041730264850.mp4",
                  "thumb_url": "id-11110105-7rasc-m1z54odu3lxp33",
                  "duration": 12,
                  "version": 2,
                  "vid": "id-11110105-6ke1c-m1z54lwhokqxac",
                  "formats": [
                    {
                      "format": 1600004,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1c-m1z54lwhokqxac.16000041730264850.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1c-m1z54lwhokqxac.16000041730264850.mp4",
                      "width": 360,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1c-m1z54lwhokqxac.default.mp4",
                    "width": 478,
                    "height": 850
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp733RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 220000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 215504531914,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 220000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp733RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Global Surabaya",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 26165749971,
            "shopid": 179876625,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m1wgvfbvjd1r98\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049117,822059908662278,822120592853526,2018619,298463379,2068629,298938357,2023641,298938368,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5359,\"model_id\":215504531914,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m1wgvfbvjd1r98\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049117,822059908662278,822120592853526,2018619,298463379,2068629,298938357,2023641,298938368,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5359,\"model_id\":215504531914,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26165749971",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24872837167,
              "shopid": 1961543,
              "name": "AC REIWA WINDOW CW-0501RA 1/2PK",
              "label_ids": [
                844931064601283,
                1213641,
                298458395,
                1015914,
                700190087,
                1718093079,
                700005490,
                1049137,
                822059908662278,
                837860934119952,
                822120592853526,
                825465608492064,
                298463379,
                2018619,
                825465608497696,
                2023641,
                2048661,
                2048660,
                700765096,
                298468390,
                1718093084,
                298458396,
                1718088044,
                298458398,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7r992-ltufdxof2nmrb5",
              "images": [
                "id-11134207-7r992-ltufdxof2nmrb5",
                "id-11134207-7r98y-ltufdxof192b64",
                "id-11134207-7r98v-ltufdxoeyfxfac",
                "id-11134207-7r98u-ltufdxoezuhv58",
                "id-11134207-7rasl-m4efcjlvupssbd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1712545649,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 215000000000,
              "price_min": 215000000000,
              "price_max": 215000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "PACKING",
                  "options": [
                    "DUS BAWAAN",
                    "+BUBBLE WRAP",
                    "INSTAN AREA SERANG"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Serang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 215000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 178635742984,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 215000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Cahaya Banten",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 24872837167,
            "shopid": 1961543,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r992-ltufdxof2nmrb5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,298458395,1015914,700190087,1718093079,700005490,1049137,822059908662278,837860934119952,822120592853526,825465608492064,298463379,2018619,825465608497696,2023641,2048661,2048660,700765096,298468390,1718093084,298458396,1718088044,298458398,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4422,\"model_id\":178635742984,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r992-ltufdxof2nmrb5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,298458395,1015914,700190087,1718093079,700005490,1049137,822059908662278,837860934119952,822120592853526,825465608492064,298463379,2018619,825465608497696,2023641,2048661,2048660,700765096,298468390,1718093084,298458396,1718088044,298458398,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4422,\"model_id\":178635742984,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24872837167",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 12609345399,
              "shopid": 222774965,
              "name": "AC WINDOW ยฝ PK CW-0501RA 0,5PK UNIT ONLY FREE ONGKIR BEKASI - JAKARTA TIMUR",
              "label_ids": [
                1000167,
                1001026,
                1015914,
                844931026694327,
                844931046478970,
                844931064601283,
                1400285055,
                1049112,
                1059151,
                822059908662278,
                837860934119952,
                700190087,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                825465608492064,
                840990690654214,
                844931086908638,
                1213641,
                1000031,
                2018619,
                298463379,
                298458398,
                298468389,
                298468390,
                298458396
              ],
              "image": "id-11134207-7r98u-ls9rfmjjkqd554",
              "images": [
                "id-11134207-7r98u-ls9rfmjjkqd554",
                "id-11134207-7r991-ls9rfmjjm4xl5e",
                "id-11134207-7r98w-ls9rfmjjnji16a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1631595762,
              "sold": 0,
              "historical_sold": 44,
              "liked": false,
              "liked_count": 972,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 22,
              "flag": 983040,
              "cb_option": 0,
              "item_status": "normal",
              "price": 207500000000,
              "price_min": 207500000000,
              "price_max": 207500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.739130434782608,
                "rating_count": [
                  23,
                  0,
                  0,
                  1,
                  4,
                  18
                ],
                "rcount_with_context": 17,
                "rcount_with_image": 14
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 207500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 67287966599,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 207500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 44,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 44,
                "display_sold_count_text": "44"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Pontieknik09",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 12609345399,
            "shopid": 222774965,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-ls9rfmjjkqd554\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1001026,1015914,844931026694327,844931046478970,844931064601283,1400285055,1049112,1059151,822059908662278,837860934119952,700190087,840955085144628,825465608494624,825465608499232,825465608497696,825465608492064,840990690654214,844931086908638,1213641,1000031,2018619,298463379,298458398,298468389,298468390,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":2686,\"model_id\":67287966599,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-ls9rfmjjkqd554\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1001026,1015914,844931026694327,844931046478970,844931064601283,1400285055,1049112,1059151,822059908662278,837860934119952,700190087,840955085144628,825465608494624,825465608499232,825465608497696,825465608492064,840990690654214,844931086908638,1213641,1000031,2018619,298463379,298458398,298468389,298468390,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":2686,\"model_id\":67287966599,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_12609345399",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28322068555,
              "shopid": 297751724,
              "name": "BIG PROMO SALE AC REIWA AC WINDOW REIWA 1PK CW-0901RA - Hemat Listrik 770W",
              "label_ids": [
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                1400066568,
                1015914,
                700190087,
                1213641,
                2018619,
                1718093079,
                1059152,
                700005487,
                822059908662278,
                825465608497696,
                825465608492064,
                825465608494624,
                840990690654214,
                825465608499232,
                840955085144628,
                834403089593352,
                822120592853526,
                2023641,
                298463379,
                700830032,
                298933384,
                1400025118,
                1400285055,
                2068629,
                298938357,
                700585042,
                1718093085,
                298468389,
                298468390,
                997921050,
                2098629,
                2103632,
                997921049,
                1718088046,
                298458396,
                2108637,
                1718088044,
                1718088045,
                298938368,
                2098630,
                298838363,
                2098628,
                1718093084,
                298458398
              ],
              "image": "id-11134207-7rask-m4cxpse1hh9ff6",
              "images": [
                "id-11134207-7rask-m4cxpse1hh9ff6",
                "id-11134207-7rase-m4cxpse1agf70d",
                "id-11134207-7ras9-m4zz5emnps5v23",
                "id-11134207-7rasa-m4cxpse1buznce",
                "id-11134207-7rasb-m4cxpse1d9k380",
                "id-11134207-7rasb-m4cxpse1eo4j08",
                "id-11134207-7rasd-m4cxpse1g2oz3e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1735460462,
              "sold": 0,
              "historical_sold": 17,
              "liked": false,
              "liked_count": 33,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 8,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 205429200000,
              "price_min": 205429200000,
              "price_max": 205429200000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke18-m4cyv3en6jy035.16000101735460283.mp4",
                  "thumb_url": "id-11110105-6ke18-m4cyv3en6jy035_cover",
                  "duration": 15,
                  "version": 2,
                  "vid": "id-11110105-6ke18-m4cyv3en6jy035",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke18-m4cyv3en6jy035.default.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke18-m4cyv3en6jy035.default.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke18-m4cyv3en6jy035.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "UKURAN AC",
                  "options": [
                    "1/2 PK/CW0501",
                    "1PK/CW0901"
                  ],
                  "images": [
                    "id-11134207-7rasb-m4zz5emnmz0z76",
                    "id-11134207-7rasb-m4zz5emnodlf75"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "PENGIRIMAN",
                  "options": [
                    "REGULER/CARGO",
                    "INSTANT JKT"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  8,
                  0,
                  0,
                  0,
                  0,
                  8
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp684RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 205429200000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 39511219628,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 205429200000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 17,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 17,
                "display_sold_count_text": "17"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp684RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "FANCY Market ",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                91,
                88
              ]
            },
            "itemid": 28322068555,
            "shopid": 297751724,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m4cxpse1hh9ff6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,1400066568,1015914,700190087,1213641,2018619,1718093079,1059152,700005487,822059908662278,825465608497696,825465608492064,825465608494624,840990690654214,825465608499232,840955085144628,834403089593352,822120592853526,2023641,298463379,700830032,298933384,1400025118,1400285055,2068629,298938357,700585042,1718093085,298468389,298468390,997921050,2098629,2103632,997921049,1718088046,298458396,2108637,1718088044,1718088045,298938368,2098630,298838363,2098628,1718093084,298458398],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4342,\"model_id\":39511219628,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m4cxpse1hh9ff6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,1400066568,1015914,700190087,1213641,2018619,1718093079,1059152,700005487,822059908662278,825465608497696,825465608492064,825465608494624,840990690654214,825465608499232,840955085144628,834403089593352,822120592853526,2023641,298463379,700830032,298933384,1400025118,1400285055,2068629,298938357,700585042,1718093085,298468389,298468390,997921050,2098629,2103632,997921049,1718088046,298458396,2108637,1718088044,1718088045,298938368,2098630,298838363,2098628,1718093084,298458398],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4342,\"model_id\":39511219628,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28322068555",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 432992579,
              "shopid": 31519428,
              "name": "REIWA AC Window 1/2 & 1 PK Portable 1/2PK 1PK CW-0501RA 0,5 PK CW-0901RA",
              "label_ids": [
                27,
                38,
                39,
                47,
                1000544,
                1000030,
                25,
                30,
                31,
                44,
                46,
                1001036,
                844931026694327,
                844931046478970,
                844931064601283,
                1400285055,
                700025282,
                2018619,
                1718093079,
                1213641,
                1400066568,
                2023641,
                1059151,
                1049112,
                822059908662278,
                825465608497696,
                825465608492064,
                2048661,
                2048660,
                700765096,
                298933384,
                298463379,
                298468390,
                298458396,
                298458398,
                298468389,
                1718088044,
                1718088045,
                1718093084
              ],
              "image": "id-11134207-81ztl-memdy1rmvdhha3",
              "images": [
                "id-11134207-81ztl-memdy1rmvdhha3",
                "id-11134207-7rbk4-m7hn4qpsks8c54",
                "id-11134207-7rbkd-m7ejgiyycas56e",
                "id-11134207-7rbkd-m7ejgiyydpclbf",
                "id-11134207-7rbke-m7ekf9cua11y90",
                "id-11134207-7rbk2-m7ekf9cubfmeb6",
                "id-11134207-7rbk8-m7ekf9cucu6ua2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1503375741,
              "sold": 0,
              "historical_sold": 18,
              "liked": false,
              "liked_count": 215,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 11,
              "flag": 917504,
              "cb_option": 0,
              "item_status": "normal",
              "price": 254900000000,
              "price_min": 254900000000,
              "price_max": 254900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmiw-m7eki974feoub9.16000081742094935.mp4",
                  "thumb_url": "id-11110105-6kmiw-m7eki974feoub9_cover",
                  "duration": 57,
                  "version": 2,
                  "vid": "id-11110105-6kmiw-m7eki974feoub9",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmiw-m7eki974feoub9.16000081742094935.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiw-m7eki974feoub9.16000081742094935.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiw-m7eki974feoub9.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "UKURAN",
                  "options": [
                    "0.5 PK",
                    "1 PK"
                  ],
                  "images": [
                    "id-11134207-7rbka-m7ekf9cu8mhic7",
                    "id-11134207-7rbkc-m7ejgiyyf3x138"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "PACKING",
                  "options": [
                    "Tanpa Packing",
                    "Packing Kayu"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.714285714285714,
                "rating_count": [
                  7,
                  0,
                  0,
                  0,
                  2,
                  5
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 254900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 188317349915,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 254900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 18,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 18,
                "display_sold_count_text": "18"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SME STAR",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 432992579,
            "shopid": 31519428,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-memdy1rmvdhha3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[27,38,39,47,1000544,1000030,25,30,31,44,46,1001036,844931026694327,844931046478970,844931064601283,1400285055,700025282,2018619,1718093079,1213641,1400066568,2023641,1059151,1049112,822059908662278,825465608497696,825465608492064,2048661,2048660,700765096,298933384,298463379,298468390,298458396,298458398,298468389,1718088044,1718088045,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4479,\"model_id\":188317349915,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-memdy1rmvdhha3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[27,38,39,47,1000544,1000030,25,30,31,44,46,1001036,844931026694327,844931046478970,844931064601283,1400285055,700025282,2018619,1718093079,1213641,1400066568,2023641,1059151,1049112,822059908662278,825465608497696,825465608492064,2048661,2048660,700765096,298933384,298463379,298468390,298458396,298458398,298468389,1718088044,1718088045,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4479,\"model_id\":188317349915,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_432992579",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27770254147,
              "shopid": 27475432,
              "name": "AC WINDOW REIWA AC WINDOW 1/2 PK CW-0501RA / CW0501RA / CW0501 0,5 PK UNIT ONLY",
              "label_ids": [
                844931064601283,
                1049124,
                1059152,
                822059908662278,
                1213641,
                1000031,
                2018619,
                825465608492064,
                2023641,
                298458396
              ],
              "image": "id-11134207-7ras8-m3ltcjr16ve73f",
              "images": [
                "id-11134207-7ras8-m3ltcjr16ve73f",
                "id-11134207-7ras8-m3ltcjr12nov8a",
                "id-11134207-7rasc-m3ltcjr1429b03",
                "id-11134207-7ras9-m3ltcjr15gtr2b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1733823196,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 194900000000,
              "price_min": 194900000000,
              "price_max": 194900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 194900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 247222124157,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 194900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "AJ EXPRESS",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 27770254147,
            "shopid": 27475432,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras8-m3ltcjr16ve73f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049124,1059152,822059908662278,1213641,1000031,2018619,825465608492064,2023641,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5311,\"model_id\":247222124157,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras8-m3ltcjr16ve73f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049124,1059152,822059908662278,1213641,1000031,2018619,825465608492064,2023641,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5311,\"model_id\":247222124157,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27770254147",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27619587030,
              "shopid": 40162236,
              "name": "AC WINDOW REIWA CW 0501 RA / AC WINDOW REIWA 1/2 PK / AC WINDOW REIWA 0.5 PK / REIWA CN 0501RA",
              "label_ids": [
                1000167,
                844931064601283,
                1049112,
                700005512,
                1718093079,
                822059908662278,
                825465608492064,
                825465608493600,
                834403089593352,
                1213641,
                1000031,
                2018619,
                1015914,
                700190087,
                298463379,
                2023641,
                2048661,
                2048660,
                844931086908638,
                700810080,
                298468390,
                1718093084,
                298458396,
                298468389,
                1718088045,
                1718088044,
                298458398
              ],
              "image": "id-11134207-7rbkc-m966tnwsy23115",
              "images": [
                "id-11134207-7rbkc-m966tnwsy23115",
                "id-11134207-7rbkb-m966tnwiyg663a",
                "id-11134207-7rbk8-m966tnvf02y5a0",
                "id-11134207-7rask-m3bk3woh1o0s36",
                "id-11134207-7rash-m3bk3woh4h5od7",
                "id-11134207-7rasm-m3bk3woh5vq438",
                "id-11134207-7rbkb-m966tnwiyghnfe"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1733231157,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 226481500000,
              "price_min": 226481500000,
              "price_max": 226481500000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6kmiy-m9681pg8qk8yc0.16000091745948186.mp4",
                  "thumb_url": "id-11110107-6kmiy-m9681pg8qk8yc0_cover",
                  "duration": 30,
                  "version": 2,
                  "vid": "id-11110107-6kmiy-m9681pg8qk8yc0",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6kmiy-m9681pg8qk8yc0.16000091745948186.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6kmiy-m9681pg8qk8yc0.16000091745948186.mp4",
                      "width": 270,
                      "height": 482
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6kmiy-m9681pg8qk8yc0.default.mp4",
                    "width": 358,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 226481500000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 242174644068,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 226481500000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ElektronikBekasi",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 27619587030,
            "shopid": 40162236,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkc-m966tnwsy23115\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1049112,700005512,1718093079,822059908662278,825465608492064,825465608493600,834403089593352,1213641,1000031,2018619,1015914,700190087,298463379,2023641,2048661,2048660,844931086908638,700810080,298468390,1718093084,298458396,298468389,1718088045,1718088044,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4974,\"model_id\":242174644068,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkc-m966tnwsy23115\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1049112,700005512,1718093079,822059908662278,825465608492064,825465608493600,834403089593352,1213641,1000031,2018619,1015914,700190087,298463379,2023641,2048661,2048660,844931086908638,700810080,298468390,1718093084,298458396,298468389,1718088045,1718088044,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4974,\"model_id\":242174644068,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27619587030",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28867715811,
              "shopid": 382304192,
              "name": "Reiwa AC Window 1 PK CW-0901RA / CW0901RA 1 PK Turbo Cooling",
              "label_ids": [
                844931064601283,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                822120592853526,
                1428713,
                1718087960,
                1918643,
                1000031,
                825465608492064,
                1213641,
                2018618,
                2018619,
                1015914,
                700190087,
                2153644,
                1718093079,
                298463379,
                700700063,
                2213652,
                298468389,
                1718088045,
                298468390,
                298458398,
                1718093084,
                298458396,
                1718088044
              ],
              "image": "id-11134207-7rasd-m2m3zyk6u9xt6e",
              "images": [
                "id-11134207-7rasd-m2m3zyk6u9xt6e",
                "id-11134207-7rasb-m2m3zyk6voi9bc",
                "id-11134207-7rasm-m2m3zyk6yhn55e",
                "id-11134207-7ras8-m2m3zyk6x32p74",
                "id-11134207-7rash-m2m3zyk6zw7le6",
                "id-11134207-7rash-m2m3zyk71as1b6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1731660711,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 221900000000,
              "price_min": 221900000000,
              "price_max": 221900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "VARIAN",
                  "options": [
                    "REIWA 1 PK",
                    "BESTLIFE 0.5 PK"
                  ],
                  "images": [
                    "id-11134207-7ra0u-mdmr688hjz4c34",
                    "id-11134207-7ra0g-mdmr688hldosaf"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 221900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 186214711316,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 221900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Bonbon Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 28867715811,
            "shopid": 382304192,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m2m3zyk6u9xt6e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,822120592853526,1428713,1718087960,1918643,1000031,825465608492064,1213641,2018618,2018619,1015914,700190087,2153644,1718093079,298463379,700700063,2213652,298468389,1718088045,298468390,298458398,1718093084,298458396,1718088044],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4923,\"model_id\":186214711316,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m2m3zyk6u9xt6e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,822120592853526,1428713,1718087960,1918643,1000031,825465608492064,1213641,2018618,2018619,1015914,700190087,2153644,1718093079,298463379,700700063,2213652,298468389,1718088045,298468390,298458398,1718093084,298458396,1718088044],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4923,\"model_id\":186214711316,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28867715811",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 20496591414,
              "shopid": 132460060,
              "name": "AC Window 1/2 PK REIWA CW 0501RA",
              "label_ids": [
                1000016,
                844931064601283,
                1400066568,
                1049137,
                700005490,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1015914,
                700190087,
                1213641,
                822120592853526,
                1000031,
                2018619,
                2023641,
                298463379,
                2048660,
                2048661,
                700765096,
                2068629,
                298938357,
                2098628,
                298938368,
                2098629,
                298468390,
                1718093084,
                1718088044,
                298458396,
                298458398,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7r98u-lyrebix3jt9703",
              "images": [
                "id-11134207-7r98u-lyrebix3jt9703",
                "id-11134207-7r98x-lyrebix3jtgof2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1723258395,
              "sold": 0,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 2,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 229400000000,
              "price_min": 229400000000,
              "price_max": 229400000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Serang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp764RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 229400000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 223086788465,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 229400000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp764RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "AM Store Serang",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 20496591414,
            "shopid": 132460060,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-lyrebix3jt9703\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000016,844931064601283,1400066568,1049137,700005490,822059908662278,825465608499232,825465608497696,1718093079,1015914,700190087,1213641,822120592853526,1000031,2018619,2023641,298463379,2048660,2048661,700765096,2068629,298938357,2098628,298938368,2098629,298468390,1718093084,1718088044,298458396,298458398,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4750,\"model_id\":223086788465,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-lyrebix3jt9703\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000016,844931064601283,1400066568,1049137,700005490,822059908662278,825465608499232,825465608497696,1718093079,1015914,700190087,1213641,822120592853526,1000031,2018619,2023641,298463379,2048660,2048661,700765096,2068629,298938357,2098628,298938368,2098629,298468390,1718093084,1718088044,298458396,298458398,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4750,\"model_id\":223086788465,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_20496591414",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28418256842,
              "shopid": 1036364118,
              "name": "Reiwa AC Window 1 PK CW-0901RA 775 watt",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                837860934119952,
                822120592853526,
                1718093079,
                1000031,
                2018619,
                2023641,
                825465608497696,
                298463379,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7rase-m2uk7n446p8bd9",
              "images": [
                "id-11134207-7rase-m2uk7n446p8bd9",
                "id-11134207-7rash-m2uk7n446pht40",
                "id-11134207-7rasm-m2uk7n44m5t9dd",
                "id-11134207-7rasg-m2uk7n446p756f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1732167032,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 259900000000,
              "price_min": 259900000000,
              "price_max": 259900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 259900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 158895167652,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 259900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Mrย Hotย &ย Cool",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 28418256842,
            "shopid": 1036364118,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rase-m2uk7n446p8bd9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,837860934119952,822120592853526,1718093079,1000031,2018619,2023641,825465608497696,298463379,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5170,\"model_id\":158895167652,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rase-m2uk7n446p8bd9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,837860934119952,822120592853526,1718093079,1000031,2018619,2023641,825465608497696,298463379,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5170,\"model_id\":158895167652,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28418256842",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28467665584,
              "shopid": 212026963,
              "name": "AC Window REIWA CW 0901RA / CW0901RA 1 PK 370 Watt Low Watt",
              "label_ids": [
                700025282,
                1049112,
                1049127,
                822059908662278,
                822120592853526,
                1213641,
                2018619,
                1718093079,
                298463379,
                825465608497696,
                298458396,
                1718088044,
                298458398,
                1718088045,
                298468389,
                298468390,
                1718093084
              ],
              "image": "id-11134207-7rasl-m2lr3ehcjljl84",
              "images": [
                "id-11134207-7rasl-m2lr3ehcjljl84",
                "id-11134207-7rask-m2lr3ehci6z56e",
                "id-11134207-82250-mgtfijnsjnyjfb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1731636153,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 266500000000,
              "price_min": 266500000000,
              "price_max": 266500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 266500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 227024093255,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 266500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ABC ELEKTRONIK 123",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 28467665584,
            "shopid": 212026963,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m2lr3ehcjljl84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,1049112,1049127,822059908662278,822120592853526,1213641,2018619,1718093079,298463379,825465608497696,298458396,1718088044,298458398,1718088045,298468389,298468390,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5273,\"model_id\":227024093255,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m2lr3ehcjljl84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,1049112,1049127,822059908662278,822120592853526,1213641,2018619,1718093079,298463379,825465608497696,298458396,1718088044,298458398,1718088045,298468389,298468390,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5273,\"model_id\":227024093255,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28467665584",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29965732947,
              "shopid": 202195133,
              "name": "Reiwa AC Window 1/2 PK CW-0501RA / CW0501RA 0,5 PK Direct Cooling",
              "label_ids": [
                1000167,
                844931064601283,
                1059156,
                700005499,
                822059908662278,
                825465608497696,
                822120592853526,
                1718093079,
                1000031,
                2018619,
                298463379,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7rasa-m1w8t2th64kx59",
              "images": [
                "id-11134207-7rasa-m1w8t2th64kx59"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1730089534,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 209700000000,
              "price_min": 209700000000,
              "price_max": 209700000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 209700000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 49480089742,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 209700000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Atlanta Electronics Official",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 29965732947,
            "shopid": 202195133,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasa-m1w8t2th64kx59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1059156,700005499,822059908662278,825465608497696,822120592853526,1718093079,1000031,2018619,298463379,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5312,\"model_id\":49480089742,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasa-m1w8t2th64kx59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1059156,700005499,822059908662278,825465608497696,822120592853526,1718093079,1000031,2018619,298463379,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5312,\"model_id\":49480089742,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29965732947",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26611122740,
              "shopid": 13185202,
              "name": "(INSTANT) AC REIWA CW-0501RA WINDOW  1/2 PK 370 WATT",
              "label_ids": [
                47,
                844931064601283,
                1059152,
                1049124,
                822059908662278,
                825465608492064,
                1213641,
                1918643,
                2018619,
                700700063,
                298463379,
                2048660,
                2048661,
                700765096,
                2023641,
                700810080,
                298458398,
                298458396,
                298468389,
                298468390
              ],
              "image": "id-11134207-7r98q-m03ze9ti4agi74",
              "images": [
                "id-11134207-7r98q-m03ze9ti4agi74",
                "id-11134207-7r98s-m03ze9ti5p0yec",
                "id-11134207-81ztm-meb5uca2gz5ze1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1726201246,
              "sold": 0,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 11,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 2,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 207318900000,
              "price_min": 207318900000,
              "price_max": 207318900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemw-meb7itud1uyo4f.16000081757146173.mp4",
                  "thumb_url": "id-11110105-6vemw-meb7itud1uyo4f_cover",
                  "duration": 45,
                  "version": 2,
                  "vid": "id-11110105-6vemw-meb7itud1uyo4f",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemw-meb7itud1uyo4f.16000081757146173.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemw-meb7itud1uyo4f.16000081757146173.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemw-meb7itud1uyo4f.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "TYPE",
                  "options": [
                    "WINDOW REIWA"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "VARIASI",
                  "options": [
                    "STD AC",
                    "+BUBBLE WRAP",
                    "EXTRA PROTEKSI",
                    "PAKET PASANG"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 207318900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 158850199810,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 207318900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Jesselyn Electronic",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 26611122740,
            "shopid": 13185202,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-m03ze9ti4agi74\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,844931064601283,1059152,1049124,822059908662278,825465608492064,1213641,1918643,2018619,700700063,298463379,2048660,2048661,700765096,2023641,700810080,298458398,298458396,298468389,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5202,\"model_id\":158850199810,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-m03ze9ti4agi74\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,844931064601283,1059152,1049124,822059908662278,825465608492064,1213641,1918643,2018619,700700063,298463379,2048660,2048661,700765096,2023641,700810080,298458398,298458396,298468389,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5202,\"model_id\":158850199810,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26611122740",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24828785744,
              "shopid": 103806787,
              "name": "REIWA AC WINDOW 1/2 PK CW-0501RA CW0501 RA 0501RA 0.5 PK STANDARD LOW WATT AC WINDOW REIWA",
              "label_ids": [
                700005490,
                700005495,
                822059908662278,
                825465608492064,
                825465608494624,
                825465608499232,
                834403089593352,
                825465608497696,
                837860934119952,
                844931064601283,
                1213641,
                1000031,
                1718093079,
                2018619,
                298463379,
                844931086908638,
                2048661,
                2048660,
                700765096,
                298933384,
                1718088044,
                298468390,
                298468389,
                298458396,
                1718088045,
                298458398,
                1718093084
              ],
              "image": "id-11134207-7r98x-luz16y6eyqveb4",
              "images": [
                "id-11134207-7r98x-luz16y6eyqveb4",
                "id-11134207-7r98t-luz16y6excayd8",
                "id-11134207-7r991-luz16y6excfo5c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1715003641,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 209990000000,
              "price_min": 209990000000,
              "price_max": 209990000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1a-luz1jg6gd4pz1d.16000081715004143.mp4",
                  "thumb_url": "id-11110105-7r98w-luz1jokc3pm694",
                  "duration": 33,
                  "version": 2,
                  "vid": "id-11110105-6ke1a-luz1jg6gd4pz1d",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1a-luz1jg6gd4pz1d.16000081715004143.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-luz1jg6gd4pz1d.16000081715004143.mp4",
                      "width": 848,
                      "height": 478
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-luz1jg6gd4pz1d.default.mp4",
                    "width": 848,
                    "height": 478
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "COLOR",
                  "options": [
                    "AC ONLY",
                    "AC + PACKING KAYU"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 209990000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 215174331994,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 209990000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "uptodateonlineshop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 24828785744,
            "shopid": 103806787,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-luz16y6eyqveb4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005490,700005495,822059908662278,825465608492064,825465608494624,825465608499232,834403089593352,825465608497696,837860934119952,844931064601283,1213641,1000031,1718093079,2018619,298463379,844931086908638,2048661,2048660,700765096,298933384,1718088044,298468390,298468389,298458396,1718088045,298458398,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4591,\"model_id\":215174331994,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-luz16y6eyqveb4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005490,700005495,822059908662278,825465608492064,825465608494624,825465608499232,834403089593352,825465608497696,837860934119952,844931064601283,1213641,1000031,1718093079,2018619,298463379,844931086908638,2048661,2048660,700765096,298933384,1718088044,298468390,298468389,298458396,1718088045,298458398,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4591,\"model_id\":215174331994,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24828785744",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42815432210,
              "shopid": 187314707,
              "name": "AC Window Bestlife BWA-05PLD 1/2 PK Low Watt BWA05PLD AC Jendela",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                298463379,
                1049143,
                1049142,
                822059908662278,
                825465608492064,
                825465608499232,
                834403089593352,
                825465608497696,
                822120592853526,
                1718093079,
                298933384,
                1718093065,
                844931086908638,
                1718088045,
                298468389
              ],
              "image": "id-11134207-81zto-mdy5lrjxph4xc2",
              "images": [
                "id-11134207-81zto-mdy5lrjxph4xc2",
                "id-11134207-81ztc-mdy5lrjt6j9h89",
                "id-11134207-81zti-mdy5lrjtkkxya0",
                "id-11134207-81ztq-mdy5lrjjjkzqc5",
                "id-11134207-81ztf-medmnoih4ydc08",
                "id-11134207-81ztk-medmnoih6cxsa0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1756356051,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100010,
              "brand": "Bestlife",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 256032000000,
              "price_min": 256032000000,
              "price_max": 256032000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Pekanbaru",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 256032000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 147925275382,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 256032000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Sinar Matahari SM Amin",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                0,
                1000
              ]
            },
            "itemid": 42815432210,
            "shopid": 187314707,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zto-mdy5lrjxph4xc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049143,1049142,822059908662278,825465608492064,825465608499232,834403089593352,825465608497696,822120592853526,1718093079,298933384,1718093065,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\"],\"merge_rank\":1027,\"model_id\":147925275382,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zto-mdy5lrjxph4xc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049143,1049142,822059908662278,825465608492064,825465608499232,834403089593352,825465608497696,822120592853526,1718093079,298933384,1718093065,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\"],\"merge_rank\":1027,\"model_id\":147925275382,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42815432210",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28466317645,
              "shopid": 1037017683,
              "name": "AC Window Reiwa 1 PK CW-0901RA",
              "label_ids": [
                844931064601283,
                700005490,
                700005510,
                822059908662278,
                825465608492064,
                2018619,
                2048660,
                2048661,
                700765096,
                1400066568,
                298463379,
                298468389
              ],
              "image": "id-11134207-7rasi-m23fmxanq3bu59",
              "images": [
                "id-11134207-7rasi-m23fmxanq3bu59",
                "id-11134207-7rasb-m23fmxanrhxsbc",
                "id-11134207-7rasi-m23fmxanswi86c",
                "id-11134207-7rasm-m23fmxanub2o2a",
                "id-11134207-7rasi-m23fmxanq36w1a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1730524962,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 1,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 239000000000,
              "price_min": 239000000000,
              "price_max": 239000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 239000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 241934460122,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 239000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "JVN Electronics",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 28466317645,
            "shopid": 1037017683,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m23fmxanq3bu59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,700005510,822059908662278,825465608492064,2018619,2048660,2048661,700765096,1400066568,298463379,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4983,\"model_id\":241934460122,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m23fmxanq3bu59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,700005510,822059908662278,825465608492064,2018619,2048660,2048661,700765096,1400066568,298463379,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4983,\"model_id\":241934460122,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28466317645",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28463500310,
              "shopid": 382304192,
              "name": "Reiwa AC Window 1/2 PK CW-0501RA / CW0501RA 0,5 PK Direct Cooling",
              "label_ids": [
                844931064601283,
                1059152,
                1049122,
                822059908662278,
                822120592853526,
                1918643,
                1718087960,
                1428713,
                1015914,
                700190087,
                825465608492064,
                825465608499232,
                825465608497696,
                1213641,
                2018618,
                2018619,
                298933384,
                2153644,
                1718093079,
                298463379,
                700700063,
                2213652,
                2008656,
                1718088044,
                1718088045,
                298468389,
                298468390,
                298458398,
                1718093084,
                298458396
              ],
              "image": "id-11134207-7rash-m13l988arvoo8c",
              "images": [
                "id-11134207-7rash-m13l988arvoo8c",
                "id-11134207-7rasb-m13l988ata945b",
                "id-11134207-7rasb-m13l988aywiw6b",
                "id-11134207-7rasj-m13l988auotk26",
                "id-11134207-7rasd-m13l988aw3e088",
                "id-11134207-7ras8-m13l988b0b3cae",
                "id-11134207-7rasc-m13l988axhyg5c",
                "id-11134207-7rash-m13l988b1pns2c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1728379227,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 29,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 209900000000,
              "price_min": 209900000000,
              "price_max": 209900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1j-m1qhywfu01xr2c.16000081729741633.mp4",
                  "thumb_url": "id-11110105-7ras9-m1qhyyu4jiwxf5",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6ke1j-m1qhywfu01xr2c",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1j-m1qhywfu01xr2c.16000081729741633.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1j-m1qhywfu01xr2c.16000081729741633.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1j-m1qhywfu01xr2c.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "VARIAN",
                  "options": [
                    "REIWA 0.5PK",
                    "BESTLIFE 0.5PK"
                  ],
                  "images": [
                    "id-11134207-7ra0j-mdmr688hh5zg6f",
                    "id-11134207-7ra0q-mdmr688hikjwae"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 209900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 167273945086,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 209900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Bonbon Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 28463500310,
            "shopid": 382304192,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rash-m13l988arvoo8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,822120592853526,1918643,1718087960,1428713,1015914,700190087,825465608492064,825465608499232,825465608497696,1213641,2018618,2018619,298933384,2153644,1718093079,298463379,700700063,2213652,2008656,1718088044,1718088045,298468389,298468390,298458398,1718093084,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4880,\"model_id\":167273945086,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rash-m13l988arvoo8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,822120592853526,1918643,1718087960,1428713,1015914,700190087,825465608492064,825465608499232,825465608497696,1213641,2018618,2018619,298933384,2153644,1718093079,298463379,700700063,2213652,2008656,1718088044,1718088045,298468389,298468390,298458398,1718093084,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4880,\"model_id\":167273945086,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28463500310",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42200807438,
              "shopid": 1102835203,
              "name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK",
              "label_ids": [
                2018619,
                844931064601283,
                1059156,
                700000528,
                822059908662278,
                822120592853526,
                825465608499232,
                1718093065,
                825465608497696,
                1400285055,
                1015914,
                700190087,
                822120592861206,
                1718093079,
                298463379,
                2048661,
                825465608494624,
                2048660,
                700765096,
                2023641,
                2068629,
                298938357,
                298938368,
                1718088045,
                298468389,
                2098629,
                2098628
              ],
              "image": "id-11134207-7rbk0-m9qpo80b9at7a9",
              "images": [
                "id-11134207-7rbk0-m9qpo80b9at7a9",
                "id-11134207-7rbk1-m9qpo81f7ocb5c",
                "id-11134207-7rbk2-m9qpo80b9b0t92",
                "id-11134207-7rbk7-m9qpo81f7obx8d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1747189146,
              "sold": 0,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 3,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 214830100000,
              "price_min": 214830100000,
              "price_max": 214830100000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Temanggung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp716RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 214830100000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 177178935238,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 214830100000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp716RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gentongmas Elektronik Official",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                97
              ]
            },
            "itemid": 42200807438,
            "shopid": 1102835203,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk0-m9qpo80b9at7a9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1059156,700000528,822059908662278,822120592853526,825465608499232,1718093065,825465608497696,1400285055,1015914,700190087,822120592861206,1718093079,298463379,2048661,825465608494624,2048660,700765096,2023641,2068629,298938357,298938368,1718088045,298468389,2098629,2098628],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4662,\"model_id\":177178935238,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk0-m9qpo80b9at7a9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1059156,700000528,822059908662278,822120592853526,825465608499232,1718093065,825465608497696,1400285055,1015914,700190087,822120592861206,1718093079,298463379,2048661,825465608494624,2048660,700765096,2023641,2068629,298938357,298938368,1718088045,298468389,2098629,2098628],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4662,\"model_id\":177178935238,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42200807438",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25488494251,
              "shopid": 61779869,
              "name": "AC REIWA CW-0501RA AC WINDOW 1 /2PK",
              "label_ids": [
                844931086908638,
                844931064601283,
                700005512,
                1049112,
                1718093079,
                822059908662278,
                825465608499232,
                837860934119952,
                1000031,
                2018619,
                825465608497696,
                298463379,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7rasl-m2rtp259ys9s35",
              "images": [
                "id-11134207-7rasl-m2rtp259ys9s35",
                "id-11134207-7rasj-m2rtp259yswh13",
                "id-11134207-7ras8-m2rtp259yshv7a",
                "id-11134207-7rasm-m2rtp277yrpg2a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1732001265,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199990000000,
              "price_min": 199990000000,
              "price_max": 199990000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199990000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 197987955192,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199990000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "grosir ckr",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 25488494251,
            "shopid": 61779869,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m2rtp259ys9s35\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,700005512,1049112,1718093079,822059908662278,825465608499232,837860934119952,1000031,2018619,825465608497696,298463379,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4666,\"model_id\":197987955192,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m2rtp259ys9s35\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,700005512,1049112,1718093079,822059908662278,825465608499232,837860934119952,1000031,2018619,825465608497696,298463379,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4666,\"model_id\":197987955192,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25488494251",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27426033464,
              "shopid": 616226822,
              "name": "AC Window Reiwa 0,5pk CW-0501RA 1/2pk Low Watt 370watt CW 0501 RA",
              "label_ids": [
                844931064601283,
                1049112,
                700005512,
                822059908662278,
                825465608492064,
                834403089593352,
                1213641,
                2018619,
                2023641,
                1400066568,
                1718093079,
                825465608499232,
                825465608497696,
                298463379,
                844931086908638,
                298458398,
                1718088044,
                298468390,
                1718093084,
                298468389,
                298458396,
                1718088045
              ],
              "image": "sg-11134201-7repr-m8vx7mmetgx304",
              "images": [
                "sg-11134201-7repr-m8vx7mmetgx304",
                "sg-11134201-7reo3-m8vx7mxsa2jd74",
                "sg-11134201-7repu-m8vx7n95tdlhf0",
                "sg-11134201-7renn-m8vx7nlnb3cw79",
                "sg-11134201-7reoe-m8vx7nxau2z526"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1739426912,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199207300000,
              "price_min": 199207300000,
              "price_max": 199207300000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199207300000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 227366640982,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199207300000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Megajaya Sukses Abadi",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 27426033464,
            "shopid": 616226822,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7repr-m8vx7mmetgx304\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1213641,2018619,2023641,1400066568,1718093079,825465608499232,825465608497696,298463379,844931086908638,298458398,1718088044,298468390,1718093084,298468389,298458396,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4309,\"model_id\":227366640982,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7repr-m8vx7mmetgx304\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1213641,2018619,2023641,1400066568,1718093079,825465608499232,825465608497696,298463379,844931086908638,298458398,1718088044,298468390,1718093084,298468389,298458396,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4309,\"model_id\":227366640982,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27426033464",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29790485267,
              "shopid": 142681806,
              "name": "AC Reiwa Window 1/2 PK CW-0501RA - 0.5 PK, 370 watt, Remote",
              "label_ids": [
                2018619,
                700025282,
                298463379,
                700750053,
                700765096,
                700005507,
                1049126,
                822059908662278,
                2048660,
                2048661,
                822120592853526,
                298468389
              ],
              "image": "id-11134207-82250-mguc9mh0stfw9f",
              "images": [
                "id-11134207-82250-mguc9mh0stfw9f",
                "id-11134207-7ra0p-mdv63f81zyaee1",
                "id-11134207-82251-mguc9mh0revgdd",
                "id-11134207-82251-mguc9mh3hqmm22",
                "id-11134207-82251-mguc9mgynk7j02",
                "id-11134207-8224o-mguc9mh0q0b0da"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1756189901,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 197500000000,
              "price_min": 197500000000,
              "price_max": 197500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Denpasar",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 197500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 301250052973,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 197500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Elecmart Bali",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 29790485267,
            "shopid": 142681806,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mguc9mh0stfw9f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700025282,298463379,700750053,700765096,700005507,1049126,822059908662278,2048660,2048661,822120592853526,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4451,\"model_id\":301250052973,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mguc9mh0stfw9f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700025282,298463379,700750053,700765096,700005507,1049126,822059908662278,2048660,2048661,822120592853526,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4451,\"model_id\":301250052973,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29790485267",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26972890000,
              "shopid": 124152236,
              "name": "Reiwa AC Window Jendela 1/2 PK 0.5 Mini Kosan Low Watt Hemat Tanpa Outdoor Bobok Tembok CW-0501RA",
              "label_ids": [
                844931064601283,
                1049145,
                1049148,
                822059908662278,
                825465608499232,
                1718093079,
                1400285055,
                822120592853526,
                298933384,
                700810080
              ],
              "image": "sg-11134201-7ra3c-m4pym7n8vdq9ee",
              "images": [
                "sg-11134201-7ra3c-m4pym7n8vdq9ee",
                "sg-11134201-7ra2b-m4pym7twk7uwf4",
                "sg-11134201-7ra2i-m4pym7z6cghv52",
                "sg-11134201-7ra19-m4pym8jfitxg4d",
                "sg-11134201-7ra2u-m4pym8nvcc1w5b",
                "sg-11134201-7ra14-m4pym8uj2mwk75",
                "sg-11134201-7ra3o-m4pym902xbp0a3",
                "sg-11134201-7ra2x-m4pym9acffk35e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1736246812,
              "sold": 0,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 2,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 204000000000,
              "price_min": 204000000000,
              "price_max": 204000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bandar Lampung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 204000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 247422583289,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 204000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Inaya elektro",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 26972890000,
            "shopid": 124152236,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7ra3c-m4pym7n8vdq9ee\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049145,1049148,822059908662278,825465608499232,1718093079,1400285055,822120592853526,298933384,700810080],\"matched_keywords\":[\"ac window\"],\"merge_rank\":1423,\"model_id\":247422583289,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7ra3c-m4pym7n8vdq9ee\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049145,1049148,822059908662278,825465608499232,1718093079,1400285055,822120592853526,298933384,700810080],\"matched_keywords\":[\"ac window\"],\"merge_rank\":1423,\"model_id\":247422583289,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26972890000",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26568070168,
              "shopid": 14141563,
              "name": "REIWA Ac Window 1 PK - CW0901RA",
              "label_ids": [
                38,
                39,
                47,
                1000167,
                1400095067,
                1400285005,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                1059152,
                700005489,
                822059908662278,
                837860934119952,
                825465608499232,
                834403089593352,
                825465608497696,
                1000031,
                2018619,
                2023641,
                1718093079,
                298463379,
                2218763,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7rasi-m2rktq0jh3si00",
              "images": [
                "id-11134207-7rasi-m2rktq0jh3si00",
                "id-11134207-7ras8-m2rktq0jjwxe7b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1732009136,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 241800000000,
              "price_min": 241800000000,
              "price_max": 241800000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 241800000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 227040473972,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 241800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Utama Electronic",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 26568070168,
            "shopid": 14141563,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m2rktq0jh3si00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[38,39,47,1000167,1400095067,1400285005,1428713,1718087960,844931086908638,844931064601283,1059152,700005489,822059908662278,837860934119952,825465608499232,834403089593352,825465608497696,1000031,2018619,2023641,1718093079,298463379,2218763,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4867,\"model_id\":227040473972,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m2rktq0jh3si00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[38,39,47,1000167,1400095067,1400285005,1428713,1718087960,844931086908638,844931064601283,1059152,700005489,822059908662278,837860934119952,825465608499232,834403089593352,825465608497696,1000031,2018619,2023641,1718093079,298463379,2218763,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4867,\"model_id\":227040473972,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26568070168",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40250743729,
              "shopid": 1011781013,
              "name": "AC Window Reiwa 1/2 PK CW-0501RA",
              "label_ids": [
                844931064601283,
                1059152,
                1049124,
                822059908662278,
                298463379,
                1718093079,
                1718093065,
                2018619,
                1015914,
                700190087,
                825465608499232,
                825465608493600,
                2023641,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7rbk3-m9pj7l6mioe31f",
              "images": [
                "id-11134207-7rbk3-m9pj7l6mioe31f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1747130981,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199900000000,
              "price_min": 199900000000,
              "price_max": 199900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "HARGA",
                  "options": [
                    "UNIT SAJA",
                    "UNIT+PASANG"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 285522376100,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Elektric_Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 40250743729,
            "shopid": 1011781013,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-m9pj7l6mioe31f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049124,822059908662278,298463379,1718093079,1718093065,2018619,1015914,700190087,825465608499232,825465608493600,2023641,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5067,\"model_id\":285522376100,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-m9pj7l6mioe31f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049124,822059908662278,298463379,1718093079,1718093065,2018619,1015914,700190087,825465608499232,825465608493600,2023641,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5067,\"model_id\":285522376100,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40250743729",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27739423196,
              "shopid": 1086389122,
              "name": "Window AC 1/2 PK REIWA CW0501RA / Tanpa Pipa AC / Window Air Conditioner 0,5 PK Palembang",
              "label_ids": [
                2018619,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1049128,
                700005504,
                1718093079,
                822059908662278,
                834403089593352,
                825465608497696,
                825465608492064,
                825465608499232,
                1015914,
                700190087,
                1718093065,
                2048660,
                2048661,
                700765096,
                2023641,
                298933384,
                2068629,
                298938357,
                700810080,
                1400285055,
                298468389,
                1718088045,
                298938368,
                2098629,
                2098628
              ],
              "image": "sg-11134201-7rdxc-mcx70k35yq1g72",
              "images": [
                "sg-11134201-7rdxc-mcx70k35yq1g72",
                "sg-11134201-7rdwb-mcx70k7vqez85f",
                "sg-11134201-7rdx4-mcx70kml92nr3b",
                "sg-11134201-7rdwd-mcx70ksp06wpa6",
                "sg-11134201-7rdx9-mcx70kx4qtz45a",
                "sg-11134201-7rdxs-mcx70l3ig3ja45",
                "sg-11134201-7rdvg-mcx70l927yyf0f",
                "sg-11134201-7rdyp-mcx70ld83bpcad"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1754118597,
              "sold": 0,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 220000000000,
              "price_min": 220000000000,
              "price_max": 220000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6kou2-mcx85rouup8c40.16000091754120532.mp4",
                  "thumb_url": "id-11110107-6kou2-mcx85rouup8c40_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110107-6kou2-mcx85rouup8c40",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6kou2-mcx85rouup8c40.16000091754120532.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6kou2-mcx85rouup8c40.16000091754120532.mp4",
                      "width": 270,
                      "height": 482
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6kou2-mcx85rouup8c40.default.mp4",
                    "width": 358,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 1,
                "rating_count": [
                  1,
                  1,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Palembang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp733RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 220000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 237980075509,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 220000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp733RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Sinarjaya1688",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0,
                1000,
                1000,
                1000
              ]
            },
            "itemid": 27739423196,
            "shopid": 1086389122,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxc-mcx70k35yq1g72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1049128,700005504,1718093079,822059908662278,834403089593352,825465608497696,825465608492064,825465608499232,1015914,700190087,1718093065,2048660,2048661,700765096,2023641,298933384,2068629,298938357,700810080,1400285055,298468389,1718088045,298938368,2098629,2098628],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":3444,\"model_id\":237980075509,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxc-mcx70k35yq1g72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1049128,700005504,1718093079,822059908662278,834403089593352,825465608497696,825465608492064,825465608499232,1015914,700190087,1718093065,2048660,2048661,700765096,2023641,298933384,2068629,298938357,700810080,1400285055,298468389,1718088045,298938368,2098629,2098628],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":3444,\"model_id\":237980075509,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27739423196",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24121030377,
              "shopid": 85152735,
              "name": "Ac Window Reiwa 1/2 Pk Low Watt CW 0501RA",
              "label_ids": [
                47,
                1213641,
                1000031,
                2018619,
                700005490,
                700005495,
                822059908662278,
                825465608492064,
                834403089593352,
                298463379,
                298933384,
                2023641,
                1718093079,
                2048660,
                2048661,
                700765096,
                298468389,
                298468390,
                298458396,
                1718088045,
                1718088044,
                1718093084,
                298458398
              ],
              "image": "id-11134207-7r98u-ltcecpa5rxsp0d",
              "images": [
                "id-11134207-7r98u-ltcecpa5rxsp0d",
                "id-11134207-7r98w-ltcecpa5rxop39",
                "id-11134207-7r98t-ltcecpa5rxo4c4",
                "id-11134207-7r990-ltcecpa5tchl67",
                "id-11134207-7r98u-ltcecpa5tc9594",
                "id-11134207-7r991-ltcecpa5tc8kfe"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1711454458,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 6,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 1,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 209900000000,
              "price_min": 209900000000,
              "price_max": 209900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 209900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 197397484511,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 209900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Princess Electronic",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 24121030377,
            "shopid": 85152735,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-ltcecpa5rxsp0d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1213641,1000031,2018619,700005490,700005495,822059908662278,825465608492064,834403089593352,298463379,298933384,2023641,1718093079,2048660,2048661,700765096,298468389,298468390,298458396,1718088045,1718088044,1718093084,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4879,\"model_id\":197397484511,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-ltcecpa5rxsp0d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1213641,1000031,2018619,700005490,700005495,822059908662278,825465608492064,834403089593352,298463379,298933384,2023641,1718093079,2048660,2048661,700765096,298468389,298468390,298458396,1718088045,1718088044,1718093084,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4879,\"model_id\":197397484511,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24121030377",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28742903082,
              "shopid": 1635907046,
              "name": "SmartSh0p- Ac Reiwa Window 1/2 Pk R32 Cw-0501Ra / Cw-0501Ra",
              "label_ids": [
                844931064601283,
                1049126,
                700005496,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079
              ],
              "image": "sg-11134275-824hy-mfkjz437ype7bb",
              "images": [
                "sg-11134275-824hy-mfkjz437ype7bb",
                "sg-11134275-824ge-mfkjz49g8o3x8c",
                "sg-11134275-824iz-mfkjz493k74ede",
                "sg-11134275-824gt-mfkjz48j2pe215",
                "sg-11134275-824g3-mfkjz493oetle7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760424017,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 269900000000,
              "price_min": 269900000000,
              "price_max": 269900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Gianyar",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 269900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 306954017033,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 269900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "f6_r145_be",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 28742903082,
            "shopid": 1635907046,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134275-824hy-mfkjz437ype7bb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049126,700005496,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5314,\"model_id\":306954017033,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134275-824hy-mfkjz437ype7bb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049126,700005496,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5314,\"model_id\":306954017033,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28742903082",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27468852174,
              "shopid": 1285026724,
              "name": "AC Window Reiwa 1/2 PK CW-0501RA",
              "label_ids": [
                844931064601283,
                1059152,
                1049124,
                822059908662278,
                1000031,
                2018619,
                1400285055,
                1213641,
                825465608492064,
                1015914,
                700190087,
                825465608499232,
                825465608493600,
                1718093079,
                298463379,
                2048661,
                2048660,
                700765096,
                1718093084,
                298468389,
                1718088044,
                298458396,
                298458398,
                1718088045,
                298468390
              ],
              "image": "id-11134207-7rasi-m31yt7qoamnzc0",
              "images": [
                "id-11134207-7rasi-m31yt7qoamnzc0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1732615372,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 210900000000,
              "price_min": 210900000000,
              "price_max": 210900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "HARGA",
                  "options": [
                    "UNIT SAJA",
                    "UNIT + PASANG"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 210900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 196137437185,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 210900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "OBJELEKTRIKINDO",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 27468852174,
            "shopid": 1285026724,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m31yt7qoamnzc0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049124,822059908662278,1000031,2018619,1400285055,1213641,825465608492064,1015914,700190087,825465608499232,825465608493600,1718093079,298463379,2048661,2048660,700765096,1718093084,298468389,1718088044,298458396,298458398,1718088045,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4711,\"model_id\":196137437185,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m31yt7qoamnzc0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049124,822059908662278,1000031,2018619,1400285055,1213641,825465608492064,1015914,700190087,825465608499232,825465608493600,1718093079,298463379,2048661,2048660,700765096,1718093084,298468389,1718088044,298458396,298458398,1718088045,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4711,\"model_id\":196137437185,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27468852174",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27026581312,
              "shopid": 1366248929,
              "name": "AC WINDOW REIWA 1/2 PK - CW-0501RA",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                2018619,
                825465608497696,
                2048660,
                2048661,
                700765096
              ],
              "image": "id-11134207-7rbk4-m6dt69zsmd2f7a",
              "images": [
                "id-11134207-7rbk4-m6dt69zsmd2f7a",
                "id-11134207-7rbk7-m6dt6a02ly7w03",
                "id-11134207-7rbk9-m9h2nc8x6jv159",
                "id-11134207-7rbk4-m9h2nc8x7yfhb3",
                "id-11134207-7rbk9-m9h2nc8x9czxe4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1739869806,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199900000000,
              "price_min": 199900000000,
              "price_max": 199900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6knay-m9h2onj5lgm6fa.16000081746605046.mp4",
                  "thumb_url": "id-11110105-6knay-m9h2onj5lgm6fa_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6knay-m9h2onj5lgm6fa",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knay-m9h2onj5lgm6fa.16000081746605046.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knay-m9h2onj5lgm6fa.16000081746605046.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knay-m9h2onj5lgm6fa.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 29570596760,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Viviย Electrindo Official",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 27026581312,
            "shopid": 1366248929,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk4-m6dt69zsmd2f7a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608494624,825465608499232,2018619,825465608497696,2048660,2048661,700765096],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5192,\"model_id\":29570596760,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk4-m6dt69zsmd2f7a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608494624,825465608499232,2018619,825465608497696,2048660,2048661,700765096],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5192,\"model_id\":29570596760,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27026581312",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29124163157,
              "shopid": 222672522,
              "name": "REIWA AC Window 1/2 PK CW 0501RA Pendingin Ruangan 370W Low Watt",
              "label_ids": [
                700025282,
                1718087960,
                1428713,
                700000493,
                1059156,
                822059908662278,
                1015914,
                700190087,
                1400066568,
                2018619,
                1718093079,
                2023641,
                825465608497696,
                298463379,
                2068629,
                298938357,
                2098628,
                298938368,
                2098629,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224y-mg1meiy4jrwqd7",
              "images": [
                "id-11134207-8224y-mg1meiy4jrwqd7",
                "id-11134207-8224z-mg1meiydyartb8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1737467903,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 8,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 1,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 224000000000,
              "price_min": 224000000000,
              "price_max": 224000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Kudus",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp746RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 224000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 252518113701,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 224000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp746RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RN Murah",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                1000,
                1000
              ]
            },
            "itemid": 29124163157,
            "shopid": 222672522,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mg1meiy4jrwqd7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,1718087960,1428713,700000493,1059156,822059908662278,1015914,700190087,1400066568,2018619,1718093079,2023641,825465608497696,298463379,2068629,298938357,2098628,298938368,2098629,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":4061,\"model_id\":252518113701,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mg1meiy4jrwqd7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,1718087960,1428713,700000493,1059156,822059908662278,1015914,700190087,1400066568,2018619,1718093079,2023641,825465608497696,298463379,2068629,298938357,2098628,298938368,2098629,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":4061,\"model_id\":252518113701,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29124163157",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27555794785,
              "shopid": 359477015,
              "name": "AC WINDOW REIWA 1 PK CW-0901RA CW0901 RA 0901RA 1 PK STANDARD LOW WATT AC WINDOW REIWA",
              "label_ids": [
                844931064601283,
                1718093079,
                700005490,
                700005495,
                822059908662278,
                825465608494624,
                825465608499232,
                834403089593352,
                825465608497696,
                837860934119952,
                825465608492064,
                1213641,
                1000031,
                2018619,
                298463379,
                844931086908638,
                2048660,
                2048661,
                700765096,
                298933384,
                1718088045,
                1718093084,
                1718088044,
                298468390,
                298458398,
                298468389,
                298458396
              ],
              "image": "id-11134207-7r98s-lxxo790lkcv259",
              "images": [
                "id-11134207-7r98s-lxxo790lkcv259",
                "id-11134207-7r98r-lxxo790lkd19bd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1721462510,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 26,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 1,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "normal",
              "price": 279900000000,
              "price_min": 279900000000,
              "price_max": 279900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1k-lxxo8vdk5ulqbe.16000081721458977.mp4",
                  "thumb_url": "id-11110105-7r98t-lxxo94hiu99ka0",
                  "duration": 33,
                  "version": 2,
                  "vid": "id-11110105-6ke1k-lxxo8vdk5ulqbe",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1k-lxxo8vdk5ulqbe.16000081721458977.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1k-lxxo8vdk5ulqbe.16000081721458977.mp4",
                      "width": 848,
                      "height": 478
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1k-lxxo8vdk5ulqbe.default.mp4",
                    "width": 848,
                    "height": 478
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "AC ONLY",
                    "AC + PACKING KAYU"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 279900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 168316326239,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 279900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Electronic Super Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 27555794785,
            "shopid": 359477015,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98s-lxxo790lkcv259\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005490,700005495,822059908662278,825465608494624,825465608499232,834403089593352,825465608497696,837860934119952,825465608492064,1213641,1000031,2018619,298463379,844931086908638,2048660,2048661,700765096,298933384,1718088045,1718093084,1718088044,298468390,298458398,298468389,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5365,\"model_id\":168316326239,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98s-lxxo790lkcv259\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005490,700005495,822059908662278,825465608494624,825465608499232,834403089593352,825465608497696,837860934119952,825465608492064,1213641,1000031,2018619,298463379,844931086908638,2048660,2048661,700765096,298933384,1718088045,1718093084,1718088044,298468390,298458398,298468389,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5365,\"model_id\":168316326239,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27555794785",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28750463159,
              "shopid": 595069832,
              "name": "AC WINDOW REIWA CW-0501RA CW0501 RA 0501RA 1/2 PK STANDARD LOW WATT AC WINDOW REIWA 0.5 PK",
              "label_ids": [
                700005490,
                700005495,
                822059908662278,
                825465608494624,
                825465608499232,
                834403089593352,
                825465608497696,
                837860934119952,
                825465608492064,
                1213641,
                1000031,
                1718093079,
                2048660,
                2048661,
                700765096,
                298458396,
                1718093084
              ],
              "image": "id-11134207-7r98u-lvivof6rwnur68",
              "images": [
                "id-11134207-7r98u-lvivof6rwnur68",
                "id-11134207-7r98t-lvj00gpkzow91f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1716212655,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 219500000000,
              "price_min": 219500000000,
              "price_max": 219500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1j-lvj07oxm5b48be.16000081716212602.mp4",
                  "thumb_url": "id-11110105-7r98o-lvj07x7w2l52ef",
                  "duration": 33,
                  "version": 2,
                  "vid": "id-11110105-6ke1j-lvj07oxm5b48be",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1j-lvj07oxm5b48be.16000081716212602.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1j-lvj07oxm5b48be.16000081716212602.mp4",
                      "width": 848,
                      "height": 478
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1j-lvj07oxm5b48be.default.mp4",
                    "width": 848,
                    "height": 478
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "AC WINDOW ONLY",
                    "+ PACK BUBBLEWRAP"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 219500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 215506668868,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 219500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "tangerangsuperstore",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 28750463159,
            "shopid": 595069832,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-lvivof6rwnur68\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005490,700005495,822059908662278,825465608494624,825465608499232,834403089593352,825465608497696,837860934119952,825465608492064,1213641,1000031,1718093079,2048660,2048661,700765096,298458396,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5198,\"model_id\":215506668868,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-lvivof6rwnur68\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005490,700005495,822059908662278,825465608494624,825465608499232,834403089593352,825465608497696,837860934119952,825465608492064,1213641,1000031,1718093079,2048660,2048661,700765096,298458396,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5198,\"model_id\":215506668868,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28750463159",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25179371962,
              "shopid": 359477015,
              "name": "AC WINDOW REIWA 1/2 PK CW-0501RA CW0501 RA 0501RA 0.5 PK STANDARD LOW WATT AC WINDOW REIWA",
              "label_ids": [
                700005490,
                700005495,
                822059908662278,
                825465608497696,
                837860934119952,
                825465608492064,
                825465608494624,
                825465608499232,
                834403089593352,
                844931064601283,
                1213641,
                1000031,
                1015914,
                700190087,
                1718093079,
                2018619,
                298463379,
                2048660,
                2048661,
                700765096,
                298933384,
                298458398,
                298468389,
                298468390,
                298458396,
                1718088045,
                1718088044,
                1718093084
              ],
              "image": "id-11134207-7r98r-lv2t4ccyv5t8bf",
              "images": [
                "id-11134207-7r98r-lv2t4ccyv5t8bf",
                "id-11134207-7r98z-lv2t4ccyv66g71"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1715234257,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 219900000000,
              "price_min": 219900000000,
              "price_max": 219900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1i-lv2t71y83ccz8e.16000081715232257.mp4",
                  "thumb_url": "id-11110105-7r98z-lv2t7frpx2jkf0",
                  "duration": 33,
                  "version": 2,
                  "vid": "id-11110105-6ke1i-lv2t71y83ccz8e",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1i-lv2t71y83ccz8e.16000081715232257.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1i-lv2t71y83ccz8e.16000081715232257.mp4",
                      "width": 848,
                      "height": 478
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1i-lv2t71y83ccz8e.default.mp4",
                    "width": 848,
                    "height": 478
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "AC ONLY",
                    "AC + PACKING KAYU"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 219900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 217564973089,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 219900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Electronic Super Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 25179371962,
            "shopid": 359477015,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98r-lv2t4ccyv5t8bf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005490,700005495,822059908662278,825465608497696,837860934119952,825465608492064,825465608494624,825465608499232,834403089593352,844931064601283,1213641,1000031,1015914,700190087,1718093079,2018619,298463379,2048660,2048661,700765096,298933384,298458398,298468389,298468390,298458396,1718088045,1718088044,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5036,\"model_id\":217564973089,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98r-lv2t4ccyv5t8bf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005490,700005495,822059908662278,825465608497696,837860934119952,825465608492064,825465608494624,825465608499232,834403089593352,844931064601283,1213641,1000031,1015914,700190087,1718093079,2018619,298463379,2048660,2048661,700765096,298933384,298458398,298468389,298468390,298458396,1718088045,1718088044,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5036,\"model_id\":217564973089,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25179371962",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29555169881,
              "shopid": 1165828640,
              "name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK CW0501RA",
              "label_ids": [
                844931064601283,
                700005499,
                1059156,
                822059908662278,
                837860934119952,
                1000031,
                2018619,
                1400066568,
                825465608497696
              ],
              "image": "sg-11134201-7rdvo-lxmga84olk0v39",
              "images": [
                "sg-11134201-7rdvo-lxmga84olk0v39",
                "sg-11134201-7rdvj-lxme9kiy99c659",
                "sg-11134201-7rdwk-lxme9kpbyie744",
                "sg-11134201-7rdxd-lxme9kzbjwju28",
                "sg-11134201-7rdvj-lxme9l9bcbbc43"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1720776305,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 212300000000,
              "price_min": 212300000000,
              "price_max": 212300000000,
              "price_min_before_discount": 356200000000,
              "price_max_before_discount": 356200000000,
              "hidden_price_display": null,
              "price_before_discount": 356200000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-40%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "PACKINGAN",
                  "options": [
                    "STANDART",
                    "EXTRA PACKING"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 790567231995904,
                "price": 212300000000,
                "strikethrough_price": 356200000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-40%",
                "model_id": 207647516374,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 356200000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "C3 STORE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 29555169881,
            "shopid": 1165828640,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdvo-lxmga84olk0v39\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005499,1059156,822059908662278,837860934119952,1000031,2018619,1400066568,825465608497696],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5009,\"model_id\":207647516374,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdvo-lxmga84olk0v39\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005499,1059156,822059908662278,837860934119952,1000031,2018619,1400066568,825465608497696],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5009,\"model_id\":207647516374,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29555169881",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27624241100,
              "shopid": 1309702607,
              "name": "LENODI 220v/2000w AC Portable AC mini portabel pemanas Dan Pendingin Fungsi Ganda Multifungsi Dipasang Di Dinding Kamar Tidur",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                1718093079,
                1015914,
                700190087,
                1400285055,
                2018619,
                2023641,
                298893311,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                837860934119952,
                700830032,
                298463379,
                298933384,
                844931086908638,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7rbkb-m734qap4wuctf3",
              "images": [
                "id-11134207-7rbkb-m734qap4wuctf3",
                "id-11134207-7rbk3-m65a69zsciy0c8",
                "id-11134207-7rbke-m65a69zs43jc96",
                "id-11134207-7rbke-m65a69zsfc2wa3",
                "id-11134207-7rbkc-m65a69zs5i3saf",
                "id-11134207-7rbk7-m65a69zs9pt465",
                "id-11134207-7rbkd-m65a69zs8b8odf",
                "id-11134207-7rbk0-m65a69zs6wo857"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1737538459,
              "sold": 109,
              "historical_sold": 639,
              "liked": false,
              "liked_count": 3192,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 232,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 37900000000,
              "price_min": 37900000000,
              "price_max": 37900000000,
              "price_min_before_discount": 85800000000,
              "price_max_before_discount": 85800000000,
              "hidden_price_display": null,
              "price_before_discount": 85800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-56%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16000081737537767.mp4",
                  "thumb_url": "id-11110105-6kmj0-m5bacn2x25t4b3_cover",
                  "duration": 13,
                  "version": 2,
                  "vid": "id-11110105-6kmj0-m5bacn2x25t4b3",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16006711750511752.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16006711750511752.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16000081737537767.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16000081737537767.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16003251750511752.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16003251750511752.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "Putih",
                    "Pola"
                  ],
                  "images": [
                    "id-11134207-7rash-m5babz9jy7s8fa",
                    "id-11134207-7rasd-m5babz9jzmcofd"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 3.8060344827586206,
                "rating_count": [
                  232,
                  38,
                  12,
                  30,
                  29,
                  123
                ],
                "rcount_with_context": 69,
                "rcount_with_image": 39
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228232549122050,
                "price": 37521000000,
                "strikethrough_price": 85800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1282410030055424,
                "discount_text": "-56%",
                "model_id": 215742854802,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1282410030055424,
                  "voucher_code": "LENO51107",
                  "voucher_discount": 379000000,
                  "time_info": {
                    "start_time": 1762334400,
                    "end_time": 1770448500,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5900000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 85800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 639,
                "rounded_local_monthly_sold_count": 109,
                "local_monthly_sold_count_text": "109",
                "rounded_display_sold_count": 639,
                "display_sold_count_text": "639"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Lenodiย Officialย Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                4
              ]
            },
            "itemid": 27624241100,
            "shopid": 1309702607,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-m734qap4wuctf3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,1718093079,1015914,700190087,1400285055,2018619,2023641,298893311,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,700830032,298463379,298933384,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":217,\"model_id\":215742854802,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-m734qap4wuctf3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,1718093079,1015914,700190087,1400285055,2018619,2023641,298893311,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,700830032,298463379,298933384,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":217,\"model_id\":215742854802,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27624241100",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27377884722,
              "shopid": 1309702607,
              "name": "LENODI Hot 220V Refrigeration Mobile Small AC Mini Mahasiswa Asrama Tempat Tidur Net Net Net Terpadu Pendingin Udara Air Terpadu",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1718093079,
                2018619,
                2023641,
                1015914,
                700190087,
                1400285055,
                700830032,
                298463379,
                298933384,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                837860934119952,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7ra0p-mbnmvz4fe76mab",
              "images": [
                "id-11134207-7ra0p-mbnmvz4fe76mab",
                "id-11134207-7rbkb-m6s465x35w8cf0",
                "id-11134207-7rbk4-m6s465x31oj029",
                "id-11134207-7rbk2-m6s465x3333g08",
                "id-11134207-7rbk1-m6s465x34hnwba",
                "id-11134207-7rbk9-m6s465x37ass24",
                "id-11134207-7rbk1-m6s465x3a3xo8a",
                "id-11134207-7rbke-m6s465x38pd8ea"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1740737258,
              "sold": 11,
              "historical_sold": 64,
              "liked": false,
              "liked_count": 482,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 34,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 189900000000,
              "price_min": 189900000000,
              "price_max": 189900000000,
              "price_min_before_discount": 419800000000,
              "price_max_before_discount": 419800000000,
              "hidden_price_display": null,
              "price_before_discount": 419800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-55%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmiu-m6s47gxw5n9l70.16000031740735771.mp4",
                  "thumb_url": "id-11110105-6kmiu-m6s47gxw5n9l70_cover",
                  "duration": 48,
                  "version": 2,
                  "vid": "id-11110105-6kmiu-m6s47gxw5n9l70",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmiu-m6s47gxw5n9l70.default.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiu-m6s47gxw5n9l70.default.mp4",
                      "width": 480,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiu-m6s47gxw5n9l70.default.mp4",
                    "width": 480,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "AC NET MOSQUIT",
                  "options": [
                    "5100BTU",
                    "5300BTU",
                    "5500BTU"
                  ],
                  "images": [
                    "id-11134207-7rbk2-marw432aefqc23",
                    "id-11134207-7rbk5-marw432afuasb7",
                    "id-11134207-8224r-mi5doabf42dd49"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.764705882352941,
                "rating_count": [
                  34,
                  1,
                  0,
                  1,
                  2,
                  30
                ],
                "rcount_with_context": 17,
                "rcount_with_image": 7
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 712811303469056,
                "price": 188001000000,
                "strikethrough_price": 419800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1282410030055424,
                "discount_text": "-55%",
                "model_id": 188259870332,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1282410030055424,
                  "voucher_code": "LENO51107",
                  "voucher_discount": 1899000000,
                  "time_info": {
                    "start_time": 1762334400,
                    "end_time": 1770448500,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5900000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 419800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 64,
                "rounded_local_monthly_sold_count": 11,
                "local_monthly_sold_count_text": "11",
                "rounded_display_sold_count": 64,
                "display_sold_count_text": "64"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Lenodiย Officialย Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                4
              ]
            },
            "itemid": 27377884722,
            "shopid": 1309702607,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mbnmvz4fe76mab\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1718093079,2018619,2023641,1015914,700190087,1400285055,700830032,298463379,298933384,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":142,\"model_id\":188259870332,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mbnmvz4fe76mab\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1718093079,2018619,2023641,1015914,700190087,1400285055,700830032,298463379,298933384,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":142,\"model_id\":188259870332,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27377884722",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42923379256,
              "shopid": 261960113,
              "name": "Midea Air Cooler Pendingin Ruangan Low watt 4.8 Liter AC100-18B/AC100-25B",
              "label_ids": [
                1002164,
                1143625,
                1011692,
                1668726,
                1400095067,
                2018618,
                2153644,
                1400285005,
                844931064601283,
                1718093079,
                1400285055,
                1015914,
                700190087,
                298463379,
                2213652,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                298468389,
                1718088045
              ],
              "image": "id-11134207-81zto-mfmn0sjbjxn010",
              "images": [
                "id-11134207-81zto-mfmn0sjbjxn010",
                "id-11134207-8224q-mia0zrbywhs47a",
                "id-11134207-81ztk-mfmttjvl4ydp9d",
                "id-11134207-81ztn-mfmn0siyslxka0",
                "id-11134207-82251-mi475ld3frib8b",
                "id-11134207-82251-mi475ld3h62r6c",
                "id-11134207-81zti-mfmwqsdrpwjye4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760018318,
              "sold": 251,
              "historical_sold": 556,
              "liked": false,
              "liked_count": 1027,
              "view_count": null,
              "catid": 100010,
              "brand": "Midea",
              "cmt_count": 232,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 62600000000,
              "price_min": 62600000000,
              "price_max": 62600000000,
              "price_min_before_discount": 99900000000,
              "price_max_before_discount": 99900000000,
              "hidden_price_display": null,
              "price_before_discount": 99900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-37%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "PILIHAN",
                  "options": [
                    "AC100-18B (4.8L)",
                    "AC100-25B (5L)"
                  ],
                  "images": [
                    "id-11134207-8224p-mie1fp1p1uyw68",
                    "id-11134207-82250-mie1fp1p39jcf5"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.896551724137931,
                "rating_count": [
                  232,
                  2,
                  1,
                  1,
                  11,
                  217
                ],
                "rcount_with_context": 43,
                "rcount_with_image": 43
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-81zto-mfmn0sjbjxn010",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228252073603073,
                "price": 62600000000,
                "strikethrough_price": 99900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-37%",
                "model_id": 445283268274,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 99900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 556,
                "rounded_local_monthly_sold_count": 251,
                "local_monthly_sold_count_text": "251",
                "rounded_display_sold_count": 556,
                "display_sold_count_text": "556"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Midea Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                4
              ]
            },
            "itemid": 42923379256,
            "shopid": 261960113,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zto-mfmn0sjbjxn010\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,1143625,1011692,1668726,1400095067,2018618,2153644,1400285005,844931064601283,1718093079,1400285055,1015914,700190087,298463379,2213652,1059152,1049122,822059908662278,825465608499232,825465608497696,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":107,\"model_id\":445283268274,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:10 match_weight:1 loss_weight:1 extra_info:\\\"CYtXACDMyQTAEdYNS6fI9gPAGaHRmZmrbKI/IYrOyRyi2azA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3771307419895180\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zto-mfmn0sjbjxn010\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,1143625,1011692,1668726,1400095067,2018618,2153644,1400285005,844931064601283,1718093079,1400285055,1015914,700190087,298463379,2213652,1059152,1049122,822059908662278,825465608499232,825465608497696,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":107,\"model_id\":445283268274,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:10 match_weight:1 loss_weight:1 extra_info:\\\"CYtXACDMyQTAEdYNS6fI9gPAGaHRmZmrbKI/IYrOyRyi2azA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3771307419895180\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42923379256",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 18263117946,
              "shopid": 626138145,
              "name": "AC Second Berkualitas 1/2 Sampai 1Pk Inventer Pemasangan Bergaransi",
              "label_ids": [
                844931064601283,
                822059908662278,
                1400285055,
                1213641,
                1015914,
                700190087,
                825465608492064,
                825465608493600,
                825465608494624,
                825465608499232,
                1718093079,
                1000031,
                1049136,
                1049112,
                2018619,
                825465608497696,
                2108629,
                298463379,
                844931086908638,
                2048660,
                2048661,
                700765096,
                298933384,
                1718088044,
                298458398,
                298468389,
                1718088045,
                298468390,
                1718093084,
                298458396
              ],
              "image": "id-11134207-7r98t-lob10jplnb7515",
              "images": [
                "id-11134207-7r98t-lob10jplnb7515",
                "id-11134207-7r98y-lob10jklum8308",
                "id-11134207-7r98y-lob10jplnbii8a",
                "id-11134207-7r98x-lob10jplnaxwda",
                "id-11134207-7r98r-lob10jklum8843",
                "id-11134207-7r990-lob10jklw0sofe",
                "id-11134207-7r98t-lob10jpvmwjz94",
                "id-11134207-7r98y-lob10jqzla0s93",
                "id-11134207-7r98o-lob10jklw0sj55"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1668718832,
              "sold": 11,
              "historical_sold": 264,
              "liked": false,
              "liked_count": 969,
              "view_count": null,
              "catid": 100010,
              "brand": "Daikin",
              "cmt_count": 124,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 120000000000,
              "price_min": 120000000000,
              "price_max": 120000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6ke1b-lrbne4f4qva1c9.16000081707050336.mp4",
                  "thumb_url": "id-11110107-7r98o-lrbne9sixmlf90",
                  "duration": 29,
                  "version": 2,
                  "vid": "id-11110107-6ke1b-lrbne4f4qva1c9",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ke1b-lrbne4f4qva1c9.default.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1b-lrbne4f4qva1c9.default.mp4",
                      "width": 356,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1b-lrbne4f4qva1c9.default.mp4",
                    "width": 356,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "AC R22 1/2-3/4PK",
                    "AC R22 1PK",
                    "AC R32/410 1/2-3/4PK",
                    "AC R32/410 1PK",
                    "AC Inventer 1/2-1PK"
                  ],
                  "images": [
                    "id-11134207-7r992-lob10jklxfcze0",
                    "id-11134207-7r98w-lob10jklxfd448",
                    "id-11134207-7r98y-lob10jklytxf2f",
                    "id-11134207-7r98q-lob10jklytxk36",
                    "id-11134207-7r98r-lob10jkm08hvd3"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ukuran",
                  "options": [
                    "Unit Saja",
                    "Pasang Terima Dingin"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.1461538461538465,
                "rating_count": [
                  130,
                  20,
                  4,
                  6,
                  7,
                  93
                ],
                "rcount_with_context": 65,
                "rcount_with_image": 50
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Depok",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 120000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 167953025373,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 120000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 264,
                "rounded_local_monthly_sold_count": 11,
                "local_monthly_sold_count_text": "11",
                "rounded_display_sold_count": 264,
                "display_sold_count_text": "264"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "arushbawahterate",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                88,
                91,
                4
              ]
            },
            "itemid": 18263117946,
            "shopid": 626138145,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98t-lob10jplnb7515\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,822059908662278,1400285055,1213641,1015914,700190087,825465608492064,825465608493600,825465608494624,825465608499232,1718093079,1000031,1049136,1049112,2018619,825465608497696,2108629,298463379,844931086908638,2048660,2048661,700765096,298933384,1718088044,298458398,298468389,1718088045,298468390,1718093084,298458396],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":319,\"model_id\":167953025373,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,88,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98t-lob10jplnb7515\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,822059908662278,1400285055,1213641,1015914,700190087,825465608492064,825465608493600,825465608494624,825465608499232,1718093079,1000031,1049136,1049112,2018619,825465608497696,2108629,298463379,844931086908638,2048660,2048661,700765096,298933384,1718088044,298458398,298468389,1718088045,298468390,1718093084,298458396],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":319,\"model_id\":167953025373,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,88,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_18263117946",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27935137061,
              "shopid": 322837843,
              "name": "REIWA AC Box Pembungan Udara Panas Sok 8 inch",
              "label_ids": [
                2018619,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1718093079,
                700005490,
                700005495,
                822059908662278,
                1400285055,
                1718093065,
                825465608494624,
                825465608499232,
                844931086908638,
                825465608497696,
                298933384,
                2108629,
                700830032,
                1015914,
                700190087,
                2048660,
                2048661,
                700765096,
                2023641,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7rbk3-ma8q5zzzpipe94",
              "images": [
                "id-11134207-7rbk3-ma8q5zzzpipe94",
                "id-11134207-7rbk5-ma8q5zzzo44y88",
                "id-11134207-7rbka-ma8q5zzzqx9u3b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1745745502,
              "sold": 6,
              "historical_sold": 22,
              "liked": false,
              "liked_count": 80,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 10,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 43000000000,
              "price_min": 43000000000,
              "price_max": 43000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmio-ma8sfvc2bsyc5b.16000081748282788.mp4",
                  "thumb_url": "id-11110105-6kmio-ma8sfvc2bsyc5b_cover",
                  "duration": 10,
                  "version": 2,
                  "vid": "id-11110105-6kmio-ma8sfvc2bsyc5b",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmio-ma8sfvc2bsyc5b.16000081748282788.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmio-ma8sfvc2bsyc5b.16000081748282788.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmio-ma8sfvc2bsyc5b.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  10,
                  0,
                  0,
                  0,
                  0,
                  10
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 43000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 258312684012,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 43000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 22,
                "rounded_local_monthly_sold_count": 6,
                "local_monthly_sold_count_text": "6",
                "rounded_display_sold_count": 22,
                "display_sold_count_text": "22"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KING.FLEX",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                1000,
                1000,
                1000,
                4
              ]
            },
            "itemid": 27935137061,
            "shopid": 322837843,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-ma8q5zzzpipe94\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1718093079,700005490,700005495,822059908662278,1400285055,1718093065,825465608494624,825465608499232,844931086908638,825465608497696,298933384,2108629,700830032,1015914,700190087,2048660,2048661,700765096,2023641,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"air conditioner\",\"ac window\"],\"merge_rank\":276,\"model_id\":258312684012,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[88,1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-ma8q5zzzpipe94\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1718093079,700005490,700005495,822059908662278,1400285055,1718093065,825465608494624,825465608499232,844931086908638,825465608497696,298933384,2108629,700830032,1015914,700190087,2048660,2048661,700765096,2023641,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"air conditioner\",\"ac window\"],\"merge_rank\":276,\"model_id\":258312684012,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[88,1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27935137061",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28217958387,
              "shopid": 1258280821,
              "name": "AC Mini Pendingin Ruangan Portable Air Cooler | AC Mini Penyejuk Ruangan Hemat Daya",
              "label_ids": [
                844931064601283,
                1718093079,
                1015914,
                700190087,
                1000031,
                1400285055,
                298463379,
                1400066568,
                844931086908638,
                2018619,
                2023641,
                298893311,
                1428713,
                1718087960,
                700830032,
                298933384,
                1059152,
                1059154,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                837860934119952,
                700810080,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7rase-m3ft8080xljs5c",
              "images": [
                "id-11134207-7rase-m3ft8080xljs5c",
                "id-11134207-7rash-m3ft8080z048aa",
                "id-11134207-7rasi-m2qgvnrcqnk3d3",
                "id-11134207-7rasj-m3ft8080nrko4c",
                "id-11134207-7rasl-m2qgvnrcs24j5d",
                "id-11134207-7rase-m2qgvnqt2pqp47",
                "id-11134207-7rasf-m2qgvnqsyi1d3c",
                "id-11134207-7ras8-m2qgvnqszwlt9e",
                "id-11134207-7rasd-m2qgvnqsx3gx46"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1731927394,
              "sold": 25,
              "historical_sold": 797,
              "liked": false,
              "liked_count": 281,
              "view_count": null,
              "catid": 100010,
              "brand": "Arctic Air",
              "cmt_count": 394,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 7730000000,
              "price_min": 7730000000,
              "price_max": 7730000000,
              "price_min_before_discount": 8305000000,
              "price_max_before_discount": 8305000000,
              "hidden_price_display": null,
              "price_before_discount": 8305000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-7%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke19-m2qlray9fpxb9d.16000041731927244.mp4",
                  "thumb_url": "id-11110105-7rasa-m2qlrcoowpfvba",
                  "duration": 15,
                  "version": 2,
                  "vid": "id-11110105-6ke19-m2qlray9fpxb9d",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke19-m2qlray9fpxb9d.default.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke19-m2qlray9fpxb9d.default.mp4",
                      "width": 600,
                      "height": 400
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke19-m2qlray9fpxb9d.default.mp4",
                    "width": 600,
                    "height": 400
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.659898477157361,
                "rating_count": [
                  394,
                  5,
                  4,
                  18,
                  66,
                  301
                ],
                "rcount_with_context": 91,
                "rcount_with_image": 57
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-7rase-m3ft8080xljs5c",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 807937942028288,
                "price": 7730000000,
                "strikethrough_price": 8305000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-7%",
                "model_id": 139143137278,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 8305000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 797,
                "rounded_local_monthly_sold_count": 25,
                "local_monthly_sold_count_text": "25",
                "rounded_display_sold_count": 797,
                "display_sold_count_text": "797"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Kaixi ID",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                91,
                1000,
                1000,
                4
              ]
            },
            "itemid": 28217958387,
            "shopid": 1258280821,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rase-m3ft8080xljs5c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1015914,700190087,1000031,1400285055,298463379,1400066568,844931086908638,2018619,2023641,298893311,1428713,1718087960,700830032,298933384,1059152,1059154,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,837860934119952,700810080,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":311,\"model_id\":139143137278,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[91,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rase-m3ft8080xljs5c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1015914,700190087,1000031,1400285055,298463379,1400066568,844931086908638,2018619,2023641,298893311,1428713,1718087960,700830032,298933384,1059152,1059154,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,837860934119952,700810080,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":311,\"model_id\":139143137278,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[91,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28217958387",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26321924201,
              "shopid": 1431166858,
              "name": "Garansi 30 tahun  Air Cooler 6L - Free Two Ice Pack Ac Portable 1/2 Pk Low Watt",
              "label_ids": [
                844931064601283,
                1718093079,
                1015914,
                700190087,
                1400285055,
                2018619,
                298463379,
                844931086908638,
                822059908662278,
                825465608499232,
                825465608497696,
                2023641,
                700830032,
                700005490,
                1049120,
                834230400556567,
                2068629,
                298938357,
                700810080,
                1718088045,
                2098629,
                298938368,
                2098628,
                298468389
              ],
              "image": "id-11134207-8224z-mifiiimsdl35c4",
              "images": [
                "id-11134207-8224z-mifiiimsdl35c4",
                "id-11134207-7rbk9-m8399vvq6h3ld4",
                "id-11134207-7rbk5-m65amu0o7sba88",
                "id-11134207-7rbk8-m65amu0o6dqu48",
                "id-11134207-7rbke-m65amu0o3klydb",
                "id-11134207-7rbk1-m65amu0o261i01",
                "id-11134207-7rbk4-m65amu0nzcwm93",
                "id-11134207-7rbk9-m65amu0o0rh234",
                "id-11134207-7rbk2-m65amu0o96vq2e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1735293443,
              "sold": 134,
              "historical_sold": 5000,
              "liked": false,
              "liked_count": 7653,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 2308,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 29800000000,
              "price_min": 29800000000,
              "price_max": 29800000000,
              "price_min_before_discount": 70000000000,
              "price_max_before_discount": 70000000000,
              "hidden_price_display": null,
              "price_before_discount": 70000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-57%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16000081741311864.mp4",
                  "thumb_url": "id-11110105-6kmj1-m71mt847pp4scf_cover",
                  "duration": 15,
                  "version": 2,
                  "vid": "id-11110105-6kmj1-m71mt847pp4scf",
                  "formats": [
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16004081743786240.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16004081743786240.mp4",
                      "width": 360,
                      "height": 640
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16006711743599808.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16006711743599808.mp4",
                      "width": 540,
                      "height": 960
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16006731744175841.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16006731744175841.mp4",
                      "width": 540,
                      "height": 960
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16004091743786240.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16004091743786240.mp4",
                      "width": 540,
                      "height": 960
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16006591743786240.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16006591743786240.mp4",
                      "width": 540,
                      "height": 960
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16000081741311864.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16000081741311864.mp4",
                      "width": 720,
                      "height": 1280
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16003251743599808.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16003251743599808.mp4",
                      "width": 720,
                      "height": 1280
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16004101743786240.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16004101743786240.mp4",
                      "width": 720,
                      "height": 1280
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16004111743786240.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16004111743786240.mp4",
                      "width": 720,
                      "height": 1280
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16005581743599808.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16005581743599808.mp4",
                      "width": 1080,
                      "height": 1920
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16005681743786240.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16005681743786240.mp4",
                      "width": 1080,
                      "height": 1920
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Putih-6L",
                    "Putih-6L.",
                    "6L-Energy Saving New",
                    "12L EnergySaving New",
                    "6L-Kerusakan kecil",
                    "6L NoBox MinorDamage",
                    "@6L - White",
                    "Kartu garansi",
                    "@Kartu garansi"
                  ],
                  "images": [
                    "id-11134207-7ra0u-mchakq28ierb77",
                    "id-11134207-8224o-mijytpzletxkb6",
                    "id-11134207-7ra0t-mbrirc1okre55e",
                    "id-11134207-7ra0i-mbrirc1ojctp8a",
                    "id-11134207-8224v-mi0yv85apoub6b",
                    "id-11134207-7ra0i-mcd65t7ltuuzc3",
                    "id-11134207-7ra0k-mbrirc1om5yl7b",
                    "id-11134207-7ra0o-mcacmo2uupmv81",
                    "id-11134207-7rbk6-m8h066590evy1d"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.113518197573657,
                "rating_count": [
                  2308,
                  245,
                  114,
                  222,
                  280,
                  1447
                ],
                "rcount_with_context": 568,
                "rcount_with_image": 333
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 350673661329745,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp98RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 798532290789376,
                "price": 29502000000,
                "strikethrough_price": 70000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1308520729427968,
                "discount_text": "-57%",
                "model_id": 435269266219,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1308520729427968,
                  "voucher_code": "G8P29877",
                  "voucher_discount": 298000000,
                  "time_info": {
                    "start_time": 1765447560,
                    "end_time": 1773486360,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 500000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 70000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5000,
                "rounded_local_monthly_sold_count": 134,
                "local_monthly_sold_count_text": "134",
                "rounded_display_sold_count": 5000,
                "display_sold_count_text": "5RB+"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp98RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "G.S.D",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                91,
                1000,
                1000,
                4
              ]
            },
            "itemid": 26321924201,
            "shopid": 1431166858,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mifiiimsdl35c4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1015914,700190087,1400285055,2018619,298463379,844931086908638,822059908662278,825465608499232,825465608497696,2023641,700830032,700005490,1049120,834230400556567,2068629,298938357,700810080,1718088045,2098629,298938368,2098628,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":123,\"model_id\":435269266219,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[91,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mifiiimsdl35c4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1015914,700190087,1400285055,2018619,298463379,844931086908638,822059908662278,825465608499232,825465608497696,2023641,700830032,700005490,1049120,834230400556567,2068629,298938357,700810080,1718088045,2098629,298938368,2098628,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":123,\"model_id\":435269266219,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[91,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26321924201",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 4840855263,
              "shopid": 269901759,
              "name": "AC Portable Air Cooler AC Mini Super Dingin Hemat Listrik Ramah Lingkungan Cooler",
              "label_ids": [
                22,
                1015914,
                700190087,
                844931064601283,
                844931086908638,
                825249635454464,
                1400285055,
                1213641,
                700590005,
                1818593,
                298458395,
                1718087960,
                1428713,
                1718093079,
                1000031,
                1918643,
                2018619,
                2108629,
                298463379,
                1059152,
                1059154,
                822059908662278,
                840990690654214,
                840955085144628,
                825465608492064,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                700830032,
                298933384,
                1718088044,
                1718093084,
                298458398,
                298468390,
                1718088045,
                298458396,
                298468389
              ],
              "image": "2aa739a52888bbe06516a8daa746957e",
              "images": [
                "2aa739a52888bbe06516a8daa746957e",
                "ad5ee81df06dd80125b131c1e1d0892c",
                "bd8ddaba16823459ae40130cd9fc9b55",
                "907625440b3db9b3217e86f05c3d0e25",
                "16d9dce36c328ae96924c07203902bcd",
                "0c38020cc52a40eadf36b4278b45ebe5",
                "9e1a50169676af49ebf083e0be702c2d",
                "4b00c4577186309dd9d522469f54e87c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1593875186,
              "sold": 19,
              "historical_sold": 2000,
              "liked": false,
              "liked_count": 5075,
              "view_count": null,
              "catid": 100010,
              "brand": "Tidak Ada Merek",
              "cmt_count": 1233,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 15000000000,
              "price_min": 15000000000,
              "price_max": 15000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "1a6c7c20b69f2644e73fe97c9d41be1c",
                  "thumb_url": "2a5e4ec7529410cd85d80a6ab5663457",
                  "duration": 45,
                  "version": 2,
                  "vid": "id-11110105-6ke14-lkoxlr8pa5g532",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke14-lkoxlr8pa5g532.default.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-lkoxlr8pa5g532.default.mp4",
                      "width": 960,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-lkoxlr8pa5g532.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.325525040387722,
                "rating_count": [
                  1239,
                  69,
                  44,
                  114,
                  202,
                  810
                ],
                "rcount_with_context": 377,
                "rcount_with_image": 230
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 15000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 60188432656,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 15000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2000,
                "rounded_local_monthly_sold_count": 19,
                "local_monthly_sold_count_text": "19",
                "rounded_display_sold_count": 2000,
                "display_sold_count_text": "2RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Pennyroyal.id",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                97,
                91,
                4
              ]
            },
            "itemid": 4840855263,
            "shopid": 269901759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"2aa739a52888bbe06516a8daa746957e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[22,1015914,700190087,844931064601283,844931086908638,825249635454464,1400285055,1213641,700590005,1818593,298458395,1718087960,1428713,1718093079,1000031,1918643,2018619,2108629,298463379,1059152,1059154,822059908662278,840990690654214,840955085144628,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,700830032,298933384,1718088044,1718093084,298458398,298468390,1718088045,298458396,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":315,\"model_id\":60188432656,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,97,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"2aa739a52888bbe06516a8daa746957e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[22,1015914,700190087,844931064601283,844931086908638,825249635454464,1400285055,1213641,700590005,1818593,298458395,1718087960,1428713,1718093079,1000031,1918643,2018619,2108629,298463379,1059152,1059154,822059908662278,840990690654214,840955085144628,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,700830032,298933384,1718088044,1718093084,298458398,298468390,1718088045,298458396,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":315,\"model_id\":60188432656,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,97,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_4840855263",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 18250507619,
              "shopid": 8459024,
              "name": "Goto Madelin Air Cooler AC Mini Kipas Pendingin Ruangan Portable",
              "label_ids": [
                27,
                37,
                47,
                48,
                58,
                1000072,
                1000109,
                1000230,
                1000381,
                1000501,
                1000509,
                1000544,
                1000549,
                1000653,
                1000838,
                1000841,
                1000579,
                1002164,
                1011705,
                1011692,
                700066085,
                700085047,
                1400095067,
                700195012,
                700195013,
                700185029,
                700195014,
                700195015,
                700195016,
                700185027,
                700185028,
                1143625,
                1400285005,
                1015914,
                700190006,
                700185018,
                700190087,
                1378583,
                844931064601283,
                1400285055,
                1213641,
                997776091,
                700440004,
                700440005,
                844931086908638,
                1000031,
                298458395,
                1718093079,
                1718087960,
                1428713,
                1918643,
                1012763,
                298813370,
                1993609,
                1988623,
                1718162994,
                2018618,
                1993653,
                700700063,
                298893311,
                700005495,
                700005490,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608493600,
                298933384,
                700830032,
                2048660,
                2048661,
                700765096,
                1400095022,
                298463379,
                2213652,
                1718088044,
                298468390,
                1718088045,
                298458396,
                298458398,
                1718093084,
                298468389
              ],
              "image": "sg-11134201-82269-mhsv8zoql8g8ad",
              "images": [
                "sg-11134201-82269-mhsv8zoql8g8ad",
                "sg-11134201-7rd6f-m7w1jv42lrk0fe",
                "sg-11134201-7rd6j-m7w1jvagcgty04",
                "sg-11134201-7rd6y-m7w1jvgu34pdf1",
                "sg-11134201-7rd71-m7w1jvnhw6ye91",
                "sg-11134201-7rd70-m7w1jvu5jlwn8f",
                "sg-11134201-7rd4q-m7w1jw1nbg00d9",
                "sg-11134201-7rfg0-m9y3caayszaa8f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1664415529,
              "sold": 1000,
              "historical_sold": 50000,
              "liked": false,
              "liked_count": 43086,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 24114,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 9990000000,
              "price_min": 9990000000,
              "price_max": 9990000000,
              "price_min_before_discount": 26630000000,
              "price_max_before_discount": 26630000000,
              "hidden_price_display": null,
              "price_before_discount": 26630000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-62%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "d4dbe1db96323b2e0c63e6bf8d62508e",
                  "thumb_url": "456a801b79845b71b934eec9b11b402a",
                  "duration": 28,
                  "version": 2,
                  "vid": "sg_6b35926c-ac77-469e-81b8-989da3238219_000240",
                  "formats": [
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16002401712700093.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16002401712700093.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16004081712700015.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16004081712700015.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16006591723925255.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16006591723925255.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16002411712700110.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16002411712700110.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16004091712700032.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16004091712700032.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16004101712700032.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16004101712700032.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16004111712700032.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16004111712700032.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16005681712700032.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16005681712700032.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 600001,
                    "defn": "ORI",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/ori/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.ori.mp4",
                    "width": 1080,
                    "height": 1080
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "WARNA",
                  "options": [
                    "WHITE",
                    "REJECT LAYAK"
                  ],
                  "images": [
                    "sg-11134201-7rd5d-m7w1jwvm0u5lb8",
                    "sg-11134201-7rd6d-m7w1jx1ptanq3d"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.582618989305249,
                "rating_count": [
                  24498,
                  674,
                  433,
                  1335,
                  3560,
                  18496
                ],
                "rcount_with_context": 5863,
                "rcount_with_image": 4088
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "sg-11134201-82269-mhsv8zoql8g8ad",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 817348735451136,
                "price": 9490000000,
                "strikethrough_price": 26630000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1328701095165960,
                "discount_text": "-62%",
                "model_id": 59099320419,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1328701095165960,
                  "voucher_code": "GOTOHQF5K",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1767853800,
                    "end_time": 1768928340,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 26630000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 50000,
                "rounded_local_monthly_sold_count": 1000,
                "local_monthly_sold_count_text": "1RB+",
                "rounded_display_sold_count": 50000,
                "display_sold_count_text": "10RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Goto Living",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                91,
                4
              ]
            },
            "itemid": 18250507619,
            "shopid": 8459024,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82269-mhsv8zoql8g8ad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[27,37,47,48,58,1000072,1000109,1000230,1000381,1000501,1000509,1000544,1000549,1000653,1000838,1000841,1000579,1002164,1011705,1011692,700066085,700085047,1400095067,700195012,700195013,700185029,700195014,700195015,700195016,700185027,700185028,1143625,1400285005,1015914,700190006,700185018,700190087,1378583,844931064601283,1400285055,1213641,997776091,700440004,700440005,844931086908638,1000031,298458395,1718093079,1718087960,1428713,1918643,1012763,298813370,1993609,1988623,1718162994,2018618,1993653,700700063,298893311,700005495,700005490,822059908662278,825465608499232,825465608497696,825465608493600,298933384,700830032,2048660,2048661,700765096,1400095022,298463379,2213652,1718088044,298468390,1718088045,298458396,298458398,1718093084,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":91,\"model_id\":59099320419,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82269-mhsv8zoql8g8ad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[27,37,47,48,58,1000072,1000109,1000230,1000381,1000501,1000509,1000544,1000549,1000653,1000838,1000841,1000579,1002164,1011705,1011692,700066085,700085047,1400095067,700195012,700195013,700185029,700195014,700195015,700195016,700185027,700185028,1143625,1400285005,1015914,700190006,700185018,700190087,1378583,844931064601283,1400285055,1213641,997776091,700440004,700440005,844931086908638,1000031,298458395,1718093079,1718087960,1428713,1918643,1012763,298813370,1993609,1988623,1718162994,2018618,1993653,700700063,298893311,700005495,700005490,822059908662278,825465608499232,825465608497696,825465608493600,298933384,700830032,2048660,2048661,700765096,1400095022,298463379,2213652,1718088044,298468390,1718088045,298458396,298458398,1718093084,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":91,\"model_id\":59099320419,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_18250507619",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27929996385,
              "shopid": 1202842051,
              "name": "[Ready]AC Portable  AC mini portabel pemanasyang dipasang di dinding di kamar tidur AC 12 PK REIWA 1PK HEMAT TANPA PIPA PAKAI FREON R32 AC WINDOW REIWA 12-1PK",
              "label_ids": [
                2023641,
                2018619,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1718093079,
                1400285055,
                1015914,
                700190087,
                1049120,
                700005490,
                822059908662278,
                825465608499232,
                825465608497696,
                298893311,
                700830032,
                298933384,
                2068629,
                298938357,
                298463379,
                298468389,
                2098629,
                1718088045,
                298938368,
                2098628
              ],
              "image": "id-11134207-7rbk0-m7j28cl31ame87",
              "images": [
                "id-11134207-7rbk0-m7j28cl31ame87",
                "id-11134207-7rbk4-m7hdyjbkasrk62",
                "id-11134207-7rbk9-m7hdyjbkc7c03d",
                "id-11134207-7rbk6-m7hdyjbkdlwg5c",
                "id-11134207-7rbk4-m7hdyjbkf0gw9d",
                "id-11134207-7rbk5-m7hdyjbkgf1c5f",
                "id-11134207-7rbk0-m7hdyjbkhtls72",
                "id-11134207-7rbka-m7hdyjbkj86810",
                "id-11134207-7rbkc-m7hdyjbkkmqof6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1742276229,
              "sold": 0,
              "historical_sold": 16,
              "liked": false,
              "liked_count": 631,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 12,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 30200000000,
              "price_min": 30200000000,
              "price_max": 30200000000,
              "price_min_before_discount": 151600000000,
              "price_max_before_discount": 151600000000,
              "hidden_price_display": null,
              "price_before_discount": 151600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-80%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmiz-m7hk831s0uro30.16000101742276059.mp4",
                  "thumb_url": "id-11110105-6kmiz-m7hk831s0uro30_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6kmiz-m7hk831s0uro30",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmiz-m7hk831s0uro30.default.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiz-m7hk831s0uro30.default.mp4",
                      "width": 540,
                      "height": 676
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiz-m7hk831s0uro30.default.mp4",
                    "width": 540,
                    "height": 676
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "JENIS",
                  "options": [
                    "Air Conditioner",
                    "hitam",
                    "mini Oranye"
                  ],
                  "images": [
                    "id-11134207-7rbkd-m7hdyjbknfvk1c",
                    "id-11134207-7rbkc-m7hkanjcofe46d",
                    "id-11134207-7rbk5-ma98s7s1e26d0f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.666666666666667,
                "rating_count": [
                  12,
                  1,
                  0,
                  0,
                  0,
                  11
                ],
                "rcount_with_context": 7,
                "rcount_with_image": 7
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 355408548217271,
                "bundle_deal_label": "Pilih 3, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp100RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 814390400581632,
                "price": 30200000000,
                "strikethrough_price": 151600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-80%",
                "model_id": 290185951657,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 151600000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 16,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 16,
                "display_sold_count_text": "16"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp100RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Variety Electronic",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                1000,
                0,
                1000,
                88
              ]
            },
            "itemid": 27929996385,
            "shopid": 1202842051,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk0-m7j28cl31ame87\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931064601283,844931086908638,1718093079,1400285055,1015914,700190087,1049120,700005490,822059908662278,825465608499232,825465608497696,298893311,700830032,298933384,2068629,298938357,298463379,298468389,2098629,1718088045,298938368,2098628],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":467,\"model_id\":290185951657,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,0,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk0-m7j28cl31ame87\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931064601283,844931086908638,1718093079,1400285055,1015914,700190087,1049120,700005490,822059908662278,825465608499232,825465608497696,298893311,700830032,298933384,2068629,298938357,298463379,298468389,2098629,1718088045,298938368,2098628],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":467,\"model_id\":290185951657,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,0,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27929996385",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43104379201,
              "shopid": 1027709925,
              "name": "Epic Finds AC Portable Mini Kecil, Pendingin All-in-One untuk Outdoor, Parkir, dan Tenda, Tanpa Pemasangan, AC Mobile Pintar",
              "label_ids": [
                2018619,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                1718093079,
                1400285055,
                1718093065,
                1015914,
                700190087,
                1049120,
                700005490,
                822059908662278,
                825465608499232,
                825465608497696,
                298933384,
                2023641
              ],
              "image": "id-11134207-81ztg-mdvlrhenrshs97",
              "images": [
                "id-11134207-81ztg-mdvlrhenrshs97",
                "id-11134207-7rbk1-maxvejf0jb2x4f",
                "id-11134207-7rbk8-maxvejf0jaln08",
                "id-11134207-7rbkd-maxvejf0yquj82",
                "id-11134207-7rbk0-maxvejf03uu15c",
                "id-11134207-7rbke-maxvejf03ucr61",
                "id-11134207-7rbkc-maxvejezpta01a",
                "id-11134207-7rbk3-maxvejf059iwb0",
                "id-11134207-7rbk7-maxvejezoe3v08"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1749803120,
              "sold": 1,
              "historical_sold": 10,
              "liked": false,
              "liked_count": 200,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 5,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199000000000,
              "price_min": 199000000000,
              "price_max": 199000000000,
              "price_min_before_discount": 398000000000,
              "price_max_before_discount": 398000000000,
              "hidden_price_display": null,
              "price_before_discount": 398000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "puith Garansi 1tahun",
                    "puith Garansi 2tahun",
                    "1/2 PK+Rangka Kayu"
                  ],
                  "images": [
                    "id-11134207-7rbk8-maxvejf06o3c2e",
                    "id-11134207-8224t-mj82l9usmz9id6",
                    "id-11134207-82250-mftayoufiqyz11"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.8,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  1,
                  4
                ],
                "rcount_with_context": 5,
                "rcount_with_image": 5
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 355402873323613,
                "bundle_deal_label": "Pilih 3, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 709246212161536,
                "price": 199000000000,
                "strikethrough_price": 398000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 266480023809,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 398000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 10,
                "display_sold_count_text": "10"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Epic Finds",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                1000
              ]
            },
            "itemid": 43104379201,
            "shopid": 1027709925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztg-mdvlrhenrshs97\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931086908638,844931064601283,1718093079,1400285055,1718093065,1015914,700190087,1049120,700005490,822059908662278,825465608499232,825465608497696,298933384,2023641],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\"],\"merge_rank\":379,\"model_id\":266480023809,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztg-mdvlrhenrshs97\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931086908638,844931064601283,1718093079,1400285055,1718093065,1015914,700190087,1049120,700005490,822059908662278,825465608499232,825465608497696,298933384,2023641],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\"],\"merge_rank\":379,\"model_id\":266480023809,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43104379201",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 5158315494,
              "shopid": 133096368,
              "name": "AC Mini Portable Kipas Angin Pendingin Ruangan Artic Air Cooler Fan",
              "label_ids": [
                1001024,
                22,
                1011751,
                700020158,
                1015914,
                700190087,
                844931064601283,
                844931086908638,
                1400285055,
                1213641,
                298458334,
                298458395,
                1049112,
                1049127,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608493600,
                825465608494624,
                1000031,
                1718093079,
                1428713,
                1718087960,
                1918643,
                2018619,
                2023641,
                298893311,
                2048660,
                2048661,
                700765096,
                700750053,
                700830032,
                298933384,
                700810080,
                1718093084,
                298458396
              ],
              "image": "id-11134201-23020-nrigbu9umvnv82",
              "images": [
                "id-11134201-23020-nrigbu9umvnv82",
                "id-11134201-23020-jgxg2t9umvnvbd",
                "492d8549dd969b2f196034e9bbf5d5a4",
                "d6d300c267be9833cdc3cbdf3a89c2fe",
                "d900d5a5f5f25757979ef958ec5695be",
                "523a825eba39877239df7a72d162ed56",
                "1660c57c896a290deae2728701954bec",
                "a15ab236ca35078f167e6c72f3f2d4f8",
                "ed1bd3a582fa67888f29350c07aa01d1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1603251634,
              "sold": 22,
              "historical_sold": 985,
              "liked": false,
              "liked_count": 663,
              "view_count": null,
              "catid": 100010,
              "brand": "Artic",
              "cmt_count": 433,
              "flag": 196610,
              "cb_option": 0,
              "item_status": "normal",
              "price": 12300000000,
              "price_min": 12300000000,
              "price_max": 12300000000,
              "price_min_before_discount": 12500000000,
              "price_max_before_discount": 12500000000,
              "hidden_price_display": null,
              "price_before_discount": 12500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-2%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.775,
                "rating_count": [
                  440,
                  4,
                  2,
                  12,
                  53,
                  369
                ],
                "rcount_with_context": 75,
                "rcount_with_image": 47
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": true,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 719517131522048,
                "price": 12300000000,
                "strikethrough_price": 12500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-2%",
                "model_id": 22317838426,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 12500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 985,
                "rounded_local_monthly_sold_count": 22,
                "local_monthly_sold_count_text": "22",
                "rounded_display_sold_count": 985,
                "display_sold_count_text": "985"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RUMA Warehouse",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                1000,
                1000,
                91
              ]
            },
            "itemid": 5158315494,
            "shopid": 133096368,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-23020-nrigbu9umvnv82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001024,22,1011751,700020158,1015914,700190087,844931064601283,844931086908638,1400285055,1213641,298458334,298458395,1049112,1049127,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1000031,1718093079,1428713,1718087960,1918643,2018619,2023641,298893311,2048660,2048661,700765096,700750053,700830032,298933384,700810080,1718093084,298458396],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":1214,\"model_id\":22317838426,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,1000,1000,91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-23020-nrigbu9umvnv82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001024,22,1011751,700020158,1015914,700190087,844931064601283,844931086908638,1400285055,1213641,298458334,298458395,1049112,1049127,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1000031,1718093079,1428713,1718087960,1918643,2018619,2023641,298893311,2048660,2048661,700765096,700750053,700830032,298933384,700810080,1718093084,298458396],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":1214,\"model_id\":22317838426,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,1000,1000,91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_5158315494",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24326264312,
              "shopid": 1202842051,
              "name": "โœจReady stockโœจAC Portable 1/2 pk  AC 0,5 pk Pendingin Ruangan Kecepatan Angin Kuat",
              "label_ids": [
                844931086908638,
                1400285055,
                1015914,
                700190087,
                1718087960,
                1428713,
                1718093079,
                1000031,
                2018619,
                2023641,
                298893311,
                700830032,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                837860934119952,
                298933384,
                2068629,
                298938357,
                298463379,
                298468389,
                298938368,
                2098629,
                2098628,
                1718088045
              ],
              "image": "id-11134207-7r98v-lze9tb1d8sa0f2",
              "images": [
                "id-11134207-7r98v-lze9tb1d8sa0f2",
                "id-11134207-7r98x-luhg4wslmaa211",
                "id-11134207-7r98y-luhg4wslupoqee",
                "id-11134207-7r992-luhg4wslnoui63",
                "id-11134207-7r992-luhg4wslqhze5b",
                "id-11134207-7r992-luhg4wslp3eyc0",
                "id-11134207-7r98r-luhg4wslrwjud4",
                "id-11134207-7r98o-luhg4wsltb4aee",
                "id-11134207-7r98t-luhg4wsljh56d8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1713939432,
              "sold": 19,
              "historical_sold": 143,
              "liked": false,
              "liked_count": 917,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 61,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "normal",
              "price": 219000000000,
              "price_min": 219000000000,
              "price_max": 219000000000,
              "price_min_before_discount": 499900000000,
              "price_max_before_discount": 499900000000,
              "hidden_price_display": null,
              "price_before_discount": 499900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-56%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1d-luhgaptfmdu2c0.16000081713939331.mp4",
                  "thumb_url": "id-11110105-7r992-luhgasnjhawv46",
                  "duration": 45,
                  "version": 2,
                  "vid": "id-11110105-6ke1d-luhgaptfmdu2c0",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1d-luhgaptfmdu2c0.default.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1d-luhgaptfmdu2c0.default.mp4",
                      "width": 960,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1d-luhgaptfmdu2c0.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "1/2PK Versi Tombol",
                    "1PK  Layar Sentuh"
                  ],
                  "images": [
                    "id-11134207-7r992-luhg4wslw49689",
                    "id-11134207-7r98x-luhgbnybpgoh63"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.714285714285714,
                "rating_count": [
                  63,
                  0,
                  2,
                  1,
                  10,
                  50
                ],
                "rcount_with_context": 22,
                "rcount_with_image": 14
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-7r98v-lze9tb1d8sa0f2",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 355408548217271,
                "bundle_deal_label": "Pilih 3, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp730RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 814390400581632,
                "price": 219000000000,
                "strikethrough_price": 499900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-56%",
                "model_id": 127903605539,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 499900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 143,
                "rounded_local_monthly_sold_count": 19,
                "local_monthly_sold_count_text": "19",
                "rounded_display_sold_count": 143,
                "display_sold_count_text": "143"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp730RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Variety Electronic",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                1000,
                97,
                91,
                88,
                4
              ]
            },
            "itemid": 24326264312,
            "shopid": 1202842051,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98v-lze9tb1d8sa0f2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,1400285055,1015914,700190087,1718087960,1428713,1718093079,1000031,2018619,2023641,298893311,700830032,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,298933384,2068629,298938357,298463379,298468389,298938368,2098629,2098628,1718088045],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":529,\"model_id\":127903605539,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,97,91,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98v-lze9tb1d8sa0f2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,1400285055,1015914,700190087,1718087960,1428713,1718093079,1000031,2018619,2023641,298893311,700830032,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,298933384,2068629,298938357,298463379,298468389,298938368,2098629,2098628,1718088045],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":529,\"model_id\":127903605539,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,97,91,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24326264312",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25104531928,
              "shopid": 460689527,
              "name": "AC SECOND/Bekas,Berbagai merk, ukuran,dan BERGARANSI ini",
              "label_ids": [
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                844931064601283,
                1400285055,
                1059152,
                700005487,
                298458395,
                1718093079,
                1015914,
                700190087,
                1000031,
                1718087960,
                1428713,
                2018619,
                825465608497696,
                298463379,
                2108629,
                700830032,
                844931086908638,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7r98p-lpl48gum2r4u1c",
              "images": [
                "id-11134207-7r98p-lpl48gum2r4u1c",
                "id-11134207-7r98x-lpl48gxxxvnv3e",
                "id-11134207-7r98y-lpl48gwjzwmme6",
                "id-11134207-7r98u-lpl48gum45pa94",
                "id-11134207-7r98v-lpl48gum5k9qc1",
                "id-11134207-7r98w-lpl48gum6yu63f",
                "id-11134207-7r98v-lqh3eqcbmv7j00",
                "id-11134207-7r98w-lr5zxgfi6s1pd6",
                "id-11134207-7r990-ltfhxxkvhdze15"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1703266587,
              "sold": 5,
              "historical_sold": 171,
              "liked": false,
              "liked_count": 1871,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 85,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 128000000000,
              "price_min": 128000000000,
              "price_max": 128000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Ukuran",
                  "options": [
                    "ยฝ PK R22",
                    "ยพ PK R22",
                    "1 PK R22",
                    "ยพ PK R32/R410",
                    "1 PK R32/R410",
                    "ยฝ PK R32/R410",
                    "Inventer"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Pasang",
                  "options": [
                    "Unit saja",
                    "+Pasang(TRMA DINGIN)"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.921348314606742,
                "rating_count": [
                  89,
                  0,
                  0,
                  1,
                  5,
                  83
                ],
                "rcount_with_context": 40,
                "rcount_with_image": 32
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 128000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 127809549681,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 128000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 171,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 171,
                "display_sold_count_text": "171"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "FZ TEKNIK MAKMUR JAYA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                88,
                97,
                4
              ]
            },
            "itemid": 25104531928,
            "shopid": 460689527,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98p-lpl48gum2r4u1c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[822059908662278,825465608493600,825465608494624,825465608499232,844931064601283,1400285055,1059152,700005487,298458395,1718093079,1015914,700190087,1000031,1718087960,1428713,2018619,825465608497696,298463379,2108629,700830032,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":352,\"model_id\":127809549681,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98p-lpl48gum2r4u1c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[822059908662278,825465608493600,825465608494624,825465608499232,844931064601283,1400285055,1059152,700005487,298458395,1718093079,1015914,700190087,1000031,1718087960,1428713,2018619,825465608497696,298463379,2108629,700830032,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":352,\"model_id\":127809549681,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25104531928",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41814502736,
              "shopid": 1312136275,
              "name": "AE  6in1 AC portable Waktu Cerdas AC Mini Untuk Kamar Air Cooler Portable Pendingin Ruangan LED Display Kipa Nano Spray",
              "label_ids": [
                1012729,
                2018618,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1718093079,
                1049120,
                700005490,
                1400285055,
                1015914,
                700190087,
                1718093065,
                700830032,
                2213652,
                822059908662278,
                825465608492064,
                825465608494624,
                825465608499232,
                825465608497696
              ],
              "image": "id-11134207-81zth-mdy94o8u0pog52",
              "images": [
                "id-11134207-81zth-mdy94o8u0pog52",
                "id-11134207-81ztg-me45gwjrkwefd6",
                "id-11134207-81ztd-me45gwjvu0ao4d",
                "id-11134207-81ztn-me45gwjvvev4df",
                "id-11134207-81ztm-me45gwjv1wxya6",
                "id-11134207-81zto-me45gwk13mys5f",
                "id-11134207-81zti-me45gwjsk0lf2e",
                "id-11134207-81ztl-me45gwjqby82ad",
                "id-11134207-81ztj-me45gwjslf5v0a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1755856394,
              "sold": 29,
              "historical_sold": 1000,
              "liked": false,
              "liked_count": 1040,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 116,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 21589900000,
              "price_min": 21589900000,
              "price_max": 21589900000,
              "price_min_before_discount": 73333300000,
              "price_max_before_discount": 73333300000,
              "hidden_price_display": null,
              "price_before_discount": 73333300000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-71%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvd-mdy9506rfe2ode.16000081756361980.mp4",
                  "thumb_url": "id-11110105-6vdvd-mdy9506rfe2ode_cover",
                  "duration": 41,
                  "version": 2,
                  "vid": "id-11110105-6vdvd-mdy9506rfe2ode",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvd-mdy9506rfe2ode.16000081756361980.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvd-mdy9506rfe2ode.16000081756361980.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvd-mdy9506rfe2ode.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam"
                  ],
                  "images": [
                    "id-11134207-81ztg-mdy94o8shxj551"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.620689655172414,
                "rating_count": [
                  116,
                  4,
                  1,
                  9,
                  7,
                  95
                ],
                "rcount_with_context": 25,
                "rcount_with_image": 16
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-81zth-mdy94o8u0pog52",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228252946018304,
                "price": 20889900000,
                "strikethrough_price": 73333300000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1285993072181248,
                "discount_text": "-71%",
                "model_id": 296273203093,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1285993072181248,
                  "voucher_code": "AEHO23536",
                  "voucher_discount": 700000000,
                  "time_info": {
                    "start_time": 1762762080,
                    "end_time": 1770800880,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 20000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 73333300000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1000,
                "rounded_local_monthly_sold_count": 29,
                "local_monthly_sold_count_text": "29",
                "rounded_display_sold_count": 1000,
                "display_sold_count_text": "1RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "AE Homelife Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                4
              ]
            },
            "itemid": 41814502736,
            "shopid": 1312136275,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zth-mdy94o8u0pog52\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2018618,1718087960,1428713,844931064601283,844931086908638,1718093079,1049120,700005490,1400285055,1015914,700190087,1718093065,700830032,2213652,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":153,\"model_id\":296273203093,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zth-mdy94o8u0pog52\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2018618,1718087960,1428713,844931064601283,844931086908638,1718093079,1049120,700005490,1400285055,1015914,700190087,1718093065,700830032,2213652,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":153,\"model_id\":296273203093,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41814502736",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 17695344854,
              "shopid": 1025550444,
              "name": "Portable Terlaris AC 1/2PK-1PK - Garansi Resmi 1Tahun.Original.Pendinginan Cepat.mudah Dipindahkan.Pemasangan Sendiri.Mudah Dicuci.kendali jarak jauh.Timer.Operasi Yang Stabil.",
              "label_ids": [
                844931064601283,
                844931086908638,
                1400285055,
                1015914,
                700190087,
                1134053,
                1718087960,
                1428713,
                1718093079,
                1000031,
                2018619,
                2023641,
                1400066568,
                298893311,
                700830032,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                837860934119952,
                298933384
              ],
              "image": "id-11134207-7r98u-llsm2weifrj8a0",
              "images": [
                "id-11134207-7r98u-llsm2weifrj8a0",
                "id-11134207-7r98t-lthu7gx9sq2yce",
                "id-11134207-7r98x-lthu7gx9u4ned3",
                "id-11134207-7qul9-lk4zuv8knotj0c",
                "id-11134207-7qul9-ljozsjk7dhqz7e",
                "id-11134207-7qul6-lk4zuv8kf9eve0",
                "id-11134207-7qul4-lk4zuv8ki2jr3f",
                "id-11134207-7qukx-lk4zuv8kkvonf6",
                "id-11134207-7qul8-lk4zuv8kma9399"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1689650923,
              "sold": 21,
              "historical_sold": 458,
              "liked": false,
              "liked_count": 2662,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 241,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 209000000000,
              "price_min": 209000000000,
              "price_max": 209000000000,
              "price_min_before_discount": 499900000000,
              "price_max_before_discount": 499900000000,
              "hidden_price_display": null,
              "price_before_discount": 499900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-58%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "91d604ce7dd550376bb32e13b3f3956a",
                  "thumb_url": "a4c02b53a79e62330b5f2eb04d7194b1",
                  "duration": 45,
                  "version": 2,
                  "vid": "id-11110105-6jt7k-lk4p5t9lnufj51",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6jt7k-lk4p5t9lnufj51.16000081691374886.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6jt7k-lk4p5t9lnufj51.16000081691374886.mp4",
                      "width": 960,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6jt7k-lk4p5t9lnufj51.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "1/2PK Versi Tombol",
                    "1PK  Layar Sentuh",
                    "1/2PK Tombol+Kemasan",
                    "1PK Sentuh+Kemasan"
                  ],
                  "images": [
                    "id-11134207-7r98z-lln8udz2xq3a37",
                    "id-11134207-7r98r-lln8udz2z4nqfc",
                    "id-11134207-7r98x-lu7b9uz7mkcv38",
                    "id-11134207-7r98s-lu7b9uz7nyxbb1"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.6,
                "rating_count": [
                  245,
                  7,
                  6,
                  11,
                  30,
                  191
                ],
                "rcount_with_context": 90,
                "rcount_with_image": 51
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 704941044270080,
                "price": 209000000000,
                "strikethrough_price": 499900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-58%",
                "model_id": 204441726620,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 499900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 458,
                "rounded_local_monthly_sold_count": 21,
                "local_monthly_sold_count_text": "21",
                "rounded_display_sold_count": 458,
                "display_sold_count_text": "458"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Dreamland Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                1000,
                88,
                97,
                4
              ]
            },
            "itemid": 17695344854,
            "shopid": 1025550444,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-llsm2weifrj8a0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1400285055,1015914,700190087,1134053,1718087960,1428713,1718093079,1000031,2018619,2023641,1400066568,298893311,700830032,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,298933384],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":403,\"model_id\":204441726620,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-llsm2weifrj8a0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1400285055,1015914,700190087,1134053,1718087960,1428713,1718093079,1000031,2018619,2023641,1400066568,298893311,700830032,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,298933384],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":403,\"model_id\":204441726620,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_17695344854",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 1909576658,
              "shopid": 59707277,
              "name": "Midea Air Cooler AC-100 A (B) 6 Liter Hitam Kipas Pendingin Ruangan Penyejuk Udara",
              "label_ids": [
                27,
                38,
                40,
                48,
                47,
                1000016,
                1000109,
                1000030,
                1000245,
                1000375,
                1001036,
                31,
                33,
                34,
                74,
                1015914,
                700190087,
                1400285055,
                1213641,
                298458395,
                1000031,
                1718087960,
                1428713,
                1718093079,
                2018619,
                2023641,
                298893311,
                298933384,
                1059152,
                1059154,
                822059908662278,
                822120592853526,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                834403089593352,
                700765096,
                700810080,
                1718093084,
                298458396
              ],
              "image": "id-11134207-7r98w-ln83fe5jbkboac",
              "images": [
                "id-11134207-7r98w-ln83fe5jbkboac",
                "1985a4950863effe238eef2bb2d3d22c",
                "81be2d06e212d523f845e3a7c01a0fe7",
                "c63c886955edfe30d8bd285fe422ba95",
                "sg-11134201-23020-2vimy5aqchnv7f",
                "sg-11134201-23020-1uilo5aqchnvba",
                "id-11134207-7r991-ln83fih6zs7j10",
                "sg-11134201-23020-5d5ky5aqchnvbb",
                "id-11134207-7quky-lhmx284awixw7f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1550120618,
              "sold": 21,
              "historical_sold": 1000,
              "liked": false,
              "liked_count": 6548,
              "view_count": null,
              "catid": 100010,
              "brand": "Midea",
              "cmt_count": 807,
              "flag": 655362,
              "cb_option": 0,
              "item_status": "normal",
              "price": 96900000000,
              "price_min": 96900000000,
              "price_max": 96900000000,
              "price_min_before_discount": 161300000000,
              "price_max_before_discount": 161300000000,
              "hidden_price_display": null,
              "price_before_discount": 161300000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-40%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.819291819291819,
                "rating_count": [
                  819,
                  6,
                  5,
                  9,
                  91,
                  708
                ],
                "rcount_with_context": 293,
                "rcount_with_image": 249
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "cd72b6e67d147f97d9fee16c1cc2c5df",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": true,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 756991023169536,
                "price": 96600000000,
                "strikethrough_price": 161300000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1322976851673100,
                "discount_text": "-40%",
                "model_id": 71565045364,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1322976851673100,
                  "voucher_code": "MIDEDFJAS",
                  "voucher_discount": 300000000,
                  "time_info": {
                    "start_time": 1767200400,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 161300000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1000,
                "rounded_local_monthly_sold_count": 21,
                "local_monthly_sold_count_text": "21",
                "rounded_display_sold_count": 1000,
                "display_sold_count_text": "1RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Midea Official",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                91,
                1000,
                1000,
                1000,
                4
              ]
            },
            "itemid": 1909576658,
            "shopid": 59707277,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98w-ln83fe5jbkboac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[27,38,40,48,47,1000016,1000109,1000030,1000245,1000375,1001036,31,33,34,74,1015914,700190087,1400285055,1213641,298458395,1000031,1718087960,1428713,1718093079,2018619,2023641,298893311,298933384,1059152,1059154,822059908662278,822120592853526,825465608499232,825465608497696,2048660,2048661,834403089593352,700765096,700810080,1718093084,298458396],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\",\"ac window\"],\"merge_rank\":534,\"model_id\":71565045364,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[91,1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98w-ln83fe5jbkboac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[27,38,40,48,47,1000016,1000109,1000030,1000245,1000375,1001036,31,33,34,74,1015914,700190087,1400285055,1213641,298458395,1000031,1718087960,1428713,1718093079,2018619,2023641,298893311,298933384,1059152,1059154,822059908662278,822120592853526,825465608499232,825465608497696,2048660,2048661,834403089593352,700765096,700810080,1718093084,298458396],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\",\"ac window\"],\"merge_rank\":534,\"model_id\":71565045364,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[91,1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_1909576658",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26301736860,
              "shopid": 1023510819,
              "name": "E.Home AC Portable Pendingin Ruangan Multiple Function AC - 0.5PK / 1 PK",
              "label_ids": [
                1015914,
                700190087,
                1400285055,
                1718093079,
                844931086908638,
                1000031,
                1428713,
                1718087960,
                2018619,
                298893311,
                700830032,
                700005490,
                1049120,
                822059908662278,
                837860934119952,
                825465608499232,
                825465608497696,
                298933384,
                2023641,
                2108629,
                298463379,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7rbk4-m6t7ckoyb8n008",
              "images": [
                "id-11134207-7rbk4-m6t7ckoyb8n008",
                "id-11134207-7rbk0-m6t7ckoy9u2k33",
                "id-11134207-7r98r-lw43tgj8q2nxe5",
                "id-11134207-7r98u-lw43tgj8alp71f",
                "id-11134207-7r98s-lw43tgj8alxp2b",
                "id-11134207-7r98x-lw43tgj8rgvi57",
                "id-11134207-7r990-lw3qr8dozlaiff",
                "id-11134207-7r98q-lw3qr8doy6q2f5",
                "id-11134207-7r98s-lw43tgj8q2b255"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1717489901,
              "sold": 5,
              "historical_sold": 245,
              "liked": false,
              "liked_count": 958,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 126,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 219400000000,
              "price_min": 219400000000,
              "price_max": 219400000000,
              "price_min_before_discount": 439800000000,
              "price_max_before_discount": 439800000000,
              "hidden_price_display": null,
              "price_before_discount": 439800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1h-lw40yso2qusb7b.16000081717485098.mp4",
                  "thumb_url": "id-11110105-7r98u-lw40z69iuyvgf9",
                  "duration": 44,
                  "version": 2,
                  "vid": "id-11110105-6ke1h-lw40yso2qusb7b",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1h-lw40yso2qusb7b.default.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1h-lw40yso2qusb7b.default.mp4",
                      "width": 960,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1h-lw40yso2qusb7b.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Model",
                  "options": [
                    "0.5PK - Remote",
                    "1 PK - Remote",
                    "0.5PK - KEMASAN KAYU",
                    "1 PK - KEMASAN KAYU"
                  ],
                  "images": [
                    "id-11134207-7r98x-lw3qr8dovdl64a",
                    "id-11134207-7r98z-lw3qr8dows5me3",
                    "id-11134207-7rbkd-m6t7ckoycn7g68",
                    "id-11134207-7rbk8-m6t7ckoye1rwa9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.7819548872180455,
                "rating_count": [
                  133,
                  2,
                  2,
                  2,
                  11,
                  116
                ],
                "rcount_with_context": 41,
                "rcount_with_image": 30
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 355411203211264,
                "bundle_deal_label": "Pilih 3, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 820137226190848,
                "price": 219400000000,
                "strikethrough_price": 439800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 168239102973,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 439800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 245,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 245,
                "display_sold_count_text": "245"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Elegan Home",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                1000,
                1000,
                1000
              ]
            },
            "itemid": 26301736860,
            "shopid": 1023510819,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk4-m6t7ckoyb8n008\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1015914,700190087,1400285055,1718093079,844931086908638,1000031,1428713,1718087960,2018619,298893311,700830032,700005490,1049120,822059908662278,837860934119952,825465608499232,825465608497696,298933384,2023641,2108629,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\"],\"merge_rank\":1247,\"model_id\":168239102973,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk4-m6t7ckoyb8n008\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1015914,700190087,1400285055,1718093079,844931086908638,1000031,1428713,1718087960,2018619,298893311,700830032,700005490,1049120,822059908662278,837860934119952,825465608499232,825465608497696,298933384,2023641,2108629,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\"],\"merge_rank\":1247,\"model_id\":168239102973,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26301736860",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 12539729896,
              "shopid": 10095286,
              "name": "AC Second Bekas SBY Sidoarjo + Pemasangan Gratis",
              "label_ids": [
                47,
                1001034,
                1001022,
                1049116,
                700005516,
                844931026694327,
                844931046478970,
                844931064601283,
                822059908662278,
                1400285055,
                1015914,
                700190087,
                1213641,
                825465608492064,
                825465608497696,
                825465608499232,
                834403089593352,
                837860934119952,
                840955085144628,
                840990690654214,
                1718093079,
                298463379,
                1000031,
                2018619,
                2108629,
                298933384,
                2048661,
                2048660,
                700765096,
                844931086908638,
                2068629,
                298938357,
                2218763,
                298458398,
                2098628,
                298468389,
                1718088045,
                1718088044,
                1718093084,
                298458396,
                298938368,
                298468390,
                2098629
              ],
              "image": "275aafc6408047ab6b3bc102428afa59",
              "images": [
                "275aafc6408047ab6b3bc102428afa59",
                "3d838cc9a23e24302cae95915097e0c9",
                "116844489157718fc43dd63425099f65"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1635571092,
              "sold": 1,
              "historical_sold": 98,
              "liked": false,
              "liked_count": 499,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 52,
              "flag": 983040,
              "cb_option": 0,
              "item_status": "normal",
              "price": 170000000000,
              "price_min": 170000000000,
              "price_max": 170000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Putih"
                  ],
                  "images": [
                    "6a0b8a85409bacf2422fc48001a84d4f"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ukuran",
                  "options": [
                    "A",
                    "B",
                    "C",
                    "D",
                    "E"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.673076923076923,
                "rating_count": [
                  52,
                  1,
                  1,
                  3,
                  4,
                  43
                ],
                "rcount_with_context": 26,
                "rcount_with_image": 21
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Sidoarjo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp566RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 170000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 121809918846,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 170000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 98,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 98,
                "display_sold_count_text": "98"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp566RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "thoryjack",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                88,
                1000,
                91,
                1000
              ]
            },
            "itemid": 12539729896,
            "shopid": 10095286,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"275aafc6408047ab6b3bc102428afa59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1001034,1001022,1049116,700005516,844931026694327,844931046478970,844931064601283,822059908662278,1400285055,1015914,700190087,1213641,825465608492064,825465608497696,825465608499232,834403089593352,837860934119952,840955085144628,840990690654214,1718093079,298463379,1000031,2018619,2108629,298933384,2048661,2048660,700765096,844931086908638,2068629,298938357,2218763,298458398,2098628,298468389,1718088045,1718088044,1718093084,298458396,298938368,298468390,2098629],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"ac window\",\"pendingin ruangan\"],\"merge_rank\":3091,\"model_id\":121809918846,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[88,1000,91,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"275aafc6408047ab6b3bc102428afa59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1001034,1001022,1049116,700005516,844931026694327,844931046478970,844931064601283,822059908662278,1400285055,1015914,700190087,1213641,825465608492064,825465608497696,825465608499232,834403089593352,837860934119952,840955085144628,840990690654214,1718093079,298463379,1000031,2018619,2108629,298933384,2048661,2048660,700765096,844931086908638,2068629,298938357,2218763,298458398,2098628,298468389,1718088045,1718088044,1718093084,298458396,298938368,298468390,2098629],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"ac window\",\"pendingin ruangan\"],\"merge_rank\":3091,\"model_id\":121809918846,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[88,1000,91,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_12539729896",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 8315443588,
              "shopid": 354174429,
              "name": "Besmood AC Mini portable Artic Pendingin Ruangan Sejuk Air cooler",
              "label_ids": [
                1001024,
                22,
                1011751,
                1015914,
                700020158,
                1213641,
                700190087,
                825249635454464,
                822059908662278,
                844931086908638,
                844931064601283,
                1400285055,
                298458334,
                1049120,
                700005490,
                825465608492064,
                825465608493600,
                825465608497696,
                825465608499232,
                837860934119952,
                840955085144628,
                840990690654214,
                1000031,
                298458395,
                1718093079,
                1428713,
                1718087960,
                2018619,
                2023641,
                298893311,
                2108629,
                700830032,
                2048660,
                2048661,
                700765096,
                298933384,
                298458396,
                1718093084
              ],
              "image": "c14f66e531e2b4de089fc9cd47ab9f01",
              "images": [
                "c14f66e531e2b4de089fc9cd47ab9f01",
                "2e8f22f415c388166db9a80f6e06fb9b",
                "d7f14e968dbf71d9c61e4ef280d6d7d5",
                "db8462947609f6831437a4b20cbf8d4f",
                "17333f4d76603dcf7cfc0eb51b521468",
                "8975315a22422c47668a5f6381d60a8c",
                "4c93b7b041c9ad2cc8f6914009938533"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1613359201,
              "sold": 22,
              "historical_sold": 7000,
              "liked": false,
              "liked_count": 4264,
              "view_count": null,
              "catid": 100010,
              "brand": "Tidak Ada Merek",
              "cmt_count": 3411,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 6650000000,
              "price_min": 6650000000,
              "price_max": 6650000000,
              "price_min_before_discount": 10500000000,
              "price_max_before_discount": 10500000000,
              "hidden_price_display": null,
              "price_before_discount": 10500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-37%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "0f55774f26afe3298f68de28bbdd730e",
                  "thumb_url": "09cf8cecdb6782550c8f5fc81a85c2a7",
                  "duration": 60,
                  "version": 2,
                  "vid": "sg_ccb4e053-f254-4f59-a679-8a4b5ae38051_000063",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/sg_ccb4e053-f254-4f59-a679-8a4b5ae38051_000063.16003251748018957.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/sg_ccb4e053-f254-4f59-a679-8a4b5ae38051_000063.16003251748018957.mp4",
                      "width": 1276,
                      "height": 718
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/sg_ccb4e053-f254-4f59-a679-8a4b5ae38051_000063.default.mp4",
                    "width": 962,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "TYPE",
                  "options": [
                    "RJA777",
                    "M999"
                  ],
                  "images": [
                    "2e8f22f415c388166db9a80f6e06fb9b",
                    "c14f66e531e2b4de089fc9cd47ab9f01"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "TAMBAHAN",
                  "options": [
                    "TAMBAH BUBBLE",
                    "TANPA BUBBLE"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.4318381706244505,
                "rating_count": [
                  3412,
                  172,
                  76,
                  238,
                  550,
                  2376
                ],
                "rcount_with_context": 1228,
                "rcount_with_image": 959
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 820908952961024,
                "price": 6600000000,
                "strikethrough_price": 10500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1298889643671552,
                "discount_text": "-37%",
                "model_id": 33702470635,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1298889643671552,
                  "voucher_code": "BESM500DE",
                  "voucher_discount": 50000000,
                  "time_info": {
                    "start_time": 1764299460,
                    "end_time": 1772297940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5999900000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 10500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 7000,
                "rounded_local_monthly_sold_count": 22,
                "local_monthly_sold_count_text": "22",
                "rounded_display_sold_count": 7000,
                "display_sold_count_text": "7RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Besmood",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                1000,
                1000,
                91
              ]
            },
            "itemid": 8315443588,
            "shopid": 354174429,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"c14f66e531e2b4de089fc9cd47ab9f01\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001024,22,1011751,1015914,700020158,1213641,700190087,825249635454464,822059908662278,844931086908638,844931064601283,1400285055,298458334,1049120,700005490,825465608492064,825465608493600,825465608497696,825465608499232,837860934119952,840955085144628,840990690654214,1000031,298458395,1718093079,1428713,1718087960,2018619,2023641,298893311,2108629,700830032,2048660,2048661,700765096,298933384,298458396,1718093084],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":2523,\"model_id\":33702470635,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,1000,1000,91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"c14f66e531e2b4de089fc9cd47ab9f01\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001024,22,1011751,1015914,700020158,1213641,700190087,825249635454464,822059908662278,844931086908638,844931064601283,1400285055,298458334,1049120,700005490,825465608492064,825465608493600,825465608497696,825465608499232,837860934119952,840955085144628,840990690654214,1000031,298458395,1718093079,1428713,1718087960,2018619,2023641,298893311,2108629,700830032,2048660,2048661,700765096,298933384,298458396,1718093084],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":2523,\"model_id\":33702470635,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,1000,1000,91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_8315443588",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42365753503,
              "shopid": 22400373,
              "name": "KIPAS ANGIN MODEL AC 2PK/REMOTE/HEMAT LISTIK 40 WATT/SIAP PAKAI/FREE REMOTE",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1718093079,
                1400285055,
                822059908662278,
                825465608499232,
                825465608497696,
                1400066568,
                1015914,
                700190087,
                1049112,
                1049146,
                2018619,
                844931086908638,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7ra0m-mdg0c59ssl6778",
              "images": [
                "id-11134207-7ra0m-mdg0c59ssl6778",
                "id-11134207-7ra0k-mdsuf50dxfki5c",
                "id-11134207-81ztl-mdzzpiqfesqq5c",
                "id-11134207-81ztp-mekakyitbfgm69",
                "id-11134207-81ztd-mfl2jycx0ykrd9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1756467539,
              "sold": 54,
              "historical_sold": 349,
              "liked": false,
              "liked_count": 200,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 150,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 25500000000,
              "price_min": 25500000000,
              "price_max": 25500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv5-mdzzqn0nexhc29.16000081756467211.mp4",
                  "thumb_url": "id-11110105-6vdv5-mdzzqn0nexhc29_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6vdv5-mdzzqn0nexhc29",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv5-mdzzqn0nexhc29.16000081756467211.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv5-mdzzqn0nexhc29.16000081756467211.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv5-mdzzqn0nexhc29.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "VARIAN",
                  "options": [
                    "MANUAL NO REMOT",
                    "POLOS REMOT",
                    "LED PAKE REMOT",
                    "3PK JUMBO+REMOT"
                  ],
                  "images": [
                    "id-11134207-81ztm-mf9vk9umy8zvc7",
                    "id-11134207-81ztg-mewzpmlwp1j4ef",
                    "id-11134207-81zti-mfl2jycwzk0b8b",
                    "id-11134207-81zth-mfl2jycx7zezcb"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.1066666666666665,
                "rating_count": [
                  150,
                  16,
                  9,
                  15,
                  13,
                  97
                ],
                "rcount_with_context": 54,
                "rcount_with_image": 42
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Cirebon",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 25500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 238113201648,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 25500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 349,
                "rounded_local_monthly_sold_count": 54,
                "local_monthly_sold_count_text": "54",
                "rounded_display_sold_count": 349,
                "display_sold_count_text": "349"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ZV FAN SPLIT",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                4
              ]
            },
            "itemid": 42365753503,
            "shopid": 22400373,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0m-mdg0c59ssl6778\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1718093079,1400285055,822059908662278,825465608499232,825465608497696,1400066568,1015914,700190087,1049112,1049146,2018619,844931086908638,298468389,1718088045],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"ac window\"],\"merge_rank\":1099,\"model_id\":238113201648,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0m-mdg0c59ssl6778\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1718093079,1400285055,822059908662278,825465608499232,825465608497696,1400066568,1015914,700190087,1049112,1049146,2018619,844931086908638,298468389,1718088045],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"ac window\"],\"merge_rank\":1099,\"model_id\":238113201648,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42365753503",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42570021132,
              "shopid": 1619268501,
              "name": "COD  Portable Terlaris AC 1/2PK-1PK - Garansi Resmi 1Tahun.Original.Pendinginan Cepat.mudah Dipindahkan.Pemasangan Sendiri.Mudah Dicuci.kendali jarak jauh.Timer.Operasi Yang Stabil.",
              "label_ids": [
                844931064601283,
                844931086908638,
                700005490,
                1049120,
                822059908662278,
                825465608497696,
                825465608499232,
                2023641,
                2018619,
                298463379,
                298933384,
                1400285055,
                1015914,
                700190087,
                1718093079,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82251-mhlpvrtcix3cb3",
              "images": [
                "id-11134207-82251-mhlpvrtcix3cb3",
                "id-11134207-81ztq-metvp54ohzwl25",
                "id-11134207-81zto-metvp54ojeh152",
                "id-11134207-81zti-metvp54okt1he3",
                "id-11134207-81ztd-metw2jl6mlfkc4",
                "id-11134207-81ztn-metvp54om7lx65",
                "id-11134207-81ztp-metvp54onm6d45",
                "id-11134207-81ztj-metw2jl47i8642",
                "id-11134207-81ztf-metw2jl3clqa0d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758277484,
              "sold": 5,
              "historical_sold": 9,
              "liked": false,
              "liked_count": 56,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 209000000000,
              "price_min": 209000000000,
              "price_max": 209000000000,
              "price_min_before_discount": 499900000000,
              "price_max_before_discount": 499900000000,
              "hidden_price_display": null,
              "price_before_discount": 499900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-58%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven4-metw2mydijgnab.16000101758277077.mp4",
                  "thumb_url": "id-11110105-6ven4-metw2mydijgnab_cover",
                  "duration": 45,
                  "version": 2,
                  "vid": "id-11110105-6ven4-metw2mydijgnab",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven4-metw2mydijgnab.16000101758277077.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-metw2mydijgnab.16000101758277077.mp4",
                      "width": 960,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-metw2mydijgnab.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "1/2PK Versi Tombol",
                    "1PK  Layar Sentuh",
                    "1/2PK Tombol+Kemasan",
                    "1PK Sentuh+Kemasan"
                  ],
                  "images": [
                    "id-11134207-81ztl-metw2jl0f950b9",
                    "id-11134207-81ztm-metw2jl0gnpgea",
                    "id-11134207-81ztq-metw2jl0i29w68",
                    "id-11134207-81ztq-metw2jl0jgucc8"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 386177219969249,
                "bundle_deal_label": "Pilih 3, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 735469797704704,
                "price": 209000000000,
                "strikethrough_price": 499900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-58%",
                "model_id": 224516221334,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 499900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 9,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 9,
                "display_sold_count_text": "9"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DiamondMart.id",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                1000
              ]
            },
            "itemid": 42570021132,
            "shopid": 1619268501,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mhlpvrtcix3cb3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,700005490,1049120,822059908662278,825465608497696,825465608499232,2023641,2018619,298463379,298933384,1400285055,1015914,700190087,1718093079,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\"],\"merge_rank\":889,\"model_id\":224516221334,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mhlpvrtcix3cb3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,700005490,1049120,822059908662278,825465608497696,825465608499232,2023641,2018619,298463379,298933384,1400285055,1015914,700190087,1718093079,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\"],\"merge_rank\":889,\"model_id\":224516221334,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42570021132",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29532999011,
              "shopid": 1250112260,
              "name": "Mountainhiker AC portabel, tanpa drainase, AC mini untuk berkemah dan dipasang di mobil",
              "label_ids": [
                2018618,
                1718087960,
                1428713,
                844931064601283,
                1718093079,
                1015914,
                700190087,
                844931086908638,
                1012729,
                298893311,
                1400285055,
                298888358,
                298938357,
                700830032,
                834230400556567,
                2213652,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                837860934119952,
                298463379,
                298933384,
                700810055,
                2008656,
                2098628,
                298468389,
                1718088045,
                2098629,
                298938368
              ],
              "image": "id-11134207-8224t-mi84g8ess0zne2",
              "images": [
                "id-11134207-8224t-mi84g8ess0zne2",
                "id-11134207-7ra0s-md160bd01eef02",
                "id-11134207-7ra0j-md160bcpmctf55",
                "id-11134207-7ra0j-md160bd0jns72c",
                "id-11134207-7ra0k-md160bczly9ka0",
                "id-11134207-7ra0q-md160bcpxlfc5d",
                "id-11134207-7ra0p-md160bczq5nb88",
                "id-11134207-7ra0j-md160bczor2v8a",
                "id-11134207-7ra0t-md160bczly5jce"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1744352389,
              "sold": 4,
              "historical_sold": 40,
              "liked": false,
              "liked_count": 1300,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 22,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 348000000000,
              "price_min": 348000000000,
              "price_max": 348000000000,
              "price_min_before_discount": 716000000000,
              "price_max_before_discount": 716000000000,
              "hidden_price_display": null,
              "price_before_discount": 716000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-51%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmj5-m8fumsu1jjg8c9.16000081744351735.mp4",
                  "thumb_url": "id-11110105-6kmj5-m8fumsu1jjg8c9_cover",
                  "duration": 28,
                  "version": 2,
                  "vid": "id-11110105-6kmj5-m8fumsu1jjg8c9",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj5-m8fumsu1jjg8c9.16000081744351735.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj5-m8fumsu1jjg8c9.16000081744351735.mp4",
                      "width": 720,
                      "height": 1280
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj5-m8fumsu1jjg8c9.16003251754738517.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj5-m8fumsu1jjg8c9.16003251754738517.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj5-m8fumsu1jjg8c9.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "Warna khaki",
                    "Hitam"
                  ],
                  "images": [
                    "id-11134207-7ra0m-md160bd9my5f59",
                    "id-11134207-7ra0l-md160bd9ocpv15"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.7272727272727275,
                "rating_count": [
                  22,
                  1,
                  0,
                  0,
                  2,
                  19
                ],
                "rcount_with_context": 5,
                "rcount_with_image": 6
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 403192349473018,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp580RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 710771487605760,
                "price": 348000000000,
                "strikethrough_price": 716000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-51%",
                "model_id": 243148207252,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 716000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 40,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 40,
                "display_sold_count_text": "40"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp580RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Mountainhiker Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                1000
              ]
            },
            "itemid": 29532999011,
            "shopid": 1250112260,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mi84g8ess0zne2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931064601283,1718093079,1015914,700190087,844931086908638,1012729,298893311,1400285055,298888358,298938357,700830032,834230400556567,2213652,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,298463379,298933384,700810055,2008656,2098628,298468389,1718088045,2098629,298938368],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\"],\"merge_rank\":943,\"model_id\":243148207252,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mi84g8ess0zne2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931064601283,1718093079,1015914,700190087,844931086908638,1012729,298893311,1400285055,298888358,298938357,700830032,834230400556567,2213652,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,298463379,298933384,700810055,2008656,2098628,298468389,1718088045,2098629,298938368],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\"],\"merge_rank\":943,\"model_id\":243148207252,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29532999011",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27861538930,
              "shopid": 1360283095,
              "name": "Homeliving Kipas Ac Air Cooler pendingin Ruangan Mini bisa tambah Es Batu Dingin Tahan Lama",
              "label_ids": [
                844931086908638,
                844931064601283,
                1718093079,
                1000031,
                1015914,
                700190087,
                1000669,
                1400285055,
                1428713,
                1718087960,
                2018619,
                2023641,
                298463379,
                1049117,
                1049116,
                822059908662278,
                825465608493600,
                825465608499232,
                825465608497696,
                837860934119952,
                298893311,
                700830032,
                298933384,
                2108629,
                298938356,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7rbk8-m6lfeu5rycf5a6",
              "images": [
                "id-11134207-7rbk8-m6lfeu5rycf5a6",
                "id-11134207-7r98v-m09yx4c7btpc19",
                "id-11134207-7r98x-m09yx4c7d89s9a",
                "id-11134207-7r98o-m09yx4c7emu868",
                "id-11134207-7r98q-m09yx4c7g1eo15",
                "id-11134207-7rasf-m27vqbemtit064",
                "id-11134207-7rasl-m27vqbems3tu59"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1726567462,
              "sold": 290,
              "historical_sold": 10000,
              "liked": false,
              "liked_count": 4539,
              "view_count": null,
              "catid": 100010,
              "brand": "HANG YAN",
              "cmt_count": 7129,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4990000000,
              "price_min": 4990000000,
              "price_max": 4990000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1b-m0a2pqpdqll888.16000081726568189.mp4",
                  "thumb_url": "id-11110105-7r98v-m0a2prtw3oeo83",
                  "duration": 12,
                  "version": 2,
                  "vid": "id-11110105-6ke1b-m0a2pqpdqll888",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1b-m0a2pqpdqll888.default.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-m0a2pqpdqll888.default.mp4",
                      "width": 354,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-m0a2pqpdqll888.default.mp4",
                    "width": 354,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Hitam",
                  "options": [
                    "Hitam",
                    "Hijau",
                    "Navy"
                  ],
                  "images": [
                    "id-11134207-7r98u-m09yx4c7hfz449",
                    "id-11134207-7r98v-m09yx4c7iujkf6",
                    "id-11134207-7ras9-m27vqbemuxdgca"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.748351802496844,
                "rating_count": [
                  7129,
                  70,
                  48,
                  171,
                  1028,
                  5812
                ],
                "rcount_with_context": 1555,
                "rcount_with_image": 1068
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 4990000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 187814015441,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4990000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10000,
                "rounded_local_monthly_sold_count": 290,
                "local_monthly_sold_count_text": "290",
                "rounded_display_sold_count": 10000,
                "display_sold_count_text": "10RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Homeliving_12",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                91,
                1000,
                1000
              ]
            },
            "itemid": 27861538930,
            "shopid": 1360283095,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk8-m6lfeu5rycf5a6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1718093079,1000031,1015914,700190087,1000669,1400285055,1428713,1718087960,2018619,2023641,298463379,1049117,1049116,822059908662278,825465608493600,825465608499232,825465608497696,837860934119952,298893311,700830032,298933384,2108629,298938356,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\"],\"merge_rank\":2031,\"model_id\":187814015441,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,91,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk8-m6lfeu5rycf5a6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1718093079,1000031,1015914,700190087,1000669,1400285055,1428713,1718087960,2018619,2023641,298463379,1049117,1049116,822059908662278,825465608493600,825465608499232,825465608497696,837860934119952,298893311,700830032,298933384,2108629,298938356,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\"],\"merge_rank\":2031,\"model_id\":187814015441,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,91,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27861538930",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28727016535,
              "shopid": 1025550444,
              "name": "A01 AC Portable 0.5PK / 1 PK Air Cooler Pendingin Ruangan AC WINDOW PORTABLEPAKAI FREON R290",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1718093079,
                1400285055,
                2018619,
                2023641,
                1015914,
                700190087,
                700005490,
                1049120,
                822059908662278,
                825465608497696,
                837860934119952,
                825465608499232,
                700830032,
                298933384
              ],
              "image": "id-11134207-7rbk3-m6p2wcaxbdks3e",
              "images": [
                "id-11134207-7rbk3-m6p2wcaxbdks3e",
                "id-11134207-7rbk8-mb0l6wd5fhro8e",
                "id-11134207-7rbk0-mb0l6wd5gwc48e",
                "id-11134207-7rbk1-mb0l6wd5iawkba",
                "id-11134207-7rbk7-mb0l6wd5nx6c27",
                "id-11134207-7rbk1-mb0l6wd5pbqs99",
                "id-11134207-7rbk9-mb0l6wd5jph079",
                "id-11134207-7rbk3-mb0l6wd5l41gb5",
                "id-11134207-7rbkc-mb0l6wd5milw1c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1740190448,
              "sold": 0,
              "historical_sold": 32,
              "liked": false,
              "liked_count": 291,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 16,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 189000000000,
              "price_min": 189000000000,
              "price_max": 189000000000,
              "price_min_before_discount": 400000000000,
              "price_max_before_discount": 400000000000,
              "hidden_price_display": null,
              "price_before_discount": 400000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmj0-m6qa9s0c69wnef.16000081740624890.mp4",
                  "thumb_url": "id-11110105-6kmj0-m6qa9s0c69wnef_cover",
                  "duration": 22,
                  "version": 2,
                  "vid": "id-11110105-6kmj0-m6qa9s0c69wnef",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj0-m6qa9s0c69wnef.16006711753376968.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m6qa9s0c69wnef.16006711753376968.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj0-m6qa9s0c69wnef.16000081740624890.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m6qa9s0c69wnef.16000081740624890.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj0-m6qa9s0c69wnef.16003251753376968.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m6qa9s0c69wnef.16003251753376968.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m6qa9s0c69wnef.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "kekuatan",
                  "options": [
                    "A01",
                    "Pembungkus aman"
                  ],
                  "images": [
                    "id-11134207-7rbk7-m6nei58lrwip8e",
                    "id-11134207-7rbk8-mb0l6wd5e378cd"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.25,
                "rating_count": [
                  16,
                  1,
                  1,
                  2,
                  1,
                  11
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 704941044270080,
                "price": 189000000000,
                "strikethrough_price": 400000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 138224277076,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 400000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 32,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 32,
                "display_sold_count_text": "32"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Dreamland Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                0,
                1000,
                88,
                97
              ]
            },
            "itemid": 28727016535,
            "shopid": 1025550444,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-m6p2wcaxbdks3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1718093079,1400285055,2018619,2023641,1015914,700190087,700005490,1049120,822059908662278,825465608497696,837860934119952,825465608499232,700830032,298933384],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":2633,\"model_id\":138224277076,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,0,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-m6p2wcaxbdks3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1718093079,1400285055,2018619,2023641,1015914,700190087,700005490,1049120,822059908662278,825465608497696,837860934119952,825465608499232,700830032,298933384],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":2633,\"model_id\":138224277076,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,0,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28727016535",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29562781958,
              "shopid": 681225299,
              "name": "Simplus Air cooler Kipas Angin Pendingin Kipas AC Rumahan Tangki 10L Jangkauan Udara Luas",
              "label_ids": [
                1002164,
                1016119,
                1668726,
                844931086908638,
                844931064601283,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1718093079,
                1015914,
                700190087,
                1000031,
                1918643,
                1823711,
                1400620020,
                298813370,
                1400285055,
                298463379,
                2018618,
                1012763,
                298893311,
                298933384,
                2153644,
                298888358,
                298938357,
                2213652,
                700810080,
                700810055,
                2008656,
                298938368,
                1718088045,
                2098628,
                2098629,
                298468389
              ],
              "image": "id-11134207-8224z-mj582rnyyosg04",
              "images": [
                "id-11134207-8224z-mj582rnyyosg04",
                "id-11134207-8224y-mg2113jcuq6la6",
                "id-11134207-82251-mg2113jd5yq494",
                "id-11134207-8224p-mg2113jd7dak59",
                "id-11134207-8224p-mg2113jd8rv0ce",
                "id-11134207-8224y-mg2113jda6fg99",
                "id-11134207-8224x-mg2113jdbkzw56",
                "id-11134207-8224q-mg2113jdczkc9e",
                "id-11134207-8224u-mg2113jdee4sb9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1727682518,
              "sold": 260,
              "historical_sold": 2000,
              "liked": false,
              "liked_count": 7458,
              "view_count": null,
              "catid": 100010,
              "brand": "Simplus",
              "cmt_count": 858,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 62600000000,
              "price_min": 62600000000,
              "price_max": 62600000000,
              "price_min_before_discount": 119799900000,
              "price_max_before_discount": 119799900000,
              "hidden_price_display": null,
              "price_before_discount": 119799900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-48%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.16000081747106835.mp4",
                  "thumb_url": "id-11110105-6kmis-m9pd3ckorksb3c_cover",
                  "duration": 45,
                  "version": 2,
                  "vid": "id-11110105-6kmis-m9pd3ckorksb3c",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.16006711753767325.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.16006711753767325.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.16000081747106835.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.16000081747106835.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.16003251753767325.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.16003251753767325.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.16005581753767325.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.16005581753767325.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "types",
                  "options": [
                    "10L(Remote Control)",
                    "10RC+Gelembung Udara",
                    "10L(Tombol Kontrol)",
                    "10TK+Gelembung Udara",
                    "24L"
                  ],
                  "images": [
                    "id-11134207-8224r-mg2113jdfsp8cc",
                    "id-11134207-7ra0s-mb7x0qnvh2sf6a",
                    "id-11134207-8224y-mg2113jdh79o67",
                    "id-11134207-7ra0l-mbda10btajac49",
                    "id-11134207-7rbk8-m8c0pfwl784t2c"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.825174825174825,
                "rating_count": [
                  858,
                  7,
                  5,
                  10,
                  87,
                  749
                ],
                "rcount_with_context": 196,
                "rcount_with_image": 145
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "sg-11134201-7rdxq-mbxmsionfjzp7d",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp103RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228239314534401,
                "price": 62100000000,
                "strikethrough_price": 119799900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1323106790948884,
                "discount_text": "-48%",
                "model_id": 248116101619,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1323106790948884,
                  "voucher_code": "SIMP00226",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1767286800,
                    "end_time": 1769965140,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 35900000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 119799900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2000,
                "rounded_local_monthly_sold_count": 260,
                "local_monthly_sold_count_text": "260",
                "rounded_display_sold_count": 2000,
                "display_sold_count_text": "2RB+"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp103RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Simplus Official Shop",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97,
                1000,
                1000,
                91,
                4
              ]
            },
            "itemid": 29562781958,
            "shopid": 681225299,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mj582rnyyosg04\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,1016119,1668726,844931086908638,844931064601283,700005490,1049120,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1015914,700190087,1000031,1918643,1823711,1400620020,298813370,1400285055,298463379,2018618,1012763,298893311,298933384,2153644,298888358,298938357,2213652,700810080,700810055,2008656,298938368,1718088045,2098628,2098629,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":151,\"model_id\":248116101619,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,1000,1000,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mj582rnyyosg04\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,1016119,1668726,844931086908638,844931064601283,700005490,1049120,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1015914,700190087,1000031,1918643,1823711,1400620020,298813370,1400285055,298463379,2018618,1012763,298893311,298933384,2153644,298888358,298938357,2213652,700810080,700810055,2008656,298938368,1718088045,2098628,2098629,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":151,\"model_id\":248116101619,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,1000,1000,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29562781958",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 266977791,
              "shopid": 10095286,
              "name": "AC Second Bekas 1/2pk-1pk Komplit Pemasangan",
              "label_ids": [
                47,
                1000375,
                22,
                1001036,
                1001024,
                700020158,
                1049116,
                700005516,
                822059908662278,
                844931026694327,
                844931046478970,
                844931064601283,
                1400285055,
                298458334,
                822120592839702,
                822120592841238,
                822120592847382,
                825465608496160,
                825465608497696,
                825465608499232,
                834403089593352,
                837860934119952,
                1015914,
                700190087,
                298463379,
                1718093079,
                1000031,
                2018619,
                2108629,
                298933384,
                2068629,
                298938357,
                2218763,
                2098629,
                298938368,
                1718088045,
                2098628,
                298468389
              ],
              "image": "8bd3875cc1da1056c5d82ba3c1d49a10",
              "images": [
                "8bd3875cc1da1056c5d82ba3c1d49a10",
                "9a7c538489d3407f346b5fcf68398f58",
                "d3f46a5988d1a2ff4f28bee4bf691874"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1495127182,
              "sold": 11,
              "historical_sold": 329,
              "liked": false,
              "liked_count": 5282,
              "view_count": null,
              "catid": 100010,
              "brand": "Toshiba",
              "cmt_count": 174,
              "flag": 917506,
              "cb_option": 0,
              "item_status": "normal",
              "price": 60000000000,
              "price_min": 60000000000,
              "price_max": 60000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Indoor",
                    "Outdoor",
                    "Set indoor+outdoor",
                    "Set in out pipa",
                    "Set lengkap +pasang"
                  ],
                  "images": [
                    "062b91554e086ffb925c073a07769f30",
                    "844c9eae7a255d2e220340b6bef8a5f1",
                    "46bd041a0526df0b384f5812ca92354a",
                    "da4e72d32c4d8b6f2527f3997b55c497",
                    "2a6cbd4a8a704c441c4e0b20c8f905c8"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ukuran",
                  "options": [
                    "1/2pk",
                    "3/4pk",
                    "1pk"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.355029585798817,
                "rating_count": [
                  169,
                  13,
                  6,
                  10,
                  19,
                  121
                ],
                "rcount_with_context": 92,
                "rcount_with_image": 63
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": true,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Sidoarjo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp200RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 60000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 13454589816,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 60000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 329,
                "rounded_local_monthly_sold_count": 11,
                "local_monthly_sold_count_text": "11",
                "rounded_display_sold_count": 329,
                "display_sold_count_text": "329"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp200RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "thoryjack",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                88,
                4
              ]
            },
            "itemid": 266977791,
            "shopid": 10095286,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"8bd3875cc1da1056c5d82ba3c1d49a10\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000375,22,1001036,1001024,700020158,1049116,700005516,822059908662278,844931026694327,844931046478970,844931064601283,1400285055,298458334,822120592839702,822120592841238,822120592847382,825465608496160,825465608497696,825465608499232,834403089593352,837860934119952,1015914,700190087,298463379,1718093079,1000031,2018619,2108629,298933384,2068629,298938357,2218763,2098629,298938368,1718088045,2098628,298468389],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"ac window\",\"ac window\"],\"merge_rank\":83,\"model_id\":13454589816,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"8bd3875cc1da1056c5d82ba3c1d49a10\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000375,22,1001036,1001024,700020158,1049116,700005516,822059908662278,844931026694327,844931046478970,844931064601283,1400285055,298458334,822120592839702,822120592841238,822120592847382,825465608496160,825465608497696,825465608499232,834403089593352,837860934119952,1015914,700190087,298463379,1718093079,1000031,2018619,2108629,298933384,2068629,298938357,2218763,2098629,298938368,1718088045,2098628,298468389],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"ac window\",\"ac window\"],\"merge_rank\":83,\"model_id\":13454589816,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_266977791",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24093056086,
              "shopid": 1309702607,
              "name": "LENODI  AC Portable 1.5PK/1PK, Ac Bergerak, Garansi Resmi 1Tahun Original Pendinginan Cepat mudah Dipindahkan, Pendingin,Dehumidifikasi, Pengurangan Kebisingan, Hemat Energi, Tanpa Unit Luar Ruangan",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                700005490,
                1049120,
                1718093079,
                822059908662278,
                837860934119952,
                825465608499232,
                825465608497696,
                1015914,
                700190087,
                1400285055,
                298893311,
                700830032,
                298463379,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7rbkb-m9008tzw0wsx79",
              "images": [
                "id-11134207-7rbkb-m9008tzw0wsx79",
                "id-11134207-7rbk2-m7rbxpal7w4071",
                "id-11134207-7rbk4-m7rbxpalnccwa9",
                "id-11134207-7rbk3-m7rbxpav7hdt38",
                "id-11134207-7rbk3-m7rbxpal9ao4ed",
                "id-11134207-7rbk6-m7rbxpavmxk9c1",
                "id-11134207-7rbkd-m7rbxpavmxmp5d",
                "id-11134207-7rbk8-m7rbxpav7hbd07",
                "id-11134207-7rbk9-m7rbxpaloqx076"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1742800588,
              "sold": 4,
              "historical_sold": 116,
              "liked": false,
              "liked_count": 1703,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 57,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 131000000000,
              "price_min": 131000000000,
              "price_max": 131000000000,
              "price_min_before_discount": 279000000000,
              "price_max_before_discount": 279000000000,
              "hidden_price_display": null,
              "price_before_discount": 279000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmiy-m7q7lp6v40fr45.16000081742799649.mp4",
                  "thumb_url": "id-11110105-6kmiy-m7q7lp6v40fr45_cover",
                  "duration": 14,
                  "version": 2,
                  "vid": "id-11110105-6kmiy-m7q7lp6v40fr45",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmiy-m7q7lp6v40fr45.16003251743173309.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiy-m7q7lp6v40fr45.16003251743173309.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiy-m7q7lp6v40fr45.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "1",
                  "options": [
                    "1P Mini",
                    "1P Plus",
                    "๐ŸŸ 1P Pro",
                    "1.5P Mini",
                    "1.5P Plus",
                    "๐ŸŸ 1.5P Pro",
                    "Kipas Dingin-60L",
                    "AC mobile-1P Pro"
                  ],
                  "images": [
                    "id-11134207-7rbkd-m7q7i0nbfaro84",
                    "id-11134207-7rbk4-m7q7i0nbgpc49b",
                    "id-11134207-7rbkb-m8a0wtuarnkh16",
                    "id-11134207-7rbk7-m7q7uxwq995u81",
                    "id-11134207-7rbke-m7q7uxwqanqa0a",
                    "id-11134207-7rbka-m7q7uxwqc2aq8c",
                    "id-11134207-7rbk4-m7q7uxwqevfmad",
                    "id-11134207-7rbk2-m7q7uxwqga0287"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.701754385964913,
                "rating_count": [
                  57,
                  1,
                  2,
                  1,
                  5,
                  48
                ],
                "rcount_with_context": 21,
                "rcount_with_image": 16
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228232549122050,
                "price": 129690000000,
                "strikethrough_price": 279000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1282410030055424,
                "discount_text": "-53%",
                "model_id": 195913828271,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1282410030055424,
                  "voucher_code": "LENO51107",
                  "voucher_discount": 1310000000,
                  "time_info": {
                    "start_time": 1762334400,
                    "end_time": 1770448500,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5900000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 279000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 116,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 116,
                "display_sold_count_text": "116"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Lenodiย Officialย Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                1000,
                91,
                97
              ]
            },
            "itemid": 24093056086,
            "shopid": 1309702607,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-m9008tzw0wsx79\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,700005490,1049120,1718093079,822059908662278,837860934119952,825465608499232,825465608497696,1015914,700190087,1400285055,298893311,700830032,298463379,298933384,298468389,1718088045],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":303,\"model_id\":195913828271,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-m9008tzw0wsx79\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,700005490,1049120,1718093079,822059908662278,837860934119952,825465608499232,825465608497696,1015914,700190087,1400285055,298893311,700830032,298463379,298933384,298468389,1718088045],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":303,\"model_id\":195913828271,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24093056086",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42970111510,
              "shopid": 1475963753,
              "name": "Spul Kipas Angin China 16 Inc RRT Aluminium",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                2023641,
                2018619,
                298933384,
                1400285055,
                1059156,
                700005579,
                822059908662278,
                825465608499232,
                825465608497696,
                1015914,
                700190087,
                1718093079,
                2108629
              ],
              "image": "id-11134207-8224r-mir6kwuy4ruw29",
              "images": [
                "id-11134207-8224r-mir6kwuy4ruw29",
                "id-11134207-81ztp-mestb5e10iro8e",
                "id-11134207-8224v-mitpildnyb5zd4",
                "id-11134207-82251-mhkkmgtfyfwj48"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758299580,
              "sold": 11,
              "historical_sold": 41,
              "liked": false,
              "liked_count": 12,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 21,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4290000000,
              "price_min": 4290000000,
              "price_max": 4290000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Spul 16 in",
                  "options": [
                    "Spul tanpa kapasitor",
                    "Spul plus kapasitor",
                    "spul alcu+kapasitor"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.142857142857143,
                "rating_count": [
                  21,
                  2,
                  0,
                  4,
                  2,
                  13
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Blora",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 4290000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 405371092255,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4290000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 41,
                "rounded_local_monthly_sold_count": 11,
                "local_monthly_sold_count_text": "11",
                "rounded_display_sold_count": 41,
                "display_sold_count_text": "41"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Zaza online",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 42970111510,
            "shopid": 1475963753,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mir6kwuy4ruw29\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,2023641,2018619,298933384,1400285055,1059156,700005579,822059908662278,825465608499232,825465608497696,1015914,700190087,1718093079,2108629],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":212,\"model_id\":405371092255,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mir6kwuy4ruw29\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,2023641,2018619,298933384,1400285055,1059156,700005579,822059908662278,825465608499232,825465608497696,1015914,700190087,1718093079,2108629],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":212,\"model_id\":405371092255,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42970111510",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 6023384546,
              "shopid": 218542238,
              "name": "LAMPU LED STRIP SELANG 5050 SMD AC 220V METERAN (1M-100M) OUTDOOR AND INDOOR LAMPU PLAFON LAMPU HIAS",
              "label_ids": [
                1000167,
                700085405,
                1000375,
                1000593,
                1000630,
                1000723,
                1000902,
                1001024,
                35,
                22,
                1011751,
                1015914,
                700020158,
                700020015,
                1400085392,
                1400066664,
                700190087,
                1049117,
                1049116,
                825249635454464,
                822059908662278,
                844931064601283,
                1400285055,
                1000669,
                298458334,
                997776091,
                700440004,
                700440005,
                1668726,
                825465608494624,
                825465608497696,
                825465608499232,
                840955085144628,
                840990690654214,
                1000031,
                1718087960,
                1428713,
                298458395,
                1718093079,
                834403089593352,
                825465608493600,
                1213641,
                1993609,
                1988623,
                2018619,
                2023641,
                298893311,
                298933384,
                700830032,
                844931086908638,
                2048660,
                2048661,
                700765096,
                700810080,
                1718093084,
                298458396
              ],
              "image": "id-11134207-7rasd-m3z75m58bfyf98",
              "images": [
                "id-11134207-7rasd-m3z75m58bfyf98",
                "958a04f37a119f4329004f54982c3ea9",
                "id-11134207-7rasc-m3z75m58cuju8a",
                "id-11134207-7rask-m3z75m58bfzed8",
                "id-11134207-7r98z-lus4q05ncfbdd2",
                "a745697801df8f1ef77a12de0a0e9acf",
                "e445cc906e68a3d223cb0619defec7c6",
                "id-11134207-7r98r-lusm9mimgvuc87",
                "00042458120199dc7b69632a37d053d0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1585746087,
              "sold": 30000,
              "historical_sold": 2000000,
              "liked": false,
              "liked_count": 52834,
              "view_count": null,
              "catid": 100636,
              "brand": "",
              "cmt_count": 78520,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 279900000,
              "price_min": 279900000,
              "price_max": 279900000,
              "price_min_before_discount": 825000000,
              "price_max_before_discount": 825000000,
              "hidden_price_display": null,
              "price_before_discount": 825000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-66%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16000081714615296.mp4",
                  "thumb_url": "id-11110107-7r98y-lusmaqgq0qjf21",
                  "duration": 46,
                  "version": 2,
                  "vid": "id-11110107-6ke14-lusmao4defjoc0",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16003221714618584.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16003221714618584.mp4",
                      "width": 360,
                      "height": 432
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16004081714701748.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16004081714701748.mp4",
                      "width": 360,
                      "height": 432
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16006711723224729.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16006711723224729.mp4",
                      "width": 540,
                      "height": 648
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16006731724177784.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16006731724177784.mp4",
                      "width": 540,
                      "height": 648
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16006591723034164.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16006591723034164.mp4",
                      "width": 540,
                      "height": 648
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16004091714701728.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16004091714701728.mp4",
                      "width": 540,
                      "height": 648
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16000081714615296.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16000081714615296.mp4",
                      "width": 720,
                      "height": 864
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16003241714618584.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16003241714618584.mp4",
                      "width": 720,
                      "height": 864
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16003251714618584.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16003251714618584.mp4",
                      "width": 720,
                      "height": 864
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16004101714701748.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16004101714701748.mp4",
                      "width": 720,
                      "height": 864
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16004111714701748.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16004111714701748.mp4",
                      "width": 720,
                      "height": 864
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.default.mp4",
                    "width": 540,
                    "height": 648
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "WARNA",
                  "options": [
                    "PUTIH",
                    "WARM WHITE",
                    "BIRU",
                    "HIJAU",
                    "MERAH",
                    "PINK",
                    "UNGU",
                    "ICE BLUE",
                    "GOLD KUNING",
                    "SKET STRIP JEPIT EKO"
                  ],
                  "images": [
                    "41bd2af6218ebf486c0da80ced95b3ca",
                    "id-11134207-7quky-lhubqx4akhuj69",
                    "5125e04efc2f247922e37cb36f079e97",
                    "69807cc4f529e5f1d0dd4be9ecb2fdcf",
                    "62d53a56b4855e87656b07960730aefd",
                    "7be89e10bd2abf8b569f8eb55ff99b87",
                    "39871e00a0c635adb15064303be2afe1",
                    "b04468518682a1c865f9b082d7eb58e6",
                    "id-11134207-7qula-lhubqx4alwezba",
                    "id-11134207-7r98p-lwo66gl073a397"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "UKURAN",
                  "options": [
                    "METERAN"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.459410016007317,
                "rating_count": [
                  79326,
                  4540,
                  2080,
                  4584,
                  9073,
                  59049
                ],
                "rcount_with_context": 17588,
                "rcount_with_image": 12767
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-7rasd-m3z75m58bfyf98",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 705871038906368,
                "price": 279900000,
                "strikethrough_price": 825000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-66%",
                "model_id": 15474464167,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 825000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2000000,
                "rounded_local_monthly_sold_count": 30000,
                "local_monthly_sold_count_text": "1RB+",
                "rounded_display_sold_count": 2000000,
                "display_sold_count_text": "10RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ANEKA.LISTRIK",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 6023384546,
            "shopid": 218542238,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m3z75m58bfyf98\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,700085405,1000375,1000593,1000630,1000723,1000902,1001024,35,22,1011751,1015914,700020158,700020015,1400085392,1400066664,700190087,1049117,1049116,825249635454464,822059908662278,844931064601283,1400285055,1000669,298458334,997776091,700440004,700440005,1668726,825465608494624,825465608497696,825465608499232,840955085144628,840990690654214,1000031,1718087960,1428713,298458395,1718093079,834403089593352,825465608493600,1213641,1993609,1988623,2018619,2023641,298893311,298933384,700830032,844931086908638,2048660,2048661,700765096,700810080,1718093084,298458396],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":213,\"model_id\":15474464167,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m3z75m58bfyf98\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,700085405,1000375,1000593,1000630,1000723,1000902,1001024,35,22,1011751,1015914,700020158,700020015,1400085392,1400066664,700190087,1049117,1049116,825249635454464,822059908662278,844931064601283,1400285055,1000669,298458334,997776091,700440004,700440005,1668726,825465608494624,825465608497696,825465608499232,840955085144628,840990690654214,1000031,1718087960,1428713,298458395,1718093079,834403089593352,825465608493600,1213641,1993609,1988623,2018619,2023641,298893311,298933384,700830032,844931086908638,2048660,2048661,700765096,700810080,1718093084,298458396],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":213,\"model_id\":15474464167,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_6023384546",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24989855619,
              "shopid": 857504,
              "name": "Midea Tower Fan Air Cooler 4in1  MAC400R0APW 4L Ionizer Diffuser",
              "label_ids": [
                844931064601283,
                1428713,
                1718087960,
                1400285055,
                2018619,
                2018618,
                1015914,
                700190087,
                1012729,
                298893311,
                1119699,
                298933384,
                2153644,
                1718093079,
                2213652,
                822059908662278,
                825465608497696,
                822120592853526,
                825465608499232,
                2048660,
                2048661,
                834403089593352,
                700765096
              ],
              "image": "id-11134207-7ra0p-mb7u5vycbz6h82",
              "images": [
                "id-11134207-7ra0p-mb7u5vycbz6h82",
                "id-11134207-7rasf-m48klljqp67e1d",
                "id-11134207-7rasc-m48klljgwlmybe",
                "id-11134207-7rasd-m48klljqqkru27",
                "id-11134207-7ras8-m48klljgy07e28",
                "id-11134207-7rasb-m48klljqnrmyc0",
                "id-11134207-7rasl-m48klljh0tcaf7",
                "id-11134207-7rasd-m48klljgzeru80",
                "id-11134207-7rasl-m48klljqrzca3a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1735194852,
              "sold": 26,
              "historical_sold": 234,
              "liked": false,
              "liked_count": 1352,
              "view_count": null,
              "catid": 100636,
              "brand": "Midea",
              "cmt_count": 96,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 107900000000,
              "price_min": 107900000000,
              "price_max": 107900000000,
              "price_min_before_discount": 198800000000,
              "price_max_before_discount": 198800000000,
              "hidden_price_display": null,
              "price_before_discount": 198800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-46%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1a-m48kxy6xxsqi63.16000081735194734.mp4",
                  "thumb_url": "id-11110105-6ke1a-m48kxy6xxsqi63_cover",
                  "duration": 35,
                  "version": 2,
                  "vid": "id-11110105-6ke1a-m48kxy6xxsqi63",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1a-m48kxy6xxsqi63.16000081735194734.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m48kxy6xxsqi63.16000081735194734.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m48kxy6xxsqi63.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.90625,
                "rating_count": [
                  96,
                  0,
                  0,
                  2,
                  5,
                  89
                ],
                "rcount_with_context": 29,
                "rcount_with_image": 27
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 756984974999552,
                "price": 107900000000,
                "strikethrough_price": 198800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-46%",
                "model_id": 129191104131,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 198800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 234,
                "rounded_local_monthly_sold_count": 26,
                "local_monthly_sold_count_text": "26",
                "rounded_display_sold_count": 234,
                "display_sold_count_text": "234"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BESTBRO ELEKTRONIK Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                91
              ]
            },
            "itemid": 24989855619,
            "shopid": 857504,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mb7u5vycbz6h82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1428713,1718087960,1400285055,2018619,2018618,1015914,700190087,1012729,298893311,1119699,298933384,2153644,1718093079,2213652,822059908662278,825465608497696,822120592853526,825465608499232,2048660,2048661,834403089593352,700765096],\"matched_keywords\":[\"ac window\"],\"merge_rank\":214,\"model_id\":129191104131,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mb7u5vycbz6h82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1428713,1718087960,1400285055,2018619,2018618,1015914,700190087,1012729,298893311,1119699,298933384,2153644,1718093079,2213652,822059908662278,825465608497696,822120592853526,825465608499232,2048660,2048661,834403089593352,700765096],\"matched_keywords\":[\"ac window\"],\"merge_rank\":214,\"model_id\":129191104131,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24989855619",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 3451861239,
              "shopid": 169828364,
              "name": "SAKLAR I & O AC KCD101 2PIN ROCKER SWITCH HITAM",
              "label_ids": [
                1000167,
                1011751,
                700020158,
                1059152,
                700005489,
                822059908662278,
                844931064601283,
                844931086908638,
                1400285055,
                1213641,
                298458334,
                825465608497696,
                825465608499232,
                840955085144628,
                840990690654214,
                1000031,
                298458395,
                1119699,
                1718093079,
                1718087960,
                1428713,
                2018619,
                2023641,
                1015914,
                700190087,
                298893311,
                298463379,
                834403089593352,
                700830033,
                2048661,
                2048660,
                1718088044,
                1718093084,
                298458396,
                1718088045,
                298458398,
                298468389,
                298468390
              ],
              "image": "9dbdcbcd74cce51e378a799277e45583",
              "images": [
                "9dbdcbcd74cce51e378a799277e45583",
                "859871bbb7d59378b428578c1cb03d2b",
                "f88e69b91d50df7878e72a8884d82286",
                "3c79f6ac8e4eedda4b860864a89cfb62"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1599724845,
              "sold": 972,
              "historical_sold": 5000,
              "liked": false,
              "liked_count": 27,
              "view_count": null,
              "catid": 100636,
              "brand": "Tidak Ada Merek",
              "cmt_count": 258,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 139900000,
              "price_min": 139900000,
              "price_max": 139900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.926356589147287,
                "rating_count": [
                  258,
                  0,
                  1,
                  2,
                  12,
                  243
                ],
                "rcount_with_context": 28,
                "rcount_with_image": 20
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": true,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 139900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 21862528239,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 139900000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5000,
                "rounded_local_monthly_sold_count": 972,
                "local_monthly_sold_count_text": "972",
                "rounded_display_sold_count": 5000,
                "display_sold_count_text": "5RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "cahaya psf",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 3451861239,
            "shopid": 169828364,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"9dbdcbcd74cce51e378a799277e45583\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1011751,700020158,1059152,700005489,822059908662278,844931064601283,844931086908638,1400285055,1213641,298458334,825465608497696,825465608499232,840955085144628,840990690654214,1000031,298458395,1119699,1718093079,1718087960,1428713,2018619,2023641,1015914,700190087,298893311,298463379,834403089593352,700830033,2048661,2048660,1718088044,1718093084,298458396,1718088045,298458398,298468389,298468390],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":215,\"model_id\":21862528239,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"9dbdcbcd74cce51e378a799277e45583\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1011751,700020158,1059152,700005489,822059908662278,844931064601283,844931086908638,1400285055,1213641,298458334,825465608497696,825465608499232,840955085144628,840990690654214,1000031,298458395,1119699,1718093079,1718087960,1428713,2018619,2023641,1015914,700190087,298893311,298463379,834403089593352,700830033,2048661,2048660,1718088044,1718093084,298458396,1718088045,298458398,298468389,298468390],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":215,\"model_id\":21862528239,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_3451861239",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 12544508345,
              "shopid": 111134903,
              "name": "BEST SELLER!! Mesin Oven Pengering Cengkeh Kunyit Jahe - Oven Pengering serbaguna Tipe Gas",
              "label_ids": [
                1049116,
                700005516,
                822059908662278,
                1400285055,
                1015914,
                700190087,
                825465608497696,
                825465608499232,
                1718093079,
                840990690654214,
                837860934119952,
                840955085144628,
                1918643,
                2018619,
                2023641,
                700700063,
                1428713,
                1718087960,
                298893311,
                298463379,
                700830032,
                298933384,
                2068629,
                298938357,
                2098629,
                1718088045,
                2098628,
                298468389,
                298938368
              ],
              "image": "id-11134207-7rasl-m13ydggz0pdc1a",
              "images": [
                "id-11134207-7rasl-m13ydggz0pdc1a",
                "id-11134207-7rase-m2c7m2mud84i8a",
                "id-11134207-7rasb-m2j600kl2s8250",
                "id-11134207-7rasd-m2azlr2f63xe74",
                "id-11134207-7rasl-m2azssvlh4jy36",
                "id-11134207-7rasd-m2qevewyssdc7b",
                "id-11134207-7rasf-m2azlr2f7ihuee",
                "id-11134207-7rasb-m2c7m2muaezm0a",
                "id-11134207-7rasf-m2c7m2mubtk2a1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1636168077,
              "sold": 5,
              "historical_sold": 89,
              "liked": false,
              "liked_count": 1620,
              "view_count": null,
              "catid": 100010,
              "brand": "Ranger",
              "cmt_count": 37,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 999000000000,
              "price_min": 999000000000,
              "price_max": 999000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmj0-m5031n2vswczf0.16000031736859607.mp4",
                  "thumb_url": "id-11110105-6kmj0-m5031n2vswczf0_cover",
                  "duration": 37,
                  "version": 2,
                  "vid": "id-11110105-6kmj0-m5031n2vswczf0",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj0-m5031n2vswczf0.default.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5031n2vswczf0.default.mp4",
                      "width": 480,
                      "height": 854
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5031n2vswczf0.default.mp4",
                    "width": 480,
                    "height": 854
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "OVEN PENGERING",
                  "options": [
                    "Oven 10 Rak+Lampu Uv",
                    "Oven 20 Rak+Lampu Uv",
                    "5 RAK 1 PINTU GAS",
                    "5 RAK 2 PINTU GAS",
                    "10 RAK 1 PINTU GAS",
                    "10 RAK 2 PINTU GAS",
                    "20 RAK GAS",
                    "40 RAK GAS",
                    "5 RAK 1PNTU LISTRIK",
                    "5 RAK 2PNTU LISTRIK",
                    "10 RAK 1PNTU LISTRIK",
                    "10 RAK 2PNTU LISTRIK",
                    "20 RAK LISTRIK",
                    "Oven Custom"
                  ],
                  "images": [
                    "id-11134207-7r98q-lwqtzwttenu2cc",
                    "id-11134207-7r98w-lwqtzwttg2eidc",
                    "id-11134207-7qul2-lff3zjwkffgj4c",
                    "id-11134207-7qul9-lff3zjwkgu0zeb",
                    "id-11134207-7qula-lff3zjwki8lf7b",
                    "id-11134207-7qukw-lff3zjwkjn5v6b",
                    "id-11134207-7qul4-lff3zjwkl1qbc0",
                    "id-11134207-7qukx-lff3zjwkmgarf1",
                    "id-11134207-7qul1-lff3zjwknuv75b",
                    "id-11134207-7qukw-lff3zjwkp9fnc1",
                    "id-11134207-7qul4-lff3zjwkqo03b7",
                    "id-11134207-7qul6-lff3zjwks2kj6d",
                    "id-11134207-7qul9-lff3zjwkth4zc6",
                    "id-11134207-7ras8-m3k41olu6z8u23"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  37,
                  0,
                  0,
                  0,
                  0,
                  37
                ],
                "rcount_with_context": 14,
                "rcount_with_image": 12
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Sidoarjo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp3,3JT X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 999000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 187596122202,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 999000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 89,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 89,
                "display_sold_count_text": "89"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp3,3JT x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Raja Pengering",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 372668487,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9tbIGTwTTM9mmFQaSB5kZvAMLFN3o48UQMVovGWO6ZyjQ2EY3gIuY2EEFN79ZhaAGQxtxbE1bJPV9aErpuEhn7TUn/yCthHhX1gmtykRBu6/mL64F/6CzV6NQX3RZIiD0i2aji0rCb3r6X0OfT5QKhImQCXULA68Bo4sN6HGdSZ8Xf4qm2M+n3AJEZESRz+mzlpN7QNF4pHmedLB34wn6/V0IHEzwB5L64HO02uq3MaBad5xQfXo3+pbnoubqmyuBQKAqMRHlVM13h1xbWoJH6K/8fNbo5NqLpNqeon9vbeAmmBZ6qCr356dAofdp9rwGZk7N/KW7dda3iKhDTgaKvYALb6Uh6miEeEzav5vrX+orQCS5DHOBSh061kgMy9IDOxzwJftYTWDeUszAb18mEYKNnjTfRKnL1IEQFW+VyK4Pi6ub+wHO37UOn1DbPTyiD9cnxbNJRy4w28M/Epcwwq2HtzwCFw8eCSC2NY31LnAqqfSsiIozogjP6/34FcRg==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDU3MDQ2Nnw1NDQ1MDR8NTQ3Nzg0fDYyMDIxM3w1ODA3ODN8NjA5Mjg4fDUzODc1NHw2Mjc2Njd8NjM1NzUyfDYyOTQ2MHw2MTk5NTd8NTI2NTA4fDQ0MjYzN3w1MzIzNjB8NjAzMzMxfDYwMjkyM3w1Nzg4Nzd8NjE4Mzc2fDYzNDc1MHw2MzU3OTB8NTM0MTc4fDUyNzQyOXw2MDA0MDZ8NjA5MTM5fDUwMDUzNXw2MzA3NzR8NTk3MDk4fDU5Njc1NHw1ODA3ODJ8NjA5MzA0fDYwODk5OXw1MDU3OTB8NTU0MDAwfDU2OTA0MHw2MTM4NTl8NjMxNTQ5fDU1NDc5Nnw1OTc4ODN8NjM0NzIxfDYxMzQyMnw1NDQ1NjF8NjIwOTc5fDU1NjYwN3w2MjM1MDN8NTQ0NTUxfDYwNTQ2N3w1OTM2Mjd8EMfw2bEBGIWW/Y4BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeWpRMkVZM2dJdVkyRUVGTjc5WmhhQUdReHR4YkUxYkpQVjlhRXJwdUVobjdUVW4veUN0aEhoWDFnbXR5a1JCdTYvbUw2NEYvNkN6VjZOUVgzUlpJaUQwaTJhamkwckNiM3I2WDBPZlQ1UUtoSW1RQ1hVTEE2OEJvNHNONkhHZFNaOFhmNHFtMk0rbjNBSkVaRVNSeittemxwTjdRTkY0cEhtZWRMQjM0d242L1YwSUhFendCNUw2NEhPMDJ1cTNNYUJhZDV4UWZYbzMrcGJub3VicW15dUJRS0FxTVJIbFZNMTNoMXhiV29KSDZLLzhmTmJvNU5xTHBOcWVvbjl2YmVBbW1CWjZxQ3IzNTZkQW9mZHA5cndHWms3Ti9LVzdkZGEzaUtoRFRnYUt2WUFMYjZVaDZtaUVlRXphdjV2clgrb3JRQ1M1REhPQlNoMDYxa2dNeTlJRE94endKZnRZVFdEZVVzekFiMThtRVlLTm5qVGZSS25MMUlFUUZXK1Z5SzRQaTZ1Yit3SE8zN1VPbjFEYlBUeWlEOWNueGJOSlJ5NHcyOE0vRXBjd3dxMkh0endDRnc4ZUNTQzJOWTMxTG5BcXFmU3NpSW96b2dqUDYvMzRGY1JnPT1IMlKlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMHF7FK5H4XqUP4IBCWFjIHdpbmRvd5ABuLudywa4AQHgAa7WxrTlNekBAAAA4JUl8T/xAQAAAKAY4e8/yAwP4AwB6QwAAACgJEnCP4kNexSuR+F6lD+RDXsUrkfhepQ/oQ0AAAAAAADwP/gNgICoyIkdsA76zMqyC+IOCaqNBsmNBumOBsgPBeIZ6AlFbGN3TGpNc0xURXNMVEVzTFRFc0xURXNNQzR6TERFc09TNDJOams1TVRVNE1qSTJORFF6TVN3dE1Td3RNU3d3TGpreE1UUTJOelEwTURFMU5ESTNNakVzTFRFc01TNDJNVFV3Tmprek16VTVPRFEyTVRNc0xURWRGeENlVENEUHMrMExMWnFabVQ0MUFBQ0FQMG9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNEk4UGZoQkJFQUFBQUFBQUFBQUVvT0NLcnpsZ01SQUFBQUFBQUFBQUJLRGdpczg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJOFBmaEJCRUFBQUFBQUFBQUFGSU9DS3J6bGdNUkFBQUFBQUFBQUFCU0RnaXM4NVlERVFBQUFBQUFBQUFBVWc0SXEvT1dBeEVBQUFBQUFBQUFBRm9IQ0tyemxnTVFBRm9IQ0t6emxnTVFBRm9IQ0t2emxnTVFBRm9KQ0lDQWdJQ0FCQkFBV2djSThQZmhCQkFBWWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBWWc0SThQZmhCQkVBQUFBQUFBQUFBR0lPQ0tyemxnTVJBQUFBQUFBQThEOWlEZ2lzODVZREVRQUFBQUFBQUFBQVlnNElxL09XQXhFQUFBQUFBQUFBQUhFQUFBQWc1K3NEUDNrQUFBQkFsd25yUG9FQkFBQUF3RVpJZzBHSkFRQUFBQUN1bzNaQmtRRUFBQURBSFpxT1Faa0JBQUFBSVBrSGlrR2hBUUFBQU9BcWtINUJxUUVBQUFCSUI2aVVRZWdCQVlBQ2xBT0tBajR3TGpBd01qY3pNQ3d4TGpBd01EQXdNQ3d4TGpBd01EQXdNQ3d4TGpJMU1EQXdNQ3d4TGpNd01EQXdNQ3d4TGpRd01EQXdNQ3d4TGpRNU5qRTVOSmtDTXpNek16TXoweitoQXEzdk5IakNTY0ZCeWdJTENBSVIrNm54MGsxaWNML0tBZ3NJQVJFOFdDZk1heEZtdjlrQ3dBZ2s2eFA4WVVIaEFnREVRemN4RUZ4QjZRSW8vd0lNWGJlaFFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDdrRFloMTVQZU53NGovQkE2M0tDNWZPbnVRL3lRTnQ4b3BWZFlMblA5RURVNWJLUisvcDdUK0JCQUFBQUdDU1d2OCtpUVFBQUFDZ3JYNzVQcEFFbXdPWUJML3B1cUNzQWFBRWdKamNrelNvQklDWTNKTTB3QVNBbU55VE5Na0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUJBejExbVA2RUZBQUFBQUFBQThEK3BCUUFBQUFBQUFQQS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQkFhZkQzUHc9PeoZAgoU+hmMBgoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8xMjU0NDUwODM0NQoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoSCgx2b3VjaGVyX2xlbnMSAhAACg0KB2lzX3Zza3USAigACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjY0LCJhcGkxX2xhdGVuY3lfbXMiOjQ2LCJhcGkyX2xhdGVuY3lfbXMiOjU3LCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzAsImFwaTBfYWRzX2NvdW50IjoyODEsImFwaTFfYWRzX2NvdW50IjoxNTQ5LCJhcGkyX2Fkc19jb3VudCI6MzE2LCJhcGkzX2Fkc19jb3VudCI6M30KFAoOc2hvcF9ibGFja2xpc3QSAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZ7Afz4KAgIiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNIyD4B",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                97
              ]
            },
            "itemid": 12544508345,
            "shopid": 111134903,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m13ydggz0pdc1a\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1049116,700005516,822059908662278,1400285055,1015914,700190087,825465608497696,825465608499232,1718093079,840990690654214,837860934119952,840955085144628,1918643,2018619,2023641,700700063,1428713,1718087960,298893311,298463379,700830032,298933384,2068629,298938357,2098629,1718088045,2098628,298468389,298938368],\"matched_keywords\":[\"ac window\"],\"merge_rank\":216,\"model_id\":187596122202,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m13ydggz0pdc1a\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1049116,700005516,822059908662278,1400285055,1015914,700190087,825465608497696,825465608499232,1718093079,840990690654214,837860934119952,840955085144628,1918643,2018619,2023641,700700063,1428713,1718087960,298893311,298463379,700830032,298933384,2068629,298938357,2098629,1718088045,2098628,298468389,298938368],\"matched_keywords\":[\"ac window\"],\"merge_rank\":216,\"model_id\":187596122202,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDU3MDQ2Nnw1NDQ1MDR8NTQ3Nzg0fDYyMDIxM3w1ODA3ODN8NjA5Mjg4fDUzODc1NHw2Mjc2Njd8NjM1NzUyfDYyOTQ2MHw2MTk5NTd8NTI2NTA4fDQ0MjYzN3w1MzIzNjB8NjAzMzMxfDYwMjkyM3w1Nzg4Nzd8NjE4Mzc2fDYzNDc1MHw2MzU3OTB8NTM0MTc4fDUyNzQyOXw2MDA0MDZ8NjA5MTM5fDUwMDUzNXw2MzA3NzR8NTk3MDk4fDU5Njc1NHw1ODA3ODJ8NjA5MzA0fDYwODk5OXw1MDU3OTB8NTU0MDAwfDU2OTA0MHw2MTM4NTl8NjMxNTQ5fDU1NDc5Nnw1OTc4ODN8NjM0NzIxfDYxMzQyMnw1NDQ1NjF8NjIwOTc5fDU1NjYwN3w2MjM1MDN8NTQ0NTUxfDYwNTQ2N3w1OTM2Mjd8EMfw2bEBGIWW/Y4BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeWpRMkVZM2dJdVkyRUVGTjc5WmhhQUdReHR4YkUxYkpQVjlhRXJwdUVobjdUVW4veUN0aEhoWDFnbXR5a1JCdTYvbUw2NEYvNkN6VjZOUVgzUlpJaUQwaTJhamkwckNiM3I2WDBPZlQ1UUtoSW1RQ1hVTEE2OEJvNHNONkhHZFNaOFhmNHFtMk0rbjNBSkVaRVNSeittemxwTjdRTkY0cEhtZWRMQjM0d242L1YwSUhFendCNUw2NEhPMDJ1cTNNYUJhZDV4UWZYbzMrcGJub3VicW15dUJRS0FxTVJIbFZNMTNoMXhiV29KSDZLLzhmTmJvNU5xTHBOcWVvbjl2YmVBbW1CWjZxQ3IzNTZkQW9mZHA5cndHWms3Ti9LVzdkZGEzaUtoRFRnYUt2WUFMYjZVaDZtaUVlRXphdjV2clgrb3JRQ1M1REhPQlNoMDYxa2dNeTlJRE94endKZnRZVFdEZVVzekFiMThtRVlLTm5qVGZSS25MMUlFUUZXK1Z5SzRQaTZ1Yit3SE8zN1VPbjFEYlBUeWlEOWNueGJOSlJ5NHcyOE0vRXBjd3dxMkh0endDRnc4ZUNTQzJOWTMxTG5BcXFmU3NpSW96b2dqUDYvMzRGY1JnPT1IMlKlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMHF7FK5H4XqUP4IBCWFjIHdpbmRvd5ABuLudywa4AQHgAa7WxrTlNekBAAAA4JUl8T/xAQAAAKAY4e8/yAwP4AwB6QwAAACgJEnCP4kNexSuR+F6lD+RDXsUrkfhepQ/oQ0AAAAAAADwP/gNgICoyIkdsA76zMqyC+IOCaqNBsmNBumOBsgPBeIZ6AlFbGN3TGpNc0xURXNMVEVzTFRFc0xURXNNQzR6TERFc09TNDJOams1TVRVNE1qSTJORFF6TVN3dE1Td3RNU3d3TGpreE1UUTJOelEwTURFMU5ESTNNakVzTFRFc01TNDJNVFV3Tmprek16VTVPRFEyTVRNc0xURWRGeENlVENEUHMrMExMWnFabVQ0MUFBQ0FQMG9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNEk4UGZoQkJFQUFBQUFBQUFBQUVvT0NLcnpsZ01SQUFBQUFBQUFBQUJLRGdpczg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJOFBmaEJCRUFBQUFBQUFBQUFGSU9DS3J6bGdNUkFBQUFBQUFBQUFCU0RnaXM4NVlERVFBQUFBQUFBQUFBVWc0SXEvT1dBeEVBQUFBQUFBQUFBRm9IQ0tyemxnTVFBRm9IQ0t6emxnTVFBRm9IQ0t2emxnTVFBRm9KQ0lDQWdJQ0FCQkFBV2djSThQZmhCQkFBWWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBWWc0SThQZmhCQkVBQUFBQUFBQUFBR0lPQ0tyemxnTVJBQUFBQUFBQThEOWlEZ2lzODVZREVRQUFBQUFBQUFBQVlnNElxL09XQXhFQUFBQUFBQUFBQUhFQUFBQWc1K3NEUDNrQUFBQkFsd25yUG9FQkFBQUF3RVpJZzBHSkFRQUFBQUN1bzNaQmtRRUFBQURBSFpxT1Faa0JBQUFBSVBrSGlrR2hBUUFBQU9BcWtINUJxUUVBQUFCSUI2aVVRZWdCQVlBQ2xBT0tBajR3TGpBd01qY3pNQ3d4TGpBd01EQXdNQ3d4TGpBd01EQXdNQ3d4TGpJMU1EQXdNQ3d4TGpNd01EQXdNQ3d4TGpRd01EQXdNQ3d4TGpRNU5qRTVOSmtDTXpNek16TXoweitoQXEzdk5IakNTY0ZCeWdJTENBSVIrNm54MGsxaWNML0tBZ3NJQVJFOFdDZk1heEZtdjlrQ3dBZ2s2eFA4WVVIaEFnREVRemN4RUZ4QjZRSW8vd0lNWGJlaFFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDdrRFloMTVQZU53NGovQkE2M0tDNWZPbnVRL3lRTnQ4b3BWZFlMblA5RURVNWJLUisvcDdUK0JCQUFBQUdDU1d2OCtpUVFBQUFDZ3JYNzVQcEFFbXdPWUJML3B1cUNzQWFBRWdKamNrelNvQklDWTNKTTB3QVNBbU55VE5Na0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUJBejExbVA2RUZBQUFBQUFBQThEK3BCUUFBQUFBQUFQQS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQkFhZkQzUHc9PeoZAgoU+hmMBgoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8xMjU0NDUwODM0NQoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoSCgx2b3VjaGVyX2xlbnMSAhAACg0KB2lzX3Zza3USAigACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjY0LCJhcGkxX2xhdGVuY3lfbXMiOjQ2LCJhcGkyX2xhdGVuY3lfbXMiOjU3LCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzAsImFwaTBfYWRzX2NvdW50IjoyODEsImFwaTFfYWRzX2NvdW50IjoxNTQ5LCJhcGkyX2Fkc19jb3VudCI6MzE2LCJhcGkzX2Fkc19jb3VudCI6M30KFAoOc2hvcF9ibGFja2xpc3QSAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZ7Afz4KAgIiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNIyD4B",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_12544508345",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27624241100,
              "shopid": 1309702607,
              "name": "LENODI 220v/2000w AC Portable AC mini portabel pemanas Dan Pendingin Fungsi Ganda Multifungsi Dipasang Di Dinding Kamar Tidur",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                1718093079,
                1015914,
                700190087,
                1400285055,
                2018619,
                2023641,
                298893311,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                837860934119952,
                700830032,
                298463379,
                298933384,
                844931086908638,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7rbkb-m734qap4wuctf3",
              "images": [
                "id-11134207-7rbkb-m734qap4wuctf3",
                "id-11134207-7rbk3-m65a69zsciy0c8",
                "id-11134207-7rbke-m65a69zs43jc96",
                "id-11134207-7rbke-m65a69zsfc2wa3",
                "id-11134207-7rbkc-m65a69zs5i3saf",
                "id-11134207-7rbk7-m65a69zs9pt465",
                "id-11134207-7rbkd-m65a69zs8b8odf",
                "id-11134207-7rbk0-m65a69zs6wo857"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1737538459,
              "sold": 109,
              "historical_sold": 639,
              "liked": false,
              "liked_count": 3192,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 232,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 37900000000,
              "price_min": 37900000000,
              "price_max": 37900000000,
              "price_min_before_discount": 85800000000,
              "price_max_before_discount": 85800000000,
              "hidden_price_display": null,
              "price_before_discount": 85800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-56%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16000081737537767.mp4",
                  "thumb_url": "id-11110105-6kmj0-m5bacn2x25t4b3_cover",
                  "duration": 13,
                  "version": 2,
                  "vid": "id-11110105-6kmj0-m5bacn2x25t4b3",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16006711750511752.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16006711750511752.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16000081737537767.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16000081737537767.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16003251750511752.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16003251750511752.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "Putih",
                    "Pola"
                  ],
                  "images": [
                    "id-11134207-7rash-m5babz9jy7s8fa",
                    "id-11134207-7rasd-m5babz9jzmcofd"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 3.8060344827586206,
                "rating_count": [
                  232,
                  38,
                  12,
                  30,
                  29,
                  123
                ],
                "rcount_with_context": 69,
                "rcount_with_image": 39
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228232549122050,
                "price": 37521000000,
                "strikethrough_price": 85800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1282410030055424,
                "discount_text": "-56%",
                "model_id": 215742854802,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1282410030055424,
                  "voucher_code": "LENO51107",
                  "voucher_discount": 379000000,
                  "time_info": {
                    "start_time": 1762334400,
                    "end_time": 1770448500,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5900000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 85800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 639,
                "rounded_local_monthly_sold_count": 109,
                "local_monthly_sold_count_text": "109",
                "rounded_display_sold_count": 639,
                "display_sold_count_text": "639"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Lenodiย Officialย Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                4
              ]
            },
            "itemid": 27624241100,
            "shopid": 1309702607,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-m734qap4wuctf3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,1718093079,1015914,700190087,1400285055,2018619,2023641,298893311,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,700830032,298463379,298933384,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":217,\"model_id\":215742854802,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-m734qap4wuctf3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,1718093079,1015914,700190087,1400285055,2018619,2023641,298893311,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,700830032,298463379,298933384,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":217,\"model_id\":215742854802,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27624241100",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54453101518,
              "shopid": 1529335719,
              "name": "Thermistor Thermostat Mobil Presisi Tinggi 12V/24V dengan Kontrol Elektronik - Hemat Energi, Kompresor AC Nyala Mati Otomatis  Switch 10A Stabil untuk Perbaikan   Setting Ulang Suhu AC Mobil Lama agar Dingin Optimal   Irit",
              "label_ids": [
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1718596,
                1119699,
                298488495,
                2018619,
                298933384,
                2023641,
                700700063,
                1428713,
                1718087960,
                998236004,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224u-mi9xxwwltk3q6d",
              "images": [
                "id-11134207-8224u-mi9xxwwltk3q6d",
                "sg-11134201-822zq-mi9w0f3fuj9ded",
                "sg-11134201-822x4-mi9w0eva1ddw4f",
                "sg-11134201-822zz-mi9w0firnaipe3",
                "sg-11134201-822yo-mi9w0fbn3kzme7",
                "sg-11134201-822zj-mi9w0fp4esjn27",
                "sg-11134201-822xh-mi9w0fwymrr5e7",
                "sg-11134201-822yo-mi9w0gaivabq72",
                "sg-11134201-822z8-mi9w0g3adr0mbf"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765784272,
              "sold": 8,
              "historical_sold": 8,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100640,
              "brand": "",
              "cmt_count": 5,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 7000000000,
              "price_min": 7000000000,
              "price_max": 7000000000,
              "price_min_before_discount": 14000000000,
              "price_max_before_discount": 14000000000,
              "hidden_price_display": null,
              "price_before_discount": 14000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9af-mi9wmo6yhxxkab.16000081765784283.mp4",
                  "thumb_url": "sg-11110106-6v9af-mi9wmo6yhxxkab_cover",
                  "duration": 16,
                  "version": 2,
                  "vid": "sg-11110106-6v9af-mi9wmo6yhxxkab",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9af-mi9wmo6yhxxkab.16000081765784283.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9af-mi9wmo6yhxxkab.16000081765784283.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9af-mi9wmo6yhxxkab.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "model",
                  "options": [
                    "12V",
                    "24V"
                  ],
                  "images": [
                    "sg-11134201-822x6-mi9w06i17ociba",
                    "sg-11134201-822x7-mi9w06rsvwucc4"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 414782239027344,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 823968068599808,
                "price": 7000000000,
                "strikethrough_price": 14000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 350299496928,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 14000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 8,
                "rounded_local_monthly_sold_count": 8,
                "local_monthly_sold_count_text": "8",
                "rounded_display_sold_count": 8,
                "display_sold_count_text": "8"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Batik Mall",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 54453101518,
            "shopid": 1529335719,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mi9xxwwltk3q6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1718596,1119699,298488495,2018619,298933384,2023641,700700063,1428713,1718087960,998236004,2213765,1718088045,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":218,\"model_id\":350299496928,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mi9xxwwltk3q6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1718596,1119699,298488495,2018619,298933384,2023641,700700063,1428713,1718087960,998236004,2213765,1718088045,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":218,\"model_id\":350299496928,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54453101518",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27178744357,
              "shopid": 1250117803,
              "name": "Transformer Regulator Charger 220V To 110V/110V To 220V Adaptor International Travel AC Power Voltage Converter 50watt",
              "label_ids": [
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                1718093079,
                1119699,
                2018619,
                2023641,
                298463379,
                700005512,
                1049112,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                837860934119952,
                700830032,
                298933384,
                1400285055,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7rbk2-m71wqo66vgccd4",
              "images": [
                "id-11134207-7rbk2-m71wqo66vgccd4",
                "id-11134207-7rbk1-m71wqo679i0s92",
                "id-11134207-7rbk0-m71wqo66wuws4c",
                "id-11134207-7rbk8-m71wqo66y9h8c7",
                "id-11134207-7rbk2-m71wqo66zo1o26",
                "id-11134207-7rbk3-m71wqo6712m49d",
                "id-11134207-7rbk5-m71wqo672h6k3a",
                "id-11134207-7rbk9-m71wqo673vr016",
                "id-11134207-7rbkd-m71wqo675abg7d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1741329951,
              "sold": 32,
              "historical_sold": 84,
              "liked": false,
              "liked_count": 11,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 17,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4550000000,
              "price_min": 4550000000,
              "price_max": 4550000000,
              "price_min_before_discount": 9000000000,
              "price_max_before_discount": 9000000000,
              "hidden_price_display": null,
              "price_before_discount": 9000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-49%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kmj4-m71wqxaziav040.16000081741328564.mp4",
                  "thumb_url": "id-11110105-6kmj4-m71wqxaziav040_cover",
                  "duration": 33,
                  "version": 2,
                  "vid": "id-11110105-6kmj4-m71wqxaziav040",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kmj4-m71wqxaziav040.16000081741328564.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj4-m71wqxaziav040.16000081741328564.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj4-m71wqxaziav040.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "model",
                  "options": [
                    "110to220V",
                    "220to110V"
                  ],
                  "images": [
                    "id-11134207-7rbk1-m71wyxgacigsfb",
                    "id-11134207-7rbk3-m71wyxgadx18b8"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.9411764705882355,
                "rating_count": [
                  17,
                  0,
                  0,
                  0,
                  1,
                  16
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 402767386788203,
                "bundle_deal_label": "Pilih 3, diskon 2%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 731802583498752,
                "price": 4550000000,
                "strikethrough_price": 9000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-49%",
                "model_id": 237474750776,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 9000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 84,
                "rounded_local_monthly_sold_count": 32,
                "local_monthly_sold_count_text": "32",
                "rounded_display_sold_count": 84,
                "display_sold_count_text": "84"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GemilangGoods",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 27178744357,
            "shopid": 1250117803,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk2-m71wqo66vgccd4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931086908638,844931064601283,1718093079,1119699,2018619,2023641,298463379,700005512,1049112,822059908662278,825465608494624,825465608499232,825465608497696,837860934119952,700830032,298933384,1400285055,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":219,\"model_id\":237474750776,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk2-m71wqo66vgccd4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931086908638,844931064601283,1718093079,1119699,2018619,2023641,298463379,700005512,1049112,822059908662278,825465608494624,825465608499232,825465608497696,837860934119952,700830032,298933384,1400285055,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":219,\"model_id\":237474750776,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27178744357",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26718371829,
              "shopid": 1409981286,
              "name": "Morgen Saklar IB C Series Tanam SK Arde, Engkel, Seri, AC, NPC, Socket AC TV",
              "label_ids": [
                844931064601283,
                1049112,
                700005512,
                822059908662278,
                825465608499232,
                825465608497696,
                837860934119952,
                825465608493600,
                1718087960,
                1428713,
                1000031,
                1400285055,
                1718093079,
                1015914,
                700190087,
                825465608492064,
                1213641,
                2018619,
                2023641,
                298893311,
                298463379,
                844931086908638,
                700830032,
                2048660,
                2048661,
                298933384,
                700765096,
                700810080,
                1718088044,
                298458396,
                298468389,
                298468390,
                298458398,
                1718093084,
                1718088045
              ],
              "image": "sg-11134201-7reoe-m2vyersbmf0p30",
              "images": [
                "sg-11134201-7reoe-m2vyersbmf0p30",
                "sg-11134201-7ren7-m2vyeryzcotj72",
                "sg-11134201-7rep9-m2vyes4t45uvbb",
                "sg-11134201-7reoo-m2vyesdor65d4e",
                "sg-11134201-7renz-m2vyesjsi8ivca",
                "sg-11134201-7renv-m2vyess47gm94b",
                "sg-11134201-7reps-m2vyesxxxipy49",
                "sg-11134201-7repu-m2vyet4lnrm120"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1732251193,
              "sold": 297,
              "historical_sold": 1000,
              "liked": false,
              "liked_count": 28,
              "view_count": null,
              "catid": 100010,
              "brand": "Morgen",
              "cmt_count": 110,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2014200000,
              "price_min": 2014200000,
              "price_max": 2014200000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "MG-8880",
                    "MG-8881",
                    "MG-8882",
                    "MG-8883",
                    "MG-8884",
                    "MG-8885",
                    "MG-8886",
                    "MG-8887",
                    "MG-8889-A",
                    "INBOW PUTIH VISERO"
                  ],
                  "images": [
                    "sg-11134201-7reou-m2vyeteva5kd4b",
                    "sg-11134201-7reoq-m2vyetmmxe4p9c",
                    "sg-11134201-7reoe-m2vyetsgov0b11",
                    "sg-11134201-7reol-m2vyetykfxfqdd",
                    "sg-11134201-7repo-m2vyeu4e8t17c8",
                    "sg-11134201-7renu-m2vyeuc5w0p556",
                    "sg-11134201-7repf-m2vyeuhppax53f",
                    "sg-11134201-7repg-m2vyeup7cych09",
                    "sg-11134201-7ren6-m2vyev9gjba9e4",
                    "id-11134207-7ra0h-mbg3tad3b4ibf2"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.9363636363636365,
                "rating_count": [
                  110,
                  0,
                  0,
                  1,
                  5,
                  104
                ],
                "rcount_with_context": 11,
                "rcount_with_image": 12
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 2014200000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 185576697321,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2014200000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1000,
                "rounded_local_monthly_sold_count": 297,
                "local_monthly_sold_count_text": "297",
                "rounded_display_sold_count": 1000,
                "display_sold_count_text": "1RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Worldwideย Lighting",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 26718371829,
            "shopid": 1409981286,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7reoe-m2vyersbmf0p30\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700005512,822059908662278,825465608499232,825465608497696,837860934119952,825465608493600,1718087960,1428713,1000031,1400285055,1718093079,1015914,700190087,825465608492064,1213641,2018619,2023641,298893311,298463379,844931086908638,700830032,2048660,2048661,298933384,700765096,700810080,1718088044,298458396,298468389,298468390,298458398,1718093084,1718088045],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":220,\"model_id\":185576697321,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7reoe-m2vyersbmf0p30\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700005512,822059908662278,825465608499232,825465608497696,837860934119952,825465608493600,1718087960,1428713,1000031,1400285055,1718093079,1015914,700190087,825465608492064,1213641,2018619,2023641,298893311,298463379,844931086908638,700830032,2048660,2048661,298933384,700765096,700810080,1718088044,298458396,298468389,298468390,298458398,1718093084,1718088045],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":220,\"model_id\":185576697321,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26718371829",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24291742131,
              "shopid": 1023510819,
              "name": "E.Home  AC 1/2 PK AC WINDOW PORTABLEPAKAI FREON R290",
              "label_ids": [
                844931064601283,
                844931086908638,
                1718093079,
                1400066568,
                1400285055,
                2018619,
                1015914,
                700190087,
                298893311,
                1049120,
                700005490,
                822059908662278,
                825465608499232,
                825465608497696,
                837860934119952,
                2023641,
                298463379,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7rbk4-m6nq8kbhpctw72",
              "images": [
                "id-11134207-7rbk4-m6nq8kbhpctw72",
                "id-11134207-7ra0u-mdb7fokng4rra8",
                "id-11134207-7ra0o-mdb7foknhjc746",
                "id-11134207-7ra0t-mdb7foknixwna6",
                "id-11134207-7ra0i-mdb7foknkch358",
                "id-11134207-7ra0m-mdb7foknlr1j3a",
                "id-11134207-7ra0h-mdb7foknn5lz1c",
                "id-11134207-7ra0l-mdb7foknok6f2f",
                "id-11134207-7ra0r-mdb7foknpyqv54"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1740207617,
              "sold": 5,
              "historical_sold": 80,
              "liked": false,
              "liked_count": 439,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 38,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 198400000000,
              "price_min": 198400000000,
              "price_max": 198400000000,
              "price_min_before_discount": 338000000000,
              "price_max_before_discount": 338000000000,
              "hidden_price_display": null,
              "price_before_discount": 338000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-41%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6knav-m9r0ztgefzsy6d.16000101747207548.mp4",
                  "thumb_url": "id-11110105-6knav-m9r0ztgefzsy6d_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6knav-m9r0ztgefzsy6d",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6knav-m9r0ztgefzsy6d.default.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knav-m9r0ztgefzsy6d.default.mp4",
                      "width": 540,
                      "height": 676
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knav-m9r0ztgefzsy6d.default.mp4",
                    "width": 540,
                    "height": 676
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Spesifikasi",
                  "options": [
                    "1/2 PKโ€”Putih",
                    "Pembungkus aman"
                  ],
                  "images": [
                    "id-11134207-7ra0h-mdb7foknrdbb2c",
                    "id-11134207-7rbk9-m6nq8kbhs5ys39"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.578947368421052,
                "rating_count": [
                  38,
                  2,
                  1,
                  1,
                  3,
                  31
                ],
                "rcount_with_context": 13,
                "rcount_with_image": 8
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 355411203211264,
                "bundle_deal_label": "Pilih 3, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 820137226190848,
                "price": 198400000000,
                "strikethrough_price": 338000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-41%",
                "model_id": 247698256666,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 338000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 80,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 80,
                "display_sold_count_text": "80"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Elegan Home",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                0,
                1000,
                88,
                97,
                4
              ]
            },
            "itemid": 24291742131,
            "shopid": 1023510819,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk4-m6nq8kbhpctw72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,1400066568,1400285055,2018619,1015914,700190087,298893311,1049120,700005490,822059908662278,825465608499232,825465608497696,837860934119952,2023641,298463379,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":221,\"model_id\":247698256666,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,0,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk4-m6nq8kbhpctw72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,1400066568,1400285055,2018619,1015914,700190087,298893311,1049120,700005490,822059908662278,825465608499232,825465608497696,837860934119952,2023641,298463379,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":221,\"model_id\":247698256666,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,0,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24291742131",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 15595000548,
              "shopid": 441546525,
              "name": "Kipas Angin Model AC 1PK manual",
              "label_ids": [
                844931064601283,
                844931086908638,
                1400285055,
                1015914,
                700190087,
                2018619,
                1400066568,
                298463379,
                1718093079,
                298933384,
                2108629,
                2023641,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224x-mgupsfm6ikunb7",
              "images": [
                "id-11134207-8224x-mgupsfm6ikunb7",
                "sg-11134201-22110-r92c3egs9xjvfb",
                "id-11134207-8224u-mgupsfm6jzf30d",
                "id-11134207-8224w-mgupsfm6ldzj9d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1668569107,
              "sold": 39,
              "historical_sold": 84,
              "liked": false,
              "liked_count": 37,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 40,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 15000000000,
              "price_min": 15000000000,
              "price_max": 15000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.4,
                "rating_count": [
                  40,
                  3,
                  2,
                  2,
                  2,
                  31
                ],
                "rcount_with_context": 16,
                "rcount_with_image": 15
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 15000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 259022847259,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 15000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 84,
                "rounded_local_monthly_sold_count": 39,
                "local_monthly_sold_count_text": "39",
                "rounded_display_sold_count": 84,
                "display_sold_count_text": "84"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "TukangAC07",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                4
              ]
            },
            "itemid": 15595000548,
            "shopid": 441546525,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mgupsfm6ikunb7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1400285055,1015914,700190087,2018619,1400066568,298463379,1718093079,298933384,2108629,2023641,1059152,1059154,822059908662278,825465608497696,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":222,\"model_id\":259022847259,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mgupsfm6ikunb7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1400285055,1015914,700190087,2018619,1400066568,298463379,1718093079,298933384,2108629,2023641,1059152,1059154,822059908662278,825465608497696,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":222,\"model_id\":259022847259,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_15595000548",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26787554307,
              "shopid": 1423402464,
              "name": "2000W Amplifier Bluetooth Super Bass Tampilan Digital Power Amplifier Board Untuk 8-12 Inci Speaker AC 220V-DC 12V-24V Bluetooth 5.0 Karaoke Audio Bluetooth USB FM Radio Player Subwoofer",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1718093079,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1400285055,
                1015914,
                700190087,
                700830032,
                298933384,
                298623321,
                1993623,
                998091078,
                2218763
              ],
              "image": "sg-11134201-822x0-mi44qyik36knb5",
              "images": [
                "sg-11134201-822x0-mi44qyik36knb5",
                "id-11134207-8224x-mi11mdqd2neq75",
                "sg-11134201-7ratz-may8tuzxhurnee",
                "id-11134207-81zti-medzau66nxmuc4",
                "id-11134207-81ztq-medzau66pc7a37",
                "id-11134207-81zth-medzau66mj2ea1",
                "sg-11134201-7rat7-may8tvb131w155",
                "sg-11134201-7rasy-may8tvssefs2ad",
                "sg-11134201-7rasv-may8tvh4vixced"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1749823703,
              "sold": 211,
              "historical_sold": 1000,
              "liked": false,
              "liked_count": 279,
              "view_count": null,
              "catid": 100535,
              "brand": "",
              "cmt_count": 628,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5600000000,
              "price_min": 5600000000,
              "price_max": 5600000000,
              "price_min_before_discount": 12600000000,
              "price_max_before_discount": 12600000000,
              "hidden_price_display": null,
              "price_before_discount": 12600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-56%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.16000081749641548.mp4",
                  "thumb_url": "sg-11110106-6kip2-mav8i21hmjg3db_cover",
                  "duration": 50,
                  "version": 2,
                  "vid": "sg-11110106-6kip2-mav8i21hmjg3db",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.16006711751789924.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.16006711751789924.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.16006731755797817.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.16006731755797817.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.16000081749641548.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.16000081749641548.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.16003251751789924.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.16003251751789924.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "2 SpeakerCable",
                  "options": [
                    "D30II 2000W(8-12INC)",
                    "D10II 1000W(8-12INC)",
                    "D10(8-12INCI),800W",
                    "D10(8-12INCI),900W",
                    "5inch",
                    "ZK-502L"
                  ],
                  "images": [
                    "sg-11134201-824hf-me3tbfupu29zeb",
                    "id-11134207-8224w-mhbns49nsv7w9a",
                    "sg-11134201-7rat1-may8twe5gd1fa5",
                    "sg-11134201-7raso-may8twk9a8ggbf",
                    "id-11134207-81ztf-medzau66qqrq82",
                    "sg-11134201-7reon-mdva8b9ly71f02"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.845541401273885,
                "rating_count": [
                  628,
                  2,
                  2,
                  14,
                  55,
                  555
                ],
                "rcount_with_context": 178,
                "rcount_with_image": 145
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 365447526761033,
                "bundle_deal_label": "Pilih 2, diskon 2%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 811034110132224,
                "price": 5600000000,
                "strikethrough_price": 12600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-56%",
                "model_id": 275374690144,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 12600000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1000,
                "rounded_local_monthly_sold_count": 211,
                "local_monthly_sold_count_text": "211",
                "rounded_display_sold_count": 1000,
                "display_sold_count_text": "1RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GearPro ID",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 26787554307,
            "shopid": 1423402464,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822x0-mi44qyik36knb5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,1718093079,700005490,1049120,822059908662278,825465608499232,825465608497696,1119699,1400285055,1015914,700190087,700830032,298933384,298623321,1993623,998091078,2218763],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":223,\"model_id\":275374690144,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822x0-mi44qyik36knb5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,1718093079,700005490,1049120,822059908662278,825465608499232,825465608497696,1119699,1400285055,1015914,700190087,700830032,298933384,298623321,1993623,998091078,2218763],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":223,\"model_id\":275374690144,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26787554307",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26611133748,
              "shopid": 1357865996,
              "name": "Kipas Mini AC Portable Air Cooler Pendingin Ruangan",
              "label_ids": [
                844931086908638,
                844931064601283,
                1718093079,
                1000031,
                1015914,
                700190087,
                1400285055,
                1049120,
                700005490,
                822059908662278,
                825465608497696,
                837860934119952,
                825465608499232,
                1428713,
                1718087960,
                2018619,
                2023641,
                298893311,
                298463379,
                700830032,
                298648355,
                298988318,
                298983369,
                299103323,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224z-mhr5g19skgec49",
              "images": [
                "id-11134207-8224z-mhr5g19skgec49",
                "id-11134207-8224v-mhr5g19ubnygc6",
                "id-11134207-7r98u-m08bcn0u3sk67a",
                "id-11134207-7r98t-m045wi90fmk25e",
                "id-11134207-7r98r-m045wi90h14i5f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1726211990,
              "sold": 1000,
              "historical_sold": 30000,
              "liked": false,
              "liked_count": 9250,
              "view_count": null,
              "catid": 100010,
              "brand": "HANG YAN",
              "cmt_count": 17536,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4990000000,
              "price_min": 4990000000,
              "price_max": 4990000000,
              "price_min_before_discount": 12000000000,
              "price_max_before_discount": 12000000000,
              "hidden_price_display": null,
              "price_before_discount": 12000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-58%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke17-m046h633n9wtd2.16000081726211310.mp4",
                  "thumb_url": "id-11110105-7r98w-m046h8mdzgjpae",
                  "duration": 12,
                  "version": 2,
                  "vid": "id-11110105-6ke17-m046h633n9wtd2",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke17-m046h633n9wtd2.default.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke17-m046h633n9wtd2.default.mp4",
                      "width": 354,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke17-m046h633n9wtd2.default.mp4",
                    "width": 354,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "WARNA",
                  "options": [
                    "HITAM",
                    "HIJAU",
                    "PUTIH",
                    "NAVY"
                  ],
                  "images": [
                    "id-11134207-8224w-mhr5g19uioso18",
                    "id-11134207-8224r-mhr5g19ufvns7c",
                    "id-11134207-7rasf-m0fd988epr3y6e",
                    "id-11134207-7rasa-m13w5b6r4jwzb2"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.6551901336074,
                "rating_count": [
                  17536,
                  339,
                  205,
                  828,
                  2412,
                  13752
                ],
                "rcount_with_context": 3585,
                "rcount_with_image": 2527
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 812167562051584,
                "price": 4990000000,
                "strikethrough_price": 12000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-58%",
                "model_id": 129066518789,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 12000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 30000,
                "rounded_local_monthly_sold_count": 1000,
                "local_monthly_sold_count_text": "1RB+",
                "rounded_display_sold_count": 30000,
                "display_sold_count_text": "10RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MarkasElectronic",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                91,
                4
              ]
            },
            "itemid": 26611133748,
            "shopid": 1357865996,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhr5g19skgec49\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1718093079,1000031,1015914,700190087,1400285055,1049120,700005490,822059908662278,825465608497696,837860934119952,825465608499232,1428713,1718087960,2018619,2023641,298893311,298463379,700830032,298648355,298988318,298983369,299103323,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":224,\"model_id\":129066518789,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhr5g19skgec49\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1718093079,1000031,1015914,700190087,1400285055,1049120,700005490,822059908662278,825465608497696,837860934119952,825465608499232,1428713,1718087960,2018619,2023641,298893311,298463379,700830032,298648355,298988318,298983369,299103323,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":224,\"model_id\":129066518789,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26611133748",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26312848718,
              "shopid": 198666921,
              "name": "AC Reiwa 0.5 PK Window Low Watt CW 0501 RA Air Conditioner 0,5 1/2PK 1/2 CW0501 CW 0501RA",
              "label_ids": [
                844931064601283,
                298463379,
                1718093079,
                844931086908638,
                1015914,
                700190087,
                1000031,
                1400285055,
                1213641,
                2018619,
                2023641,
                298893311,
                1049141,
                700005513,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                825465608494624,
                700750053,
                1400025118,
                822120592853526,
                298933384,
                2068629,
                298938357,
                2108629,
                700765096,
                298938356,
                1400066568,
                2098628,
                1718088044,
                997921050,
                298938368,
                2108637,
                298468389,
                1718088045,
                298468390,
                1718093084,
                997921049,
                1718088046,
                298458398,
                2098630,
                298458396,
                2098629,
                1718093085,
                298838363,
                700585042,
                2103632
              ],
              "image": "id-11134207-7rasm-m0v4gy4ofryfda",
              "images": [
                "id-11134207-7rasm-m0v4gy4ofryfda",
                "id-11134207-7rasc-m0ttolvs7c644d",
                "id-11134207-7rasm-m1xw9nagi27t49",
                "id-11134207-7rase-m1xw9na6ph7j03",
                "id-11134207-7rasg-m1xw9na6qw9b48",
                "id-11134207-7rasi-m1xw9na6mojac4",
                "id-11134207-7rash-m0v4gy4oeddzbb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1727763786,
              "sold": 14,
              "historical_sold": 165,
              "liked": false,
              "liked_count": 197,
              "view_count": null,
              "catid": 100010,
              "brand": "REIWA",
              "cmt_count": 83,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 209500000000,
              "price_min": 209500000000,
              "price_max": 209500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6ke1d-m1jornmhqqi915.16000091729329324.mp4",
                  "thumb_url": "id-11110107-7rasj-m1jorppop1nb63",
                  "duration": 16,
                  "version": 2,
                  "vid": "id-11110107-6ke1d-m1jornmhqqi915",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ke1d-m1jornmhqqi915.default.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1d-m1jornmhqqi915.default.mp4",
                      "width": 360,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1d-m1jornmhqqi915.default.mp4",
                    "width": 360,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.9397590361445785,
                "rating_count": [
                  83,
                  1,
                  0,
                  0,
                  1,
                  81
                ],
                "rcount_with_context": 22,
                "rcount_with_image": 15
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bantul",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp698RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 209500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 158814627422,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 209500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 165,
                "rounded_local_monthly_sold_count": 14,
                "local_monthly_sold_count_text": "14",
                "rounded_display_sold_count": 165,
                "display_sold_count_text": "165"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp698RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Lentera Star",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                97,
                88,
                0,
                1000,
                4
              ]
            },
            "itemid": 26312848718,
            "shopid": 198666921,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m0v4gy4ofryfda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1718093079,844931086908638,1015914,700190087,1000031,1400285055,1213641,2018619,2023641,298893311,1049141,700005513,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608494624,700750053,1400025118,822120592853526,298933384,2068629,298938357,2108629,700765096,298938356,1400066568,2098628,1718088044,997921050,298938368,2108637,298468389,1718088045,298468390,1718093084,997921049,1718088046,298458398,2098630,298458396,2098629,1718093085,298838363,700585042,2103632],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":225,\"model_id\":158814627422,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,97,88,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m0v4gy4ofryfda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1718093079,844931086908638,1015914,700190087,1000031,1400285055,1213641,2018619,2023641,298893311,1049141,700005513,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608494624,700750053,1400025118,822120592853526,298933384,2068629,298938357,2108629,700765096,298938356,1400066568,2098628,1718088044,997921050,298938368,2108637,298468389,1718088045,298468390,1718093084,997921049,1718088046,298458398,2098630,298458396,2098629,1718093085,298838363,700585042,2103632],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":225,\"model_id\":158814627422,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,97,88,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26312848718",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27000175661,
              "shopid": 271965077,
              "name": "Selang Sambung Hawa Plastik Utk Ac Mobil Harga Perpcs 1",
              "label_ids": [
                1049116,
                1049117,
                822059908662278,
                825465608499232,
                825465608497696,
                298458395,
                844931064601283,
                1213641,
                1000031,
                1400285055,
                1119699,
                1015914,
                700190087,
                2018619,
                2023641,
                1718093079,
                844931086908638,
                298893311,
                298463379,
                1400066568,
                2068629,
                298938357,
                298468390,
                1718093084,
                1718088045,
                2098629,
                1718088044,
                298458398,
                298468389,
                298458396,
                2098628,
                298938368
              ],
              "image": "id-11134207-7r98y-lve2ihl3cssj62",
              "images": [
                "id-11134207-7r98y-lve2ihl3cssj62",
                "id-11134207-7r98v-lve2ihl3cs1x67",
                "id-11134207-7r98t-lve2ihl3csdb51"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1715914332,
              "sold": 293,
              "historical_sold": 3000,
              "liked": false,
              "liked_count": 318,
              "view_count": null,
              "catid": 100640,
              "brand": "",
              "cmt_count": 1377,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1095000000,
              "price_min": 1095000000,
              "price_max": 1095000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.790288529204785,
                "rating_count": [
                  1421,
                  9,
                  10,
                  40,
                  152,
                  1210
                ],
                "rcount_with_context": 204,
                "rcount_with_image": 140
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1095000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 245840914123,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1095000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3000,
                "rounded_local_monthly_sold_count": 293,
                "local_monthly_sold_count_text": "293",
                "rounded_display_sold_count": 3000,
                "display_sold_count_text": "3RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Khoirun_ac",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 27000175661,
            "shopid": 271965077,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98y-lve2ihl3cssj62\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049116,1049117,822059908662278,825465608499232,825465608497696,298458395,844931064601283,1213641,1000031,1400285055,1119699,1015914,700190087,2018619,2023641,1718093079,844931086908638,298893311,298463379,1400066568,2068629,298938357,298468390,1718093084,1718088045,2098629,1718088044,298458398,298468389,298458396,2098628,298938368],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":226,\"model_id\":245840914123,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98y-lve2ihl3cssj62\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049116,1049117,822059908662278,825465608499232,825465608497696,298458395,844931064601283,1213641,1000031,1400285055,1119699,1015914,700190087,2018619,2023641,1718093079,844931086908638,298893311,298463379,1400066568,2068629,298938357,298468390,1718093084,1718088045,2098629,1718088044,298458398,298468389,298458396,2098628,298938368],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":226,\"model_id\":245840914123,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27000175661",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 9073798714,
              "shopid": 15074783,
              "name": "TERLARIS KIPAS angin model AC 2PK + remot khusus JNE",
              "label_ids": [
                1001036,
                1015914,
                700190087,
                1049120,
                700005490,
                825249635454464,
                822059908662278,
                1400285055,
                298463379,
                700025282,
                700590005,
                1818593,
                1718093079,
                298458395,
                1428713,
                1718087960,
                1918643,
                1000031,
                2018619,
                700700063,
                825465608497696,
                700830032,
                2108629,
                844931086908638,
                2068629,
                298938357,
                1400066568,
                298468389,
                298938368,
                1718088045,
                2098628,
                2098629
              ],
              "image": "86c705e9eaf6ec8e576f254a305eb4bc",
              "images": [
                "86c705e9eaf6ec8e576f254a305eb4bc",
                "e02be4817badf671b0a3d537f94f5d6f",
                "c49c427760cb4b158ea56ae0d737587f",
                "b02985e5a6720c9b290f5a1909268ef4",
                "4dfc1637fd6d15dc7fc66b4b666e8025"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1625260361,
              "sold": 65,
              "historical_sold": 10000,
              "liked": false,
              "liked_count": 5806,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 979,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "normal",
              "price": 36500000000,
              "price_min": 36500000000,
              "price_max": 36500000000,
              "price_min_before_discount": 50000000000,
              "price_max_before_discount": 50000000000,
              "hidden_price_display": null,
              "price_before_discount": 50000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-27%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 3.9001019367991847,
                "rating_count": [
                  982,
                  156,
                  42,
                  89,
                  154,
                  541
                ],
                "rcount_with_context": 394,
                "rcount_with_image": 272
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp121RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 806653813899264,
                "price": 36500000000,
                "strikethrough_price": 50000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-27%",
                "model_id": 66235181542,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 50000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10000,
                "rounded_local_monthly_sold_count": 65,
                "local_monthly_sold_count_text": "65",
                "rounded_display_sold_count": 10000,
                "display_sold_count_text": "10RB+"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp121RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Hema cosmetik",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                4
              ]
            },
            "itemid": 9073798714,
            "shopid": 15074783,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"86c705e9eaf6ec8e576f254a305eb4bc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001036,1015914,700190087,1049120,700005490,825249635454464,822059908662278,1400285055,298463379,700025282,700590005,1818593,1718093079,298458395,1428713,1718087960,1918643,1000031,2018619,700700063,825465608497696,700830032,2108629,844931086908638,2068629,298938357,1400066568,298468389,298938368,1718088045,2098628,2098629],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":227,\"model_id\":66235181542,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"86c705e9eaf6ec8e576f254a305eb4bc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001036,1015914,700190087,1049120,700005490,825249635454464,822059908662278,1400285055,298463379,700025282,700590005,1818593,1718093079,298458395,1428713,1718087960,1918643,1000031,2018619,700700063,825465608497696,700830032,2108629,844931086908638,2068629,298938357,1400066568,298468389,298938368,1718088045,2098628,2098629],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":227,\"model_id\":66235181542,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_9073798714",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44068802161,
              "shopid": 1609291915,
              "name": "(Barang Dagangan Dalam Stok)1000W Amplifier Board Audio 12V/24V/220V Bluetooth USB Radio TF DIY Speaker Woofer Ampli Full Bass Subwoofer 8-10 Inch Hi-Fi Bluetooth Rumah Mobil Audio Power Super Bass Bluetooth Amplifiers AC 220V 12V 24V",
              "label_ids": [
                844931064601283,
                844931086908638,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                700005490,
                1049120,
                1400285055,
                1428713,
                1718087960,
                298933384,
                2023641,
                1015914,
                700190087,
                2018619
              ],
              "image": "id-11134207-81zth-me81r9kfhh4zc0",
              "images": [
                "id-11134207-81zth-me81r9kfhh4zc0",
                "id-11134207-81ztk-mee1cn7aazglc1",
                "id-11134207-81ztk-mee1cn7ace1151",
                "id-11134207-81ztl-me9o6ngx5qth8a",
                "id-11134207-81ztj-mee1cn7am80516",
                "id-11134207-81ztn-me9o6ngx75dx46",
                "id-11134207-81zte-mee1cn7anmkl26",
                "id-11134207-81ztq-mee1cn7ai0at10",
                "id-11134207-81ztj-mee1cn7ajev9a5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1757750318,
              "sold": 9,
              "historical_sold": 35,
              "liked": false,
              "liked_count": 9,
              "view_count": null,
              "catid": 100535,
              "brand": "",
              "cmt_count": 14,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 6348000000,
              "price_min": 6348000000,
              "price_max": 6348000000,
              "price_min_before_discount": 13800000000,
              "price_max_before_discount": 13800000000,
              "hidden_price_display": null,
              "price_before_discount": 13800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemz-mfxmjugtp62za0.16000091760682444.mp4",
                  "thumb_url": "id-11110105-6vemz-mfxmjugtp62za0_cover",
                  "duration": 47,
                  "version": 2,
                  "vid": "id-11110105-6vemz-mfxmjugtp62za0",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemz-mfxmjugtp62za0.16000091760682444.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemz-mfxmjugtp62za0.16000091760682444.mp4",
                      "width": 270,
                      "height": 482
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemz-mfxmjugtp62za0.default.mp4",
                    "width": 358,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "nomor model",
                  "options": [
                    "D30-II",
                    "D30",
                    "D10-II",
                    "D10",
                    "T5",
                    "01"
                  ],
                  "images": [
                    "id-11134207-81zte-mee1cn7anmkl26",
                    "id-11134207-81ztq-mee1cn7ai0at10",
                    "id-11134207-81ztk-mee1cn7ace1151",
                    "id-11134207-81ztn-me9o6ngx75dx46",
                    "id-11134207-81ztj-mee1cn7ajev9a5",
                    "id-11134207-81zti-mfngbpuitpftc1"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  14,
                  0,
                  0,
                  0,
                  0,
                  14
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228219680993282,
                "price": 6348000000,
                "strikethrough_price": 13800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 281542421860,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 13800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 35,
                "rounded_local_monthly_sold_count": 9,
                "local_monthly_sold_count_text": "9",
                "rounded_display_sold_count": 35,
                "display_sold_count_text": "35"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MOTOX GARAGE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 44068802161,
            "shopid": 1609291915,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zth-me81r9kfhh4zc0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,822059908662278,825465608499232,825465608497696,1119699,700005490,1049120,1400285055,1428713,1718087960,298933384,2023641,1015914,700190087,2018619],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":228,\"model_id\":281542421860,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zth-me81r9kfhh4zc0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,822059908662278,825465608499232,825465608497696,1119699,700005490,1049120,1400285055,1428713,1718087960,298933384,2023641,1015914,700190087,2018619],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":228,\"model_id\":281542421860,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44068802161",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29455142540,
              "shopid": 1267412159,
              "name": "OUTDOOR ( BARU ) AC 1/2  -  3/4  -  1 PK",
              "label_ids": [
                844931064601283,
                1049120,
                700005490,
                822059908662278,
                837860934119952,
                1718093079,
                1400285055,
                1015914,
                700190087,
                1000031,
                2018619,
                2023641,
                1400066568,
                298893311,
                825465608497696,
                298933384,
                298463379,
                834230400556567,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7rasm-m2drmnfxovgu7d",
              "images": [
                "id-11134207-7rasm-m2drmnfxovgu7d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1720760277,
              "sold": 77,
              "historical_sold": 901,
              "liked": false,
              "liked_count": 704,
              "view_count": null,
              "catid": 100010,
              "brand": "ACC",
              "cmt_count": 370,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 126500000000,
              "price_min": 126500000000,
              "price_max": 126500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "UKURAN  AC",
                  "options": [
                    "1/2 PK",
                    "3/4 PK",
                    "1 PK"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "MERK AC",
                  "options": [
                    "PANASONIC",
                    "DAIKIN INDO FTC-YV14",
                    "SHARP",
                    "GREE",
                    "LG",
                    "AQUA",
                    "MIDEA",
                    "CHANGHONG",
                    "DAIKIN Thailand",
                    "(OUT) BESTLIFE",
                    "DAIKIN FTP-AV14"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.914893617021277,
                "rating_count": [
                  376,
                  1,
                  2,
                  1,
                  20,
                  352
                ],
                "rcount_with_context": 98,
                "rcount_with_image": 73
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 126500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 226537661238,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 126500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 901,
                "rounded_local_monthly_sold_count": 77,
                "local_monthly_sold_count_text": "77",
                "rounded_display_sold_count": 901,
                "display_sold_count_text": "901"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "TOKO AC BINTANG REZEKI",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 392791855,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiaAHVwja6pCTiIrmdIv4FvthSSGFg9qUnksNFyXbm/PD2MyDhCOJf7TcEHNCJaeo4r2JpxmafQX/GR0BbRsLER8D/T/zfiJVpLvKD5+Nytmnn1D9hBEAZT3IjDlvl0Ztsw8z2BC+XjDZHX3kNy/oGAXXo6KQZxUFLno32mrtyQMmJ/g3lX9LBKUJ8eXfraPxM2F9+sZoQIvuuCpnqhgrmJydVoiQvsDnjgnnlCXHQEw56Obbiirc027iADQQTA1iMcWEAZjOWck1oa3OfzFSNlsulahrUygX6nJpzA3c6iTIBASPl2p1KLlIQxhz12Lk+/fipmGTzOZZRhsJhDYJbN+SbAcpuSglKtaV9TdKXPv2UKoND1ns/E06A+XA3CoHR3lO36dnSB7gSGXRSbAASxWdZJzuC+ZL/60chBt1UeYNlqdueyL6w6QZ+PIhmU/SfTe8yfRFDUZNsfoYya9lcBYTFDd6obKG5JZAPcIgqu0Kg==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDU3MDQ2Nnw1NDQ1MDR8NTQ3Nzg0fDYyMDIxM3w1ODA3ODN8NjA5Mjg4fDUzODc1NHw2Mjc2Njd8NjM1NzUyfDYyOTQ2MHw2MTk5NTd8NTI2NTA4fDQ0MjYzN3w1MzIzNjB8NjAzMzMxfDYwMjkyM3w1Nzg4Nzd8NjE4Mzc2fDYzNDc1MHw2MzU3OTB8NTM0MTc4fDUyNzQyOXw2MDA0MDZ8NjA5MTM5fDUwMDUzNXw2MzA3NzR8NTk3MDk4fDU5Njc1NHw1ODA3ODJ8NjA5MzA0fDYwODk5OXw1MDU3OTB8NTU0MDAwfDU2OTA0MHw2MTM4NTl8NjMxNTQ5fDU1NDc5Nnw1OTc4ODN8NjM0NzIxfDYxMzQyMnw1NDQ1NjF8NjIwOTc5fDU1NjYwN3w2MjM1MDN8NTQ0NTUxfDYwNTQ2N3w1OTM2Mjd8EK+OprsBGMyn45MBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYUFIVndqYTZwQ1RpSXJtZEl2NEZ2dGhTU0dGZzlxVW5rc05GeVhibS9QRDJNeURoQ09KZjdUY0VITkNKYWVvNHIySnB4bWFmUVgvR1IwQmJSc0xFUjhEL1QvemZpSlZwTHZLRDUrTnl0bW5uMUQ5aEJFQVpUM0lqRGx2bDBadHN3OHoyQkMrWGpEWkhYM2tOeS9vR0FYWG82S1FaeFVGTG5vMzJtcnR5UU1tSi9nM2xYOUxCS1VKOGVYZnJhUHhNMkY5K3Nab1FJdnV1Q3BucWhncm1KeWRWb2lRdnNEbmpnbm5sQ1hIUUV3NTZPYmJpaXJjMDI3aUFEUVFUQTFpTWNXRUFaak9XY2sxb2EzT2Z6RlNObHN1bGFoclV5Z1g2bkpwekEzYzZpVElCQVNQbDJwMUtMbElReGh6MTJMaysvZmlwbUdUek9aWlJoc0poRFlKYk4rU2JBY3B1U2dsS3RhVjlUZEtYUHYyVUtvTkQxbnMvRTA2QStYQTNDb0hSM2xPMzZkblNCN2dTR1hSU2JBQVN4V2RaSnp1QytaTC82MGNoQnQxVWVZTmxxZHVleUw2dzZRWitQSWhtVS9TZlRlOHlmUkZEVVpOc2ZvWXlhOWxjQllURkRkNm9iS0c1SlpBUGNJZ3F1MEtnPT1IMlKlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMHF7FK5H4XqUP4IBCWFjIHdpbmRvd5ABuLudywbgAe6B/aJU6QEAAADglSXxP/EBAAAAQOZJEEDIDA/gDAHpDAAAACCButE/iQ17FK5H4XqUP5ENAAAAANASU0GhDQAAAABlza1B+A2AgN3F8gOwDqHb71XiDgyqjQbHjQbVjgbwkAbIDxLiGYALRW9NQk55NHlPVEkwTmpreU5qQTVNemN5TVRVMUxDMHhMQzB4TEMweExDMHhMRGN1TXpZMk1UTXdOVFkyTmpBek1qUTRMREVzTUM0ek1EUTRNalk1TkRjd016VTBNamN5TXl3d0xqa3NMVEVzTUM0ek9UTTVNemsxTXprM05EQTROemt3TXl3d0xqQXpNamd3TkRRNE9Dd3pMakV6TVRjeE16UXhPVEEzTlRjd09UY3NMVEVkSEQ4WlRTQ0IwUEwyQXkzb1crbEFOUUFBZ0Q4NWxIcjJ3aGRQQjBKQnZFMXU5SEllUFVKS0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJTRGdpcjg1WURFUUFBQUFBQUFBQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFXZ2tJZ0lDQWdJQUVFQUJpRGdpcTg1WURFUUFBQUFBQUFQQS9ZZzRJclBPV0F4RUFBQUFBQUFBQUFHSU9DS3Z6bGdNUkFBQUFBQUFBQUFCaUVBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCcG1HNFNnNnVTVXNGeEFBQUFnTkdFQkQ5NUFBQUE0SkFaOHo2QkFRQUFBQUFhSUZaQmlRRUFBQUNnNlU4MFFaRUJBQUFBYUJRMFcwR1pBUUFBQUlDSjNsMUJvUUVBQUFEZzRXczdRYWtCQUFBQS9NQmNZa0hvQVFHQUFwUURpZ0krTUM0d01EWXdOVElzTVM0d01EQXdNREFzTVM0d05ERTJOelFzTVM0eU5UQXdNREFzTVM0ek1EQXdNREFzTVM0ME1EQXdNREFzTVM0MU1EQXdNRENaQXZLQlp1N3FkaDFBb1FLdDd6UjR3a25CUWNFQ21HNFNnNnVTVXNIS0Fnc0lBUkg4OTZ3ejhqQlF3Y29DQ3dnQ0VaaHVFb09ya2xMQjJRSUFhdkRmRktsQlFlRUNRSUxVRkRydElVSHBBamM2dXNOSmVheEJpZ013QUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL21RUEVMdXVsL3BvTFFxRURUeGNDUzJWTlEwSzVBL0lEbEJjdks5MC93UU05ejF4cHhBVGhQOGtERWhKbUxMZTk1RC9SQXc4RjNpZndBK3MvK2dNSkNnVkpjMDVRUWhBQStnTUxDZ2RTYjJsVWFXVnlFQUQ2QXcwS0NVOXlaR1Z5VkdsbGNoQUErZ01SQ2cxSmRHVnRVSEpwWTJWVWFXVnlFQUNCQkFBQUFLRHBvL3MraVFRQUFBQmdYZ0QwUHBBRW13T1lCSytmazRnRW9BU1o4NWkwQktnRWdQS0xxQW00QksrZms0Z0V3QVRJa3F5OENNa0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUJneU1sNFA2RUZBQUFBQUFBQThEK3BCUUFBQUVDeXF2QS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQUFBQUQ0UHc9PeoZBLpNxE36GaQGCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI5NDU1MTQyNTQwCiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNYml6X3F1ZXVlX2lkcxIJIgdhZHMsb3JnChIKDHZvdWNoZXJfbGVucxICEAAKDQoHaXNfdnNrdRICKAAKFAoOc2hvcF9ibGFja2xpc3QSAigACi0KEHJlY2FsbF9xdWV1ZV9pZHMSGSIXNjExMDIwMzA0LDYxMTAxMDEwNCxvcmcKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo2NCwiYXBpMV9sYXRlbmN5X21zIjo0NiwiYXBpMl9sYXRlbmN5X21zIjo1NywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjMwLCJhcGkwX2Fkc19jb3VudCI6MjgxLCJhcGkxX2Fkc19jb3VudCI6MTU0OSwiYXBpMl9hZHNfY291bnQiOjMxNiwiYXBpM19hZHNfY291bnQiOjN9sB/PgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                4
              ]
            },
            "itemid": 29455142540,
            "shopid": 1267412159,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":6560898,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m2drmnfxovgu7d\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,1049120,700005490,822059908662278,837860934119952,1718093079,1400285055,1015914,700190087,1000031,2018619,2023641,1400066568,298893311,825465608497696,298933384,298463379,834230400556567,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":229,\"model_id\":226537661238,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":6560898,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m2drmnfxovgu7d\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,1049120,700005490,822059908662278,837860934119952,1718093079,1400285055,1015914,700190087,1000031,2018619,2023641,1400066568,298893311,825465608497696,298933384,298463379,834230400556567,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":229,\"model_id\":226537661238,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDU3MDQ2Nnw1NDQ1MDR8NTQ3Nzg0fDYyMDIxM3w1ODA3ODN8NjA5Mjg4fDUzODc1NHw2Mjc2Njd8NjM1NzUyfDYyOTQ2MHw2MTk5NTd8NTI2NTA4fDQ0MjYzN3w1MzIzNjB8NjAzMzMxfDYwMjkyM3w1Nzg4Nzd8NjE4Mzc2fDYzNDc1MHw2MzU3OTB8NTM0MTc4fDUyNzQyOXw2MDA0MDZ8NjA5MTM5fDUwMDUzNXw2MzA3NzR8NTk3MDk4fDU5Njc1NHw1ODA3ODJ8NjA5MzA0fDYwODk5OXw1MDU3OTB8NTU0MDAwfDU2OTA0MHw2MTM4NTl8NjMxNTQ5fDU1NDc5Nnw1OTc4ODN8NjM0NzIxfDYxMzQyMnw1NDQ1NjF8NjIwOTc5fDU1NjYwN3w2MjM1MDN8NTQ0NTUxfDYwNTQ2N3w1OTM2Mjd8EK+OprsBGMyn45MBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYUFIVndqYTZwQ1RpSXJtZEl2NEZ2dGhTU0dGZzlxVW5rc05GeVhibS9QRDJNeURoQ09KZjdUY0VITkNKYWVvNHIySnB4bWFmUVgvR1IwQmJSc0xFUjhEL1QvemZpSlZwTHZLRDUrTnl0bW5uMUQ5aEJFQVpUM0lqRGx2bDBadHN3OHoyQkMrWGpEWkhYM2tOeS9vR0FYWG82S1FaeFVGTG5vMzJtcnR5UU1tSi9nM2xYOUxCS1VKOGVYZnJhUHhNMkY5K3Nab1FJdnV1Q3BucWhncm1KeWRWb2lRdnNEbmpnbm5sQ1hIUUV3NTZPYmJpaXJjMDI3aUFEUVFUQTFpTWNXRUFaak9XY2sxb2EzT2Z6RlNObHN1bGFoclV5Z1g2bkpwekEzYzZpVElCQVNQbDJwMUtMbElReGh6MTJMaysvZmlwbUdUek9aWlJoc0poRFlKYk4rU2JBY3B1U2dsS3RhVjlUZEtYUHYyVUtvTkQxbnMvRTA2QStYQTNDb0hSM2xPMzZkblNCN2dTR1hSU2JBQVN4V2RaSnp1QytaTC82MGNoQnQxVWVZTmxxZHVleUw2dzZRWitQSWhtVS9TZlRlOHlmUkZEVVpOc2ZvWXlhOWxjQllURkRkNm9iS0c1SlpBUGNJZ3F1MEtnPT1IMlKlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMHF7FK5H4XqUP4IBCWFjIHdpbmRvd5ABuLudywbgAe6B/aJU6QEAAADglSXxP/EBAAAAQOZJEEDIDA/gDAHpDAAAACCButE/iQ17FK5H4XqUP5ENAAAAANASU0GhDQAAAABlza1B+A2AgN3F8gOwDqHb71XiDgyqjQbHjQbVjgbwkAbIDxLiGYALRW9NQk55NHlPVEkwTmpreU5qQTVNemN5TVRVMUxDMHhMQzB4TEMweExDMHhMRGN1TXpZMk1UTXdOVFkyTmpBek1qUTRMREVzTUM0ek1EUTRNalk1TkRjd016VTBNamN5TXl3d0xqa3NMVEVzTUM0ek9UTTVNemsxTXprM05EQTROemt3TXl3d0xqQXpNamd3TkRRNE9Dd3pMakV6TVRjeE16UXhPVEEzTlRjd09UY3NMVEVkSEQ4WlRTQ0IwUEwyQXkzb1crbEFOUUFBZ0Q4NWxIcjJ3aGRQQjBKQnZFMXU5SEllUFVKS0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJTRGdpcjg1WURFUUFBQUFBQUFBQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFXZ2tJZ0lDQWdJQUVFQUJpRGdpcTg1WURFUUFBQUFBQUFQQS9ZZzRJclBPV0F4RUFBQUFBQUFBQUFHSU9DS3Z6bGdNUkFBQUFBQUFBQUFCaUVBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCcG1HNFNnNnVTVXNGeEFBQUFnTkdFQkQ5NUFBQUE0SkFaOHo2QkFRQUFBQUFhSUZaQmlRRUFBQUNnNlU4MFFaRUJBQUFBYUJRMFcwR1pBUUFBQUlDSjNsMUJvUUVBQUFEZzRXczdRYWtCQUFBQS9NQmNZa0hvQVFHQUFwUURpZ0krTUM0d01EWXdOVElzTVM0d01EQXdNREFzTVM0d05ERTJOelFzTVM0eU5UQXdNREFzTVM0ek1EQXdNREFzTVM0ME1EQXdNREFzTVM0MU1EQXdNRENaQXZLQlp1N3FkaDFBb1FLdDd6UjR3a25CUWNFQ21HNFNnNnVTVXNIS0Fnc0lBUkg4OTZ3ejhqQlF3Y29DQ3dnQ0VaaHVFb09ya2xMQjJRSUFhdkRmRktsQlFlRUNRSUxVRkRydElVSHBBamM2dXNOSmVheEJpZ013QUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL21RUEVMdXVsL3BvTFFxRURUeGNDUzJWTlEwSzVBL0lEbEJjdks5MC93UU05ejF4cHhBVGhQOGtERWhKbUxMZTk1RC9SQXc4RjNpZndBK3MvK2dNSkNnVkpjMDVRUWhBQStnTUxDZ2RTYjJsVWFXVnlFQUQ2QXcwS0NVOXlaR1Z5VkdsbGNoQUErZ01SQ2cxSmRHVnRVSEpwWTJWVWFXVnlFQUNCQkFBQUFLRHBvL3MraVFRQUFBQmdYZ0QwUHBBRW13T1lCSytmazRnRW9BU1o4NWkwQktnRWdQS0xxQW00QksrZms0Z0V3QVRJa3F5OENNa0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUJneU1sNFA2RUZBQUFBQUFBQThEK3BCUUFBQUVDeXF2QS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQUFBQUQ0UHc9PeoZBLpNxE36GaQGCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI5NDU1MTQyNTQwCiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNYml6X3F1ZXVlX2lkcxIJIgdhZHMsb3JnChIKDHZvdWNoZXJfbGVucxICEAAKDQoHaXNfdnNrdRICKAAKFAoOc2hvcF9ibGFja2xpc3QSAigACi0KEHJlY2FsbF9xdWV1ZV9pZHMSGSIXNjExMDIwMzA0LDYxMTAxMDEwNCxvcmcKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo2NCwiYXBpMV9sYXRlbmN5X21zIjo0NiwiYXBpMl9sYXRlbmN5X21zIjo1NywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjMwLCJhcGkwX2Fkc19jb3VudCI6MjgxLCJhcGkxX2Fkc19jb3VudCI6MTU0OSwiYXBpMl9hZHNfY291bnQiOjMxNiwiYXBpM19hZHNfY291bnQiOjN9sB/PgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29455142540",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24206822932,
              "shopid": 577038261,
              "name": "Switch Box Kipas Angin Regency#Switch/Saklar Kipas Angin Regency",
              "label_ids": [
                844931064601283,
                844931086908638,
                1400285055,
                298458395,
                1015914,
                700190087,
                2018619,
                2023641,
                1718087960,
                1428713,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                298933384,
                298463379,
                1718093079,
                2108629,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224z-mg62lkosq1vze4",
              "images": [
                "id-11134207-8224z-mg62lkosq1vze4",
                "id-11134207-81zto-mf30iptprkzy11",
                "id-11134207-81ztf-mf30iptqgv7t01",
                "id-11134207-8224o-mg62lkotmcy613",
                "id-11134207-82251-mg62lkosonbj8f",
                "id-11134207-82250-mgog84a4qhoqd0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1704483096,
              "sold": 67,
              "historical_sold": 265,
              "liked": false,
              "liked_count": 16,
              "view_count": null,
              "catid": 100010,
              "brand": "REGENCY",
              "cmt_count": 106,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2450000000,
              "price_min": 2450000000,
              "price_max": 2450000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "SWITCH BOX",
                  "options": [
                    "Switch Set box",
                    "Switch saja copotan",
                    "Switch box set kabel"
                  ],
                  "images": [
                    "id-11134207-8224v-mg62lkouwporb4",
                    "id-11134207-81ztj-mf30iptpszkedc",
                    "id-11134207-82252-mgog84a4rw96f5"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.794392523364486,
                "rating_count": [
                  107,
                  1,
                  1,
                  2,
                  11,
                  92
                ],
                "rcount_with_context": 21,
                "rcount_with_image": 14
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 2450000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 262078677364,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2450000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 265,
                "rounded_local_monthly_sold_count": 67,
                "local_monthly_sold_count_text": "67",
                "rounded_display_sold_count": 265,
                "display_sold_count_text": "265"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "pandowo07",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 24206822932,
            "shopid": 577038261,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mg62lkosq1vze4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1400285055,298458395,1015914,700190087,2018619,2023641,1718087960,1428713,700005490,1049120,822059908662278,825465608499232,825465608497696,298933384,298463379,1718093079,2108629,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":230,\"model_id\":262078677364,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mg62lkosq1vze4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1400285055,298458395,1015914,700190087,2018619,2023641,1718087960,1428713,700005490,1049120,822059908662278,825465608499232,825465608497696,298933384,298463379,1718093079,2108629,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":230,\"model_id\":262078677364,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24206822932",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 9729068300,
              "shopid": 257255651,
              "name": "AC 1/2 PK Standart MIDEA MSFCE-05CRN2X / MSFCE05CRN2X Double Gold Fin Instan Terbaru 2025 (Medan)",
              "label_ids": [
                1400095067,
                1400285005,
                1001036,
                1002164,
                22,
                844931046478970,
                844931026694327,
                844931064601283,
                1015914,
                700190087,
                1400285055,
                1000031,
                2018619,
                298893311,
                1213641,
                298933384,
                2023641,
                298463379,
                700765096,
                2108629,
                1059150,
                700005498,
                822059908662278,
                834403089593352,
                2048660,
                2048661,
                825465608492064,
                700810080,
                298938356,
                298468390,
                298458398,
                298468389,
                298458396
              ],
              "image": "id-11134207-7ra0p-mbz0pwxnwke1bf",
              "images": [
                "id-11134207-7ra0p-mbz0pwxnwke1bf",
                "id-11134207-7ra0g-mbrxzn5kxrxp0a",
                "id-11134207-7ra0l-mbrxzn5l0l2ld4",
                "id-11134207-7ra0s-mbrxzn5kwdd9ff",
                "id-11134207-7ra0j-mbrxzn5kz6i565"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1616228396,
              "sold": 21,
              "historical_sold": 749,
              "liked": false,
              "liked_count": 775,
              "view_count": null,
              "catid": 100010,
              "brand": "Midea",
              "cmt_count": 359,
              "flag": 917504,
              "cb_option": 0,
              "item_status": "normal",
              "price": 245500000000,
              "price_min": 245500000000,
              "price_max": 245500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.94475138121547,
                "rating_count": [
                  362,
                  0,
                  0,
                  3,
                  14,
                  345
                ],
                "rcount_with_context": 91,
                "rcount_with_image": 85
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": true,
              "is_non_cc_installment_payment_eligible": true,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Medan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 245500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 207878603563,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 245500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 749,
                "rounded_local_monthly_sold_count": 21,
                "local_monthly_sold_count_text": "21",
                "rounded_display_sold_count": 749,
                "display_sold_count_text": "749"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SHMART ELECTRONIC",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000
              ]
            },
            "itemid": 9729068300,
            "shopid": 257255651,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mbz0pwxnwke1bf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,1001036,1002164,22,844931046478970,844931026694327,844931064601283,1015914,700190087,1400285055,1000031,2018619,298893311,1213641,298933384,2023641,298463379,700765096,2108629,1059150,700005498,822059908662278,834403089593352,2048660,2048661,825465608492064,700810080,298938356,298468390,298458398,298468389,298458396],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\"],\"merge_rank\":231,\"model_id\":207878603563,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mbz0pwxnwke1bf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,1001036,1002164,22,844931046478970,844931026694327,844931064601283,1015914,700190087,1400285055,1000031,2018619,298893311,1213641,298933384,2023641,298463379,700765096,2108629,1059150,700005498,822059908662278,834403089593352,2048660,2048661,825465608492064,700810080,298938356,298468390,298458398,298468389,298458396],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\"],\"merge_rank\":231,\"model_id\":207878603563,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_9729068300",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 16994805785,
              "shopid": 201925129,
              "name": "PAPERBAG AC / TAS AC / KANTONG KERTAS AC / PAPER BAG ALEXANDRE CHRISTIE",
              "label_ids": [
                844931064601283,
                1213641,
                1400285055,
                844931086908638,
                1049116,
                1049117,
                822059908662278,
                825465608492064,
                825465608493600,
                825465608494624,
                825465608497696,
                825465608499232,
                840955085144628,
                840990690654214,
                1015914,
                700190087,
                1000031,
                822120592861206,
                827380695406658,
                1119699,
                1718093079,
                2018619,
                298463379,
                2108629,
                298933384,
                2048660,
                2048661,
                700765096,
                298468389,
                1718088044,
                1718088045,
                298458396,
                298468390,
                1718093084,
                298458398
              ],
              "image": "id-11134207-7qul1-lhe659fazjl8b6",
              "images": [
                "id-11134207-7qul1-lhe659fazjl8b6",
                "id-11134207-8224y-mgnnh51rt8necd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1685433896,
              "sold": 98,
              "historical_sold": 1000,
              "liked": false,
              "liked_count": 242,
              "view_count": null,
              "catid": 100638,
              "brand": "",
              "cmt_count": 319,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 850000000,
              "price_min": 850000000,
              "price_max": 850000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "04f6a24d79aa0f72c97b6113dd22b311",
                  "thumb_url": "de889c8350e553de8322b638801823bd",
                  "duration": 35,
                  "version": 2,
                  "vid": "id-11110107-6jt7n-lhekhl201msz30",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6jt7n-lhekhl201msz30.16000081685434658.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6jt7n-lhekhl201msz30.16000081685434658.mp4",
                      "width": 640,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6jt7n-lhekhl201msz30.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "AC White",
                    "AC Black",
                    "Expedition"
                  ],
                  "images": [
                    "id-11134207-8224r-mgnnh51rru2y49",
                    "id-11134207-7r98s-lppy6c3uz29xf3",
                    "id-11134207-7r98t-lzfwn9mnigh4ab"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.7907692307692304,
                "rating_count": [
                  325,
                  4,
                  1,
                  9,
                  31,
                  280
                ],
                "rcount_with_context": 39,
                "rcount_with_image": 26
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 850000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 222405824724,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 850000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1000,
                "rounded_local_monthly_sold_count": 98,
                "local_monthly_sold_count_text": "98",
                "rounded_display_sold_count": 1000,
                "display_sold_count_text": "1RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "PION_BREAK",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 16994805785,
            "shopid": 201925129,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul1-lhe659fazjl8b6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1400285055,844931086908638,1049116,1049117,822059908662278,825465608492064,825465608493600,825465608494624,825465608497696,825465608499232,840955085144628,840990690654214,1015914,700190087,1000031,822120592861206,827380695406658,1119699,1718093079,2018619,298463379,2108629,298933384,2048660,2048661,700765096,298468389,1718088044,1718088045,298458396,298468390,1718093084,298458398],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":232,\"model_id\":222405824724,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul1-lhe659fazjl8b6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1400285055,844931086908638,1049116,1049117,822059908662278,825465608492064,825465608493600,825465608494624,825465608497696,825465608499232,840955085144628,840990690654214,1015914,700190087,1000031,822120592861206,827380695406658,1119699,1718093079,2018619,298463379,2108629,298933384,2048660,2048661,700765096,298468389,1718088044,1718088045,298458396,298468390,1718093084,298458398],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":232,\"model_id\":222405824724,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_16994805785",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27224908602,
              "shopid": 491881863,
              "name": "Power Switch Swit Tombol On Off Sensor Ac 4Pin 4 Pin Ukuran 6x6x5mm Saklar Push Button Pcb Tv Ac",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1049126,
                700005507,
                298463379,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1213641,
                2018619,
                2023641,
                825465608492064,
                298933384,
                1015914,
                700190087,
                1718093084,
                298458398,
                298458396,
                1718088045,
                298468389,
                298468390,
                1718088044
              ],
              "image": "id-11134207-7rasb-m5q41ouggv6b82",
              "images": [
                "id-11134207-7rasb-m5q41ouggv6b82",
                "id-11134207-7rasi-m5q41ougfglva9",
                "id-11134207-7rash-m5q41ougi9qra1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1738442636,
              "sold": 84,
              "historical_sold": 233,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100010,
              "brand": "",
              "cmt_count": 6,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 245000000,
              "price_min": 245000000,
              "price_max": 245000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  6,
                  0,
                  0,
                  0,
                  0,
                  6
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 405399455150294,
                "add_on_deal_label": "Kombo Hemat",
                "sub_type": 0,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Denpasar",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 245000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 198186796427,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 245000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 233,
                "rounded_local_monthly_sold_count": 84,
                "local_monthly_sold_count_text": "84",
                "rounded_display_sold_count": 233,
                "display_sold_count_text": "233"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Bali Aircond",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 27224908602,
            "shopid": 491881863,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m5q41ouggv6b82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1049126,700005507,298463379,822059908662278,825465608499232,825465608497696,1718093079,1119699,1213641,2018619,2023641,825465608492064,298933384,1015914,700190087,1718093084,298458398,298458396,1718088045,298468389,298468390,1718088044],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":233,\"model_id\":198186796427,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m5q41ouggv6b82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1049126,700005507,298463379,822059908662278,825465608499232,825465608497696,1718093079,1119699,1213641,2018619,2023641,825465608492064,298933384,1015914,700190087,1718093084,298458398,298458396,1718088045,298468389,298468390,1718088044],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":233,\"model_id\":198186796427,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27224908602",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 22921122316,
              "shopid": 17470865,
              "name": "MIDEA AC Standard 0.5 PK 05CRN + PASANG XtremeDura MSFC 05CRN2X",
              "label_ids": [
                844931064601283,
                1400285055,
                1015914,
                700190087,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                834403089593352,
                825465608497696,
                822120592853526,
                1000031,
                298463379,
                2018619,
                2018618,
                1918643,
                1718093079,
                700700063,
                1012763,
                298893311,
                298933384,
                2153644,
                2213652,
                700810080,
                2008656,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82251-mi6xbzse8vls5e",
              "images": [
                "id-11134207-82251-mi6xbzse8vls5e",
                "id-11134207-8224o-mhbkjth6rrwq3d",
                "id-11134207-8224x-mhbkjth6ul1mc7",
                "id-11134207-8224y-mhbkjth6t6h6bc",
                "id-11134207-8224z-mhbkjth6vzm2df"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1675237727,
              "sold": 65,
              "historical_sold": 1000,
              "liked": false,
              "liked_count": 3009,
              "view_count": null,
              "catid": 100010,
              "brand": "Midea",
              "cmt_count": 774,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 244500000000,
              "price_min": 244500000000,
              "price_max": 244500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ke1k-lzngtdu2ojjcda.16000081725199615.mp4",
                  "thumb_url": "id-11110105-7r98t-lzngtjvbuyda38",
                  "duration": 59,
                  "version": 2,
                  "vid": "id-11110105-6ke1k-lzngtdu2ojjcda",
                  "formats": [
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1k-lzngtdu2ojjcda.16004081728154952.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1k-lzngtdu2ojjcda.16004081728154952.mp4",
                      "width": 360,
                      "height": 630
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ke1k-lzngtdu2ojjcda.16000081725199615.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1k-lzngtdu2ojjcda.16000081725199615.mp4",
                      "width": 484,
                      "height": 848
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1k-lzngtdu2ojjcda.default.mp4",
                    "width": 484,
                    "height": 848
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "PAKET",
                  "options": [
                    "UNIT ONLY",
                    "UNIT + PASANG",
                    "PASANG PIPA 3 M",
                    "PASANG PIPA 5  M",
                    "PASANG PIPA 6 M",
                    "PASANG PIPA 7 M",
                    "PASANG PIPA 8 M",
                    "PASANG PIPA 9 M",
                    "PASANG PIPA 10M",
                    "PASANG PIPA 11 M",
                    "PASANG PIPA 15M"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.8878980891719745,
                "rating_count": [
                  785,
                  5,
                  4,
                  12,
                  32,
                  732
                ],
                "rcount_with_context": 357,
                "rcount_with_image": 353
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 408613646778442,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 244500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 194156653769,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 244500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1000,
                "rounded_local_monthly_sold_count": 65,
                "local_monthly_sold_count_text": "65",
                "rounded_display_sold_count": 1000,
                "display_sold_count_text": "1RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "STARLYN Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                4
              ]
            },
            "itemid": 22921122316,
            "shopid": 17470865,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mi6xbzse8vls5e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1015914,700190087,1059154,1059152,822059908662278,825465608499232,834403089593352,825465608497696,822120592853526,1000031,298463379,2018619,2018618,1918643,1718093079,700700063,1012763,298893311,298933384,2153644,2213652,700810080,2008656,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":234,\"model_id\":194156653769,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mi6xbzse8vls5e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1015914,700190087,1059154,1059152,822059908662278,825465608499232,834403089593352,825465608497696,822120592853526,1000031,298463379,2018619,2018618,1918643,1718093079,700700063,1012763,298893311,298933384,2153644,2213652,700810080,2008656,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":234,\"model_id\":194156653769,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_22921122316",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 20589742278,
              "shopid": 233341203,
              "name": "Entry Wall Cover Protective Pipe AC - Putih (Bagian dalam dinding)",
              "label_ids": [
                844931064601283,
                700005490,
                700005495,
                822059908662278,
                1213641,
                825465608493600,
                825465608494624,
                825465608497696,
                825465608499232,
                1400285055,
                1000031,
                2018619,
                2023641,
                1015914,
                700190087,
                298893311,
                298463379,
                844931086908638,
                2048660,
                2048661,
                700765096,
                298933384,
                2068629,
                298938357,
                298938368,
                298468389,
                298458396,
                298458398,
                298468390
              ],
              "image": "id-11134207-7ra0t-mct18q50v5t3d7",
              "images": [
                "id-11134207-7ra0t-mct18q50v5t3d7",
                "id-11134207-7ra0p-mct25vg07tp3de",
                "id-11134207-7ra0i-mct25vg0989j2e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1686622537,
              "sold": 30,
              "historical_sold": 566,
              "liked": false,
              "liked_count": 133,
              "view_count": null,
              "catid": 100010,
              "brand": "Rifeng",
              "cmt_count": 126,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2656400000,
              "price_min": 2656400000,
              "price_max": 2656400000,
              "price_min_before_discount": 3053300000,
              "price_max_before_discount": 3053300000,
              "hidden_price_display": null,
              "price_before_discount": 3053300000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-13%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.9689922480620154,
                "rating_count": [
                  129,
                  0,
                  0,
                  0,
                  4,
                  125
                ],
                "rcount_with_context": 22,
                "rcount_with_image": 16
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 825188241948672,
                "price": 2603200000,
                "strikethrough_price": 3053300000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1328034671378432,
                "discount_text": "-13%",
                "model_id": 225309844911,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1328034671378432,
                  "voucher_code": "KULEKUL26",
                  "voucher_discount": 53200000,
                  "time_info": {
                    "start_time": 1767773700,
                    "end_time": 1774965600,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 2500000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 3053300000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 566,
                "rounded_local_monthly_sold_count": 30,
                "local_monthly_sold_count_text": "30",
                "rounded_display_sold_count": 566,
                "display_sold_count_text": "566"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KULEO",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000
              ]
            },
            "itemid": 20589742278,
            "shopid": 233341203,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0t-mct18q50v5t3d7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,700005495,822059908662278,1213641,825465608493600,825465608494624,825465608497696,825465608499232,1400285055,1000031,2018619,2023641,1015914,700190087,298893311,298463379,844931086908638,2048660,2048661,700765096,298933384,2068629,298938357,298938368,298468389,298458396,298458398,298468390],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":235,\"model_id\":225309844911,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0t-mct18q50v5t3d7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,700005495,822059908662278,1213641,825465608493600,825465608494624,825465608497696,825465608499232,1400285055,1000031,2018619,2023641,1015914,700190087,298893311,298463379,844931086908638,2048660,2048661,700765096,298933384,2068629,298938357,298938368,298468389,298458396,298458398,298468390],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":235,\"model_id\":225309844911,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_20589742278",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57952318903,
              "shopid": 592127666,
              "name": "MIDEA Air Cooler AC 100A (B) 6 Liter 3 Speed Swing 3 In 1 Remote Control Purifier Ionizer Humidifier",
              "label_ids": [
                2018619,
                298463379,
                844931064601283,
                1718093079,
                1400066568,
                298933384,
                1015914,
                700190087,
                1400285055,
                1718087960,
                1428713,
                700765096,
                1049112,
                1049127,
                822059908662278,
                825465608497696,
                2048660,
                2048661,
                822120592853526,
                834403089593352,
                2023641,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82250-mhy90q6exddy37",
              "images": [
                "id-11134207-82250-mhy90q6exddy37",
                "sg-11134201-8225d-mhn8xwdfb9jc3f",
                "sg-11134201-82271-mhn8xwt7cd1f6b",
                "sg-11134201-8225p-mhn8xx87e9s6a7",
                "sg-11134201-8227i-mhn8xxnmh2bq87",
                "sg-11134201-8226v-mhn8xy1ic7ph47",
                "sg-11134201-8224v-mhn8xydatibo9a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764412524,
              "sold": 21,
              "historical_sold": 24,
              "liked": false,
              "liked_count": 20,
              "view_count": null,
              "catid": 100010,
              "brand": "Midea",
              "cmt_count": 9,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 94800000000,
              "price_min": 94800000000,
              "price_max": 94800000000,
              "price_min_before_discount": 179900000000,
              "price_max_before_discount": 179900000000,
              "hidden_price_display": null,
              "price_before_discount": 179900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-47%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv9-mhr3zhbfc8au33.16000081764646498.mp4",
                  "thumb_url": "id-11110105-6vdv9-mhr3zhbfc8au33_cover",
                  "duration": 47,
                  "version": 2,
                  "vid": "id-11110105-6vdv9-mhr3zhbfc8au33",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv9-mhr3zhbfc8au33.16000081764646498.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv9-mhr3zhbfc8au33.16000081764646498.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv9-mhr3zhbfc8au33.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "AC",
                  "options": [
                    "AC-100A",
                    "AC-100A(B)"
                  ],
                  "images": [
                    "id-11134207-8224p-mife3c926byfd1",
                    "id-11134207-8224w-mife3c92vm6b5e"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "PACKING",
                  "options": [
                    "PACKING NORMAL",
                    "PACKING KAYU"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  9,
                  0,
                  0,
                  0,
                  0,
                  9
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 731757914161152,
                "price": 94800000000,
                "strikethrough_price": 179900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-47%",
                "model_id": 385225014291,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 179900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 24,
                "rounded_local_monthly_sold_count": 21,
                "local_monthly_sold_count_text": "21",
                "rounded_display_sold_count": 24,
                "display_sold_count_text": "24"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "A1 ELECTRONIC",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": 659483316,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": "dWtkVGFRQUFBQUJzWjJGT9tbIGTwTTM9mmFQaSB5kZvAMLFN3o48UQMVovGWO6ZyjQ2EY3gIuY2EEFN79ZhaAGQxtxbE1bJPV9aErpuEhn7TUn/yCthHhX1gmtykRBu6/mL64F/6CzV6NQX3RZIiD0i2aji0rCb3r6X0OfT5QKhImQCXULA68Bo4sN6HGdSZ8Xf4qm2M+n3AJEZESRz+mzlpN7QNF4pHmedLB34wn6/V0IHEzwB5L64HO02uq3MaBad5xQfXo3+pbnoubqmyuBQKAqMRHlVM13h1xbWoJH6K/8fNbo5NqLpNqeon9vbeAmmBZ6qCr356dAofdp9rwGZk7N/KW7dda3iKhDTgaKvYALb6Uh6miEeEzav5vrX+orQCS5DHOBSh061kgMy9IDOxzwJftYTWDeUszAb18mEYKNnjTfRKnL1IEQFW+VyK4Pi6ub+wHO37UOn1DbPTyiD9cnxbNJRy4w28M/Epcwwq2HtzwCFw8eCSC2NY31Ln+rcqV9aVV1KofP07eKw0zg==",
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "CtYCfG5ld19hYl9zaWdufDU3MDQ2Nnw1NDQ1MDR8NTQ3Nzg0fDYyMDIxM3w1ODA3ODN8NjA5Mjg4fDUzODc1NHw2Mjc2Njd8NjM1NzUyfDYyOTQ2MHw2MTk5NTd8NTI2NTA4fDQ0MjYzN3w1MzIzNjB8NjAzMzMxfDYwMjkyM3w1Nzg4Nzd8NjE4Mzc2fDYzNDc1MHw2MzU3OTB8NTM0MTc4fDUyNzQyOXw2MDA0MDZ8NjA5MTM5fDUwMDUzNXw2MzA3NzR8NTk3MDk4fDU5Njc1NHw1ODA3ODJ8NjA5MzA0fDYwODk5OXw1MDU3OTB8NTU0MDAwfDU2OTA0MHw2MTM4NTl8NjMxNTQ5fDU1NDc5Nnw1OTc4ODN8NjM0NzIxfDYxMzQyMnw1NDQ1NjF8NjIwOTc5fDU1NjYwN3w2MjM1MDN8NTQ0NTUxfDYwNTQ2N3w1OTM2Mjd8ELTVu7oCGNf+4dQBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeWpRMkVZM2dJdVkyRUVGTjc5WmhhQUdReHR4YkUxYkpQVjlhRXJwdUVobjdUVW4veUN0aEhoWDFnbXR5a1JCdTYvbUw2NEYvNkN6VjZOUVgzUlpJaUQwaTJhamkwckNiM3I2WDBPZlQ1UUtoSW1RQ1hVTEE2OEJvNHNONkhHZFNaOFhmNHFtMk0rbjNBSkVaRVNSeittemxwTjdRTkY0cEhtZWRMQjM0d242L1YwSUhFendCNUw2NEhPMDJ1cTNNYUJhZDV4UWZYbzMrcGJub3VicW15dUJRS0FxTVJIbFZNMTNoMXhiV29KSDZLLzhmTmJvNU5xTHBOcWVvbjl2YmVBbW1CWjZxQ3IzNTZkQW9mZHA5cndHWms3Ti9LVzdkZGEzaUtoRFRnYUt2WUFMYjZVaDZtaUVlRXphdjV2clgrb3JRQ1M1REhPQlNoMDYxa2dNeTlJRE94endKZnRZVFdEZVVzekFiMThtRVlLTm5qVGZSS25MMUlFUUZXK1Z5SzRQaTZ1Yit3SE8zN1VPbjFEYlBUeWlEOWNueGJOSlJ5NHcyOE0vRXBjd3dxMkh0endDRnc4ZUNTQzJOWTMxTG4rcmNxVjlhVlYxS29mUDA3ZUt3MHpnPT1IMlKlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMHF7FK5H4XqUP4IBCWFjIHdpbmRvd5ABuLudywa4AQHgAfWY9KqpAekBAAAA4JUl8T/xAQAAAIDmCfQ/yAwP4AwB6QwAAADg4Mu8P4kNexSuR+F6lD+RDXsUrkfhepQ/oQ0AAAAAAADwP/gNgMDfx9gCsA7VzKpq4g4Mqo0Gx40G1Y4G8ZAGyA8Z4hmkCkVsd3dMak01Tml3dE1Td3RNU3d0TVN3dE1Td3dMalFzTVN3d0xqWTNPVGswTmpNME5EazBOVFk1TnpRc01DNDVMQzB4TERBdU16ZzNOVGMyTlRjMk5qVTROamM0TXl3dE1Td3hMakkzTVRjd09EQTJORGsxTURBNU5Td3RNUjM1Nm5oTUlQaTJpd3N0ZzhES1BqVUFBSUEvT2NXRytKZkFsL1JCUWVRQUswejRmVWhDU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0hDS3p6bGdNUUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBY1FBQUFDQ2tGUkUvZVFBQUFFQUwrdmMrZ1FFQUFBRGc0WFpaUVlrQkFBQUFJUExjTTBHUkFRQUFBR2dlYmw1Qm1RRUFBQURnUGpCaFFhRUJBQUFBUUszUU9rR3BBUUFBQUloVWltUkI2QUVCZ0FLVUE0b0NQakF1TURBMU56RTFMREV1TURBd01EQXdMREV1TURNM05EazFMREV1TWpNek9ERTBMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUthbVptWm1ablpQNkVDcmU4MGVNSkp3VUhLQWdzSUFSR2gyMHNhbzNXVXY4b0NDd2dDRWZ1cDhkSk5ZbkMvMlFJQS9ZR0xlQ2xFUWVFQzRPM1BrRHU4SWtIcEFzcmJUbCtPOHF4QmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvbVFQRmh2aVh3SmYwUWFFRDVBQXJUUGg5U0VLNUE2Q3J6S3hPTytBL3dRTThPQng2dU5IaVA4a0RUbFFDdWhSbDVqL1JBMW5vUXBjRHd1dy8rZ01KQ2dWSmMwNVFRaEFBK2dNTENnZFNiMmxVYVdWeUVBTDZBdzBLQ1U5eVpHVnlWR2xsY2hBQytnTVJDZzFKZEdWdFVISnBZMlZVYVdWeUVBT0JCQUFBQUNEVFVnay9pUVFBQUFBZ3ZkOENQNUFFbXdPWUJKV2Q5K3RUb0FTQThvdW9DYWdFZ1BLTHFBbkFCSUR5aTZnSnlRUjdGSzVINFhxVVArRUVleFN1UitGNmxEL3BCQUFBQUFBQUFQQS84UVFBQUFBQUFBRHdQL2tFQUFBQUFBQUE4RCtCQlFBQUFBQUFBUEEvaVFVQUFBQUFBQUR3UDVFRkFBQUFBQUFBOEQrWkJRQUFBR0FYYVhjL29RVUFBQUFBQUFEd1A2a0ZBQUFBSUpTWjhEK3hCUUFBQU9DenZmTS91UVVBQUFEQXpNejBQOEVGQUFBQVlHWm05ai9KQlFBQUFBQUFBUGcv6hkEuk3ATfoZjAYKDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF81Nzk1MjMxODkwMwoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjY0LCJhcGkxX2xhdGVuY3lfbXMiOjQ2LCJhcGkyX2xhdGVuY3lfbXMiOjU3LCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzAsImFwaTBfYWRzX2NvdW50IjoyODEsImFwaTFfYWRzX2NvdW50IjoxNTQ5LCJhcGkyX2Fkc19jb3VudCI6MzE2LCJhcGkzX2Fkc19jb3VudCI6M30KEgoMdm91Y2hlcl9sZW5zEgIQAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZwoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAACwH4CAgICAgICoiAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSMg+AQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000,
                1000,
                4
              ]
            },
            "itemid": 57952318903,
            "shopid": 592127666,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhy90q6exddy37\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,298463379,844931064601283,1718093079,1400066568,298933384,1015914,700190087,1400285055,1718087960,1428713,700765096,1049112,1049127,822059908662278,825465608497696,2048660,2048661,822120592853526,834403089593352,2023641,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\",\"ac window\"],\"merge_rank\":236,\"model_id\":385225014291,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhy90q6exddy37\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,298463379,844931064601283,1718093079,1400066568,298933384,1015914,700190087,1400285055,1718087960,1428713,700765096,1049112,1049127,822059908662278,825465608497696,2048660,2048661,822120592853526,834403089593352,2023641,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\",\"ac window\"],\"merge_rank\":236,\"model_id\":385225014291,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": 0,
            "traffic_source": 6,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "CtYCfG5ld19hYl9zaWdufDU3MDQ2Nnw1NDQ1MDR8NTQ3Nzg0fDYyMDIxM3w1ODA3ODN8NjA5Mjg4fDUzODc1NHw2Mjc2Njd8NjM1NzUyfDYyOTQ2MHw2MTk5NTd8NTI2NTA4fDQ0MjYzN3w1MzIzNjB8NjAzMzMxfDYwMjkyM3w1Nzg4Nzd8NjE4Mzc2fDYzNDc1MHw2MzU3OTB8NTM0MTc4fDUyNzQyOXw2MDA0MDZ8NjA5MTM5fDUwMDUzNXw2MzA3NzR8NTk3MDk4fDU5Njc1NHw1ODA3ODJ8NjA5MzA0fDYwODk5OXw1MDU3OTB8NTU0MDAwfDU2OTA0MHw2MTM4NTl8NjMxNTQ5fDU1NDc5Nnw1OTc4ODN8NjM0NzIxfDYxMzQyMnw1NDQ1NjF8NjIwOTc5fDU1NjYwN3w2MjM1MDN8NTQ0NTUxfDYwNTQ2N3w1OTM2Mjd8ELTVu7oCGNf+4dQBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeWpRMkVZM2dJdVkyRUVGTjc5WmhhQUdReHR4YkUxYkpQVjlhRXJwdUVobjdUVW4veUN0aEhoWDFnbXR5a1JCdTYvbUw2NEYvNkN6VjZOUVgzUlpJaUQwaTJhamkwckNiM3I2WDBPZlQ1UUtoSW1RQ1hVTEE2OEJvNHNONkhHZFNaOFhmNHFtMk0rbjNBSkVaRVNSeittemxwTjdRTkY0cEhtZWRMQjM0d242L1YwSUhFendCNUw2NEhPMDJ1cTNNYUJhZDV4UWZYbzMrcGJub3VicW15dUJRS0FxTVJIbFZNMTNoMXhiV29KSDZLLzhmTmJvNU5xTHBOcWVvbjl2YmVBbW1CWjZxQ3IzNTZkQW9mZHA5cndHWms3Ti9LVzdkZGEzaUtoRFRnYUt2WUFMYjZVaDZtaUVlRXphdjV2clgrb3JRQ1M1REhPQlNoMDYxa2dNeTlJRE94endKZnRZVFdEZVVzekFiMThtRVlLTm5qVGZSS25MMUlFUUZXK1Z5SzRQaTZ1Yit3SE8zN1VPbjFEYlBUeWlEOWNueGJOSlJ5NHcyOE0vRXBjd3dxMkh0endDRnc4ZUNTQzJOWTMxTG4rcmNxVjlhVlYxS29mUDA3ZUt3MHpnPT1IMlKlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMHF7FK5H4XqUP4IBCWFjIHdpbmRvd5ABuLudywa4AQHgAfWY9KqpAekBAAAA4JUl8T/xAQAAAIDmCfQ/yAwP4AwB6QwAAADg4Mu8P4kNexSuR+F6lD+RDXsUrkfhepQ/oQ0AAAAAAADwP/gNgMDfx9gCsA7VzKpq4g4Mqo0Gx40G1Y4G8ZAGyA8Z4hmkCkVsd3dMak01Tml3dE1Td3RNU3d0TVN3dE1Td3dMalFzTVN3d0xqWTNPVGswTmpNME5EazBOVFk1TnpRc01DNDVMQzB4TERBdU16ZzNOVGMyTlRjMk5qVTROamM0TXl3dE1Td3hMakkzTVRjd09EQTJORGsxTURBNU5Td3RNUjM1Nm5oTUlQaTJpd3N0ZzhES1BqVUFBSUEvT2NXRytKZkFsL1JCUWVRQUswejRmVWhDU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0hDS3p6bGdNUUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBY1FBQUFDQ2tGUkUvZVFBQUFFQUwrdmMrZ1FFQUFBRGc0WFpaUVlrQkFBQUFJUExjTTBHUkFRQUFBR2dlYmw1Qm1RRUFBQURnUGpCaFFhRUJBQUFBUUszUU9rR3BBUUFBQUloVWltUkI2QUVCZ0FLVUE0b0NQakF1TURBMU56RTFMREV1TURBd01EQXdMREV1TURNM05EazFMREV1TWpNek9ERTBMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUthbVptWm1ablpQNkVDcmU4MGVNSkp3VUhLQWdzSUFSR2gyMHNhbzNXVXY4b0NDd2dDRWZ1cDhkSk5ZbkMvMlFJQS9ZR0xlQ2xFUWVFQzRPM1BrRHU4SWtIcEFzcmJUbCtPOHF4QmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvbVFQRmh2aVh3SmYwUWFFRDVBQXJUUGg5U0VLNUE2Q3J6S3hPTytBL3dRTThPQng2dU5IaVA4a0RUbFFDdWhSbDVqL1JBMW5vUXBjRHd1dy8rZ01KQ2dWSmMwNVFRaEFBK2dNTENnZFNiMmxVYVdWeUVBTDZBdzBLQ1U5eVpHVnlWR2xsY2hBQytnTVJDZzFKZEdWdFVISnBZMlZVYVdWeUVBT0JCQUFBQUNEVFVnay9pUVFBQUFBZ3ZkOENQNUFFbXdPWUJKV2Q5K3RUb0FTQThvdW9DYWdFZ1BLTHFBbkFCSUR5aTZnSnlRUjdGSzVINFhxVVArRUVleFN1UitGNmxEL3BCQUFBQUFBQUFQQS84UVFBQUFBQUFBRHdQL2tFQUFBQUFBQUE4RCtCQlFBQUFBQUFBUEEvaVFVQUFBQUFBQUR3UDVFRkFBQUFBQUFBOEQrWkJRQUFBR0FYYVhjL29RVUFBQUFBQUFEd1A2a0ZBQUFBSUpTWjhEK3hCUUFBQU9DenZmTS91UVVBQUFEQXpNejBQOEVGQUFBQVlHWm05ai9KQlFBQUFBQUFBUGcv6hkEuk3ATfoZjAYKDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF81Nzk1MjMxODkwMwoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjY0LCJhcGkxX2xhdGVuY3lfbXMiOjQ2LCJhcGkyX2xhdGVuY3lfbXMiOjU3LCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzAsImFwaTBfYWRzX2NvdW50IjoyODEsImFwaTFfYWRzX2NvdW50IjoxNTQ5LCJhcGkyX2Fkc19jb3VudCI6MzE2LCJhcGkzX2Fkc19jb3VudCI6M30KEgoMdm91Y2hlcl9sZW5zEgIQAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZwoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAACwH4CAgICAgICoiAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSMg+AQ==",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57952318903",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28150265580,
              "shopid": 487262203,
              "name": "magnet clutch AC Veloz 1.5 new Terios rush calya sigra agya ayla",
              "label_ids": [
                298458395,
                844931064601283,
                1213641,
                1000031,
                1400285055,
                1015914,
                700190087,
                1718093079,
                2018619,
                298463379,
                2023641,
                1400066568,
                298893311,
                298933384,
                700765096,
                2068629,
                298938357,
                1049112,
                700005512,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                825465608493600,
                844931086908638,
                298468390,
                1718093084,
                298938368,
                1718088045,
                2098629,
                298468389,
                298458396,
                1718088044,
                298458398,
                2098628
              ],
              "image": "id-11134207-7r990-lvfcfqw90nu7eb",
              "images": [
                "id-11134207-7r990-lvfcfqw90nu7eb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1715991312,
              "sold": 68,
              "historical_sold": 718,
              "liked": false,
              "liked_count": 29,
              "view_count": null,
              "catid": 100640,
              "brand": "",
              "cmt_count": 329,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 31000000000,
              "price_min": 31000000000,
              "price_max": 31000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.8698224852071,
                "rating_count": [
                  338,
                  0,
                  1,
                  3,
                  35,
                  299
                ],
                "rcount_with_context": 41,
                "rcount_with_image": 29
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": true,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 31000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 205108921668,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 31000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 718,
                "rounded_local_monthly_sold_count": 68,
                "local_monthly_sold_count_text": "68",
                "rounded_display_sold_count": 718,
                "display_sold_count_text": "718"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Royalplatinumacmobil",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 28150265580,
            "shopid": 487262203,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r990-lvfcfqw90nu7eb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298458395,844931064601283,1213641,1000031,1400285055,1015914,700190087,1718093079,2018619,298463379,2023641,1400066568,298893311,298933384,700765096,2068629,298938357,1049112,700005512,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,844931086908638,298468390,1718093084,298938368,1718088045,2098629,298468389,298458396,1718088044,298458398,2098628],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":237,\"model_id\":205108921668,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r990-lvfcfqw90nu7eb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298458395,844931064601283,1213641,1000031,1400285055,1015914,700190087,1718093079,2018619,298463379,2023641,1400066568,298893311,298933384,700765096,2068629,298938357,1049112,700005512,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,844931086908638,298468390,1718093084,298938368,1718088045,2098629,298468389,298458396,1718088044,298458398,2098628],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":237,\"model_id\":205108921668,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28150265580",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43561137647,
              "shopid": 1102835203,
              "name": "Midea AC 1/2 PK ( 0.5 PK ) -  MSFC-05CRN2X (Unit Indoor & Outdoor Only)",
              "label_ids": [
                2018619,
                844931064601283,
                1015914,
                700190087,
                1718093065,
                2023641,
                2068629,
                298938357,
                298463379,
                700000528,
                1059156,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                822120592853526,
                825465608494624,
                2108629,
                1718088045,
                298938368,
                2098629,
                298468389,
                2098628
              ],
              "image": "id-11134207-7ra0i-mcvlihdja2t48b",
              "images": [
                "id-11134207-7ra0i-mcvlihdja2t48b",
                "id-11134207-7ra0i-mcvlihdj8o8oe6",
                "id-11134207-7ra0o-mcvrqnjn687ra2",
                "id-11134207-7ra0n-mcvrqnjn68fbdd",
                "id-11134207-7ra0n-mcvrqnjx5tlj31"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1754032584,
              "sold": 1,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100010,
              "brand": "Midea",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 250334900000,
              "price_min": 250334900000,
              "price_max": 250334900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ko2k-mcvrleyx4qt13a.16000081754032149.mp4",
                  "thumb_url": "id-11110105-6ko2k-mcvrleyx4qt13a_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6ko2k-mcvrleyx4qt13a",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ko2k-mcvrleyx4qt13a.16000081754032149.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ko2k-mcvrleyx4qt13a.16000081754032149.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ko2k-mcvrleyx4qt13a.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Temanggung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp834RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 250334900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 295934502890,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 250334900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp834RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gentongmas Elektronik Official",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000,
                1000
              ]
            },
            "itemid": 43561137647,
            "shopid": 1102835203,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0i-mcvlihdja2t48b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1015914,700190087,1718093065,2023641,2068629,298938357,298463379,700000528,1059156,1718093079,822059908662278,825465608499232,825465608497696,822120592853526,825465608494624,2108629,1718088045,298938368,2098629,298468389,2098628],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":238,\"model_id\":295934502890,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0i-mcvlihdja2t48b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1015914,700190087,1718093065,2023641,2068629,298938357,298463379,700000528,1059156,1718093079,822059908662278,825465608499232,825465608497696,822120592853526,825465608494624,2108629,1718088045,298938368,2098629,298468389,2098628],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":238,\"model_id\":295934502890,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43561137647",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27089275050,
              "shopid": 39424619,
              "name": "Pelindung AC Miniatur Bus RKC ( PROMO )",
              "label_ids": [
                2018619,
                844931086908638,
                844931064601283,
                700005490,
                700005495,
                822059908662278,
                825465608499232,
                1119699,
                298463379,
                1718093079,
                1400285055,
                1428713,
                1718087960,
                1015914,
                700190087,
                700830033,
                2108628,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7ra0k-mcqotzjm7upod8",
              "images": [
                "id-11134207-7ra0k-mcqotzjm7upod8",
                "id-11134207-7ra0u-mcqouy91ffzsd8",
                "id-11134207-7ra0l-mcqouy91ffvref",
                "id-11134207-7ra0g-mcqouy9ve82r51",
                "id-11134207-7ra0h-mcqouyel7bkz14",
                "id-11134207-7ra0h-mcqouydh8y0731",
                "id-11134207-7ra0u-mcqouycdakl47f",
                "id-11134207-7ra0s-mcqouyazclcnd5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1753725538,
              "sold": 49,
              "historical_sold": 211,
              "liked": false,
              "liked_count": 43,
              "view_count": null,
              "catid": 100640,
              "brand": "",
              "cmt_count": 72,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1500000000,
              "price_min": 1500000000,
              "price_max": 1500000000,
              "price_min_before_discount": 2500000000,
              "price_max_before_discount": 2500000000,
              "hidden_price_display": null,
              "price_before_discount": 2500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-40%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6ko29-mcqp2ld4u14se0.16000081753725219.mp4",
                  "thumb_url": "id-11110107-6ko29-mcqp2ld4u14se0_cover",
                  "duration": 31,
                  "version": 2,
                  "vid": "id-11110107-6ko29-mcqp2ld4u14se0",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ko29-mcqp2ld4u14se0.16000081753725219.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ko29-mcqp2ld4u14se0.16000081753725219.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ko29-mcqp2ld4u14se0.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Silver",
                    "Merah",
                    "Biru Muda",
                    "Putih",
                    "Hitam",
                    "Pink"
                  ],
                  "images": [
                    "id-11134207-7ra0h-mcqp6wmnmejbe8",
                    "id-11134207-7ra0t-mcqp7a5vtewo7e",
                    "id-11134207-7ra0m-mcqp7j5enz1jfa",
                    "id-11134207-7ra0r-mcqp7vqi8x2b20",
                    "id-11134207-7ra0u-mcqp8443zjtjd6",
                    "id-11134207-7ra0l-mcqp8b4vpnso80"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.861111111111111,
                "rating_count": [
                  72,
                  0,
                  0,
                  3,
                  4,
                  65
                ],
                "rcount_with_context": 5,
                "rcount_with_image": 8
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 781242522468352,
                "price": 1500000000,
                "strikethrough_price": 2500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-40%",
                "model_id": 295897805437,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 211,
                "rounded_local_monthly_sold_count": 49,
                "local_monthly_sold_count_text": "49",
                "rounded_display_sold_count": 211,
                "display_sold_count_text": "211"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Zemix Junior Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 27089275050,
            "shopid": 39424619,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0k-mcqotzjm7upod8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,700005490,700005495,822059908662278,825465608499232,1119699,298463379,1718093079,1400285055,1428713,1718087960,1015914,700190087,700830033,2108628,1718088045,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":239,\"model_id\":295897805437,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0k-mcqotzjm7upod8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,700005490,700005495,822059908662278,825465608499232,1119699,298463379,1718093079,1400285055,1428713,1718087960,1015914,700190087,700830033,2108628,1718088045,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":239,\"model_id\":295897805437,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27089275050",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40904358745,
              "shopid": 1524828106,
              "name": "Kipas Angin Exhaust fan/ Hexos Dinding OKAYAMA 8/10/12 INCH - OK8D/ OK10D / OK12D",
              "label_ids": [
                1400066568,
                2018619,
                1428713,
                1718087960,
                844931064601283,
                1049122,
                1059152,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079,
                1213641,
                1400285055,
                1015914,
                700190087,
                1718093065,
                298463379,
                700765096,
                700830032,
                844931086908638,
                2048660,
                2048661,
                825465608493600,
                2023641,
                1718088045,
                1718088044,
                298458398,
                298458396,
                1718093084,
                298468390,
                298468389
              ],
              "image": "id-11134207-7rbk7-maxqtvoskul2a4",
              "images": [
                "id-11134207-7rbk7-maxqtvoskul2a4",
                "id-11134207-7rbkd-maxqtvosgmvq4e",
                "id-11134207-7rbkb-maxqtvosi1g690",
                "id-11134207-7rbkd-maxqtvosjg0m07",
                "id-11134207-8224p-mfw9dwbc5u6i5a",
                "id-11134207-7rbkb-maxr5ogelcpl15"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1749795006,
              "sold": 1000,
              "historical_sold": 10000,
              "liked": false,
              "liked_count": 8583,
              "view_count": null,
              "catid": 100010,
              "brand": "Okayama",
              "cmt_count": 4011,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 13990000000,
              "price_min": 13990000000,
              "price_max": 13990000000,
              "price_min_before_discount": 28800000000,
              "price_max_before_discount": 28800000000,
              "hidden_price_display": null,
              "price_before_discount": 28800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-51%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6kou5-mcg1ir7wcy5589.16000081753080275.mp4",
                  "thumb_url": "id-11110105-6kou5-mcg1ir7wcy5589_cover",
                  "duration": 28,
                  "version": 2,
                  "vid": "id-11110105-6kou5-mcg1ir7wcy5589",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kou5-mcg1ir7wcy5589.16006711753475601.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kou5-mcg1ir7wcy5589.16006711753475601.mp4",
                      "width": 540,
                      "height": 960
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kou5-mcg1ir7wcy5589.16000081753080275.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kou5-mcg1ir7wcy5589.16000081753080275.mp4",
                      "width": 720,
                      "height": 1280
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6kou5-mcg1ir7wcy5589.16003251753475601.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kou5-mcg1ir7wcy5589.16003251753475601.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kou5-mcg1ir7wcy5589.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Varian",
                  "options": [
                    "8D",
                    "10D",
                    "12D"
                  ],
                  "images": [
                    "id-11134207-7rbk5-maxr5ogemra171",
                    "id-11134207-7rbkd-maxr5ogeo5uh08",
                    "id-11134207-7rbka-maxr5ogepkex6c"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.864123659935179,
                "rating_count": [
                  4011,
                  20,
                  20,
                  84,
                  237,
                  3650
                ],
                "rcount_with_context": 788,
                "rcount_with_image": 609
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-7rbk7-maxqtvoskul2a4",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 734159211921408,
                "price": 13990000000,
                "strikethrough_price": 28800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-51%",
                "model_id": 265370458404,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 28800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10000,
                "rounded_local_monthly_sold_count": 1000,
                "local_monthly_sold_count_text": "1RB+",
                "rounded_display_sold_count": 10000,
                "display_sold_count_text": "10RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "STB Electronics",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 40904358745,
            "shopid": 1524828106,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk7-maxqtvoskul2a4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,1428713,1718087960,844931064601283,1049122,1059152,822059908662278,825465608497696,825465608499232,1718093079,1213641,1400285055,1015914,700190087,1718093065,298463379,700765096,700830032,844931086908638,2048660,2048661,825465608493600,2023641,1718088045,1718088044,298458398,298458396,1718093084,298468390,298468389],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":240,\"model_id\":265370458404,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk7-maxqtvoskul2a4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,1428713,1718087960,844931064601283,1049122,1059152,822059908662278,825465608497696,825465608499232,1718093079,1213641,1400285055,1015914,700190087,1718093065,298463379,700765096,700830032,844931086908638,2048660,2048661,825465608493600,2023641,1718088045,1718088044,298458398,298458396,1718093084,298468390,298468389],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":240,\"model_id\":265370458404,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40904358745",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 18163934744,
              "shopid": 341424064,
              "name": "Knop knob putaran AC daihatsu SIGRA AYLA toyota CALYA AGYA ORIGINAL",
              "label_ids": [
                1049112,
                1059151,
                844931064601283,
                822059908662278,
                1213641,
                1400285055,
                298463379,
                825465608493600,
                825465608497696,
                825465608499232,
                840955085144628,
                840990690654214,
                1015914,
                700190087,
                298458395,
                1119699,
                1718093079,
                1000031,
                844931086908638,
                2018619,
                298893311,
                298933384,
                2023641,
                700830075,
                2048660,
                2048661,
                700810080,
                700765096,
                298468390,
                1718093084,
                1718088044,
                298458396,
                1718088045,
                298458398,
                298468389
              ],
              "image": "id-11134207-7r98w-lyz85wmllpt4d0",
              "images": [
                "id-11134207-7r98w-lyz85wmllpt4d0",
                "sg-11134201-22110-zpjz1eksc7jve5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1669060297,
              "sold": 401,
              "historical_sold": 4000,
              "liked": false,
              "liked_count": 320,
              "view_count": null,
              "catid": 100640,
              "brand": "",
              "cmt_count": 1208,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1999900000,
              "price_min": 1999900000,
              "price_max": 1999900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "1pcs hitam",
                    "1pcs Silver"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.802931596091205,
                "rating_count": [
                  1228,
                  10,
                  13,
                  27,
                  109,
                  1069
                ],
                "rcount_with_context": 227,
                "rcount_with_image": 169
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1999900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 117751205304,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1999900000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4000,
                "rounded_local_monthly_sold_count": 401,
                "local_monthly_sold_count_text": "401",
                "rounded_display_sold_count": 4000,
                "display_sold_count_text": "4RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Alfadani motor",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                1000
              ]
            },
            "itemid": 18163934744,
            "shopid": 341424064,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98w-lyz85wmllpt4d0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049112,1059151,844931064601283,822059908662278,1213641,1400285055,298463379,825465608493600,825465608497696,825465608499232,840955085144628,840990690654214,1015914,700190087,298458395,1119699,1718093079,1000031,844931086908638,2018619,298893311,298933384,2023641,700830075,2048660,2048661,700810080,700765096,298468390,1718093084,1718088044,298458396,1718088045,298458398,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":241,\"model_id\":117751205304,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98w-lyz85wmllpt4d0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049112,1059151,844931064601283,822059908662278,1213641,1400285055,298463379,825465608493600,825465608497696,825465608499232,840955085144628,840990690654214,1015914,700190087,298458395,1119699,1718093079,1000031,844931086908638,2018619,298893311,298933384,2023641,700830075,2048660,2048661,700810080,700765096,298468390,1718093084,1718088044,298458396,1718088045,298458398,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":241,\"model_id\":117751205304,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_18163934744",
            "debug_info": null
          }
        ],
        "total_fetched": 300,
        "total_count": 0,
        "pages_fetched": 11,
        "has_more": false
      }
    },
    "https://shopee.co.id/Perangkat-Wearable-cat.11044458.11044504?minPrice=200000": {
      "page_url": "https://shopee.co.id/Perangkat-Wearable-cat.11044458.11044504?minPrice=200000",
      "page_type": "category",
      "page_params": {
        "match_id": 11044504,
        "filters": {
          "minPrice": "200000"
        }
      },
      "items": {
        "items": [
          {
            "item_basic": {
              "itemid": 54254643790,
              "shopid": 1666733759,
              "name": "wajib punya skmei dm56 smartwatch gps map | 1.43 amoled | 5atm waterproof | compass | altitude air pressure jam olahraga / smartwatch bahasa indonesia / skmei smartwatch gps kompas mendukung strava /pelacakan real-time/",
              "label_ids": [
                844931064601283,
                700005509,
                1049138,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "id-11134201-8224w-mjgtdnfwkh6pfb",
              "images": [
                "id-11134201-8224w-mjgtdnfwkh6pfb",
                "id-11134201-8224w-mjgtdoipfg1xf4",
                "id-11134201-8224s-mjgtdr3hsq2qd2",
                "id-11134201-8224s-mjgtdtsj02kif0",
                "id-11134201-8224x-mjgtduxj2juv46",
                "id-11134201-8224v-mjgtdxlvqd53e9",
                "id-11134201-82250-mjgtdzgz0f7lcf",
                "id-11134201-8224q-mjgte1c09iwx6d",
                "id-11134201-8224y-mjgte2egod1d87"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381842,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 83006800000,
              "price_min": 83006800000,
              "price_max": 83006800000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Hitam + Strap",
                    "DM56 Black+ 3 Gift",
                    "Silver Add Strap",
                    "Black",
                    "B78 Red",
                    "Black Add Strap",
                    "B78 Black",
                    "DM56 Silver+3 Gift",
                    "Silver"
                  ],
                  "images": [
                    "id-11134201-8224v-mjgte7aa8zk2e1",
                    "id-11134201-82252-mjgte92ipssh4a",
                    "id-11134201-82251-mjgtea5mb1tz84",
                    "id-11134201-8224z-mjgtec2bvocie4",
                    "id-11134201-8224u-mjgted2s3xfn12",
                    "id-11134201-8224o-mjgtefo2dzpg8e",
                    "id-11134201-8224z-mjgtei7yesxsa7",
                    "id-11134201-82250-mjgtej9jncw2c3",
                    "id-11134201-8224t-mjgtek9y5szk87"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 83006800000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 345432824265,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 83006800000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54254643790,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224w-mjgtdnfwkh6pfb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1,\"model_id\":345432824265,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224w-mjgtdnfwkh6pfb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1,\"model_id\":345432824265,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54254643790",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41378012797,
              "shopid": 1623695925,
              "name": "Ready Stock Haylou Solar Lite Smart Watch Ip68 Sp02 1.38\" Display",
              "label_ids": [
                844931064601283,
                1049130,
                1049131,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224y-mjgteavxtv5w85",
              "images": [
                "id-11134201-8224y-mjgteavxtv5w85",
                "id-11134201-8224w-mjgteddndwcmae",
                "id-11134201-8224v-mjgteeciuepy61",
                "id-11134201-8224u-mjgteg47al1db2",
                "id-11134201-8224y-mjgteiprn08z32",
                "id-11134201-8224t-mjgtejoszksj82",
                "id-11134201-8224w-mjgteknylath85"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381841,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 39800000000,
              "price_min": 39800000000,
              "price_max": 39800000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "PUTIH",
                    "BiruTua"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 39800000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 360432828855,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 39800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41378012797,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgteavxtv5w85\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2,\"model_id\":360432828855,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgteavxtv5w85\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2,\"model_id\":360432828855,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41378012797",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27744037735,
              "shopid": 1623695925,
              "name": "Limited Advan Smartwatch S1 S1 V2 Ai Voice Ips 2.01 Inch Waterproof Bluetooth Call",
              "label_ids": [
                844931064601283,
                1049130,
                1049131,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224w-mjgtcj2oepdx51",
              "images": [
                "id-11134201-8224w-mjgtcj2oepdx51",
                "id-11134201-82252-mjgtcl066whwe4",
                "id-11134201-8224t-mjgtcnrxu7sybd",
                "id-11134201-8224s-mjgtcq9fsdtt22",
                "id-11134201-8224s-mjgtcra0fd3b7e",
                "id-11134201-8224r-mjgtcs9ywhs71e",
                "id-11134201-8224s-mjgtcu2a6fwn53",
                "id-11134201-8224r-mjgtcvvxoide9f",
                "id-11134201-8224p-mjgtcxn8foxtda"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381783,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 31200000000,
              "price_min": 31200000000,
              "price_max": 31200000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "S1V2 Black",
                    "S1V2 Silver",
                    "S1 Black",
                    "S1 Silver",
                    "S1 Gold",
                    "S1 Taqwa Black",
                    "S1 Taqwa Gold",
                    "S1V2 Gold"
                  ],
                  "images": [
                    "id-11134201-8224p-mjgtd2g0u0w48f",
                    "id-11134201-8224p-mjgtd45dla831a",
                    "id-11134201-8224t-mjgtd559rhtu8e",
                    "id-11134201-82251-mjgtd64fvfnp78",
                    "id-11134201-8224o-mjgtd7uek45f6f",
                    "id-11134201-8224q-mjgtd8vsqfb91a",
                    "id-11134201-8224q-mjgtdanreo02c5",
                    "id-11134201-8224z-mjgtdcetktmr73"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 31200000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 440432822840,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 31200000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 27744037735,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224w-mjgtcj2oepdx51\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":3,\"model_id\":440432822840,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224w-mjgtcj2oepdx51\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":3,\"model_id\":440432822840,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27744037735",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57654653155,
              "shopid": 1666692538,
              "name": "TERBARU itel Smart watch O43 1.43 inch AMOLED Touch Screen IP68 water proof Jam Tangan Pria fitness tracking  SmartWatch",
              "label_ids": [
                844931064601283,
                1049130,
                700005503,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224r-mjgtbuzvhhxi00",
              "images": [
                "id-11134201-8224r-mjgtbuzvhhxi00",
                "id-11134201-8224o-mjgtbxk0og7792",
                "id-11134201-8224q-mjgtbzardladfe",
                "id-11134201-82252-mjgtc1rwj11fc2",
                "id-11134201-8224u-mjgtc2qol8uf2e",
                "id-11134201-82250-mjgtc598rxty2e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381733,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 51900000000,
              "price_min": 51900000000,
              "price_max": 51900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "hijau",
                    "hitam",
                    "biru"
                  ],
                  "images": [
                    "id-11134201-8224o-mjgtc7i4268619",
                    "id-11134201-82252-mjgtc1rwj11fc2",
                    "id-11134201-82251-mjgtc9ztje9y32"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 51900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 445432814130,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 51900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57654653155,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgtbuzvhhxi00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":5,\"model_id\":445432814130,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgtbuzvhhxi00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":5,\"model_id\":445432814130,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57654653155",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56804657794,
              "shopid": 1623695925,
              "name": "Premium Goojodoq Curve Smart Watch New | Ip68 Waterproof | 2.01-Inch Curved Ips Screen | Bluetooth Call | Running Pace | Custom Wallpaper Smartwatch",
              "label_ids": [
                844931064601283,
                1049130,
                1049131,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224o-mjgtalh0vd3b46",
              "images": [
                "id-11134201-8224o-mjgtalh0vd3b46",
                "id-11134201-8224o-mjgtan7ymqys55",
                "id-11134201-82250-mjgtapre17ur16",
                "id-11134201-8224o-mjgtas9jjpq8af",
                "id-11134201-8224q-mjgtat8ly96vd2",
                "id-11134201-82250-mjgtav2c5af74f",
                "id-11134201-82250-mjgtaw14pt6u4d",
                "id-11134201-8224t-mjgtaxudxrsy10",
                "id-11134201-8224q-mjgtazm9kg7847"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381692,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 30416900000,
              "price_min": 30416900000,
              "price_max": 30416900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Sliver-B",
                    "Black-Curved Screen",
                    "Sliver-Curved Screen",
                    "Green-B",
                    "Pink-B",
                    "Black-B"
                  ],
                  "images": [
                    "id-11134201-82251-mjgtb3m86z9ca2",
                    "id-11134201-8224y-mjgtb5cc9eyo91",
                    "id-11134201-8224q-mjgtb6a6xa87ac",
                    "id-11134201-8224p-mjgtb8rtik8y1f",
                    "id-11134201-82250-mjgtbb9c37d14a",
                    "id-11134201-8224w-mjgtbczl9ngj77"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 30416900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 302333714238,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 30416900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56804657794,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgtalh0vd3b46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":9,\"model_id\":302333714238,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgtalh0vd3b46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":9,\"model_id\":302333714238,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56804657794",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56404657715,
              "shopid": 1666733759,
              "name": "100% aman advan smartwatch s1 s1 v2 ai voice ips 2.01 inch waterproof bluetooth call",
              "label_ids": [
                844931064601283,
                700005509,
                1049138,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224v-mjgtad8n9ywzc2",
              "images": [
                "id-11134201-8224v-mjgtad8n9ywzc2",
                "id-11134201-8224t-mjgtae7rtrlz77",
                "id-11134201-8224q-mjgtaf6ukwliba",
                "id-11134201-82251-mjgtahsk5ibo2c",
                "id-11134201-8224q-mjgtakcmja4nc5",
                "id-11134201-8224v-mjgtan0sbx1if0",
                "id-11134201-82250-mjgtapigpt6v40",
                "id-11134201-8224r-mjgtar9lxhj4ab",
                "id-11134201-8224u-mjgtas8kwdfl40"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381683,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 31900000000,
              "price_min": 31900000000,
              "price_max": 31900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "S1V2 Black",
                    "S1V2 Silver",
                    "S1 Black",
                    "S1 Silver",
                    "S1 Gold",
                    "S1 Taqwa Black",
                    "S1 Taqwa Gold",
                    "S1V2 Gold"
                  ],
                  "images": [
                    "id-11134201-8224p-mjgtax7ndbswe9",
                    "id-11134201-8224s-mjgtay66f406ab",
                    "id-11134201-8224u-mjgtaz41ct8hbf",
                    "id-11134201-82251-mjgtb1l06ozkce",
                    "id-11134201-8224y-mjgtb3awddz7bd",
                    "id-11134201-8224v-mjgtb5167sw4ac",
                    "id-11134201-8224v-mjgtb5zw4rgnc5",
                    "id-11134201-8224u-mjgtb7px03r705"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 31900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435432820521,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 31900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56404657715,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgtad8n9ywzc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":10,\"model_id\":435432820521,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgtad8n9ywzc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":10,\"model_id\":435432820521,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56404657715",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55004657814,
              "shopid": 1656110262,
              "name": "KUALITAS SUPER 100% ASLI  SAMSUNG SMARTWATCH XS 11 PRO MAX GPS NFC IP68 WATERPROOF BLUETOOTH CALL JAM SMARTWATCH WANITA PRIA MONITOR DETAK JANTUNG TEKANAN DARAH WIRELESS CHARGING DAN GANTI WALLPAPPER JAM TANGAN WANITA JAM TANGAN COUPLE JAM TANGAN DIGITAL",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224y-mjgt9yjgsn440a",
              "images": [
                "id-11134201-8224y-mjgt9yjgsn440a",
                "id-11134201-8224p-mjgta10l1q85fe",
                "id-11134201-82250-mjgta3hdbkzq55",
                "id-11134201-8224p-mjgta5y03dog41",
                "id-11134201-8224q-mjgta7o1e4na5c",
                "id-11134201-8224p-mjgtaa3u8jr7a9",
                "id-11134201-8224o-mjgtackyonphdb",
                "id-11134201-82250-mjgtadhsv5z97e",
                "id-11134201-82251-mjgtaf5wledde5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381659,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 28149900000,
              "price_min": 28149900000,
              "price_max": 28149900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "1",
                  "options": [
                    "black",
                    "white",
                    "pink",
                    "black."
                  ],
                  "images": [
                    "id-11134201-82252-mjgtaio2nimaba",
                    "id-11134201-8224u-mjgtal63kcn6ce",
                    "id-11134201-8224o-mjgtamxtt539e1",
                    "id-11134201-8224r-mjgtanu5q9l3ae"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 28149900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 355432816246,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 28149900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55004657814,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgt9yjgsn440a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":11,\"model_id\":355432816246,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgt9yjgsn440a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":11,\"model_id\":355432816246,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55004657814",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54104648252,
              "shopid": 1623695925,
              "name": "Cuci Gudang Apexglow Smartwatch T800 Promax Tahanair Bt5.0 Lacakjantung Notifikasi Wa Gps Garansi2Thn Shopeemall",
              "label_ids": [
                844931064601283,
                1049130,
                1049131,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224x-mjgtbo1hd9tu37",
              "images": [
                "id-11134201-8224x-mjgtbo1hd9tu37",
                "id-11134201-8224q-mjgtbqkmw9vnaf",
                "id-11134201-8224w-mjgtbtf6e4g30b",
                "id-11134201-8224z-mjgtbue66i9w1a",
                "id-11134201-8224p-mjgtbw456dqe15",
                "id-11134201-8224s-mjgtbxtcnytc02",
                "id-11134201-8224q-mjgtbzl28x6pa5",
                "id-11134201-8224z-mjgtc1csc6itcd",
                "id-11134201-8224q-mjgtc3vydfyfeb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381732,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 21445100000,
              "price_min": 21445100000,
              "price_max": 21445100000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Spesifikasi",
                  "options": [
                    "Hitam",
                    "Pink",
                    "Putih"
                  ],
                  "images": [
                    "id-11134201-8224v-mjgtc5lol9mrcd",
                    "id-11134201-8224w-mjgtc79wuhhj36",
                    "id-11134201-8224t-mjgtc8y2rc3mef"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 21445100000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 282333718390,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 21445100000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54104648252,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgtbo1hd9tu37\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":6,\"model_id\":282333718390,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgtbo1hd9tu37\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":6,\"model_id\":282333718390,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54104648252",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50954643839,
              "shopid": 1666733759,
              "name": "100% aman itel smart watch o43 1.43 inch amoled touch screen ip68 water proof jam tangan pria fitness tracking  smartwatch",
              "label_ids": [
                844931064601283,
                700005509,
                1049138,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224x-mjgtbh6yp8906c",
              "images": [
                "id-11134201-8224x-mjgtbh6yp8906c",
                "id-11134201-8224q-mjgtbiysqcxz9f",
                "id-11134201-8224s-mjgtblhbs9vk03",
                "id-11134201-8224r-mjgtbn8ew6pv7e",
                "id-11134201-82251-mjgtbo8vl91j64",
                "id-11134201-8224u-mjgtbp8y5wxu28"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381712,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 51900000000,
              "price_min": 51900000000,
              "price_max": 51900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "hijau",
                    "hitam",
                    "biru"
                  ],
                  "images": [
                    "id-11134201-82251-mjgtbr3enncw0c",
                    "id-11134201-8224u-mjgtbp8y5wxu28",
                    "id-11134201-82250-mjgtbswdw26906"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 51900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 445432825865,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 51900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50954643839,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgtbh6yp8906c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":7,\"model_id\":445432825865,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgtbh6yp8906c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":7,\"model_id\":445432825865,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50954643839",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43628008019,
              "shopid": 1666692538,
              "name": "FAST DELIVERY ADVAN Smartwatch S1 S1 V2 AI Voice IPS 2.01 inch Waterproof Bluetooth Call",
              "label_ids": [
                844931064601283,
                700005503,
                1049130,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224s-mjgtamchoyyv51",
              "images": [
                "id-11134201-8224s-mjgtamchoyyv51",
                "id-11134201-8224z-mjgtaou1fny94f",
                "id-11134201-8224s-mjgtarc8mltv1b",
                "id-11134201-8224r-mjgtat3xxq8633",
                "id-11134201-82251-mjgtavmk9q1020",
                "id-11134201-82252-mjgtay3obqpyd2",
                "id-11134201-8224t-mjgtb0ls1o1sea",
                "id-11134201-8224v-mjgtb33dl0qrca",
                "id-11134201-8224o-mjgtb41d7a4if9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381701,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 31600000000,
              "price_min": 31600000000,
              "price_max": 31600000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "S1V2 Black",
                    "S1V2 Silver",
                    "S1 Black",
                    "S1 Silver",
                    "S1 Gold",
                    "S1 Taqwa Black",
                    "S1 Taqwa Gold",
                    "S1V2 Gold"
                  ],
                  "images": [
                    "id-11134201-8224o-mjgtb7n3xzb8a4",
                    "id-11134201-8224s-mjgtb9e0ui9y6b",
                    "id-11134201-8224o-mjgtbbwepn9ia8",
                    "id-11134201-8224y-mjgtbecbxdz78d",
                    "id-11134201-82251-mjgtbf8mfzlydc",
                    "id-11134201-82250-mjgtbgzvzmkhe8",
                    "id-11134201-8224s-mjgtbhyamolge6",
                    "id-11134201-8224x-mjgtbk06imf42c"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 31600000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 345432821118,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 31600000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43628008019,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgtamchoyyv51\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":8,\"model_id\":345432821118,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgtamchoyyv51\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":8,\"model_id\":345432821118,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43628008019",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41528008000,
              "shopid": 1666692538,
              "name": "TERLARIS APEXGLOW Smartwatch T800 ProMax TahanAir BT5.0 LacakJantung Notifikasi WA GPS Garansi2Thn ShopeeMall",
              "label_ids": [
                844931064601283,
                1049130,
                700005503,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-82252-mjgt9sr71ts0ee",
              "images": [
                "id-11134201-82252-mjgt9sr71ts0ee",
                "id-11134201-8224t-mjgt9ugt3e9s6b",
                "id-11134201-8224o-mjgt9veryyv5d8",
                "id-11134201-8224p-mjgt9xwk29dvff",
                "id-11134201-8224u-mjgt9zmgohs0a5",
                "id-11134201-82250-mjgta0jydyx3fa",
                "id-11134201-8224z-mjgta1hp2ltsbb",
                "id-11134201-8224z-mjgta3yno0lf7c",
                "id-11134201-82252-mjgta4xfdmva2b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381643,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 21045100000,
              "price_min": 21045100000,
              "price_max": 21045100000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Spesifikasi",
                  "options": [
                    "Hitam",
                    "Pink",
                    "Putih"
                  ],
                  "images": [
                    "id-11134201-82251-mjgta6gthsldff",
                    "id-11134201-82251-mjgta8x6tm9s57",
                    "id-11134201-8224x-mjgtabehqy2u93"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 21045100000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390432804660,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 21045100000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41528008000,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgt9sr71ts0ee\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":12,\"model_id\":390432804660,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgt9sr71ts0ee\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":12,\"model_id\":390432804660,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41528008000",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56254648241,
              "shopid": 1666692538,
              "name": "TERBARU Goojodoq Curve Smart Watch New | IP68 Waterproof | 2.01-inch Curved IPS Screen | Bluetooth Call | Running Pace | Custom Wallpaper Smartwatch",
              "label_ids": [
                844931064601283,
                1049130,
                700005503,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-82251-mjgt8pn4xz4106",
              "images": [
                "id-11134201-82251-mjgt8pn4xz4106",
                "id-11134201-8224w-mjgt8s41s7wj4c",
                "id-11134201-8224t-mjgt8t24ptz92a",
                "id-11134201-82250-mjgt8vkbd5hg54",
                "id-11134201-8224t-mjgt8y0u72tgbe",
                "id-11134201-8224y-mjgt90innj7k4b",
                "id-11134201-8224w-mjgt93066q6a6c",
                "id-11134201-8224y-mjgt95gwpddy85",
                "id-11134201-8224u-mjgt975t2mm888"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381605,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 29916900000,
              "price_min": 29916900000,
              "price_max": 29916900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Sliver-B",
                    "Black-Curved Screen",
                    "Sliver-Curved Screen",
                    "Green-B",
                    "Pink-B",
                    "Black-B"
                  ],
                  "images": [
                    "id-11134201-8224y-mjgt99u9r5z7f0",
                    "id-11134201-8224r-mjgt9bjl9dzb86",
                    "id-11134201-8224r-mjgt9dcvf3t32a",
                    "id-11134201-82252-mjgt9f1bshs737",
                    "id-11134201-8224p-mjgt9hldtkw304",
                    "id-11134201-8224y-mjgt9jalgttsd4"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 29916900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 405432811103,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 29916900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56254648241,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mjgt8pn4xz4106\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":14,\"model_id\":405432811103,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mjgt8pn4xz4106\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":14,\"model_id\":405432811103,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56254648241",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54954653235,
              "shopid": 1666733759,
              "name": "exclusive apexglow smartwatch t800 promax tahanair bt5.0 lacakjantung notifikasi wa gps garansi2thn shopeemall",
              "label_ids": [
                844931064601283,
                1718093079,
                700005509,
                1049138,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224y-mjgt9l0gpt6t48",
              "images": [
                "id-11134201-8224y-mjgt9l0gpt6t48",
                "id-11134201-82251-mjgt9mq91hj9cb",
                "id-11134201-8224s-mjgt9noqlw5hb8",
                "id-11134201-8224p-mjgt9onybf9f89",
                "id-11134201-82251-mjgt9qf4z47b99",
                "id-11134201-8224x-mjgt9rgufdhgb5",
                "id-11134201-8224u-mjgt9t7gzpj588",
                "id-11134201-8224y-mjgt9uxcfpqafb",
                "id-11134201-82250-mjgt9vzobnk648"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381631,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 20845100000,
              "price_min": 20845100000,
              "price_max": 20845100000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Spesifikasi",
                  "options": [
                    "Hitam",
                    "Pink",
                    "Putih"
                  ],
                  "images": [
                    "id-11134201-8224o-mjgt9z1t2d51a8",
                    "id-11134201-8224w-mjgta0s0c0zn0b",
                    "id-11134201-82250-mjgta1sg91jac3"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 20845100000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 415432811846,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 20845100000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54954653235,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgt9l0gpt6t48\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":13,\"model_id\":415432811846,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgt9l0gpt6t48\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":13,\"model_id\":415432811846,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54954653235",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53854653189,
              "shopid": 1666733759,
              "name": "favorit goojodoq curve smart watch new | ip68 waterproof | 2.01-inch curved ips screen | bluetooth call | running pace | custom wallpaper smartwatch",
              "label_ids": [
                844931064601283,
                700005509,
                1049138,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224u-mjgt8k8jc8aq3b",
              "images": [
                "id-11134201-8224u-mjgt8k8jc8aq3b",
                "id-11134201-8224o-mjgt8msfzime6b",
                "id-11134201-8224q-mjgt8pb16osn4e",
                "id-11134201-82252-mjgt8qb3hh4x2e",
                "id-11134201-8224t-mjgt8rabgu8288",
                "id-11134201-82251-mjgt8sa0f9xi99",
                "id-11134201-8224t-mjgt8u2wow0043",
                "id-11134201-8224z-mjgt8vuirf9d30",
                "id-11134201-8224p-mjgt8ycxrapw68"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381594,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 30816900000,
              "price_min": 30816900000,
              "price_max": 30816900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Sliver-B",
                    "Black-Curved Screen",
                    "Sliver-Curved Screen",
                    "Green-B",
                    "Pink-B",
                    "Black-B"
                  ],
                  "images": [
                    "id-11134201-8224r-mjgt92gcp1j774",
                    "id-11134201-8224x-mjgt946d95abf9",
                    "id-11134201-8224z-mjgt95w5143n69",
                    "id-11134201-8224y-mjgt96tr87pibd",
                    "id-11134201-8224w-mjgt97rk3f9f8f",
                    "id-11134201-8224t-mjgt99hpkikib9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 30816900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 410432803183,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 30816900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53854653189,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224u-mjgt8k8jc8aq3b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":15,\"model_id\":410432803183,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224u-mjgt8k8jc8aq3b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":15,\"model_id\":410432803183,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53854653189",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47904668218,
              "shopid": 1666692538,
              "name": "DISKON 100% Asli  Samsung SmartWatch XS 11 PRO MAX Gps NFC IP68 Waterproof Bluetooth Call Jam Smartwatch Wanita Pria Monitor Detak Jantung Tekanan Darah wireless charging Dan Ganti Wallpapper Jam Tangan Wanita Jam Tangan Couple Jam Tangan Digital Wanita",
              "label_ids": [
                844931064601283,
                1049130,
                700005503,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224r-mjgt7ut9qvpg3e",
              "images": [
                "id-11134201-8224r-mjgt7ut9qvpg3e",
                "id-11134201-8224w-mjgt7vqimznk2b",
                "id-11134201-8224v-mjgt7y72ptky19",
                "id-11134201-8224p-mjgt80sucwzl93",
                "id-11134201-8224x-mjgt81rk5r0i9b",
                "id-11134201-82250-mjgt82pdhuytc0",
                "id-11134201-8224o-mjgt8572jmrn14",
                "id-11134201-8224r-mjgt87pjsxkz16",
                "id-11134201-8224u-mjgt88ns09hfed"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381554,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 26949900000,
              "price_min": 26949900000,
              "price_max": 26949900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "1",
                  "options": [
                    "black",
                    "white",
                    "pink",
                    "black."
                  ],
                  "images": [
                    "id-11134201-82252-mjgt8acxclc7b0",
                    "id-11134201-8224z-mjgt8c1v5s07dd",
                    "id-11134201-8224r-mjgt8dsh51ja62",
                    "id-11134201-8224s-mjgt8eq9ds0762"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 26949900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 234639959423,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 26949900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47904668218,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgt7ut9qvpg3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":16,\"model_id\":234639959423,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgt7ut9qvpg3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":16,\"model_id\":234639959423,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47904668218",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57504643565,
              "shopid": 1666692538,
              "name": "ORIGINAL PrimeWatch ULTRA2 Smartwatch Stainless Bluetooth 2.2\" Infinite Display Dynamic Island Pria Wanita",
              "label_ids": [
                844931064601283,
                1049130,
                700005503,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224s-mjgt5obzo6x321",
              "images": [
                "id-11134201-8224s-mjgt5obzo6x321",
                "id-11134201-8224u-mjgt5qu3wdmp6a",
                "id-11134201-8224v-mjgt5sizlr7p12",
                "id-11134201-8224v-mjgt5u8bp1q9f0",
                "id-11134201-82252-mjgt5vymxzibd7",
                "id-11134201-8224o-mjgt5yh06ozn0f",
                "id-11134201-8224s-mjgt60y18jyb84",
                "id-11134201-8224v-mjgt63f80xz59c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381467,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 32099900000,
              "price_min": 32099900000,
              "price_max": 32099900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "FULLBLACK+LINK BLACK",
                    "SILBLACK+LINK SILVER",
                    "BLACKBLUE+LINK BLACK",
                    "SIL-BLACK+LINK BLACK",
                    "SILBLUE-LINK BLACK",
                    "CREAM+LINK SILVER",
                    "ORANGE+LINK SILVER",
                    "PINK+LINK SILVER",
                    "FULBLACK+LINK SILVER"
                  ],
                  "images": [
                    "id-11134201-8224x-mjgt66ki5ngg18",
                    "id-11134201-8224o-mjgt67hga138c7",
                    "id-11134201-8224q-mjgt695wey2p4c",
                    "id-11134201-8224t-mjgt6bmizocm8b",
                    "id-11134201-8224p-mjgt6db2lngndf",
                    "id-11134201-8224o-mjgt6fufkzk687",
                    "id-11134201-8224v-mjgt6iafvp4wd7",
                    "id-11134201-8224o-mjgt6k29ob9g9f",
                    "id-11134201-8224o-mjgt6kzgkqo50a"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 32099900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 385432800246,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 32099900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57504643565,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgt5obzo6x321\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":17,\"model_id\":385432800246,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgt5obzo6x321\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":17,\"model_id\":385432800246,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57504643565",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56404643617,
              "shopid": 1666733759,
              "name": "favorit primewatch ultra2 smartwatch stainless bluetooth 2.2\" infinite display dynamic island pria wanita",
              "label_ids": [
                844931064601283,
                1718093079,
                700005509,
                1049138,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224r-mjgt5hiw01kxb7",
              "images": [
                "id-11134201-8224r-mjgt5hiw01kxb7",
                "id-11134201-82252-mjgt5ikh07pg51",
                "id-11134201-82252-mjgt5l4dhvr554",
                "id-11134201-8224s-mjgt5m4dj5ky3d",
                "id-11134201-8224q-mjgt5n788553ce",
                "id-11134201-82252-mjgt5o5sohs5e9",
                "id-11134201-8224s-mjgt5p6wsef9d8",
                "id-11134201-8224u-mjgt5qxy2aklf3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381449,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 32999900000,
              "price_min": 32999900000,
              "price_max": 32999900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "FULLBLACK+LINK BLACK",
                    "SILBLACK+LINK SILVER",
                    "BLACKBLUE+LINK BLACK",
                    "SIL-BLACK+LINK BLACK",
                    "SILBLUE-LINK BLACK",
                    "CREAM+LINK SILVER",
                    "ORANGE+LINK SILVER",
                    "PINK+LINK SILVER",
                    "FULBLACK+LINK SILVER"
                  ],
                  "images": [
                    "id-11134201-82251-mjgt5uo9jhfq31",
                    "id-11134201-8224o-mjgt5vmk1lomb5",
                    "id-11134201-8224z-mjgt5xg7fjlu02",
                    "id-11134201-8224x-mjgt5z6l4xl020",
                    "id-11134201-8224y-mjgt61onyjusd7",
                    "id-11134201-8224r-mjgt62oi6kn557",
                    "id-11134201-82252-mjgt65kcyvif40",
                    "id-11134201-8224t-mjgt66jsr66a6d",
                    "id-11134201-8224u-mjgt67jdc8p1e1"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 32999900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 425432795748,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 32999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56404643617,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgt5hiw01kxb7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":19,\"model_id\":425432795748,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgt5hiw01kxb7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":19,\"model_id\":425432795748,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56404643617",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50854648197,
              "shopid": 1656110262,
              "name": "WAJIB PUNYA ROLEMANI 2025 NEW T2 PRO MAX JAM SMARTWATCH ORIGINAL BLUETOOTH CALL MONITOR BLOOD PRESSURE AND BLOOD SUGAR HEALTH MONITORING MORE SPORTS MODE",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224q-mjgt4obe9ds558",
              "images": [
                "id-11134201-8224q-mjgt4obe9ds558",
                "id-11134201-8224t-mjgt4q2crgg6ef",
                "id-11134201-8224z-mjgt4smheqrq26",
                "id-11134201-8224r-mjgt4ifqi6me0d",
                "id-11134201-8224p-mjgt4vc417gld0",
                "id-11134201-8224v-mjgt4xvd2ps39e",
                "id-11134201-82251-mjgt50gmgfev20",
                "id-11134201-8224v-mjgt527n2cqo9c",
                "id-11134201-8224y-mjgt54pijxty74"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381408,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 32800000000,
              "price_min": 32800000000,
              "price_max": 32800000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Perak",
                    "Hitam",
                    "Emas"
                  ],
                  "images": [
                    "id-11134201-8224y-mjgt57dksnwn9f",
                    "id-11134201-82250-mjgt5961t53b76",
                    "id-11134201-8224p-mjgt5aw70b9c56"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 32800000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 395432788054,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 32800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50854648197,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgt4obe9ds558\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":23,\"model_id\":395432788054,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgt4obe9ds558\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":23,\"model_id\":395432788054,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50854648197",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48104677735,
              "shopid": 1623695925,
              "name": "Ready Stock Xiaomi Redmi Watch 5 Active | 2.0\" Lcd Display | Mendukung 140+ Mode Olahraga | Tahan Air 5Atm",
              "label_ids": [
                844931064601283,
                1049130,
                1049131,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224t-mjgt61g455og13",
              "images": [
                "id-11134201-8224t-mjgt61g455og13",
                "id-11134201-8224x-mjgt638nm32aa1",
                "id-11134201-8224y-mjgt64x7vw8x7e",
                "id-11134201-82250-mjgt67falatgff",
                "id-11134201-8224y-mjgt694r7ksl65",
                "id-11134201-8224u-mjgt6atuafpj0d",
                "id-11134201-8224v-mjgt6cib7g1y62"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381462,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 59600000000,
              "price_min": 59600000000,
              "price_max": 59600000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "MIDNIGHT BLACK",
                    "MATTE SILVER"
                  ],
                  "images": [
                    "id-11134201-8224p-mjgt6f51xc04a0",
                    "id-11134201-8224s-mjgt6g1p08htd6"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 59600000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 375432796325,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 59600000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48104677735,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgt61g455og13\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":18,\"model_id\":375432796325,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgt61g455og13\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":18,\"model_id\":375432796325,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48104677735",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46004677779,
              "shopid": 1623695925,
              "name": "Paket Hemat Rolemani 2025 New T2 Pro Max Jam Smartwatch Original Bluetooth Call Monitor Blood Pressure And Blood Sugar Health Monitoring More Sports Mode",
              "label_ids": [
                844931064601283,
                1049130,
                1049131,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224q-mjgt4duk0jr8c9",
              "images": [
                "id-11134201-8224q-mjgt4duk0jr8c9",
                "id-11134201-8224p-mjgt4fm6frpd83",
                "id-11134201-8224o-mjgt4gjtq5mua0",
                "id-11134201-82250-mjgt4hhlb20y0e",
                "id-11134201-8224r-mjgt4ifqi6me0d",
                "id-11134201-8224p-mjgt4kx5dam91d",
                "id-11134201-8224p-mjgt4lvg5c020d",
                "id-11134201-8224t-mjgt4od7xdz699",
                "id-11134201-8224x-mjgt4qw7lqf78f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381389,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 33400000000,
              "price_min": 33400000000,
              "price_max": 33400000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Perak",
                    "Hitam",
                    "Emas"
                  ],
                  "images": [
                    "id-11134201-8224p-mjgt4tgbtkhzd0",
                    "id-11134201-8224t-mjgt4v40okxx90",
                    "id-11134201-8224y-mjgt4wgnwphgf3"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 33400000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 310433368009,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 33400000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46004677779,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgt4duk0jr8c9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":24,\"model_id\":310433368009,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgt4duk0jr8c9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":24,\"model_id\":310433368009,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46004677779",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44504673163,
              "shopid": 1623695925,
              "name": "Original Lige Asli Jam Pintar Pria Layar Sentuh Penuh Olahraga Tahan Air Kebugaran Menonton Bluetooth Smartwatch Untuk Android Ios",
              "label_ids": [
                844931064601283,
                1049130,
                1049131,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224v-mjgt56sgwvlwf7",
              "images": [
                "id-11134201-8224v-mjgt56sgwvlwf7",
                "id-11134201-82251-mjgt59bj5vyee8",
                "id-11134201-8224o-mjgt5aawq49273",
                "id-11134201-8224o-mjgt5c2yll39cc",
                "id-11134201-8224w-mjgt5d3g1ds0d7",
                "id-11134201-8224o-mjgt5eunbi867e",
                "id-11134201-8224r-mjgt5fudbtog1d",
                "id-11134201-82251-mjgt5gvewfeu85",
                "id-11134201-8224r-mjgt5jf6pkw18c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381430,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 48000000000,
              "price_min": 48000000000,
              "price_max": 48000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Bw0382",
                  "options": [
                    "Baja Hitam + Silikon",
                    "Baja Perak + Silikon",
                    "Hitam",
                    "Perak"
                  ],
                  "images": [
                    "id-11134201-8224u-mjgt5n2m330ie5",
                    "id-11134201-82252-mjgt5otbcao23c",
                    "id-11134201-8224x-mjgt5pumxwcie7",
                    "id-11134201-8224x-mjgt5sd1z6di10"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 48000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 277333706369,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 48000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44504673163,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgt56sgwvlwf7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":21,\"model_id\":277333706369,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgt56sgwvlwf7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":21,\"model_id\":277333706369,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44504673163",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57354643553,
              "shopid": 1666733759,
              "name": "new arrival lige asli jam pintar pria layar sentuh penuh olahraga tahan air kebugaran menonton bluetooth smartwatch untuk android ios",
              "label_ids": [
                844931064601283,
                1049138,
                700005509,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "id-11134201-8224p-mjgt3bmy4dmt89",
              "images": [
                "id-11134201-8224p-mjgt3bmy4dmt89",
                "id-11134201-8224w-mjgt3e6qqzgg69",
                "id-11134201-8224r-mjgt3gsckqo5f3",
                "id-11134201-8224o-mjgt3htsgutg56",
                "id-11134201-8224s-mjgt3ivdxvr9d0",
                "id-11134201-8224x-mjgt3jw4cphi52",
                "id-11134201-8224x-mjgt3kvixgjn9a",
                "id-11134201-8224u-mjgt3lwp11qb12",
                "id-11134201-8224p-mjgt3ogjg9ol7b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381339,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 48700000000,
              "price_min": 48700000000,
              "price_max": 48700000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Bw0382",
                  "options": [
                    "Baja Hitam + Silikon",
                    "Baja Perak + Silikon",
                    "Hitam",
                    "Perak"
                  ],
                  "images": [
                    "id-11134201-8224s-mjgt3r44232f95",
                    "id-11134201-8224v-mjgt3s2n3v9f0e",
                    "id-11134201-8224t-mjgt3t1rkt8j0b",
                    "id-11134201-8224s-mjgt3u2elh4y93"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 48700000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 345432786037,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 48700000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57354643553,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224p-mjgt3bmy4dmt89\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049138,700005509,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":27,\"model_id\":345432786037,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224p-mjgt3bmy4dmt89\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049138,700005509,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":27,\"model_id\":345432786037,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57354643553",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55154643565,
              "shopid": 1666733759,
              "name": "official teevo smartwatch s9 max 44mm gps nfc bluetooth waterproof wanita pria jam tangan pintar bisa telponan dan ganti wallpapper smart watch",
              "label_ids": [
                844931064601283,
                1718093079,
                700005509,
                1049138,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224q-mjgt1q9ueqkg60",
              "images": [
                "id-11134201-8224q-mjgt1q9ueqkg60",
                "id-11134201-8224o-mjgt1stni77o50",
                "id-11134201-8224o-mjgt1tss90qo62",
                "id-11134201-8224v-mjgt1vmm1a8069",
                "id-11134201-82251-mjgt1wlulo8wfd",
                "id-11134201-82250-mjgt1ybyqyo7a1",
                "id-11134201-82250-mjgt1zbnfitj3e",
                "id-11134201-8224r-mjgt20ajv5dv9b",
                "id-11134201-8224z-mjgt21dcx53bd4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381262,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 25100000000,
              "price_min": 25100000000,
              "price_max": 25100000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Merah Jambu",
                    "Abu-abu"
                  ],
                  "images": [
                    "id-11134201-8224x-mjgt23lnlo1xac",
                    "id-11134201-8224y-mjgt24ju4ide63",
                    "id-11134201-8224y-mjgt26aeyzuqe4"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 25100000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 385432772461,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 25100000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55154643565,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgt1q9ueqkg60\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":31,\"model_id\":385432772461,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgt1q9ueqkg60\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":31,\"model_id\":385432772461,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55154643565",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51854657787,
              "shopid": 1623695925,
              "name": "Recommended Teevo Smartwatch S9 Max 44Mm Gps Nfc Bluetooth Waterproof Wanita Pria Jam Tangan Pintar Bisa Telponan Dan Ganti Wallpapper Smart Watch",
              "label_ids": [
                844931064601283,
                1049131,
                1049130,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224t-mjgt3gi4o5xge7",
              "images": [
                "id-11134201-8224t-mjgt3gi4o5xge7",
                "id-11134201-8224z-mjgt3j2fzncz7e",
                "id-11134201-8224s-mjgt3ljp03ra34",
                "id-11134201-82250-mjgt3o0ywtmq71",
                "id-11134201-8224x-mjgt3p15cjrb46",
                "id-11134201-8224o-mjgt3qslzu2oe2",
                "id-11134201-8224p-mjgt3siqq5fqe2",
                "id-11134201-8224u-mjgt3v1eurcxfa",
                "id-11134201-8224q-mjgt3wt3qdxj5a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381352,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 24700000000,
              "price_min": 24700000000,
              "price_max": 24700000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Merah Jambu",
                    "Abu-abu"
                  ],
                  "images": [
                    "id-11134201-8224x-mjgt3zlx179fd2",
                    "id-11134201-8224t-mjgt423p7chvfa",
                    "id-11134201-82251-mjgt44kzcjcw0c"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 24700000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 267333909165,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 24700000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51854657787,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgt3gi4o5xge7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049131,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":26,\"model_id\":267333909165,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgt3gi4o5xge7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049131,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":26,\"model_id\":267333909165,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51854657787",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48204663620,
              "shopid": 1721996639,
              "name": "GPS GEODETIC HUAYI PLUS GNSS RECEIVER / PERALATAN SURVEI KONSTRUKSI",
              "label_ids": [
                844931064601283,
                1049122,
                1059152,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8260u-mjgt2cpjnkslda",
              "images": [
                "sg-11134201-8260u-mjgt2cpjnkslda",
                "sg-11134201-8262s-mjgt2cwtpatj4a",
                "sg-11134201-8262b-mjgt2d2x7xtw5d",
                "sg-11134201-82602-mjgt2dcyykuc5e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381270,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 7500000000000,
              "price_min": 7500000000000,
              "price_max": 7500000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 7499000000000,
                "strikethrough_price": 7500000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1333128427094016,
                "discount_text": null,
                "model_id": 390432769274,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1333128427094016,
                  "voucher_code": "6AR510K",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1768380960,
                    "end_time": 1774950960,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 100000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 7500000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "T-M24",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48204663620,
            "shopid": 1721996639,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjgt2cpjnkslda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049122,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":30,\"model_id\":390432769274,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjgt2cpjnkslda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049122,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":30,\"model_id\":390432769274,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48204663620",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46054673191,
              "shopid": 1656110262,
              "name": "WAJIB PUNYA TEEVO SMARTWATCH S9 MAX 44MM GPS NFC BLUETOOTH WATERPROOF WANITA PRIA JAM TANGAN PINTAR BISA TELPONAN DAN GANTI WALLPAPPER SMART WATCH",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224o-mjgt3sjcw003eb",
              "images": [
                "id-11134201-8224o-mjgt3sjcw003eb",
                "id-11134201-82250-mjgt3ubchybm4f",
                "id-11134201-8224r-mjgt3w5ba0hscb",
                "id-11134201-8224y-mjgt3xzx2tqb54",
                "id-11134201-8224t-mjgt3z0im41z2c",
                "id-11134201-8224p-mjgt40thaux0ff",
                "id-11134201-8224r-mjgt42nu4lj530",
                "id-11134201-8224r-mjgt459n7nya87",
                "id-11134201-8224y-mjgt47us3u9w4d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381366,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 24400000000,
              "price_min": 24400000000,
              "price_max": 24400000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Merah Jambu",
                    "Abu-abu"
                  ],
                  "images": [
                    "id-11134201-8224y-mjgt49t7hjib72",
                    "id-11134201-8224r-mjgt4bkjnaio0b",
                    "id-11134201-82252-mjgt4dgu1jpe26"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 24400000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 380432778421,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 24400000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46054673191,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgt3sjcw003eb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":25,\"model_id\":380432778421,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgt3sjcw003eb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":25,\"model_id\":380432778421,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46054673191",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45254668196,
              "shopid": 1623695925,
              "name": "Best Seller Jete Smartwatch Fr13 Jam Tangan 1.85 Ips Screen Display Ip68 Waterproof Bluetooth Smart Watch Running Sport Mode",
              "label_ids": [
                844931064601283,
                1049131,
                1049130,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224s-mjgt1ezvl0cg46",
              "images": [
                "id-11134201-8224s-mjgt1ezvl0cg46",
                "id-11134201-8224p-mjgt1fyba1adde",
                "id-11134201-82252-mjgt1gxxji8480",
                "id-11134201-8224q-mjgt1ioy17ut7f",
                "id-11134201-8224r-mjgt1l824c1t33",
                "id-11134201-8224s-mjgt1m6icxs6f6",
                "id-11134201-82250-mjgt1nxumwhz7c",
                "id-11134201-8224s-mjgt1pnb96h134",
                "id-11134201-8224w-mjgt1s5htoud48"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381251,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 36800000000,
              "price_min": 36800000000,
              "price_max": 36800000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Rosegold"
                  ],
                  "images": [
                    "id-11134201-8224y-mjgt1upfafic5d",
                    "id-11134201-8224u-mjgt1x7a2qdj42"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 36800000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435432768720,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 36800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45254668196,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgt1ezvl0cg46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049131,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":32,\"model_id\":435432768720,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgt1ezvl0cg46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049131,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":32,\"model_id\":435432768720,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45254668196",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43278017712,
              "shopid": 1656110262,
              "name": "DISKON ITEL SMART WATCH ISW-O20 AI WATCH FACE | LAYAR HD 2.04\" | PEMANTAU KESEHATAN 24 JAM | PANGGILAN BT | TAHAN AIR IP68",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224r-mjgt2iqeky6946",
              "images": [
                "id-11134201-8224r-mjgt2iqeky6946",
                "id-11134201-8224u-mjgt2lasv56o35",
                "id-11134201-8224u-mjgt2nv3obnrd7",
                "id-11134201-8224q-mjgt2qiuojr828",
                "id-11134201-8224z-mjgt2t47rqx181",
                "id-11134201-8224w-mjgt2vp7widfc9",
                "id-11134201-8224w-mjgt2yaxmtj86d",
                "id-11134201-8224t-mjgt2zbmu58mbe",
                "id-11134201-8224t-mjgt31wew55226"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381324,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 33200000000,
              "price_min": 33200000000,
              "price_max": 33200000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Merah Muda",
                    "Pink+STRAP",
                    "O20Black+Strap Pink",
                    "O20Black+Strap White",
                    "Hijau Muda",
                    "Hijau Botol",
                    "Biru",
                    "Hitam"
                  ],
                  "images": [
                    "id-11134201-8224s-mjgt3636bhmq9e",
                    "id-11134201-8224v-mjgt37v3z94z69",
                    "id-11134201-8224t-mjgt39ncg0snc4",
                    "id-11134201-8224u-mjgt3bex5frbea",
                    "id-11134201-8224w-mjgt3cnhqu4h1c",
                    "id-11134201-8224r-mjgt3dp9awhvc1",
                    "id-11134201-8224v-mjgt3epabc3nfd",
                    "id-11134201-8224p-mjgt3h9dfu9w55"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 33200000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 302333689776,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 33200000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43278017712,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgt2iqeky6946\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":28,\"model_id\":302333689776,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgt2iqeky6946\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":28,\"model_id\":302333689776,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43278017712",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55604652996,
              "shopid": 1666692538,
              "name": "TERBARU itel Smart Watch ISW-O20 AI Watch Face | Layar HD 2.04\" | Pemantau Kesehatan 24 Jam | Panggilan BT | Tahan Air IP68",
              "label_ids": [
                844931064601283,
                700005503,
                1049130,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224x-mjgt0pi8gohzb5",
              "images": [
                "id-11134201-8224x-mjgt0pi8gohzb5",
                "id-11134201-82251-mjgt0r7fd72da1",
                "id-11134201-8224w-mjgt0s5nucxv6f",
                "id-11134201-82250-mjgt0unk9m2s94",
                "id-11134201-8224o-mjgt0x5kzdona8",
                "id-11134201-8224u-mjgt0zn5uupz23",
                "id-11134201-8224p-mjgt10js5m9w0c",
                "id-11134201-8224q-mjgt1295qadf5e",
                "id-11134201-8224w-mjgt14pitq83c4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381232,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 35000000000,
              "price_min": 35000000000,
              "price_max": 35000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Merah Muda",
                    "Pink+STRAP",
                    "O20Black+Strap Pink",
                    "O20Black+Strap White",
                    "Hijau Muda",
                    "Hijau Botol",
                    "Biru",
                    "Hitam"
                  ],
                  "images": [
                    "id-11134201-82250-mjgt16zi9bet14",
                    "id-11134201-82252-mjgt19g5p1c529",
                    "id-11134201-8224o-mjgt1ae5e29s83",
                    "id-11134201-8224y-mjgt1c4xm2o7f4",
                    "id-11134201-8224q-mjgt1d2oc2kjee",
                    "id-11134201-8224p-mjgt1er8zxfq7d",
                    "id-11134201-8224x-mjgt1ha5wjk240",
                    "id-11134201-8224x-mjgt1i9ka9s58a"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 35000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 380432775219,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 35000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55604652996,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgt0pi8gohzb5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":33,\"model_id\":380432775219,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgt0pi8gohzb5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":33,\"model_id\":380432775219,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55604652996",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52504653054,
              "shopid": 1666733759,
              "name": "wajib punya jete smartwatch fr13 jam tangan 1.85 ips screen display ip68 waterproof bluetooth smart watch running sport mode",
              "label_ids": [
                844931064601283,
                700005509,
                1049138,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224r-mjgszr2lgykgfe",
              "images": [
                "id-11134201-8224r-mjgszr2lgykgfe",
                "id-11134201-8224r-mjgszstqoohw57",
                "id-11134201-8224t-mjgszvct0jk74a",
                "id-11134201-8224u-mjgszxwweu4g16",
                "id-11134201-8224o-mjgt00gs77ye57",
                "id-11134201-8224v-mjgt02yoz47851",
                "id-11134201-8224q-mjgt03xgrjlw81",
                "id-11134201-8224o-mjgt06gk2kg387",
                "id-11134201-82250-mjgt07ibjtoi28"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381176,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 35500000000,
              "price_min": 35500000000,
              "price_max": 35500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Rosegold"
                  ],
                  "images": [
                    "id-11134201-8224r-mjgt0a0rbshs01",
                    "id-11134201-8224v-mjgt0azqrj7o60"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 35500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 415432770160,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 35500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52504653054,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgszr2lgykgfe\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":36,\"model_id\":415432770160,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgszr2lgykgfe\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":36,\"model_id\":415432770160,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52504653054",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47354677692,
              "shopid": 1666733759,
              "name": "cuci gudang itel smart watch isw-o20 ai watch face | layar hd 2.04\" | pemantau kesehatan 24 jam | panggilan bt | tahan air ip68",
              "label_ids": [
                844931064601283,
                700005509,
                1049138,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "id-11134201-8224v-mjgt0mfpsi6e26",
              "images": [
                "id-11134201-8224v-mjgt0mfpsi6e26",
                "id-11134201-8224o-mjgt0ozxk4ci8f",
                "id-11134201-82251-mjgt0qtvoav57d",
                "id-11134201-8224u-mjgt0slvvbpd40",
                "id-11134201-8224p-mjgt0tn0lpfq3a",
                "id-11134201-82252-mjgt0w6sx2pw69",
                "id-11134201-82251-mjgt0ytae3npaa",
                "id-11134201-82251-mjgt0zu687wg89",
                "id-11134201-8224p-mjgt11ltnx1e19"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381228,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 34800000000,
              "price_min": 34800000000,
              "price_max": 34800000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Merah Muda",
                    "Pink+STRAP",
                    "O20Black+Strap Pink",
                    "O20Black+Strap White",
                    "Hijau Muda",
                    "Hijau Botol",
                    "Biru",
                    "Hitam"
                  ],
                  "images": [
                    "id-11134201-8224v-mjgt169xf8xtdc",
                    "id-11134201-8224q-mjgt180dxtdy96",
                    "id-11134201-8224o-mjgt190qups22f",
                    "id-11134201-8224p-mjgt1bksuebob8",
                    "id-11134201-8224q-mjgt1ckkx7ghed",
                    "id-11134201-8224z-mjgt1dk1pzbadb",
                    "id-11134201-82252-mjgt1eng8kxs3a",
                    "id-11134201-8224y-mjgt1ggase1138"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 34800000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 405432768272,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 34800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47354677692,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgt0mfpsi6e26\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":35,\"model_id\":405432768272,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgt0mfpsi6e26\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":35,\"model_id\":405432768272,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47354677692",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43878012750,
              "shopid": 1656110262,
              "name": "MURAH OFFICIAL ITEL SMARTWATCH O43 MAX SMART WATCH 1.43 INCH AMOLED TOUCH SCREEN IP68 JAM TANGAN PRIA FITNESS TRACKING",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224z-mjgt0yo0hk3k01",
              "images": [
                "id-11134201-8224z-mjgt0yo0hk3k01",
                "id-11134201-8224v-mjgt11b48nb7a7",
                "id-11134201-8224v-mjgt13x8g0019e",
                "id-11134201-8224o-mjgt15rfknpced",
                "id-11134201-82250-mjgt16rvrjsx90",
                "id-11134201-8224p-mjgt17u4sy6806"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381229,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 46800000000,
              "price_min": 46800000000,
              "price_max": 46800000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "hijau",
                    "O43+Strap",
                    "hitam",
                    "biru"
                  ],
                  "images": [
                    "id-11134201-8224z-mjgt1b6imbyeb3",
                    "id-11134201-8224w-mjgt1cy08qh25c",
                    "id-11134201-8224x-mjgt1er404qsf9",
                    "id-11134201-8224y-mjgt1fs1iltx19"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 46800000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 420432768382,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 46800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43878012750,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224z-mjgt0yo0hk3k01\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":34,\"model_id\":420432768382,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224z-mjgt0yo0hk3k01\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":34,\"model_id\":420432768382,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43878012750",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55204657574,
              "shopid": 1656110262,
              "name": "READY STOCK SMARTWATCH FR13 JAM TANGAN 1.85 IPS SCREEN DISPLAY IP68 WATERPROOF BLUETOOTH  RUNNING SPORT MODE",
              "label_ids": [
                844931064601283,
                700005505,
                1049134,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224t-mjgsxk0c6yh2f6",
              "images": [
                "id-11134201-8224t-mjgsxk0c6yh2f6",
                "id-11134201-8224y-mjgsxl9zyn0lbd",
                "id-11134201-8224x-mjgsxmbfur5y69",
                "id-11134201-82251-mjgsxo5mwnb98f",
                "id-11134201-8224t-mjgsxp60hc751a",
                "id-11134201-8224s-mjgsxq8mqyo5c8",
                "id-11134201-8224t-mjgsxrb6r2me22",
                "id-11134201-8224s-mjgsxsft1nut56",
                "id-11134201-8224y-mjgsxua4i8lg7c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381069,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 34820000000,
              "price_min": 34820000000,
              "price_max": 34820000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Rose Gold"
                  ],
                  "images": [
                    "id-11134201-8224x-mjgsxxzls7wie3",
                    "id-11134201-82251-mjgsy0klhkox69"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 34820000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 325432752702,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 34820000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55204657574,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgsxk0c6yh2f6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005505,1049134,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":38,\"model_id\":325432752702,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgsxk0c6yh2f6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005505,1049134,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":38,\"model_id\":325432752702,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55204657574",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55104657537,
              "shopid": 1542929270,
              "name": "DW8200 Watband Bezel Ice Transparent Watband Strap and Cover Customize Colors Silicone Replacement For DW8200 With Tools",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-8260w-mjgsxp7lg6x2a5",
              "images": [
                "sg-11134201-8260w-mjgsxp7lg6x2a5",
                "sg-11134201-825zp-mjgsxq0nvvgj51",
                "sg-11134201-8262c-mjgsxqnnuubk70",
                "sg-11134201-825zz-mjgsxr7kmio39f",
                "sg-11134201-82630-mjgsxrse4nwg7b",
                "sg-11134201-82613-mjgsxsd4wiyue7",
                "sg-11134201-82611-mjgsxsvgl81vb2",
                "sg-11134201-8260s-mjgsxtf5zf2d2b",
                "sg-11134201-8261k-mjgsxu33e6m895"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381066,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 201750000000,
              "price_min": 201750000000,
              "price_max": 201750000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Transparent",
                    "Purple",
                    "Green",
                    "Brown Red",
                    "Blue",
                    "Deep Brown",
                    "Red",
                    "Brown",
                    "New Green",
                    "Olive Green",
                    "Black Green"
                  ],
                  "images": [
                    "sg-11134201-8260s-mjgsxtf5zf2d2b",
                    "sg-11134201-8261k-mjgsxu33e6m895",
                    "sg-11134201-8261n-mjgsxupsim0x86",
                    "sg-11134201-8260t-mjgsxv1p3futce",
                    "sg-11134201-825zq-mjgsxve08937ff",
                    "sg-11134201-8260c-mjgsxwrio2dfb4",
                    "sg-11134201-8262k-mjgsxxg7wcuf1d",
                    "sg-11134201-82606-mjgsxy3pl3458f",
                    "sg-11134201-825zy-mjgsxyx84w769f",
                    "sg-11134201-82609-mjgsxzqokt1fe8",
                    "sg-11134201-8262n-mjgsy0hqk0znd3"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "DW8200"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 201750000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 320432749511,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 201750000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55104657537,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260w-mjgsxp7lg6x2a5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":39,\"model_id\":320432749511,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260w-mjgsxp7lg6x2a5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":39,\"model_id\":320432749511,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55104657537",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53204657622,
              "shopid": 1656110262,
              "name": "NEW ARRIVAL LIGE JAM TANGAN PINTAR OLAHRAGA TAHAN AIR PANGGILAN BLUETOOTH PRIA 420MAH PEMANTAUAN KESEHATAN IP68 JAM TANGAN PINTAR PRIA TAHAN AIR SMARTWATCH MEN",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-82251-mjgswkkhh8uaeb",
              "images": [
                "id-11134201-82251-mjgswkkhh8uaeb",
                "id-11134201-8224t-mjgswmcn241vde",
                "id-11134201-8224v-mjgswneqmuwy71",
                "id-11134201-8224x-mjgswohox2ps71",
                "id-11134201-8224u-mjgswrcctngjf9",
                "id-11134201-8224t-mjgswt73ywhtcd",
                "id-11134201-8224z-mjgswu99j8qvd7",
                "id-11134201-82252-mjgswwwitslfb4",
                "id-11134201-8224s-mjgswxwfl4at7c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381033,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 43199900000,
              "price_min": 43199900000,
              "price_max": 43199900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Bw0667+Charge",
                  "options": [
                    "black + 2tail",
                    "black(led)",
                    "black(led)+ 2tail",
                    "black",
                    "mesh black + 2tail",
                    "yellow"
                  ],
                  "images": [
                    "id-11134201-8224y-mjgsx03a50jk08",
                    "id-11134201-8224u-mjgsx12qmlfn13",
                    "id-11134201-8224w-mjgsx3nthona63",
                    "id-11134201-8224x-mjgsx675rs3p69",
                    "id-11134201-8224y-mjgsx7xqf75u54",
                    "id-11134201-82250-mjgsx8zz400616"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 43199900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 307333685443,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 43199900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53204657622,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mjgswkkhh8uaeb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":42,\"model_id\":307333685443,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mjgswkkhh8uaeb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":42,\"model_id\":307333685443,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53204657622",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52804657572,
              "shopid": 1623695925,
              "name": "Original Lige Jam Tangan Pintar Olahraga Tahan Air Panggilan Bluetooth Pria 420Mah Pemantauan Kesehatan Ip68 Jam Tangan Pintar Pria Tahan Air Smartwatch Men",
              "label_ids": [
                844931064601283,
                1049130,
                1049131,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224u-mjgsw9pcfbia9e",
              "images": [
                "id-11134201-8224u-mjgsw9pcfbia9e",
                "id-11134201-8224p-mjgswchfuubpc5",
                "id-11134201-8224u-mjgswe84pypzec",
                "id-11134201-8224p-mjgswgstb18g8e",
                "id-11134201-8224y-mjgswikewo3lde",
                "id-11134201-8224p-mjgswl66xurpe3",
                "id-11134201-82252-mjgswmymi9s3e4",
                "id-11134201-8224u-mjgswo1i0r9ef1",
                "id-11134201-8224v-mjgswp1b41kw43"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381022,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 43199900000,
              "price_min": 43199900000,
              "price_max": 43199900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Bw0667+Charge",
                  "options": [
                    "black + 2tail",
                    "black(led)",
                    "black(led)+ 2tail",
                    "black",
                    "mesh black + 2tail",
                    "yellow"
                  ],
                  "images": [
                    "id-11134201-8224q-mjgswsb2uvb83e",
                    "id-11134201-8224p-mjgswtb85tdw66",
                    "id-11134201-8224x-mjgsww1fkyrne4",
                    "id-11134201-8224o-mjgswx0kveo509",
                    "id-11134201-8224x-mjgswzke5xqedf",
                    "id-11134201-8224r-mjgsx24uwkxwda"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 43199900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 302333677973,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 43199900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52804657572,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224u-mjgsw9pcfbia9e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":43,\"model_id\":302333677973,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224u-mjgsw9pcfbia9e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":43,\"model_id\":302333677973,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52804657572",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48854663579,
              "shopid": 1623695925,
              "name": "Cuci Gudang Smartwatch Fr13 Jam Tangan 1.85 Ips Screen Display Ip68 Waterproof Bluetooth  Running Sport Mode",
              "label_ids": [
                844931064601283,
                1049130,
                1049131,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224p-mjgsxblxcft037",
              "images": [
                "id-11134201-8224p-mjgsxblxcft037",
                "id-11134201-8224p-mjgsxckq2kuff5",
                "id-11134201-82251-mjgsxf4bmzgi91",
                "id-11134201-8224t-mjgsxg2acxs46e",
                "id-11134201-8224r-mjgsxh314g7b81",
                "id-11134201-8224p-mjgsxi2j90xu7a",
                "id-11134201-8224x-mjgsxj13uy9u8a",
                "id-11134201-8224v-mjgsxkze4lj461",
                "id-11134201-8224r-mjgsxmq6i6me75"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768381058,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 34620000000,
              "price_min": 34620000000,
              "price_max": 34620000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Rose Gold"
                  ],
                  "images": [
                    "id-11134201-8224w-mjgsxq1o0lc2a3",
                    "id-11134201-8224o-mjgsxrz7o9a837"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 34620000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 440432744640,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 34620000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48854663579,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224p-mjgsxblxcft037\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":40,\"model_id\":440432744640,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224p-mjgsxblxcft037\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":40,\"model_id\":440432744640,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48854663579",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56354657565,
              "shopid": 1656110262,
              "name": "READY STOCK 24H ONLINEAOLON CURVE SMART WATCH ORIGINAL IP68 WATERPROOF 2.01-INCH CURVED IPS SCREEN BLUETOOTH CALL RUNNING PACE CUSTOM WALLPAPER SMARTWATCH HEALTH MONITORING",
              "label_ids": [
                844931064601283,
                700005505,
                1049134,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224q-mjgstjsw7rpdc2",
              "images": [
                "id-11134201-8224q-mjgstjsw7rpdc2",
                "id-11134201-8224p-mjgstlkybmde63",
                "id-11134201-8224y-mjgstndgqkuc00",
                "id-11134201-8224u-mjgstpwoyl8mca",
                "id-11134201-8224z-mjgstrn7jls102",
                "id-11134201-8224o-mjgstu5qzlz5ef",
                "id-11134201-82250-mjgstwp3uosmaa",
                "id-11134201-8224t-mjgstyh0kp3a8c",
                "id-11134201-8224r-mjgsu0aceux18a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380920,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 37599900000,
              "price_min": 37599900000,
              "price_max": 37599900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Pink",
                    "Silver add Strap",
                    "add Strap(Curve3)",
                    "Black add Strap",
                    "Black",
                    "Blue",
                    "Silver(Curve3)",
                    "Gold(Curve 3)",
                    "Black+Film",
                    "Black add Milan",
                    "Black add Strap+Film",
                    "Silver",
                    "Black(Curve 3)",
                    "Black Leather"
                  ],
                  "images": [
                    "id-11134201-8224z-mjgsu6jhwoaq79",
                    "id-11134201-8224u-mjgsu92c1k3rdf",
                    "id-11134201-8224o-mjgsuaw4chl047",
                    "id-11134201-8224z-mjgsubwabbb75f",
                    "id-11134201-82250-mjgsucy68paca7",
                    "id-11134201-82250-mjgsufj7mghv92",
                    "id-11134201-8224o-mjgsugjlzbwl2c",
                    "id-11134201-8224t-mjgsuj7bfdad4a",
                    "id-11134201-8224r-mjgsukydlhc502",
                    "id-11134201-82251-mjgsunjlt3iaa7",
                    "id-11134201-8224s-mjgsuq2pgpvkb4",
                    "id-11134201-8224w-mjgsur4obi0x18",
                    "id-11134201-8224v-mjgsusy5ce8284",
                    "id-11134201-82251-mjgsuuqk7m6cf3"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 37599900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 370432741267,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 37599900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56354657565,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgstjsw7rpdc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005505,1049134,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":47,\"model_id\":370432741267,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgstjsw7rpdc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005505,1049134,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":47,\"model_id\":370432741267,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56354657565",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52954653027,
              "shopid": 1666733759,
              "name": "terbaru lige jam tangan pintar olahraga tahan air panggilan bluetooth pria 420mah pemantauan kesehatan ip68 jam tangan pintar pria tahan air smartwatch men",
              "label_ids": [
                844931064601283,
                700005509,
                1049138,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "id-11134201-8224p-mjgsv0786ozr90",
              "images": [
                "id-11134201-8224p-mjgsv0786ozr90",
                "id-11134201-8224z-mjgsv18fj6rp45",
                "id-11134201-8224z-mjgsv29j1zb990",
                "id-11134201-8224x-mjgsv39d1kp088",
                "id-11134201-82252-mjgsv5472rr4a3",
                "id-11134201-8224t-mjgsv7bel24je7",
                "id-11134201-8224w-mjgsv8cu8qv67c",
                "id-11134201-8224r-mjgsv9g2pkw345",
                "id-11134201-8224y-mjgsvahdhon6f1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380953,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 43599900000,
              "price_min": 43599900000,
              "price_max": 43599900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Bw0667+Charge",
                  "options": [
                    "black + 2tail",
                    "black(led)",
                    "black(led)+ 2tail",
                    "black",
                    "mesh black + 2tail",
                    "yellow"
                  ],
                  "images": [
                    "id-11134201-8224y-mjgsvcs3rmyo45",
                    "id-11134201-82252-mjgsven1pcefd0",
                    "id-11134201-8224p-mjgsvfnsuwhz22",
                    "id-11134201-8224q-mjgsvgmdgvev7f",
                    "id-11134201-8224u-mjgsviemfwg57f",
                    "id-11134201-8224u-mjgsvjefasxyf2"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 43599900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 420432741927,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 43599900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52954653027,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224p-mjgsv0786ozr90\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":45,\"model_id\":420432741927,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224p-mjgsv0786ozr90\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":45,\"model_id\":420432741927,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52954653027",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45604673089,
              "shopid": 1666692538,
              "name": "100% AMAN LIGE Jam Tangan Pintar Olahraga Tahan Air Panggilan Bluetooth Pria 420mAh Pemantauan Kesehatan IP68 Jam Tangan Pintar Pria Tahan Air Smartwatch Men",
              "label_ids": [
                844931064601283,
                1049130,
                700005503,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224v-mjgsuoj2aoef91",
              "images": [
                "id-11134201-8224v-mjgsuoj2aoef91",
                "id-11134201-8224u-mjgsuq9r4e87f8",
                "id-11134201-8224u-mjgsusrnwc1x32",
                "id-11134201-82252-mjgsutqek0znb7",
                "id-11134201-8224p-mjgsuupox14y52",
                "id-11134201-8224w-mjgsuwi5rw1ze0",
                "id-11134201-8224u-mjgsuy8eu4g6b0",
                "id-11134201-8224v-mjgsuzzu1hc282",
                "id-11134201-82251-mjgsv2ice5mv11"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380943,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 44099900000,
              "price_min": 44099900000,
              "price_max": 44099900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Bw0667+Charge",
                  "options": [
                    "black + 2tail",
                    "black(led)",
                    "black(led)+ 2tail",
                    "black",
                    "mesh black + 2tail",
                    "yellow"
                  ],
                  "images": [
                    "id-11134201-8224p-mjgsv5dv07b52f",
                    "id-11134201-8224u-mjgsv78du7sy04",
                    "id-11134201-8224y-mjgsv85htc7723",
                    "id-11134201-8224w-mjgsv92i05xg52",
                    "id-11134201-8224u-mjgsvarwy1hi57",
                    "id-11134201-8224r-mjgsvd9fmupz6e"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 44099900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435432741862,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 44099900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45604673089,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgsuoj2aoef91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":46,\"model_id\":435432741862,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgsuoj2aoef91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":46,\"model_id\":435432741862,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45604673089",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54654657652,
              "shopid": 1656110262,
              "name": "PAKET HEMAT (NEW LAUNCHING) ORAIMO WATCH 5 LITE SMARTWATCH OSW-804 JAM TANGAN PINTAR LAYAR BESAR 2.01'' BLUETOOTH BATERAI TAHAN LAMA TAHAN AIR DEBU AMOLED ANDROID SMARTWATCH HEALTH WATCH JAM 100+ MODE OLAHRAGA IP68",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224v-mjgssr69gmpz76",
              "images": [
                "id-11134201-8224v-mjgssr69gmpz76",
                "id-11134201-8224z-mjgsstrc4qo0b6",
                "id-11134201-8224o-mjgssure721137",
                "id-11134201-8224p-mjgssxbhy1a86f",
                "id-11134201-8224v-mjgssyb5ovt11c",
                "id-11134201-8224w-mjgsszb5kkxs80",
                "id-11134201-8224v-mjgst139bfgj5f",
                "id-11134201-82250-mjgst2w3mups7d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380846,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 33800000000,
              "price_min": 33800000000,
              "price_max": 33800000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Type",
                  "options": [
                    "Couple Set",
                    "Black",
                    "Pink"
                  ],
                  "images": [
                    "id-11134201-8224r-mjgst50yl5aeaf",
                    "id-11134201-8224v-mjgst6s1f6kn02",
                    "id-11134201-82250-mjgst9bvkm4hda"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 33800000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 380432732313,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 33800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54654657652,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgssr69gmpz76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":48,\"model_id\":380432732313,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgssr69gmpz76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":48,\"model_id\":380432732313,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54654657652",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51154648071,
              "shopid": 1666733759,
              "name": "hot (new launching) oraimo watch 5 lite smartwatch osw-804 jam tangan pintar layar besar 2.01'' bluetooth baterai tahan lama tahan air debu amoled android smartwatch health watch jam 100+ mode olahraga ip68",
              "label_ids": [
                844931064601283,
                1718093079,
                700005509,
                1049138,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-82252-mjgsrdbimkn93f",
              "images": [
                "id-11134201-82252-mjgsrdbimkn93f",
                "id-11134201-82251-mjgsrec3umf62c",
                "id-11134201-8224y-mjgsrfbv85c416",
                "id-11134201-8224s-mjgsrgc7mqrnc7",
                "id-11134201-8224v-mjgsrhblqn0jfb",
                "id-11134201-8224v-mjgsrjtsf9xd1d",
                "id-11134201-8224t-mjgsrmbp9zb7ea",
                "id-11134201-8224z-mjgsrnb6s4jn36"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380778,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 33800000000,
              "price_min": 33800000000,
              "price_max": 33800000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Type",
                  "options": [
                    "Couple Set",
                    "Black",
                    "Pink"
                  ],
                  "images": [
                    "id-11134201-8224u-mjgsrpdjso3q58",
                    "id-11134201-8224s-mjgsrrv8nf2c87",
                    "id-11134201-8224p-mjgsrtmpc5ja85"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 33800000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 405432730588,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 33800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51154648071,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgsrdbimkn93f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":50,\"model_id\":405432730588,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgsrdbimkn93f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":50,\"model_id\":405432730588,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51154648071",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48554668032,
              "shopid": 1542929270,
              "name": "G-Refit V5.5 Titanium alloy DW5600 GWB5600 G5600E GWM5610 Watbands Bezel Strap Set Watband Metal/Case black band With Tools",
              "label_ids": [
                844931064601283,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-82616-mjgspstycqo13b",
              "images": [
                "sg-11134201-82616-mjgspstycqo13b",
                "sg-11134201-82617-mjgsptcud81s54",
                "sg-11134201-8260z-mjgsptlwhekk37",
                "sg-11134201-8261h-mjgsptvdcjr822",
                "sg-11134201-8261w-mjgsoys3mjnr30",
                "sg-11134201-825zk-mjgspu66mvpebd",
                "sg-11134201-8261e-mjgspudiplokdd",
                "sg-11134201-8261e-mjgspur3ow76aa",
                "sg-11134201-8262x-mjgspv1tnsapd2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380687,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 407140000000,
              "price_min": 407140000000,
              "price_max": 407140000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Titanium black Strap",
                    "Titanium black Set",
                    "Ti Camouflage Set",
                    "Titanium black case",
                    "Titanium natural Set",
                    "TitaniumNatural case",
                    "Ti old black Strap",
                    "Ti old black Set",
                    "Ti old black case",
                    "TitaniumNatura Strap"
                  ],
                  "images": [
                    "sg-11134201-825zq-mjgspw1oxs02bf",
                    "sg-11134201-8261u-mjgspw7x0pvkd3",
                    "sg-11134201-82634-mjgspwdy8iytc8",
                    "sg-11134201-825zs-mjgsp0m0oufb74",
                    "sg-11134201-8261n-mjgsovqw0e8435",
                    "sg-11134201-8261w-mjgspwx49ypvb3",
                    "sg-11134201-8261e-mjgspur3ow76aa",
                    "sg-11134201-8262x-mjgspv1tnsapd2",
                    "sg-11134201-82633-mjgspvka9fd2ca",
                    "sg-11134201-825zv-mjgspvrxrsw1cd"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "5610mm",
                    "GW5000",
                    "GMW-B5000",
                    "5600mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 407140000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 234639961553,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 407140000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48554668032,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82616-mjgspstycqo13b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":52,\"model_id\":234639961553,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82616-mjgspstycqo13b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":52,\"model_id\":234639961553,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48554668032",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43128022437,
              "shopid": 1656110262,
              "name": "HEMAT [2025 NEW]WISELION SMARTWATCH W69 BLUETOOTH JAM TANGAN PINTAR WANITA LAYAR AMOLED",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224z-mjgsopl43guf95",
              "images": [
                "id-11134201-8224z-mjgsopl43guf95",
                "id-11134201-82252-mjgsorcmw0e850",
                "id-11134201-82250-mjgsot8s232cc5",
                "id-11134201-8224y-mjgsovs4uebmf6",
                "id-11134201-82252-mjgsoyalh81u89",
                "id-11134201-8224u-mjgsp049zwg321",
                "id-11134201-8224v-mjgsp1yc7j0i57",
                "id-11134201-8224o-mjgsp3rcoxl185",
                "id-11134201-8224w-mjgsp6bmvldz02"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380667,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 43500000000,
              "price_min": 43500000000,
              "price_max": 43500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Pink",
                    "Blue",
                    "Silver",
                    "Black"
                  ],
                  "images": [
                    "id-11134201-8224y-mjgsp88u37r495",
                    "id-11134201-8224x-mjgspat8n75v18",
                    "id-11134201-8224r-mjgspdc75g5h40",
                    "id-11134201-82250-mjgspfv3wg02ea"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 43500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 410432713281,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 43500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43128022437,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224z-mjgsopl43guf95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":53,\"model_id\":410432713281,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224z-mjgsopl43guf95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":53,\"model_id\":410432713281,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43128022437",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41078017702,
              "shopid": 1623695925,
              "name": "Favorit [2025 New]Wiselion Smartwatch W69 Bluetooth Jam Tangan Pintar Wanita Layar Amoled",
              "label_ids": [
                844931064601283,
                1049130,
                1049131,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224v-mjgsoptf7mdffb",
              "images": [
                "id-11134201-8224v-mjgsoptf7mdffb",
                "id-11134201-82252-mjgsorkej8jmc4",
                "id-11134201-82251-mjgsou3bzimddc",
                "id-11134201-8224t-mjgsovtrzv9je7",
                "id-11134201-8224w-mjgsowqxevi862",
                "id-11134201-8224r-mjgsoyhkr9c018",
                "id-11134201-8224q-mjgsp09tm5tu2c",
                "id-11134201-8224t-mjgsp1cg5j4616",
                "id-11134201-8224z-mjgsp2bh6v432c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380662,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 43100000000,
              "price_min": 43100000000,
              "price_max": 43100000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Pink",
                    "Blue",
                    "Silver",
                    "Black"
                  ],
                  "images": [
                    "id-11134201-8224r-mjgsp514r30j5a",
                    "id-11134201-8224r-mjgsp7jai1vmfd",
                    "id-11134201-82250-mjgsp9zlkhs592",
                    "id-11134201-8224z-mjgspbqe7wuc96"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 43100000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 395432709715,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 43100000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41078017702,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgsoptf7mdffb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":54,\"model_id\":395432709715,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgsoptf7mdffb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":54,\"model_id\":395432709715,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41078017702",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54804652824,
              "shopid": 1656110262,
              "name": "PROMO VIVO SMARTWATCH SERIES S11 PRO MAX 2.0\" HD TOUCH SCREEN BLUETOOTH CALL CUSTOM WALLPAPER JAM TANGAN PRIA HEART RATE MONITOR BLOOD OXYGEN MONITORING JAM TANGAN WANITA WATERPROOF SPORT WATCH JAM PINTAR SMARTWATCH WANITA PRIA",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224x-mjgsmj9rrj0h28",
              "images": [
                "id-11134201-8224x-mjgsmj9rrj0h28",
                "id-11134201-82252-mjgsml2g87i99c",
                "id-11134201-8224x-mjgsmm359yis51",
                "id-11134201-8224v-mjgsmntmkkqofa",
                "id-11134201-8224p-mjgsmotbvnk1bc",
                "id-11134201-8224u-mjgsmptp6k1y44",
                "id-11134201-82251-mjgsmse9o1s688",
                "id-11134201-8224t-mjgsmub7eakh04",
                "id-11134201-8224z-mjgsmw3ysd8m61"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380559,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 26900100000,
              "price_min": 26900100000,
              "price_max": 26900100000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "Pink",
                    "putih",
                    "putih.",
                    "hitam"
                  ],
                  "images": [
                    "id-11134201-8224r-mjgsmyv6f4skd3",
                    "id-11134201-8224q-mjgsn1ef6rk46d",
                    "id-11134201-82252-mjgsn2d77ksl41",
                    "id-11134201-8224p-mjgsn4wryfwn23"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 26900100000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 360432702736,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 26900100000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54804652824,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgsmj9rrj0h28\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":56,\"model_id\":360432702736,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgsmj9rrj0h28\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":56,\"model_id\":360432702736,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54804652824",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27094032753,
              "shopid": 1656110262,
              "name": "HEMAT [COD] ORI OPPO WATCH 10 SMARTWATCH FULLSCREEN 2.3-INCH IP68 WATERPROOF BISA TELPONAN DAN GANTI WALLPAPPER MONITOR DETAK JANTUNG TEKANAN DARAH SMART WATCH",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224s-mjgsl1ji1q0w93",
              "images": [
                "id-11134201-8224s-mjgsl1ji1q0w93",
                "id-11134201-8224r-mjgsl2io8gzr33",
                "id-11134201-8224t-mjgsl49wj5s7e5",
                "id-11134201-8224z-mjgsl6157uo591",
                "id-11134201-8224u-mjgsl6zzs0ecbc",
                "id-11134201-8224z-mjgsl8s9rncx9b",
                "id-11134201-8224x-mjgslbbgffggdc",
                "id-11134201-8224t-mjgslcardi4ida",
                "id-11134201-8224v-mjgslf5x18u892"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380518,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 25875000000,
              "price_min": 25875000000,
              "price_max": 25875000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "S9 MAX Black",
                    "S9 MAX Pink",
                    "Black+2strap",
                    "S9 MAX Blue",
                    "S9 MAX White",
                    "Black",
                    "White+2strap",
                    "Pink+2strap",
                    "Blue+2strap",
                    "White",
                    "Pink",
                    "Blue",
                    "S9 MAX Grey"
                  ],
                  "images": [
                    "id-11134201-8224w-mjgslilpojyc9f",
                    "id-11134201-8224p-mjgsljtrcnb6c9",
                    "id-11134201-82250-mjgsllnllt6ob3",
                    "id-11134201-8224s-mjgslo7lzwg783",
                    "id-11134201-82252-mjgslpx4u8sh29",
                    "id-11134201-8224z-mjgslskkgb2dbe",
                    "id-11134201-8224t-mjgslv3g9mvbd6",
                    "id-11134201-8224s-mjgslxmi7g92dc",
                    "id-11134201-82252-mjgsm0619wxs3c",
                    "id-11134201-8224z-mjgsm1y20lqf48",
                    "id-11134201-8224r-mjgsm3rqkn4295",
                    "id-11134201-8224q-mjgsm6eu4nwi71",
                    "id-11134201-8224q-mjgsm924h3i8a3"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 25875000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 310433291361,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 25875000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 27094032753,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgsl1ji1q0w93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":57,\"model_id\":310433291361,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgsl1ji1q0w93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":57,\"model_id\":310433291361,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27094032753",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56104657476,
              "shopid": 1656110262,
              "name": "PAKET HEMAT SMARTWATCH I8 ULTRA WATCH 8 FREE 2 TALI+EARPHONE TWS FITNESS TRACKER BLUETOOTH",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224q-mjgsjilcpgjod2",
              "images": [
                "id-11134201-8224q-mjgsjilcpgjod2",
                "id-11134201-8224s-mjgsjl1msqo085",
                "id-11134201-8224p-mjgsjnlbg2kh01",
                "id-11134201-8224x-mjgsjolgo7if2c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380422,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 21300000000,
              "price_min": 21300000000,
              "price_max": 21300000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "CREAM",
                    "ORANGE",
                    "PUTIH",
                    "UNGU",
                    "NAVY",
                    "FULL HITAM",
                    "HIJAU ARMY",
                    "HITAM SILVER",
                    "PINK",
                    "ABU ABU"
                  ],
                  "images": [
                    "id-11134201-8224p-mjgsjruw1pmt2a",
                    "id-11134201-8224t-mjgsjsrur5s266",
                    "id-11134201-82251-mjgsjuiwm2v9da",
                    "id-11134201-8224q-mjgsjx4ss45h2f",
                    "id-11134201-8224z-mjgsjzr8awp15b",
                    "id-11134201-8224y-mjgsk1jj6t4y7c",
                    "id-11134201-8224s-mjgsk2j83sp26c",
                    "id-11134201-8224v-mjgsk4an9nut67",
                    "id-11134201-8224y-mjgsk625mr5ud0",
                    "id-11134201-8224x-mjgsk7u42m12c5"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 21300000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 380432684715,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 21300000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56104657476,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgsjilcpgjod2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":60,\"model_id\":380432684715,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgsjilcpgjod2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":60,\"model_id\":380432684715,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56104657476",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52704647930,
              "shopid": 1623695925,
              "name": "Termurah Aolon Gts Jam Smartwatch 41Mm Original Telepon Bluetooth 100+ Olahraga Pace Detak Jantung Oksigen Darah Waterproof Long Battery Life Smart Watch Pria",
              "label_ids": [
                844931064601283,
                1049130,
                1049131,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-82252-mjgsichpihvk6d",
              "images": [
                "id-11134201-82252-mjgsichpihvk6d",
                "id-11134201-8224p-mjgsieyn0j5scd",
                "id-11134201-8224q-mjgsiheys9aa08",
                "id-11134201-8224u-mjgsiid3wj5ud6",
                "id-11134201-8224w-mjgsik85nuo167",
                "id-11134201-8224o-mjgsil4pxm9y09",
                "id-11134201-8224t-mjgsino6xlad2f",
                "id-11134201-8224p-mjgsiq7kkuma59",
                "id-11134201-8224o-mjgsirwug4ci03"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380391,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 35900000000,
              "price_min": 35900000000,
              "price_max": 35900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Kulit Cokelat",
                    "Logam RoseGold",
                    "Logam Hitam ",
                    "[GTS3]RoseGold",
                    "[Ultra]Hitam",
                    "[Ultra]Perak",
                    "[Ultra]Emas",
                    "Biru",
                    "Milan Hitam",
                    "Pink",
                    "Hitam",
                    "[GTS3]Hitam",
                    "[GTS3]Perak"
                  ],
                  "images": [
                    "id-11134201-8224v-mjgsivnfbu2p8d",
                    "id-11134201-8224o-mjgsiy7aszcy86",
                    "id-11134201-8224t-mjgsizkmuh3534",
                    "id-11134201-8224v-mjgsj0l5x9mu1d",
                    "id-11134201-8224w-mjgsj1j6pmgyc1",
                    "id-11134201-8224s-mjgsj40wcidge8",
                    "id-11134201-8224p-mjgsj50k1wqqe4",
                    "id-11134201-8224q-mjgsj7652k92c4",
                    "id-11134201-8224v-mjgsj9rh6lmu5e",
                    "id-11134201-8224s-mjgsjc8pc746bd",
                    "id-11134201-8224s-mjgsjepz3apzde",
                    "id-11134201-8224q-mjgsjgfyo8ow5e",
                    "id-11134201-8224o-mjgsjj0mr08w1f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 35900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 405432691552,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 35900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52704647930,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgsichpihvk6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":61,\"model_id\":405432691552,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgsichpihvk6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":61,\"model_id\":405432691552,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52704647930",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51954643414,
              "shopid": 1666692538,
              "name": "FAVORIT VIVO Smartwatch Series S11 Pro MAX 2.0\" HD Touch Screen Bluetooth Call Custom Wallpaper Jam Tangan Pria Heart Rate Monitor Blood Oxygen Monitoring Jam Tangan Wanita Waterproof Sport Watch Jam Pintar Smartwatch Wanita Pria",
              "label_ids": [
                844931064601283,
                1049130,
                700005503,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224q-mjgskun04rgm54",
              "images": [
                "id-11134201-8224q-mjgskun04rgm54",
                "id-11134201-8224r-mjgskvn88w0083",
                "id-11134201-8224y-mjgsky5ew5xd29",
                "id-11134201-8224y-mjgskzum2igx41",
                "id-11134201-8224y-mjgsl0ttgt1h7d",
                "id-11134201-8224u-mjgsl2it41z74a",
                "id-11134201-8224r-mjgsl481nkebe5",
                "id-11134201-8224w-mjgsl6o8uwhva8",
                "id-11134201-82252-mjgsl7m691xh47"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380478,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 27600100000,
              "price_min": 27600100000,
              "price_max": 27600100000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "Pink",
                    "putih",
                    "putih.",
                    "hitam"
                  ],
                  "images": [
                    "id-11134201-8224u-mjgsl9cncqh3c1",
                    "id-11134201-8224o-mjgslaahz75wb1",
                    "id-11134201-8224x-mjgslb7pnpxj88",
                    "id-11134201-8224v-mjgsldriwsu8a8"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 27600100000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 395432701171,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 27600100000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51954643414,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgskun04rgm54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":59,\"model_id\":395432701171,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgskun04rgm54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":59,\"model_id\":395432701171,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51954643414",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48854663500,
              "shopid": 306594236,
              "name": "Garmin Forerunners 165 non music",
              "label_ids": [
                844931064601283,
                1049116,
                700000504,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "id-11134207-8224t-mjcnlr83v0n42a",
              "images": [
                "id-11134207-8224t-mjcnlr83v0n42a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380376,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 230000000000,
              "price_min": 230000000000,
              "price_max": 230000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Blitar",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 230000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 445432687643,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 230000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Dava wrdnn",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48854663500,
            "shopid": 306594236,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjcnlr83v0n42a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,700000504,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":62,\"model_id\":445432687643,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjcnlr83v0n42a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,700000504,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":62,\"model_id\":445432687643,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48854663500",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57054647923,
              "shopid": 1656110262,
              "name": "ORIGINAL AOLON CURVE SMARTWATCH IP68 WATERPROOF  2.01-INCH CURVED IPS SCREEN BLUETOOTH CALL RUNNING PACE CUSTOM WALLPAPER SMARTWATCH HEALTH MONITORING",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224z-mjgsgdgg19tz14",
              "images": [
                "id-11134201-8224z-mjgsgdgg19tz14",
                "id-11134201-8224r-mjgsgegm5ptz1a",
                "id-11134201-8224s-mjgsgffyz7r6e6",
                "id-11134201-8224t-mjgsghyws4xy81",
                "id-11134201-8224o-mjgsgjsbi77nfa",
                "id-11134201-8224o-mjgsgmclt5vnba",
                "id-11134201-8224v-mjgsgo68rlz5ca",
                "id-11134201-82251-mjgsgpyxi6117e",
                "id-11134201-8224z-mjgsgqzbwef848"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380317,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 39500000000,
              "price_min": 39500000000,
              "price_max": 39500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Silver+Film+Metal",
                    "Silver",
                    "Blue",
                    "Gold+Leather Strap",
                    "Black+Milan Strap",
                    "Gold",
                    "Gold+Metal Strap",
                    "Black+Film",
                    "Silver+MagneticStrap",
                    "Black+Leather Strap",
                    "Black",
                    "Black+MagneticStrap",
                    "Silver+Metal Strap",
                    "Black+Film+Metal",
                    "Silver+Milan",
                    "Silver+Film",
                    "Gold+Film",
                    "Blue+Film",
                    "Pink",
                    "Blue+Metal Strap",
                    "Black+NewMetal Strap",
                    "Blue+BlueMetal Strap",
                    "Black+Metal Strap"
                  ],
                  "images": [
                    "id-11134201-8224z-mjgsgvg56lmq92",
                    "id-11134201-8224q-mjgsgx874sg66a",
                    "id-11134201-8224p-mjgsgz2dzm6d20",
                    "id-11134201-8224o-mjgsh0sgjbb9d8",
                    "id-11134201-82250-mjgsh3cc62v72f",
                    "id-11134201-82252-mjgsh5wz9q8084",
                    "id-11134201-8224u-mjgsh6xt01du90",
                    "id-11134201-8224o-mjgsh8oyn5z6d2",
                    "id-11134201-8224q-mjgshb6idwjp1a",
                    "id-11134201-8224z-mjgshc7mx9fr56",
                    "id-11134201-8224r-mjgshd8csgsjbf",
                    "id-11134201-82250-mjgshe848r9c4c",
                    "id-11134201-8224y-mjgshf7g385c7c",
                    "id-11134201-8224z-mjgshh0901dydd",
                    "id-11134201-8224p-mjgshjjndxxeb3",
                    "id-11134201-82250-mjgshm1pxq81ea",
                    "id-11134201-8224u-mjgshnt7vda883",
                    "id-11134201-82252-mjgshot2u4g3e0",
                    "id-11134201-82251-mjgshptr9b7n6b",
                    "id-11134201-8224x-mjgshqsf124n1d",
                    "id-11134201-8224u-mjgshtbrmcjpe6",
                    "id-11134201-82252-mjgshubbteyp04",
                    "id-11134201-8224q-mjgshwwdmkud2c"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 39500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435432682118,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 39500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57054647923,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224z-mjgsgdgg19tz14\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":63,\"model_id\":435432682118,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224z-mjgsgdgg19tz14\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":63,\"model_id\":435432682118,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57054647923",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45854663416,
              "shopid": 1666692538,
              "name": "CUCI GUDANG Aolon GTS Jam Smartwatch 41mm Original Telepon Bluetooth 100+ Olahraga Pace Detak Jantung Oksigen Darah Waterproof Long Battery Life Smart Watch Pria",
              "label_ids": [
                844931064601283,
                1049130,
                700005503,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-82251-mjgsgthkaubn71",
              "images": [
                "id-11134201-82251-mjgsgthkaubn71",
                "id-11134201-8224r-mjgsgv8qud5019",
                "id-11134201-8224y-mjgsgxowbuo6da",
                "id-11134201-82252-mjgsgylf8ge98e",
                "id-11134201-8224v-mjgsgzigzgufd7",
                "id-11134201-8224q-mjgsh1zqw6pz70",
                "id-11134201-8224q-mjgsh2w90p3718",
                "id-11134201-8224t-mjgsh3symux2e5",
                "id-11134201-8224w-mjgsh4wt12ip94"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380311,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 35300000000,
              "price_min": 35300000000,
              "price_max": 35300000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Kulit Cokelat",
                    "Logam RoseGold",
                    "Logam Hitam ",
                    "[GTS3]RoseGold",
                    "[Ultra]Hitam",
                    "[Ultra]Perak",
                    "[Ultra]Emas",
                    "Biru",
                    "Milan Hitam",
                    "Pink",
                    "Hitam",
                    "[GTS3]Hitam",
                    "[GTS3]Perak"
                  ],
                  "images": [
                    "id-11134201-8224r-mjgsh9487wg3d7",
                    "id-11134201-82250-mjgshblp5gjmaa",
                    "id-11134201-8224v-mjgshe5ef9j574",
                    "id-11134201-8224y-mjgshfweolc150",
                    "id-11134201-8224u-mjgshifbe6mf07",
                    "id-11134201-8224o-mjgshjf6fpc7c7",
                    "id-11134201-82250-mjgshkf32tc7bd",
                    "id-11134201-82251-mjgshm6hw4jn00",
                    "id-11134201-82252-mjgshn46ff2e73",
                    "id-11134201-8224w-mjgshov1awhz8d",
                    "id-11134201-8224q-mjgshqkltou89e",
                    "id-11134201-8224s-mjgsht305on537",
                    "id-11134201-82251-mjgshu1w76di9f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 35300000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 355432682115,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 35300000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45854663416,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mjgsgthkaubn71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":64,\"model_id\":355432682115,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mjgsgthkaubn71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":64,\"model_id\":355432682115,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45854663416",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42278007863,
              "shopid": 1666692538,
              "name": "LIMITED Aolon Curve SmartWatch IP68 Waterproof  2.01-inch Curved IPS Screen Bluetooth Call Running Pace Custom Wallpaper Smartwatch Health Monitoring",
              "label_ids": [
                844931064601283,
                1049130,
                700005503,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224w-mjgsewvqy5tv86",
              "images": [
                "id-11134201-8224w-mjgsewvqy5tv86",
                "id-11134201-8224p-mjgsextp8mbqab",
                "id-11134201-8224x-mjgseyqin18me9",
                "id-11134201-8224u-mjgsf0fd23nlf5",
                "id-11134201-8224p-mjgsf1cuc64h95",
                "id-11134201-8224y-mjgsf3ioka2tce",
                "id-11134201-8224x-mjgsf57fs4cl53",
                "id-11134201-8224o-mjgsf7okkwzlfa",
                "id-11134201-8224o-mjgsf8mm6rrb18"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380251,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 39800000000,
              "price_min": 39800000000,
              "price_max": 39800000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Silver+Film+Metal",
                    "Silver",
                    "Blue",
                    "Gold+Leather Strap",
                    "Black+Milan Strap",
                    "Gold",
                    "Gold+Metal Strap",
                    "Black+Film",
                    "Silver+MagneticStrap",
                    "Black+Leather Strap",
                    "Black",
                    "Black+MagneticStrap",
                    "Silver+Metal Strap",
                    "Black+Film+Metal",
                    "Silver+Milan",
                    "Silver+Film",
                    "Gold+Film",
                    "Blue+Film",
                    "Pink",
                    "Blue+Metal Strap",
                    "Black+NewMetal Strap",
                    "Blue+BlueMetal Strap",
                    "Black+Metal Strap"
                  ],
                  "images": [
                    "id-11134201-8224w-mjgsfcwtnl6re4",
                    "id-11134201-8224t-mjgsfdxojzsya8",
                    "id-11134201-8224u-mjgsffov20w26a",
                    "id-11134201-8224t-mjgsfhds7f2aa9",
                    "id-11134201-8224v-mjgsfj27ekud76",
                    "id-11134201-8224z-mjgsfksoxo1s3d",
                    "id-11134201-8224t-mjgsfnd24j5w6f",
                    "id-11134201-8224r-mjgsfpv0f7k143",
                    "id-11134201-8224s-mjgsfsc0t8g232",
                    "id-11134201-82250-mjgsfusql8g0eb",
                    "id-11134201-8224u-mjgsfwli3h8maf",
                    "id-11134201-8224q-mjgsfz4ntlaf27",
                    "id-11134201-8224z-mjgsg0tgejutec",
                    "id-11134201-8224v-mjgsg2hochl222",
                    "id-11134201-8224r-mjgsg3en4qv678",
                    "id-11134201-8224s-mjgsg5uoaeipf8",
                    "id-11134201-8224u-mjgsg6rla1ok68",
                    "id-11134201-82252-mjgsg8j0hbeqbc",
                    "id-11134201-82250-mjgsga8nw1s05a",
                    "id-11134201-8224q-mjgsgcpwv21021",
                    "id-11134201-8224v-mjgsgf6snbwid7",
                    "id-11134201-8224t-mjgsghoqr11c9c",
                    "id-11134201-82251-mjgsgje6wg7721"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 39800000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 420432680598,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 39800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42278007863,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224w-mjgsewvqy5tv86\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":65,\"model_id\":420432680598,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224w-mjgsewvqy5tv86\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":65,\"model_id\":420432680598,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42278007863",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53454657513,
              "shopid": 1623695925,
              "name": "New Arrival [Garansi 1 Tahun] Aolon Tetra R4 Smartwatch Amoled Aod Cover Lock Compass Bluetooth Call Smart Watch 1.46'' 466*466 Display Heart Rate&Blood Oxygen Sleep Monitoring",
              "label_ids": [
                844931064601283,
                1049130,
                1049131,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224s-mjgsd60mygw289",
              "images": [
                "id-11134201-8224s-mjgsd60mygw289",
                "id-11134201-82251-mjgsd8hzptdtc7",
                "id-11134201-8224z-mjgsd9fgvmkk3a",
                "id-11134201-8224u-mjgsdbwdpvd181",
                "id-11134201-8224o-mjgsdefqqm0ybf",
                "id-11134201-8224y-mjgsdg59ciytd2",
                "id-11134201-8224u-mjgsdhugn1mo0c",
                "id-11134201-8224x-mjgsdjk2x1j53a",
                "id-11134201-8224w-mjgsdlcpcohv54"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380135,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 76100000000,
              "price_min": 76100000000,
              "price_max": 76100000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Milan Perak",
                    "Perak",
                    "Logam Perak",
                    "Logam Hitam",
                    "Hitam",
                    "Khaki",
                    "Milan Hitam",
                    "Kulit Cokelat",
                    "Magnetik Hitam"
                  ],
                  "images": [
                    "id-11134201-8224v-mjgsdonzdclc81",
                    "id-11134201-8224r-mjgsdr5676rl46",
                    "id-11134201-82252-mjgsds5aesxy14",
                    "id-11134201-8224s-mjgsdtv7gefa38",
                    "id-11134201-82252-mjgsdwchis5h5c",
                    "id-11134201-8224t-mjgsdxjrx24mb5",
                    "id-11134201-8224z-mjgsdyhqbthi05",
                    "id-11134201-8224s-mjgsdzg8ip6u26",
                    "id-11134201-8224z-mjgse16tbs3q61"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 76100000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390432667339,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 76100000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53454657513,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgsd60mygw289\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":66,\"model_id\":390432667339,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgsd60mygw289\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":66,\"model_id\":390432667339,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53454657513",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52154647840,
              "shopid": 1666733759,
              "name": "ready stock samsung samrt watch s11 pro max original with 2.2\" hd amoled display gps nfc waterproof bluetooth call smartwatch wanita pria wireless charging dan ganti wallpapper jam tangan smartwatch jam tangan wanita",
              "label_ids": [
                844931064601283,
                700005509,
                1049138,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-82252-mjgscu2rb1mrd6",
              "images": [
                "id-11134201-82252-mjgscu2rb1mrd6",
                "id-11134201-8224t-mjgscwnuk9on8a",
                "id-11134201-8224x-mjgscxr3aw3o47",
                "id-11134201-8224v-mjgsczj62mf5e2",
                "id-11134201-8224y-mjgsd1c13dhh41",
                "id-11134201-8224t-mjgsd35mu9zb5a",
                "id-11134201-8224u-mjgsd4866i9tb8",
                "id-11134201-8224y-mjgsd6re7g900c",
                "id-11134201-8224o-mjgsd7u26sjq83"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380119,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 28799800000,
              "price_min": 28799800000,
              "price_max": 28799800000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "S10  PRO  MAX-BLACK",
                    "S11  PRO  MAX-white",
                    "S9  PRO  MAX-Pink",
                    "S10  PRO  MAX-white",
                    "S11  PRO  MAX",
                    "S11  PRO  MAX-PINK",
                    "S11  PRO  MAX-Black",
                    "S10  PRO  MAX-PINK",
                    "S9  PRO  MAX-white",
                    "S9  PRO  MAX-Black"
                  ],
                  "images": [
                    "id-11134201-82250-mjgsdai65erl26",
                    "id-11134201-82251-mjgsdbg3jls065",
                    "id-11134201-82250-mjgsddxch7gk25",
                    "id-11134201-8224o-mjgsdeu0lzpe25",
                    "id-11134201-8224y-mjgsdgly43d1f9",
                    "id-11134201-8224u-mjgsdic35oud26",
                    "id-11134201-82252-mjgsdjb0dern17",
                    "id-11134201-8224t-mjgsdlt7ss1u32",
                    "id-11134201-8224y-mjgsdod4k8hs99",
                    "id-11134201-8224p-mjgsdpdw6nep61"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 28799800000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 440432666913,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 28799800000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52154647840,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgscu2rb1mrd6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":69,\"model_id\":440432666913,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgscu2rb1mrd6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":69,\"model_id\":440432666913,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52154647840",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46304677423,
              "shopid": 1656110262,
              "name": "HEMAT [GARANSI 1 TAHUN] AOLON TETRA R4 SMARTWATCH AMOLED AOD COVER LOCK COMPASS BLUETOOTH CALL SMART WATCH 1.46'' 466*466 DISPLAY HEART RATE&BLOOD OXYGEN SLEEP MONITORING",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224o-mjgsd3ja75zbea",
              "images": [
                "id-11134201-8224o-mjgsd3ja75zbea",
                "id-11134201-8224p-mjgsd4l38p39e8",
                "id-11134201-82250-mjgsd6in7k0718",
                "id-11134201-82252-mjgsd98cstfkc9",
                "id-11134201-8224t-mjgsdac50etj94",
                "id-11134201-8224u-mjgsdbcnkxz56b",
                "id-11134201-8224t-mjgsdd6s232d6f",
                "id-11134201-8224x-mjgsdez93x8n6d",
                "id-11134201-8224p-mjgsdhkpbg9323"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380129,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 76400000000,
              "price_min": 76400000000,
              "price_max": 76400000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Milan Perak",
                    "Perak",
                    "Logam Perak",
                    "Logam Hitam",
                    "Hitam",
                    "Khaki",
                    "Milan Hitam",
                    "Kulit Cokelat",
                    "Magnetik Hitam"
                  ],
                  "images": [
                    "id-11134201-8224w-mjgsdkqo2i2v7c",
                    "id-11134201-8224o-mjgsdmkt62o561",
                    "id-11134201-82251-mjgsdpegh2pu99",
                    "id-11134201-8224u-mjgsdqgvekue6e",
                    "id-11134201-82250-mjgsdt65z37o55",
                    "id-11134201-8224s-mjgsdu746w3pca",
                    "id-11134201-82251-mjgsdw172ebk99",
                    "id-11134201-8224s-mjgsdx2o622v2f",
                    "id-11134201-8224u-mjgsdy5mvq4l93"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 76400000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 49950747322,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 76400000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46304677423,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgsd3ja75zbea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":67,\"model_id\":49950747322,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgsd3ja75zbea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":67,\"model_id\":49950747322,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46304677423",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46104677392,
              "shopid": 1666692538,
              "name": "100% AMAN Samsung Samrt watch S11 Pro Max Original with 2.2\" HD AMOLED Display GPS NFC Waterproof Bluetooth Call Smartwatch wanita pria wireless charging Dan Ganti Wallpapper Jam Tangan Smartwatch Jam Tangan Wanita",
              "label_ids": [
                844931064601283,
                700005503,
                1049130,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224q-mjgscsb6wydi22",
              "images": [
                "id-11134201-8224q-mjgscsb6wydi22",
                "id-11134201-82252-mjgscusssy69a6",
                "id-11134201-8224w-mjgscwhpwumf0b",
                "id-11134201-82252-mjgscy733k7935",
                "id-11134201-8224p-mjgscz5ntp8m40",
                "id-11134201-8224s-mjgsd1lzr01za4",
                "id-11134201-8224z-mjgsd3di1a806b",
                "id-11134201-8224q-mjgsd5uga3gh0f",
                "id-11134201-8224o-mjgsd8br34e989"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380121,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 27599800000,
              "price_min": 27599800000,
              "price_max": 27599800000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "S10  PRO  MAX-BLACK",
                    "S11  PRO  MAX-white",
                    "S9  PRO  MAX-Pink",
                    "S10  PRO  MAX-white",
                    "S11  PRO  MAX",
                    "S11  PRO  MAX-PINK",
                    "S11  PRO  MAX-Black",
                    "S10  PRO  MAX-PINK",
                    "S9  PRO  MAX-white",
                    "S9  PRO  MAX-Black"
                  ],
                  "images": [
                    "id-11134201-82251-mjgsdbznijuve8",
                    "id-11134201-82252-mjgsdefq6y2rfe",
                    "id-11134201-8224p-mjgsdg4l5la991",
                    "id-11134201-8224z-mjgsdhstg64h2e",
                    "id-11134201-8224o-mjgsdior7g1y77",
                    "id-11134201-8224x-mjgsdkehxj45e6",
                    "id-11134201-8224x-mjgsdmv5acqv80",
                    "id-11134201-8224z-mjgsdpc24jyffa",
                    "id-11134201-8224u-mjgsdq960v7le3",
                    "id-11134201-8224o-mjgsdr7ut3b8b8"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 27599800000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 350432670279,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 27599800000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46104677392,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgscsb6wydi22\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":68,\"model_id\":350432670279,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgscsb6wydi22\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":68,\"model_id\":350432670279,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46104677392",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57754643353,
              "shopid": 1623695925,
              "name": "Garansi Official Itel Smart Watch Isw-O20 Ai Watch Face | Pemantau Kesehatan 24 Jam | Layar Hd 2.04\" | Panggilan Bt | Tahan Air Ip68 Smartwatch",
              "label_ids": [
                844931064601283,
                1049131,
                1049130,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224y-mjgsc39jz952c9",
              "images": [
                "id-11134201-8224y-mjgsc39jz952c9",
                "id-11134201-8224r-mjgsc51b4e8619",
                "id-11134201-8224o-mjgsc5yhy22s4b",
                "id-11134201-8224t-mjgsc6vongn922",
                "id-11134201-8224r-mjgsc9dgidc4d8",
                "id-11134201-8224s-mjgscbu6ve9s6e",
                "id-11134201-8224r-mjgscdke6f4248",
                "id-11134201-82250-mjgscg0y6j2812",
                "id-11134201-8224x-mjgschpj47wk44"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380080,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 29800000000,
              "price_min": 29800000000,
              "price_max": 29800000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Blue",
                    "Pink",
                    "Light Green",
                    "Dark Green",
                    "O20Black+Strap Pink",
                    "O20Black+Strap White",
                    "Black"
                  ],
                  "images": [
                    "id-11134201-8224u-mjgscl2n44qu45",
                    "id-11134201-8224z-mjgscnjdfr405e",
                    "id-11134201-8224q-mjgscogi8buqe7",
                    "id-11134201-8224s-mjgscq9vflz696",
                    "id-11134201-8224s-mjgscssfrytg7a",
                    "id-11134201-82250-mjgscuisqo0155",
                    "id-11134201-8224v-mjgscw7qxxxhf0"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 29800000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 345432657909,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 29800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57754643353,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgsc39jz952c9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049131,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":71,\"model_id\":345432657909,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgsc39jz952c9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049131,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":71,\"model_id\":345432657909,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57754643353",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50254647851,
              "shopid": 1666692538,
              "name": "TERLARIS [Garansi 1 Tahun] Aolon Tetra R4 Smartwatch Amoled AOD Cover Lock Compass Bluetooth Call Smart Watch 1.46'' 466*466 Display Heart Rate&Blood Oxygen Sleep Monitoring",
              "label_ids": [
                844931064601283,
                1049130,
                700005503,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224o-mjgsbpzi5l3bfc",
              "images": [
                "id-11134201-8224o-mjgsbpzi5l3bfc",
                "id-11134201-82250-mjgsbrqxla8148",
                "id-11134201-82252-mjgsbthedon66c",
                "id-11134201-82252-mjgsbuff1wxt69",
                "id-11134201-8224y-mjgsbw5gia6d4b",
                "id-11134201-82252-mjgsbx4mi0ape0",
                "id-11134201-8224y-mjgsbyua7xmud5",
                "id-11134201-82250-mjgsc0jz5czr05",
                "id-11134201-8224t-mjgsc33f92iu01"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768380063,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 74600000000,
              "price_min": 74600000000,
              "price_max": 74600000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Milan Perak",
                    "Perak",
                    "Logam Perak",
                    "Logam Hitam",
                    "Hitam",
                    "Khaki",
                    "Milan Hitam",
                    "Kulit Cokelat",
                    "Magnetik Hitam"
                  ],
                  "images": [
                    "id-11134201-8224t-mjgsc5pdeqrmac",
                    "id-11134201-8224v-mjgsc7hhmhoge5",
                    "id-11134201-82251-mjgsc8gi9qf9bb",
                    "id-11134201-8224y-mjgsc9fyd9mrdd",
                    "id-11134201-8224t-mjgscby6qe4jaa",
                    "id-11134201-8224v-mjgsccw20qgyf6",
                    "id-11134201-8224s-mjgscenevq4lb5",
                    "id-11134201-8224x-mjgscfmbqsxv59",
                    "id-11134201-8224y-mjgsci4abbb57f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 74600000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 355432657562,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 74600000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50254647851,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgsbpzi5l3bfc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":72,\"model_id\":355432657562,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgsbpzi5l3bfc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":72,\"model_id\":355432657562,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50254647851",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28494037733,
              "shopid": 1623695925,
              "name": "Promo [Promo Special] Advan Smartwatch Se1 | Ips 1.83\" | Bluetooth Calls | Bluetooth 5.2 | Ai Voice Assistant | 100+ Sport Mode | Waterproof Ip68 | Up To 30-Days Battery Life",
              "label_ids": [
                844931064601283,
                1049130,
                1049131,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224q-mjgsaesy0gzrd1",
              "images": [
                "id-11134201-8224q-mjgsaesy0gzrd1",
                "id-11134201-8224w-mjgsaha3o4jo52",
                "id-11134201-8224o-mjgsai6tsjrbc6",
                "id-11134201-8224x-mjgsaj3erk0527",
                "id-11134201-8224o-mjgsall5evib74",
                "id-11134201-8224u-mjgsanclh3b9ff",
                "id-11134201-8224p-mjgsap1uzpxe6f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379985,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 32700000000,
              "price_min": 32700000000,
              "price_max": 32700000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Colour",
                  "options": [
                    "Gold",
                    "Black"
                  ],
                  "images": [
                    "id-11134201-8224s-mjgsasj66sjq62",
                    "id-11134201-82250-mjgsatfpbqiqf8"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 32700000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 350432644214,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 32700000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 28494037733,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgsaesy0gzrd1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2163,\"model_id\":350432644214,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgsaesy0gzrd1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2163,\"model_id\":350432644214,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28494037733",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57704657315,
              "shopid": 1656110262,
              "name": "HEMAT AOLON CURVE JAM TANGAN SMARTWATCH TAHAN AIR IP68 LAYAR IPS MELENGKUNG 2,01 INCI TELEPON BLUETOOTH RUNNING PACE WALLPAPER KUSTOM JAM PINTAR PRIA PEMANTAUAN KESEHATAN",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-82251-mjgs6frzvawy01",
              "images": [
                "id-11134201-82251-mjgs6frzvawy01",
                "id-11134201-8224o-mjgs6igljldw8e",
                "id-11134201-8224q-mjgs6l0gjvuu5d",
                "id-11134201-8224z-mjgs6mtytrsyc3",
                "id-11134201-8224r-mjgs6nv7w2kic2",
                "id-11134201-8224o-mjgs6qe4lnut32",
                "id-11134201-8224r-mjgs6sy1r5zba9",
                "id-11134201-82251-mjgs6vizl53afa",
                "id-11134201-8224z-mjgs6xgnxbls6d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379850,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 37200000000,
              "price_min": 37200000000,
              "price_max": 37200000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "[Curve3Ultra]Perak",
                    "Logam Hitam",
                    "Milan Hitam",
                    "Perak",
                    "Hitam",
                    "[Curve3]Perak",
                    "[New]Pink",
                    "Biru",
                    "Magnetik Pink",
                    "[Curve3Ultra]Hitam",
                    "Logam Perak",
                    "[Curve3]Hitam",
                    "Milan Perak",
                    "Magnetik Hitam",
                    "Logam RoseGold",
                    "[Curve3Ultra]Pink",
                    "[Curve3]RoseGold",
                    "Kulit cokelat"
                  ],
                  "images": [
                    "id-11134201-8224r-mjgs727p8b9e65",
                    "id-11134201-8224u-mjgs7399vu9s2a",
                    "id-11134201-8224x-mjgs757jztoie8",
                    "id-11134201-8224s-mjgs771vrojlbd",
                    "id-11134201-82251-mjgs78xwhjba1e",
                    "id-11134201-8224r-mjgs7a0ooo3k98",
                    "id-11134201-82252-mjgs7cpy1lac39",
                    "id-11134201-8224w-mjgs7fbsx9tu6d",
                    "id-11134201-8224v-mjgs7gfahclc84",
                    "id-11134201-8224w-mjgs7hjxwpvkc3",
                    "id-11134201-8224w-mjgs7im13f2a81",
                    "id-11134201-8224r-mjgs7jordmv703",
                    "id-11134201-8224x-mjgs7mbr2lfqe0",
                    "id-11134201-8224q-mjgs7oylgkcj71",
                    "id-11134201-8224v-mjgs7qtjl91d97",
                    "id-11134201-8224x-mjgs7souzh8j8a",
                    "id-11134201-8224z-mjgs7vaieww788",
                    "id-11134201-8224o-mjgs7xvpylts9a"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 37200000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390432629885,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 37200000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57704657315,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mjgs6frzvawy01\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":978,\"model_id\":390432629885,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mjgs6frzvawy01\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":978,\"model_id\":390432629885,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57704657315",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57304647675,
              "shopid": 1666692538,
              "name": "MURAH Pro 9 SmartWatch Paket 8 Tali Seri 9 Jam Smartwatch Pria Wanita Bisa Buat Olahraga Kesehatan",
              "label_ids": [
                844931064601283,
                700005503,
                1049130,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224z-mjgs7ova7wufb0",
              "images": [
                "id-11134201-8224z-mjgs7ova7wufb0",
                "id-11134201-82250-mjgs7qkdarr9d2",
                "id-11134201-8224t-mjgs7rik21hf77"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379850,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 24500000000,
              "price_min": 24500000000,
              "price_max": 24500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "SILVER",
                    "ROSE GOLD",
                    "HITAM"
                  ],
                  "images": [
                    "id-11134201-8224v-mjgs7tutnw8wfc",
                    "id-11134201-8224s-mjgs7vlvofluf5",
                    "id-11134201-8224q-mjgs7y3vrojn1f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 24500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 400432629734,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 24500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57304647675,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224z-mjgs7ova7wufb0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1009,\"model_id\":400432629734,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224z-mjgs7ova7wufb0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1009,\"model_id\":400432629734,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57304647675",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56804647704,
              "shopid": 1531387649,
              "name": "22MM Bracelet WatchStrap For Huawei Watch GT1 GT 2 3 4 46mm Smartwatch Silicone Watchband For Huawei Watch 4 3 2 Pro Belt Strap",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8262g-mjgs7puq76roe2",
              "images": [
                "sg-11134201-8262g-mjgs7puq76roe2",
                "sg-11134201-8262f-mjgs7q5k8939b3",
                "sg-11134201-8262l-mjgs7qg9vy861f",
                "sg-11134201-825zn-mjgs7qpb56o547",
                "sg-11134201-8262g-mjgs7qxywhs325",
                "sg-11134201-82607-mjgs7rak7u2q80",
                "sg-11134201-8262d-mjgs7rkolzpgf3",
                "sg-11134201-8260j-mjgs7rszrjt14a",
                "sg-11134201-82632-mjgs7s4t3shs6f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379842,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 26570000000,
              "price_min": 26570000000,
              "price_max": 26570000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "WHITE",
                    "dark blue",
                    "Orange",
                    "Army Blue",
                    "green",
                    "GRAY",
                    "black",
                    "Red"
                  ],
                  "images": [
                    "sg-11134201-8262g-mjgs7qxywhs325",
                    "sg-11134201-8260j-mjgs7rszrjt14a",
                    "sg-11134201-82607-mjgs7sdduwar57",
                    "sg-11134201-82617-mjgs7smv5jb63a",
                    "sg-11134201-82617-mjgs7svsxr7pf7",
                    "sg-11134201-8262z-mjgs7t3z3k77dd",
                    "sg-11134201-8261n-mjgs7tc2ddkwaf",
                    "sg-11134201-8262g-mjgs7tnillvo19"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 26570000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 405432636723,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 26570000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56804647704,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262g-mjgs7puq76roe2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1046,\"model_id\":405432636723,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262g-mjgs7puq76roe2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1046,\"model_id\":405432636723,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56804647704",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56004652728,
              "shopid": 1656110262,
              "name": "KUALITAS SUPER XIAOMI SMART BAND 9 ACTIVE | REFRESH RATE 60 HZ | TAHAN AIR HINGGA 50 METER | 50+ MODE OLAHRAGA | BATERAI HINGGA 18 HARI [OFFICIAL STORE]",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224o-mjgs9juw8qgy04",
              "images": [
                "id-11134201-8224o-mjgs9juw8qgy04",
                "id-11134201-8224q-mjgs9kvc5r0i19",
                "id-11134201-8224p-mjgs9lvloefabc",
                "id-11134201-82252-mjgs9muk0utjae",
                "id-11134201-8224o-mjgs9om3bnr751"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379942,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 47400000000,
              "price_min": 47400000000,
              "price_max": 47400000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Beige White",
                    "NEW Purple",
                    "NEW Green",
                    "Pink",
                    "Black"
                  ],
                  "images": [
                    "id-11134201-8224p-mjgs9qy7xo93b4",
                    "id-11134201-8224y-mjgs9spnn8xt56",
                    "id-11134201-8224y-mjgs9v8v0b9e50",
                    "id-11134201-8224u-mjgs9w6bpb7q81",
                    "id-11134201-8224z-mjgs9xwbk1l17d"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 47400000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435432639064,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 47400000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56004652728,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgs9juw8qgy04\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1099,\"model_id\":435432639064,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgs9juw8qgy04\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1099,\"model_id\":435432639064,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56004652728",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52154643397,
              "shopid": 1666692538,
              "name": "LIMITED Xiaomi Smart Band 9 Active | Refresh rate 60 Hz | Tahan Air Hingga 50 Meter | 50+ Mode Olahraga | Baterai Hingga 18 Hari [Official Store]",
              "label_ids": [
                844931064601283,
                1049130,
                700005503,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224r-mjgs87rra9z6a6",
              "images": [
                "id-11134201-8224r-mjgs87rra9z6a6",
                "id-11134201-8224v-mjgs89gtxon775",
                "id-11134201-82252-mjgs8bxndog594",
                "id-11134201-8224o-mjgs8dmp651j0c",
                "id-11134201-82250-mjgs8ej2c9a832"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379885,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 47600000000,
              "price_min": 47600000000,
              "price_max": 47600000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Beige White",
                    "NEW Purple",
                    "NEW Green",
                    "Pink",
                    "Black"
                  ],
                  "images": [
                    "id-11134201-8224p-mjgs8h6eio01b2",
                    "id-11134201-8224u-mjgs8ivuh2bmaf",
                    "id-11134201-8224s-mjgs8kknu7et54",
                    "id-11134201-82250-mjgs8n21x9mt29",
                    "id-11134201-8224w-mjgs8oq8i1hfb9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 47600000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 400432645773,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 47600000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52154643397,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgs87rra9z6a6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1346,\"model_id\":400432645773,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgs87rra9z6a6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1346,\"model_id\":400432645773,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52154643397",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47154677520,
              "shopid": 1623695925,
              "name": "New Arrival Xiaomi Smart Band 9 Active | Refresh Rate 60 Hz | Tahan Air Hingga 50 Meter | 50+ Mode Olahraga | Baterai Hingga 18 Hari [Official Store]",
              "label_ids": [
                844931064601283,
                1049131,
                1049130,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224t-mjgs9mm154p26f",
              "images": [
                "id-11134201-8224t-mjgs9mm154p26f",
                "id-11134201-8224x-mjgs9nlfeosh0f",
                "id-11134201-8224w-mjgs9q2grsaq05",
                "id-11134201-8224u-mjgs9rszjv9h1a",
                "id-11134201-8224u-mjgs9spmfpc219"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379952,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 47100000000,
              "price_min": 47100000000,
              "price_max": 47100000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Beige White",
                    "NEW Purple",
                    "NEW Green",
                    "Pink",
                    "Black"
                  ],
                  "images": [
                    "id-11134201-8224z-mjgs9vjffsaqfe",
                    "id-11134201-8224u-mjgs9wh8i0oy22",
                    "id-11134201-8224z-mjgs9yxd8v0mcf",
                    "id-11134201-8224t-mjgsa1dn7xfp3e",
                    "id-11134201-8224u-mjgsa3v8g35tfd"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 47100000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 340432647551,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 47100000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47154677520,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgs9mm154p26f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049131,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1670,\"model_id\":340432647551,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgs9mm154p26f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049131,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1670,\"model_id\":340432647551,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47154677520",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47104663289,
              "shopid": 60667923,
              "name": "HUAWEI WATCH FIT 4",
              "label_ids": [
                844931064601283,
                1059156,
                700000521,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232
              ],
              "image": "id-11134207-82251-mjgrwww3kiyrd5",
              "images": [
                "id-11134207-82251-mjgrwww3kiyrd5",
                "id-11134207-82251-mjgrwww3lxj745",
                "id-11134207-82251-mjgrwww3nc3na7",
                "id-11134207-8224v-mjgrwww3oqo37f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379952,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 160000000000,
              "price_min": 160000000000,
              "price_max": 160000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Cilacap",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 160000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 320432643086,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 160000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Oeahh",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47104663289,
            "shopid": 60667923,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mjgrwww3kiyrd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700000521,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1675,\"model_id\":320432643086,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mjgrwww3kiyrd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700000521,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1675,\"model_id\":320432643086,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47104663289",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46554667877,
              "shopid": 1666692538,
              "name": "TERLARIS COD Terbaru Jam Tangan Ultra 8 Smartwatch Free Headset dan Strap Polos Jam tangan Pria/Wanita",
              "label_ids": [
                844931064601283,
                700005503,
                1049130,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224r-mjgs9lcetgqt59",
              "images": [
                "id-11134201-8224r-mjgs9lcetgqt59",
                "id-11134201-82251-mjgs9n1j9hj7ba",
                "id-11134201-8224x-mj45k8izthc5c7",
                "id-11134201-82252-mjgs9rz2d81v6e",
                "id-11134201-8224q-mjgs9tnkgbuv2e",
                "id-11134201-8224z-mjgs9ukpk54xa6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379964,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 39013400000,
              "price_min": 39013400000,
              "price_max": 39013400000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "PINK",
                    "FULL HITAM",
                    "CREAM",
                    "HIJAU ARMI",
                    "PUTIH",
                    "NAVY",
                    "ABU ABU",
                    "ORANGE",
                    "HITAM SILVER"
                  ],
                  "images": [
                    "id-11134201-8224w-mjgs9y3cfpqd96",
                    "id-11134201-82250-mjgs9z0pt9tx8d",
                    "id-11134201-8224o-mjgsa0pliozo30",
                    "id-11134201-8224q-mjgsa3aul4hz58",
                    "id-11134201-82250-mjgsa4ziu7lt61",
                    "id-11134201-8224x-mjgsa5x5jj0i4e",
                    "id-11134201-8224q-mjgsa7m8464g17",
                    "id-11134201-8224w-mjgsaa3pcyrpac",
                    "id-11134201-8224r-mjgsaculr56p4e"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 39013400000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 370432650882,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 39013400000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46554667877,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgs9lcetgqt59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1702,\"model_id\":370432650882,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgs9lcetgqt59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1702,\"model_id\":370432650882,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46554667877",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46104663266,
              "shopid": 1623695925,
              "name": "Recommended Pro 9 Smartwatch Paket 8 Tali Seri 9 Jam Smartwatch Pria Wanita Bisa Buat Olahraga Kesehatan",
              "label_ids": [
                844931064601283,
                1049130,
                1049131,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224t-mjgs91cuihom37",
              "images": [
                "id-11134201-8224t-mjgs91cuihom37",
                "id-11134201-8224p-mjgs92azh5afe2",
                "id-11134201-8224s-mjgs94qso93b3b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379916,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 25500000000,
              "price_min": 25500000000,
              "price_max": 25500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "SILVER",
                    "ROSE GOLD",
                    "HITAM"
                  ],
                  "images": [
                    "id-11134201-8224s-mjgs98gvdclfee",
                    "id-11134201-82250-mjgs9ajneqdj29",
                    "id-11134201-8224q-mjgs9d0f3ima93"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 25500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 400432638247,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 25500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46104663266,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgs91cuihom37\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1734,\"model_id\":400432638247,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgs91cuihom37\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1734,\"model_id\":400432638247,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46104663266",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45104663371,
              "shopid": 1666733759,
              "name": "premium xiaomi smart band 9 active | refresh rate 60 hz | tahan air hingga 50 meter | 50+ mode olahraga | baterai hingga 18 hari [official store]",
              "label_ids": [
                844931064601283,
                700005509,
                1049138,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224s-mjgs892bwop059",
              "images": [
                "id-11134201-8224s-mjgs892bwop059",
                "id-11134201-82252-mjgs8a0jrabp56",
                "id-11134201-82251-mjgs8axnf4lhab",
                "id-11134201-8224x-mjgs8cn6ul1f07",
                "id-11134201-8224v-mjgs8f4yfnr86d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379887,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 46600000000,
              "price_min": 46600000000,
              "price_max": 46600000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Beige White",
                    "NEW Purple",
                    "NEW Green",
                    "Pink",
                    "Black"
                  ],
                  "images": [
                    "id-11134201-8224r-mjgs8h4n44qtd5",
                    "id-11134201-8224u-mjgs8itj7k0002",
                    "id-11134201-8224y-mjgs8l9i53pg64",
                    "id-11134201-8224p-mjgs8mxt7ev452",
                    "id-11134201-8224s-mjgs8pdsdcefad"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 46600000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 445432645837,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 46600000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45104663371,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgs892bwop059\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1796,\"model_id\":445432645837,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgs892bwop059\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1796,\"model_id\":445432645837,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45104663371",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56604657254,
              "shopid": 1531387649,
              "name": "Nylon Loop Strap For Huawei Watch Fit 4/3 Sport Breathable Replacement Bracelet Wristband For Huawei Watch Fit 4 Pro Accessories",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "sg-11134201-8261g-mjgs6pxgni8411",
              "images": [
                "sg-11134201-8261g-mjgs6pxgni8411",
                "sg-11134201-8262r-mjgs6q6y0wskf2",
                "sg-11134201-8260w-mjgs6qefepky32",
                "sg-11134201-82604-mjgs6qlgmz9j28",
                "sg-11134201-8261z-mjgs6qusqr5v12",
                "sg-11134201-825zv-mjgs6r5m14oyec",
                "sg-11134201-8262s-mjgs6rh4r9c510",
                "sg-11134201-8262j-mjgs6rogvh1ge5",
                "sg-11134201-82633-mjgs6rzg0glc2c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379828,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 21740000000,
              "price_min": 21740000000,
              "price_max": 21740000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Dark olive green",
                    "Obsidian gray",
                    "Plum color",
                    "Deep navy blue",
                    "Picea crassifolia",
                    "Charcoal",
                    "Heart purple",
                    "Milk white",
                    "Red blue",
                    "Lime",
                    "Dark sea green",
                    "Sea wave blue",
                    "Dark indigo",
                    "Fresh orange",
                    "Neon powder",
                    "Bright sun",
                    "Unity mosaic",
                    "Black rainbow",
                    "White rainbow",
                    "Cherry green",
                    "Double spell red",
                    "Pink tan",
                    "Tornado gray",
                    "Abyss blue green",
                    "Maize white",
                    "Golden orange",
                    "Bright blue",
                    "Spruce fog",
                    "Grape purple",
                    "Lilac",
                    "Spearmint",
                    "Light cyan",
                    "Clear feather",
                    "Chinese red",
                    "Rose pink",
                    "Cape blue",
                    "Grey cloud",
                    "Indigo blue",
                    "Hibiscus powder",
                    "Apricot peach",
                    "Reflective black",
                    "Reflective white",
                    "Heart black",
                    "Ripe berry color",
                    "Dune color",
                    "Camel",
                    "Garnet",
                    "Khaki",
                    "Ice Ocean Blue",
                    "Dark grey",
                    "Midnight blue black",
                    "Cornflower blue",
                    "Pitaya color",
                    "Faint yellow",
                    "Rainbow colors",
                    "Smoke purple",
                    "Papaya color",
                    "Olive green",
                    "Bright pink",
                    "Bright yellow",
                    "Midnight Blue",
                    "Seven colors",
                    "Deep fog ash",
                    "Pearl powder",
                    "Army green",
                    "Blue sea",
                    "Acid blue",
                    "Brilliant pink",
                    "Light yellow",
                    "Black white",
                    "Red black",
                    "Deep black",
                    "Deep olive",
                    "Black sand",
                    "Seashell",
                    "Pink sand",
                    "Orange red"
                  ],
                  "images": [
                    "sg-11134201-82604-mjgs6qlgmz9j28",
                    "sg-11134201-8262s-mjgs6rh4r9c510",
                    "sg-11134201-825zn-mjgs6s6yx1j479",
                    "sg-11134201-8261b-mjgs6se06ps379",
                    "sg-11134201-8261o-mjgs6ski3pxc6c",
                    "sg-11134201-82625-mjgs6sru287a76",
                    "sg-11134201-8260a-mjgs6syd3x8lda",
                    "sg-11134201-8262r-mjgs6t4y9gxw73",
                    "sg-11134201-82632-mjgs6tc634lj56",
                    "sg-11134201-8262i-mjgs6tjak0zld6",
                    "sg-11134201-8261v-mjgs6tp478qt52",
                    "sg-11134201-8261e-mjgs6tvq7oxt3b",
                    "sg-11134201-825zn-mjgs6u391gqsae",
                    "sg-11134201-8260e-mjgs6ual8g0399",
                    "sg-11134201-8260h-mjgs6ug6dj432f",
                    "sg-11134201-8260t-mjgs6um7tog67b",
                    "sg-11134201-825zn-mjgs6usp1csjb5",
                    "sg-11134201-8261u-mjgs6v1l2gaoec",
                    "sg-11134201-8260b-mjgs6v97en7rae",
                    "sg-11134201-8260q-mjgs6vrhoooxeb",
                    "sg-11134201-82604-mjgs6w30vrb6eb",
                    "sg-11134201-825zw-mjgs6wdv6kg364",
                    "sg-11134201-8262j-mjgs6x6tu1hj72",
                    "sg-11134201-8261g-mjgs6xfqai2pdb",
                    "sg-11134201-8260h-mjgs6xnk2zgg22",
                    "sg-11134201-825zl-mjgs6xvk47pjfd",
                    "sg-11134201-82613-mjgs6y8m7ls2dd",
                    "sg-11134201-8262x-mjgs375qpn9h5f",
                    "sg-11134201-8260n-mjgs6ykzc1z6b8",
                    "sg-11134201-8261w-mjgs6z1toj5s9e",
                    "sg-11134201-8262a-mjgs6z8ifb40c6",
                    "sg-11134201-8261g-mjgs6zfqps038f",
                    "sg-11134201-8262h-mjgs6zn2y7ev95",
                    "sg-11134201-8262f-mjgs6zt2db7p96",
                    "sg-11134201-8260m-mjgs70hh0zcy82",
                    "sg-11134201-8261f-mjgs70oc8xl06c",
                    "sg-11134201-82613-mjgs70tz0xdu86",
                    "sg-11134201-8260i-mjgs39fsu77le0",
                    "sg-11134201-8260y-mjgs717dhn2f60",
                    "sg-11134201-8261f-mjgs71f5zrpjef",
                    "sg-11134201-82627-mjgs71macetc9b",
                    "sg-11134201-82635-mjgs71yobocid3",
                    "sg-11134201-82616-mjgs72expukn1e",
                    "sg-11134201-825zl-mjgs72v7gnwhce",
                    "sg-11134201-8262f-mjgs737oerr83e",
                    "sg-11134201-825zl-mjgs73osfls74d",
                    "sg-11134201-8261v-mjgs742zhukl6d",
                    "sg-11134201-8260x-mjgs74lu6m8400",
                    "sg-11134201-82616-mjgs74xtj6di02",
                    "sg-11134201-8262a-mjgs75f8r3sx39",
                    "sg-11134201-82634-mjgs75sdxgqr90",
                    "sg-11134201-8261w-mjgs76c76pz7d6",
                    "sg-11134201-8262l-mjgs76vpk4ck54",
                    "sg-11134201-8260z-mjgs77drzv9d7d",
                    "sg-11134201-825zt-mjgs77kt3x8m7a",
                    "sg-11134201-82618-mjgs785xaznl7b",
                    "sg-11134201-8260q-mjgs78mg6gar41",
                    "sg-11134201-8261u-mjgs797o0743ae",
                    "sg-11134201-8260w-mjgs7a2u953852",
                    "sg-11134201-8261e-mjgs3eodup6rc8",
                    "sg-11134201-8261u-mjgs7aykoao1bf",
                    "sg-11134201-8261g-mjgs7bckr5dy0d",
                    "sg-11134201-82601-mjgs3fe0vdvp93",
                    "sg-11134201-82620-mjgs7c90giyqc8",
                    "sg-11134201-82603-mjgs7cwflwqrec",
                    "sg-11134201-82612-mjgs3g466why45",
                    "sg-11134201-8261x-mjgs7e213i8170",
                    "sg-11134201-8260w-mjgs7ekgketc1b",
                    "sg-11134201-8262v-mjgs7f3gfwu9af",
                    "sg-11134201-8260w-mjgs7fio816tc7",
                    "sg-11134201-825zt-mjgs7foxcxz6da",
                    "sg-11134201-8262n-mjgs7fva7apy07",
                    "sg-11134201-8262g-mjgs7gcb9dky8b",
                    "sg-11134201-8262v-mjgs7gj1n3sz1a",
                    "sg-11134201-82633-mjgs7gqcv0g15b",
                    "sg-11134201-8262s-mjgs7h3pc0010c",
                    "sg-11134201-8262p-mjgs7ht3124h73"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 21740000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 315433214603,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 21740000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56604657254,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261g-mjgs6pxgni8411\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1053,\"model_id\":315433214603,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261g-mjgs6pxgni8411\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1053,\"model_id\":315433214603,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56604657254",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50804652803,
              "shopid": 1542929270,
              "name": "Mofication Mod Kit For Samsung Galaxy Wat 7 40mm 44mm Band Metal Wat Case Silicone Strap Protective Cover Bezel",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-82632-mjgs7765f7cy29",
              "images": [
                "sg-11134201-82632-mjgs7765f7cy29",
                "sg-11134201-8261g-mjgs77veo35vf5",
                "sg-11134201-8262b-mjgs78hph1qb57",
                "sg-11134201-82629-mjgs78ychg5jab",
                "sg-11134201-8261k-mjgs79ceebk183",
                "sg-11134201-82621-mjgs79twnwg427",
                "sg-11134201-8261r-mjgs7aazmrk044",
                "sg-11134201-8262m-mjgs7aqikkqv5c",
                "sg-11134201-8260q-mjgs7bawtjief2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379829,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 333080000000,
              "price_min": 333080000000,
              "price_max": 333080000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "BP",
                    "BB",
                    "BO",
                    "BTFU",
                    "BW",
                    "BGr",
                    "SB",
                    "BY",
                    "S-Steel",
                    "B-Steel",
                    "STFU",
                    "SP",
                    "SGr",
                    "SO",
                    "SY",
                    "SW"
                  ],
                  "images": [
                    "sg-11134201-8262m-mjgs7aqikkqv5c",
                    "sg-11134201-8260q-mjgs7bawtjief2",
                    "sg-11134201-8260v-mjgs7bun2olcc5",
                    "sg-11134201-8261d-mjgs7ccwui9u66",
                    "sg-11134201-8261b-mjgs7cw5m9s5c5",
                    "sg-11134201-8261f-mjgs7dfwyp6uf7",
                    "sg-11134201-8262y-mjgs7e1x5mv656",
                    "sg-11134201-8261m-mjgs7elgb1fod2",
                    "sg-11134201-8262m-mjgs7fb272tfa1",
                    "sg-11134201-8262e-mjgs7fty0jcyf7",
                    "sg-11134201-8261x-mjgs7gcprwud13",
                    "sg-11134201-82601-mjgs7gwgkmpt88",
                    "sg-11134201-8262o-mjgs7hgr8etje6",
                    "sg-11134201-8260p-mjgs7hz9qvpcf7",
                    "sg-11134201-8260o-mjgs7imfudqae9",
                    "sg-11134201-825zy-mjgs7j73vvgj28"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "Galaxy Watch 7 44mm",
                    "Galaxy Watch 7 40mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 333080000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 345432636276,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 333080000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50804652803,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82632-mjgs7765f7cy29\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1440,\"model_id\":345432636276,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82632-mjgs7765f7cy29\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1440,\"model_id\":345432636276,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50804652803",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50104647705,
              "shopid": 1666733759,
              "name": "promo [promo special] advan smartwatch s1| ips 2.01 curve display | ai voice | bluetooth calls | bluetooth 5.3 | 100+ sports modes | long-lasting battery",
              "label_ids": [
                844931064601283,
                700005509,
                1049138,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224t-mjgs4fsu60w35b",
              "images": [
                "id-11134201-8224t-mjgs4fsu60w35b",
                "id-11134201-8224q-mjgs4gs1687857",
                "id-11134201-82250-mjgs4ijpwa2t52",
                "id-11134201-8224s-mjgs4l2l7ax064",
                "id-11134201-8224v-mjgs4mtm8rnk50",
                "id-11134201-8224y-mjgs4ntz47wl54",
                "id-11134201-8224r-mjgs4otpzfup8d",
                "id-11134201-82250-mjgs4prz4fsw02",
                "id-11134201-8224t-mjgs4rix2w3k14"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379724,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 29400000000,
              "price_min": 29400000000,
              "price_max": 29400000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Colour",
                  "options": [
                    "S1 V2 Silver",
                    "Black TAQWA",
                    "S1 V2 Gold",
                    "S1 Black",
                    "S1 Silver",
                    "S1 V2 Black",
                    "GOLD TAQWA",
                    "S1 Gold",
                    "S1 V2 Pink"
                  ],
                  "images": [
                    "id-11134201-8224v-mjgs4ukn87pf63",
                    "id-11134201-8224p-mjgs4wb0z1tv92",
                    "id-11134201-8224u-mjgs4x8qycxt17",
                    "id-11134201-8224w-mjgs4y889fr8bd",
                    "id-11134201-8224o-mjgs4zxq1urp0a",
                    "id-11134201-82251-mjgs52gyl3pg77",
                    "id-11134201-8224y-mjgs53f0mgav2a",
                    "id-11134201-8224u-mjgs554f93b48a",
                    "id-11134201-8224p-mjgs57patjwkfd"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 29400000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 325432618348,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 29400000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50104647705,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgs4fsu60w35b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1480,\"model_id\":325432618348,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgs4fsu60w35b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1480,\"model_id\":325432618348,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50104647705",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27744022795,
              "shopid": 1666692538,
              "name": "DISKON [PROMO SPECIAL] ADVAN Smartwatch S1| IPS 2.01 Curve Display | Ai Voice | Bluetooth Calls | Bluetooth 5.3 | 100+ Sports Modes | Long-lasting Battery",
              "label_ids": [
                844931064601283,
                1049130,
                700005503,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-82250-mjgs4ez32lfp82",
              "images": [
                "id-11134201-82250-mjgs4ez32lfp82",
                "id-11134201-8224q-mjgs4gp4epdt5d",
                "id-11134201-8224v-mjgs4j8eyy9s2c",
                "id-11134201-82252-mjgs4k69iltt84",
                "id-11134201-8224o-mjgs4lvi249281",
                "id-11134201-8224w-mjgs4msctp1j54",
                "id-11134201-8224q-mjgs4p91tk3rc6",
                "id-11134201-8224z-mjgs4qy09b0g0e",
                "id-11134201-8224p-mjgs4rvgiupu7f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379720,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 29700000000,
              "price_min": 29700000000,
              "price_max": 29700000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Colour",
                  "options": [
                    "S1 V2 Silver",
                    "Black TAQWA",
                    "S1 V2 Gold",
                    "S1 Black",
                    "S1 Silver",
                    "S1 V2 Black",
                    "GOLD TAQWA",
                    "S1 Gold",
                    "S1 V2 Pink"
                  ],
                  "images": [
                    "id-11134201-82250-mjgs4ue2ql8n3f",
                    "id-11134201-8224s-mjgs4w2c7b414d",
                    "id-11134201-8224r-mjgs4wyzbj0gb6",
                    "id-11134201-8224q-mjgs4zh349hj1d",
                    "id-11134201-82250-mjgs51yeqtxgef",
                    "id-11134201-82251-mjgs52vqpwqs16",
                    "id-11134201-8224w-mjgs53szhptwfc",
                    "id-11134201-82250-mjgs54q7rb4546",
                    "id-11134201-8224z-mjgs55n3qfibc4"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 29700000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390432614679,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 29700000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 27744022795,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82250-mjgs4ez32lfp82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2209,\"model_id\":390432614679,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82250-mjgs4ez32lfp82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2209,\"model_id\":390432614679,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27744022795",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56404643218,
              "shopid": 1666733759,
              "name": "termurah tesladi smart watch t800 pro max bluetooth smartwatch 1.99 inch hd screen full touch bisa phone call ip68 waterproof heart rate monitor smartwatch",
              "label_ids": [
                844931064601283,
                1718093079,
                700005509,
                1049138,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224x-mjgs2hsxf4zk46",
              "images": [
                "id-11134201-8224x-mjgs2hsxf4zk46",
                "id-11134201-82251-mjgs2k9egg77c2",
                "id-11134201-8224o-mjgs2l8aoyrnf5",
                "id-11134201-8224s-mjgs2m61vv29da",
                "id-11134201-8224z-mjgs2o4on01t95",
                "id-11134201-8224v-mjgs2p3v3kzr13",
                "id-11134201-8224q-mjgs2rmkmo793e",
                "id-11134201-8224x-mjgs2teczcw228",
                "id-11134201-8224q-mjgs2vxl35l352"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379632,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 23500000000,
              "price_min": 23500000000,
              "price_max": 23500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Merah Jambu",
                    "Biru",
                    "Putih",
                    "Hijau",
                    "Merah"
                  ],
                  "images": [
                    "id-11134201-8224q-mjgs2zkoog7645",
                    "id-11134201-8224z-mjgs32540m4i5d",
                    "id-11134201-8224o-mjgs34oc2x364a",
                    "id-11134201-8224z-mjgs36ff9lhja8",
                    "id-11134201-82251-mjgs38xy8sg36e",
                    "id-11134201-8224t-mjgs39z788hu03"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 23500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 282333605769,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 23500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56404643218,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgs2hsxf4zk46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1068,\"model_id\":282333605769,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgs2hsxf4zk46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1068,\"model_id\":282333605769,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56404643218",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46504672793,
              "shopid": 1656110262,
              "name": "OFFICIAL TESLADI SMART WATCH T800 PRO MAX BLUETOOTH SMARTWATCH 1.99 INCH HD SCREEN FULL TOUCH BISA PHONE CALL IP68 WATERPROOF HEART RATE MONITOR SMARTWATCH",
              "label_ids": [
                844931064601283,
                700005505,
                1049134,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224x-mjgs3gsgk0li22",
              "images": [
                "id-11134201-8224x-mjgs3gsgk0li22",
                "id-11134201-82252-mjgs3hr5f3ev0b",
                "id-11134201-8224y-mjgs3k8wqdq98f",
                "id-11134201-82252-mjgs3l6qm41u41",
                "id-11134201-8224v-mjgs3nr4mh3733",
                "id-11134201-8224s-mjgs3ornqps78a",
                "id-11134201-8224o-mjgs3rblk3k1f8",
                "id-11134201-8224y-mjgs3tw1a9kxf8",
                "id-11134201-8224p-mjgs3vod5a8767"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379674,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 24300000000,
              "price_min": 24300000000,
              "price_max": 24300000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Merah Jambu",
                    "Biru",
                    "Putih",
                    "Hijau",
                    "Merah"
                  ],
                  "images": [
                    "id-11134201-82251-mjgs3y3evi866e",
                    "id-11134201-8224v-mjgs3z5nd72cbb",
                    "id-11134201-82250-mjgs40xqq1hde9",
                    "id-11134201-8224x-mjgs42pruryfd1",
                    "id-11134201-8224p-mjgs44ipaj2809",
                    "id-11134201-8224v-mjgs46bgx2pvc1"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 24300000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 365432617098,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 24300000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46504672793,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgs3gsgk0li22\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005505,1049134,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1706,\"model_id\":365432617098,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgs3gsgk0li22\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005505,1049134,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1706,\"model_id\":365432617098,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46504672793",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41978007795,
              "shopid": 1542929270,
              "name": "PAGANI DESIGN V3 Version GMT Wates Men's Luxury Sapphire Automatic Meanical Wat 40MM Stainless Steel Waterproof Wat",
              "label_ids": [
                844931064601283,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-8261p-mjgs49zljfuucd",
              "images": [
                "sg-11134201-8261p-mjgs49zljfuucd",
                "sg-11134201-8262a-mjgs4as772maf6",
                "sg-11134201-82606-mjgs4b6a8q2qb7",
                "sg-11134201-825zw-mjgs4bk37vuo22",
                "sg-11134201-82626-mjgs4bz6o35y22",
                "sg-11134201-8262i-mjgs4cbo5tdw5a",
                "sg-11134201-82617-mjgs4ct19xqe9b",
                "sg-11134201-8260u-mjgs4d25rsw485",
                "sg-11134201-8261f-mjgs4d9ttssid4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379686,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 572510000000,
              "price_min": 572510000000,
              "price_max": 572510000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "black-gray",
                    "Jubilee black red",
                    "All Gold",
                    "Gold Black",
                    "Jubilee black blue",
                    "Jubilee black",
                    "Jubilee blue red",
                    "black blue",
                    "black red",
                    "Mesh black blue",
                    "Rubber black blue",
                    "Jubilee black green",
                    "blue red",
                    "black",
                    "Jubilee Black Grey",
                    "Black gray gold",
                    "All Gold Black",
                    "black green",
                    "Rubber black green",
                    "Rose gold",
                    "Rubber blue red"
                  ],
                  "images": [
                    "sg-11134201-8260u-mjgs4d25rsw485",
                    "sg-11134201-8261f-mjgs4d9ttssid4",
                    "sg-11134201-8262r-mjgs4dgyu9z80f",
                    "sg-11134201-82603-mjgs4dpbk2ddae",
                    "sg-11134201-82628-mjgs4dvys0ldd8",
                    "sg-11134201-82604-mjgs4e2tgcg27a",
                    "sg-11134201-8261d-mjgs4e929z41c8",
                    "sg-11134201-8261f-mjgs4ehnjcaq38",
                    "sg-11134201-82614-mjgs4et5wwzpd5",
                    "sg-11134201-8260n-mjgs4f09687417",
                    "sg-11134201-8260l-mjgs4f6ojvuqa1",
                    "sg-11134201-82631-mjgs4ff7wf7nfc",
                    "sg-11134201-82612-mjgs4fkp0qo0c5",
                    "sg-11134201-82635-mjgs4frv4mww66",
                    "sg-11134201-81zwb-miz78sp6okjre4",
                    "sg-11134201-8261h-mjgs4g4yl6v4ec",
                    "sg-11134201-8260a-mjgs4gbk3dohb7",
                    "sg-11134201-8260w-mjgs4gi3anet0b",
                    "sg-11134201-82615-mjgs4gqhq77kd6",
                    "sg-11134201-82607-mjgs4gykaqdee9",
                    "sg-11134201-8260r-mjgs4h8e8fsx3b"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "Option 2",
                    "V3"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 572510000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 335432625828,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 572510000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41978007795,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261p-mjgs49zljfuucd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1976,\"model_id\":335432625828,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261p-mjgs49zljfuucd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1976,\"model_id\":335432625828,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41978007795",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55454643206,
              "shopid": 1531387649,
              "name": "22mm Titanium Strap For HUAWEI WATCH Ultimate 1/2/Buds Metal Luxury Band For Huawei Watch 5 4/GT 6 5 4 Pro 3 2 46mm GT2e GT3 SE",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "sg-11134201-825zk-mjgrzjkuadc215",
              "images": [
                "sg-11134201-825zk-mjgrzjkuadc215",
                "sg-11134201-8260o-mjgrzjs7qccgba",
                "sg-11134201-825zz-mjgrzjyqcjk423",
                "sg-11134201-8261g-mjgrzk6yf6dfc2",
                "sg-11134201-8260q-mjgrzkffi77r96",
                "sg-11134201-8261q-mjgrzkmww1l2a8",
                "sg-11134201-82620-mjgrzkvpiuiqec",
                "sg-11134201-8262d-mjgrzlh7hreq1b",
                "sg-11134201-82625-mjgrzlnz7c3o60"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379459,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 172620000000,
              "price_min": 172620000000,
              "price_max": 172620000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Black",
                    "Silver",
                    "Gray"
                  ],
                  "images": [
                    "sg-11134201-8260q-mjgrzkffi77r96",
                    "sg-11134201-8262d-mjgrzlh7hreq1b",
                    "sg-11134201-8261x-mjgrzlv97lz9bf"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "22mm",
                    "Huawei GT3 Pro 46mm",
                    "Huawei GT2 Pro GT2e",
                    "Huawei GT4 3 2 46mm",
                    "Huawei GT5 5Pro 46mm",
                    "Huawei GT6 6Pro 46mm",
                    "Huawei Ultimate 1 2"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 172620000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 425432596402,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 172620000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55454643206,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zk-mjgrzjkuadc215\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1137,\"model_id\":425432596402,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zk-mjgrzjkuadc215\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1137,\"model_id\":425432596402,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55454643206",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51704643112,
              "shopid": 219544920,
              "name": "Jam Tangan Smartwatch Digitec FITRACK Amoled Screen with Extra Straps",
              "label_ids": [
                1012729,
                1002164,
                1014367,
                298888358,
                700190019,
                298938357,
                2018618,
                1400066568,
                844931086908638,
                844931064601283,
                1718093079,
                700005489,
                1059152,
                822059908662278,
                825465608497696,
                825465608492064,
                825465608499232,
                2098629
              ],
              "image": "id-11134207-8224r-mjgrpnz8kwzo7f",
              "images": [
                "id-11134207-8224r-mjgrpnz8kwzo7f",
                "id-11134207-8224y-mjgrpnz6qwapc2",
                "id-11134207-82252-mjgrpnz6sav539",
                "id-11134207-8224t-mjgrpnz6tpfl2a",
                "id-11134207-8224z-mjgrpnz6v4018b",
                "id-11134207-8224w-mjgrpnz6wikh30"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379551,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "DIGITEC",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 108247200000,
              "price_min": 108247200000,
              "price_max": 108247200000,
              "price_min_before_discount": 117660000000,
              "price_max_before_discount": 117660000000,
              "hidden_price_display": null,
              "price_before_discount": 117660000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-8%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemy-mjgrq9n1x43k07.16000081768379038.mp4",
                  "thumb_url": "id-11110105-6vemy-mjgrq9n1x43k07_cover",
                  "duration": 30,
                  "version": 2,
                  "vid": "id-11110105-6vemy-mjgrq9n1x43k07",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemy-mjgrq9n1x43k07.16000081768379038.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemy-mjgrq9n1x43k07.16000081768379038.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemy-mjgrq9n1x43k07.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "BK-Hitam"
                  ],
                  "images": [
                    "id-11134207-8224u-mjgrpnz6xx4x7e"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp176RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 728126024385536,
                "price": 105747200000,
                "strikethrough_price": 117660000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1309874180997120,
                "discount_text": "-8%",
                "model_id": 277333600501,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1309874180997120,
                  "voucher_code": "TIMESJAN3",
                  "voucher_discount": 2500000000,
                  "time_info": {
                    "start_time": 1767200460,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 30000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 117660000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp176RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Time Kingdom Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51704643112,
            "shopid": 219544920,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjgrpnz8kwzo7f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,1002164,1014367,298888358,700190019,298938357,2018618,1400066568,844931086908638,844931064601283,1718093079,700005489,1059152,822059908662278,825465608497696,825465608492064,825465608499232,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":1379,\"model_id\":277333600501,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjgrpnz8kwzo7f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,1002164,1014367,298888358,700190019,298938357,2018618,1400066568,844931086908638,844931064601283,1718093079,700005489,1059152,822059908662278,825465608497696,825465608492064,825465608499232,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":1379,\"model_id\":277333600501,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51704643112",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50654652787,
              "shopid": 1666692538,
              "name": "100% AMAN Terbaru Smartwatch i8 Ultra Watch 8 Free 2 Tali Plus Earphone TWS Full Layar ADA Kalkulator Support Android Ios",
              "label_ids": [
                844931064601283,
                1049130,
                700005503,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-82252-mjgs18uiypl212",
              "images": [
                "id-11134201-82252-mjgs18uiypl212",
                "id-11134201-8224y-mjgs1akbg1s18f",
                "id-11134201-8224y-mjgs1bhgbe2s38",
                "id-11134201-8224s-mjgs1dy4x91jc4",
                "id-11134201-82252-mjgs1ge1jx8k1f",
                "id-11134201-8224t-mjgs1iwlw8hub2",
                "id-11134201-8224y-mjgs1le4z1ts59",
                "id-11134201-8224t-mjgs1nusbyma33",
                "id-11134201-8224p-mjgs1qbwmepv41"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379583,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 21135000000,
              "price_min": 21135000000,
              "price_max": 21135000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "full hitam",
                    "orange",
                    "hitam silver",
                    "putih",
                    "abu- abu",
                    "navy",
                    "pink",
                    "ungu",
                    "hijau army",
                    "cream"
                  ],
                  "images": [
                    "id-11134201-82252-mjgs1szm5atjc2",
                    "id-11134201-8224t-mjgs1tykj47536",
                    "id-11134201-8224w-mjgs1uuq8uted0",
                    "id-11134201-82250-mjgs1xb2emmd5b",
                    "id-11134201-82252-mjgs1yavuk1z99",
                    "id-11134201-8224u-mjgs2005el8nd7",
                    "id-11134201-8224v-mjgs22gqhzia58",
                    "id-11134201-8224s-mjgs24xcq2o798",
                    "id-11134201-8224w-mjgs26ljc93a8c",
                    "id-11134201-8224r-mjgs27hu1vk4e1"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 21135000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 335432608007,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 21135000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50654652787,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgs18uiypl212\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1452,\"model_id\":335432608007,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgs18uiypl212\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1452,\"model_id\":335432608007,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50654652787",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48804663218,
              "shopid": 1531387649,
              "name": "Sport Silicone Strap For Amazfit Active 2 SmartWatch Bracelet For Amazfit Active/Active 2 Wristband Replacement Belt Accessories",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-82610-mjgrzssovk7b7f",
              "images": [
                "sg-11134201-82610-mjgrzssovk7b7f",
                "sg-11134201-8260f-mjgrzt1lyjgl63",
                "sg-11134201-82612-mjgrzt7a0xkw23",
                "sg-11134201-8260v-mjgrzth683y99d",
                "sg-11134201-8260f-mjgrztmjelmv2b",
                "sg-11134201-8260j-mjgrztus7vnn41",
                "sg-11134201-825zz-mjgruyta953b77",
                "sg-11134201-8260r-mjgrzu7etnuubb",
                "sg-11134201-8262f-mjgrzuh1faitbd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379473,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 24730000000,
              "price_min": 24730000000,
              "price_max": 24730000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Pink teal green",
                    "Black black",
                    "Gray white",
                    "Pink white",
                    "Red black",
                    "Black red",
                    "Purple green",
                    "Black yellow",
                    "Black white",
                    "Midnight blue white",
                    "Gray yellow",
                    "Black gray",
                    "White colorful",
                    "Black colorful",
                    "Black green",
                    "White black"
                  ],
                  "images": [
                    "sg-11134201-825zz-mjgruyta953b77",
                    "sg-11134201-8260f-mjgrztmjelmv2b",
                    "sg-11134201-8262v-mjgrzupgwq2r62",
                    "sg-11134201-82627-mjgruz8soow1ba",
                    "sg-11134201-825zv-mjgrzv0cnjsy16",
                    "sg-11134201-82622-mjgrzv67e51f73",
                    "sg-11134201-8261d-mjgrzvbj4npd5d",
                    "sg-11134201-8262b-mjgrv08e4nwj1b",
                    "sg-11134201-825zz-mjgrv0gm8npj4e",
                    "sg-11134201-82602-mjgrzvs60w0527",
                    "sg-11134201-8262j-mjgrzvyhuoefd6",
                    "sg-11134201-8262f-mjgrzw3ygs1u34",
                    "sg-11134201-8260v-mjgrzwbvt34523",
                    "sg-11134201-8261y-mjgrv1pdb8cg42",
                    "sg-11134201-8261k-mjgrzwpr8s8zc2",
                    "sg-11134201-8261j-mjgrzwv4marr5d"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "For Amazfit Active 2",
                    "For Amazfit Active "
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 24730000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 395432605119,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 24730000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48804663218,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82610-mjgrzssovk7b7f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1565,\"model_id\":395432605119,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82610-mjgrzssovk7b7f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1565,\"model_id\":395432605119,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48804663218",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45904667773,
              "shopid": 1656110262,
              "name": "PROMO TESLADI SMARTWATCH D18 SMART WATCH OLAHRAGA TAHAN AIR PRIA DAN WANITA BLUETOOTH DIGITAL SMART WATCH",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224x-mjgs1d56s2yr3d",
              "images": [
                "id-11134201-8224x-mjgs1d56s2yr3d",
                "id-11134201-8224z-mjgs1e4pc3ycff",
                "id-11134201-8224o-mjgs1gnxtv5x2b",
                "id-11134201-8224u-mjgs1ifkpwcgda",
                "id-11134201-8224t-mjgs1jj2piiuf0",
                "id-11134201-8224o-mjgs1kj1f2m9a9",
                "id-11134201-8224x-mjgs1n1l23no68",
                "id-11134201-8224t-mjgs1o1wzu9y15",
                "id-11134201-8224o-mjgs1prof5z618"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379565,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 20000000000,
              "price_min": 20000000000,
              "price_max": 20000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Merah",
                    "Hitam",
                    "Biru"
                  ],
                  "images": [
                    "id-11134201-8224v-mjgs1rkfnnyab6",
                    "id-11134201-8224s-mjgs1t9nxatc69",
                    "id-11134201-8224o-mjgs1u6pljpic1"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 20000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 188798893284,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 20000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45904667773,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgs1d56s2yr3d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1747,\"model_id\":188798893284,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgs1d56s2yr3d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1747,\"model_id\":188798893284,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45904667773",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44504682254,
              "shopid": 1666733759,
              "name": "hemat tesladi smartwatch d18 smart watch olahraga tahan air pria dan wanita bluetooth digital smart watch",
              "label_ids": [
                844931064601283,
                700005509,
                1049138,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-82252-mjgs0fi612bm93",
              "images": [
                "id-11134201-82252-mjgs0fi612bm93",
                "id-11134201-8224u-mjgs0ggolzpd9e",
                "id-11134201-82250-mjgs0i7rhh51a9",
                "id-11134201-8224w-mjgs0jxdhlhhc2",
                "id-11134201-8224q-mjgs0kw1gd8ma3",
                "id-11134201-8224y-mjgs0mmyh3wkd0",
                "id-11134201-8224w-mjgs0odxhhjac5",
                "id-11134201-8224p-mjgs0qxezpxi38",
                "id-11134201-8224t-mjgs0rvrssuefd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379523,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 20300000000,
              "price_min": 20300000000,
              "price_max": 20300000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Merah",
                    "Hitam",
                    "Biru"
                  ],
                  "images": [
                    "id-11134201-82252-mjgs0ut57l6rd5",
                    "id-11134201-8224r-mjgs0whupmgzb4",
                    "id-11134201-8224v-mjgs0y7bn4zr23"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 20300000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 385432602136,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 20300000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44504682254,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgs0fi612bm93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1836,\"model_id\":385432602136,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgs0fi612bm93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1836,\"model_id\":385432602136,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44504682254",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55404652673,
              "shopid": 1666733759,
              "name": "termurah smarwatch i8 ultra free headset + 2 pasang strap/tali",
              "label_ids": [
                844931064601283,
                1718093079,
                1049138,
                700005509,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224o-mjgrw7n0rw92c5",
              "images": [
                "id-11134201-8224o-mjgrw7n0rw92c5",
                "id-11134201-8224p-mjgrw8lplkhtdc",
                "id-11134201-8224q-mjgrw9i4lm9te8",
                "id-11134201-8224r-mjgrwb7tq41zd9",
                "id-11134201-8224z-mjgrwd0d026f3c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379332,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 21449900000,
              "price_min": 21449900000,
              "price_max": 21449900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "ABU-ABU",
                    "UNGU",
                    "NAVY",
                    "ORANGE",
                    "PUTIH",
                    "HITAM SILVER",
                    "PINK",
                    "FULL HITAM",
                    "HIJAU ARMY"
                  ],
                  "images": [
                    "id-11134201-8224v-mjgrwg53jkzr5c",
                    "id-11134201-8224p-mjgrwin0qvwm1d",
                    "id-11134201-8224p-mjgrwl4shkw6f9",
                    "id-11134201-8224w-mjgrwmtxvcw405",
                    "id-11134201-8224x-mjgrwoiq3ocl2b",
                    "id-11134201-8224x-mjgrwr0dh3bbe8",
                    "id-11134201-8224q-mjgrws9n73es5a",
                    "id-11134201-8224w-mjgrwubtf85j77",
                    "id-11134201-8224w-mjgrwvbj9ywz51"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 21449900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 340432586322,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 21449900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55404652673,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgrw7n0rw92c5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1049138,700005509,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1141,\"model_id\":340432586322,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgrw7n0rw92c5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1049138,700005509,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1141,\"model_id\":340432586322,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55404652673",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54254643226,
              "shopid": 1656110262,
              "name": "VALUE PACK SAMSUNG SMARTWATCH 10 PRO MAX 2.3\" AMOLED HD DISPLAY GPS NFC WATERPROOF BLUETOOTH CALL SMARTWATCH PRIA WIRELESS CHARGING DAN GANTI WALLPAPPER JAM TANGAN SMARTWATCH WANITA",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224y-mjgry36hxedf78",
              "images": [
                "id-11134201-8224y-mjgry36hxedf78",
                "id-11134201-8224s-mjgry53kyoeb58",
                "id-11134201-8224x-mjgry646ultyaf",
                "id-11134201-82251-mjgry74k9rlu69",
                "id-11134201-82252-mjgry9pfbythac",
                "id-11134201-8224y-mjgrycbflhqb2b",
                "id-11134201-8224z-mjgryddoegowfb",
                "id-11134201-8224x-mjgryef88ema57"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379421,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 27950000000,
              "price_min": 27950000000,
              "price_max": 27950000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "WHITE",
                    "PINK",
                    "Black(2strap)",
                    "BLACK",
                    "PINK(2strap)",
                    "WHITE(2strap)",
                    "Blue(2strap)",
                    "BlUE"
                  ],
                  "images": [
                    "id-11134201-8224v-mjgrygu5cvlwc6",
                    "id-11134201-8224u-mjgryilul5af20",
                    "id-11134201-82252-mjgrykcsffgmf8",
                    "id-11134201-8224y-mjgryldsbl6r22",
                    "id-11134201-8224q-mjgrynzfcz5x8b",
                    "id-11134201-8224t-mjgryoy0pmv7a3",
                    "id-11134201-8224w-mjgryqo4701vf2",
                    "id-11134201-8224z-mjgrysfjwmbo03"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 27950000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 400432588376,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 27950000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54254643226,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgry36hxedf78\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1218,\"model_id\":400432588376,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgry36hxedf78\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1218,\"model_id\":400432588376,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54254643226",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53154643215,
              "shopid": 1666733759,
              "name": "best seller samsung smartwatch 10 pro max 2.3\" amoled hd display gps nfc waterproof bluetooth call smartwatch pria wireless charging dan ganti wallpapper jam tangan smartwatch wanita",
              "label_ids": [
                844931064601283,
                700005509,
                1049138,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "id-11134201-8224y-mjgrx4qydc03f6",
              "images": [
                "id-11134201-8224y-mjgrx4qydc03f6",
                "id-11134201-8224x-mjgrx6jrikn7a5",
                "id-11134201-8224w-mjgrx7ke58g7d0",
                "id-11134201-8224u-mjgrx8ku988x11",
                "id-11134201-8224s-mjgrx9k8n01ze6",
                "id-11134201-8224x-mjgrxbbuzdaffb",
                "id-11134201-8224z-mjgrxca69mh366",
                "id-11134201-8224t-mjgrxd93twch34"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379378,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 28250000000,
              "price_min": 28250000000,
              "price_max": 28250000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "WHITE",
                    "PINK",
                    "Black(2strap)",
                    "BLACK",
                    "PINK(2strap)",
                    "WHITE(2strap)",
                    "Blue(2strap)",
                    "BlUE"
                  ],
                  "images": [
                    "id-11134201-8224w-mjgrxgfu603n58",
                    "id-11134201-8224q-mjgrxiz04jk633",
                    "id-11134201-8224p-mjgrxkrbk3yd37",
                    "id-11134201-8224u-mjgrxms8og79bf",
                    "id-11134201-82251-mjgrxokqo002d4",
                    "id-11134201-8224x-mjgrxpj22ih330",
                    "id-11134201-8224t-mjgrxrzfec5e8a",
                    "id-11134201-82251-mjgrxtowybr72f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 28250000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 360432583317,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 28250000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53154643215,
            "shopid": 1666733759,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgrx4qydc03f6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1277,\"model_id\":360432583317,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgrx4qydc03f6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1277,\"model_id\":360432583317,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53154643215",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44378012568,
              "shopid": 1531387649,
              "name": "Silicone watchband new strap for Huami Amazfit Neo smart watch Replacement Wristband Bracelet Accessories",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "sg-11134201-8260h-mjgrwsj46gao50",
              "images": [
                "sg-11134201-8260h-mjgrwsj46gao50",
                "sg-11134201-8261i-mjgrr6nz2znqae",
                "sg-11134201-82633-mjgrwsvrvh8l49",
                "sg-11134201-82628-mjgrwt1xozrb5f",
                "sg-11134201-8262s-mjgrwtazhxqe03",
                "sg-11134201-8260n-mjgrr4q3wzraad",
                "sg-11134201-8260t-mjgrwtn54ow507",
                "sg-11134201-82607-mjgrwtv6kg052e",
                "sg-11134201-8260k-mjgrwu1dr4e83f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379331,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 24270000000,
              "price_min": 24270000000,
              "price_max": 24270000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "white",
                    "black",
                    "orange",
                    "cyan",
                    "midnight blue",
                    "yellow",
                    "pink",
                    "gray"
                  ],
                  "images": [
                    "sg-11134201-8260k-mjgrwu1dr4e83f",
                    "sg-11134201-8260t-mjgrwtn54ow507",
                    "sg-11134201-82625-mjgrr7w5foqoe9",
                    "sg-11134201-8262g-mjgrwudhh05ib2",
                    "sg-11134201-82634-mjgrwuip6ubnfa",
                    "sg-11134201-8262h-mjgrwupkbzeta2",
                    "sg-11134201-8261j-mjgrwuvmiv4691",
                    "sg-11134201-8262d-mjgrwv25c4qv8f"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "For Amazfit Neo"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 24270000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 445432586239,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 24270000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44378012568,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260h-mjgrwsj46gao50\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1846,\"model_id\":445432586239,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260h-mjgrwsj46gao50\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1846,\"model_id\":445432586239,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44378012568",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26344032728,
              "shopid": 1531387649,
              "name": "20mm Silicone Band Strap For Amazfit active/amazfit GTS 4 Mini/2 2E 3 Wristband Bracelet for AMAZFIT GTR MINI/Amazfit active",
              "label_ids": [
                844931064601283,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8260t-mjgryom1ob9c8c",
              "images": [
                "sg-11134201-8260t-mjgryom1ob9c8c",
                "sg-11134201-82629-mjgryovim80023",
                "sg-11134201-8260w-mjgryp2o3ll119",
                "sg-11134201-82625-mjgrypcajlz697",
                "sg-11134201-8260c-mjgrypjrozcw58",
                "sg-11134201-8262n-mjgrypyitb7nb9",
                "sg-11134201-8262l-mjgryq5fwooy49",
                "sg-11134201-82604-mjgryqdsnu2q21",
                "sg-11134201-8260n-mjgryqllo83mf3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379421,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 25190000000,
              "price_min": 25190000000,
              "price_max": 25190000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "blue",
                    "black",
                    "red",
                    "pink",
                    "white",
                    "mint green",
                    "green",
                    "wine red",
                    "orange",
                    "light green",
                    "gray"
                  ],
                  "images": [
                    "sg-11134201-82604-mjgryqdsnu2q21",
                    "sg-11134201-8260w-mjgryp2o3ll119",
                    "sg-11134201-8262y-mjgryqrkwb2a2a",
                    "sg-11134201-825zk-mjgryr3u9v5z6a",
                    "sg-11134201-82613-mjgryrh889vrf9",
                    "sg-11134201-82635-mjgryrtwa137e4",
                    "sg-11134201-8260a-mjgrys311q8131",
                    "sg-11134201-8262k-mjgrys7rk3ycac",
                    "sg-11134201-8262j-mjgrysejxipzd8",
                    "sg-11134201-8261q-mjgrysp20o3l3b",
                    "sg-11134201-8261r-mjgrysvikidja2"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "20mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 25190000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 267333810143,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 25190000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26344032728,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260t-mjgryom1ob9c8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2288,\"model_id\":267333810143,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260t-mjgryom1ob9c8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2288,\"model_id\":267333810143,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26344032728",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56904642979,
              "shopid": 1531387649,
              "name": "Silicone watchband new strap for Huami Amazfit Neo smart watch Replacement Wristband Bracelet Accessories",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8260u-mjgrr4cr39xh1d",
              "images": [
                "sg-11134201-8260u-mjgrr4cr39xh1d",
                "sg-11134201-8260n-mjgrr4q3wzraad",
                "sg-11134201-8262n-mjgrr5a9cgleb9",
                "sg-11134201-825zt-mjgrr5mwqc5jcb",
                "sg-11134201-82625-mjgrr5zmnfgncc",
                "sg-11134201-8260i-mjgrr6i1yps1fb",
                "sg-11134201-8261i-mjgrr6nz2znqae",
                "sg-11134201-8261p-mjgrr71v2cqpd3",
                "sg-11134201-8260k-mjgrr7gwzqbm90"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768379069,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 24270000000,
              "price_min": 24270000000,
              "price_max": 24270000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "white",
                    "black",
                    "orange",
                    "cyan",
                    "midnight blue",
                    "yellow",
                    "pink",
                    "gray"
                  ],
                  "images": [
                    "sg-11134201-825zt-mjgrr5mwqc5jcb",
                    "sg-11134201-8260u-mjgrr4cr39xh1d",
                    "sg-11134201-82625-mjgrr7w5foqoe9",
                    "sg-11134201-8261g-mjgrr8956squ44",
                    "sg-11134201-8261l-mjgrr8pymyv859",
                    "sg-11134201-81ztg-mie1yy6j6fpg08",
                    "sg-11134201-8260p-mjgrr9gw1vyce9",
                    "sg-11134201-8261d-mjgrr9sy8zk2b4"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "For Amazfit Neo"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 24270000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 425432549951,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 24270000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56904642979,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjgrr4cr39xh1d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1037,\"model_id\":425432549951,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjgrr4cr39xh1d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1037,\"model_id\":425432549951,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56904642979",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52804642992,
              "shopid": 1531387649,
              "name": "20mm 22mm Sports Silicone Strap for Amazfit Bip 6 GTR 3/4 Active 2 GTS 4/3 Balance 2 Wristband Huawei Watch GT5-4/GT5 Pro 46mm",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "sg-11134201-82607-mjgrpb1bltkw84",
              "images": [
                "sg-11134201-82607-mjgrpb1bltkw84",
                "sg-11134201-8262x-mjgrpbch6mf8a5",
                "sg-11134201-82626-mjgrpbnxaolidc",
                "sg-11134201-8262b-mjgrpbxq27evb1",
                "sg-11134201-8260o-mjgrpc88rvgh52",
                "sg-11134201-82626-mjgrpcf0ptzbdc",
                "sg-11134201-82610-mjgrpcq3sqgz61",
                "sg-11134201-8261y-mjgrpd0nls048c",
                "sg-11134201-8261g-mjgrpdefx24nd1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768378994,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 22890000000,
              "price_min": 22890000000,
              "price_max": 22890000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Red",
                    "Light Pink",
                    "Dark grey",
                    "Black blue",
                    "Black",
                    "Orange Grey",
                    "Orange",
                    "Army green black",
                    "Black gray",
                    "Starlight black",
                    "Midnight starlight",
                    "White",
                    "White Duck Green",
                    "Dark blue",
                    "Light pink white",
                    "Violet",
                    "Willow green",
                    "Red black",
                    "Starlight color",
                    "Black green"
                  ],
                  "images": [
                    "sg-11134201-8261y-mjgrpd0nls048c",
                    "sg-11134201-8262x-mjgrpbch6mf8a5",
                    "sg-11134201-82613-mjgrpdpw5dl1d5",
                    "sg-11134201-8262c-mjgrpemm46isd8",
                    "sg-11134201-82621-mjgrpf3httkx12",
                    "sg-11134201-8261x-mjgrpfusffgje1",
                    "sg-11134201-82615-mjgrpgayz2835b",
                    "sg-11134201-8260n-mjgrpgrf2vpe6e",
                    "sg-11134201-8260j-mjgrphb5ombk9b",
                    "sg-11134201-8260r-mjgrphv5htdwdc",
                    "sg-11134201-8261e-mjgrpigqpbet3b",
                    "sg-11134201-8261c-mjgrpiytdhq8f6",
                    "sg-11134201-8261b-mjgrpjdqb2mfda",
                    "sg-11134201-8260l-mjgrpjxt1nuv63",
                    "sg-11134201-8260y-mjgrpke4z4zq42",
                    "sg-11134201-8260o-mjgrpkwefq4nad",
                    "sg-11134201-8260k-mjgrplct3klj1f",
                    "sg-11134201-8260o-mjgrpm6j0tfmfe",
                    "sg-11134201-82633-mjgrpmmgk0ldcd",
                    "sg-11134201-8262m-mjgrpnb93nr9cb"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "For Width 22mm",
                    "Amazfit Bip 6-5",
                    "For Width 20mm",
                    "Amazfit Active 2"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 22890000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 440432539775,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 22890000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52804642992,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82607-mjgrpb1bltkw84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":105,\"model_id\":440432539775,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82607-mjgrpb1bltkw84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":105,\"model_id\":440432539775,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52804642992",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54954642977,
              "shopid": 1531387649,
              "name": "Sports Nylon Strap For Huawei Watch Fit 4/4Pro Ocean Band Bracelet Huawei Watch Fit3 2 Correas Replacement Accessories",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-82606-mjgrlzb1uscl73",
              "images": [
                "sg-11134201-82606-mjgrlzb1uscl73",
                "sg-11134201-8260a-mjgrlzo67ls1c0",
                "sg-11134201-82623-mjgrm00tr3lz85",
                "sg-11134201-8261k-mjgrm09kv4ef14",
                "sg-11134201-8262v-mjgrm0k74npd57",
                "sg-11134201-82630-mjgrm0wg6xom5e",
                "sg-11134201-825zy-mjgrm16cl6h222",
                "sg-11134201-82630-mjgrm1ldje9u64",
                "sg-11134201-825zn-mjgrm1uytb7pdd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768378829,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 24500000000,
              "price_min": 24500000000,
              "price_max": 24500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "DH silver",
                    "DH black",
                    "White black",
                    "White silver",
                    "Green black",
                    "Green silver",
                    "Orange black",
                    "Orange silver"
                  ],
                  "images": [
                    "sg-11134201-8260a-mjgrlzo67ls1c0",
                    "sg-11134201-8261k-mjgrm09kv4ef14",
                    "sg-11134201-8260y-mjgrm289kjcyf1",
                    "sg-11134201-8262b-mjgrm2mbr8qu4f",
                    "sg-11134201-825zl-mjgrm2z2oweaad",
                    "sg-11134201-8260p-mjgrm3aev37ob6",
                    "sg-11134201-82611-mjgrm3oigd1d11",
                    "sg-11134201-8261k-mjgrm44ak9okd9"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "for huawei fit",
                    "for huawei fit 3",
                    "for huawei fit 2"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 24500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 310433120861,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 24500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54954642977,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82606-mjgrlzb1uscl73\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":107,\"model_id\":310433120861,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82606-mjgrlzb1uscl73\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":107,\"model_id\":310433120861,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54954642977",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52654643076,
              "shopid": 1531387649,
              "name": "20mm Skull Printed Strap for Samsung Galaxy Watch 7/6/5 40mm 44mm Band Replaceable Bracelet for Xiaomi Huawei Amazfit Watchband",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8261x-mjgrjk0gmdxf43",
              "images": [
                "sg-11134201-8261x-mjgrjk0gmdxf43",
                "sg-11134201-82617-mjgrjkbcaeirdf",
                "sg-11134201-8260w-mjgrjklc2t51e4",
                "sg-11134201-8262y-mjgrjkx52gasdc",
                "sg-11134201-8262v-mjgrjlcuu1aa17",
                "sg-11134201-82607-mjgrjlpldn9i60",
                "sg-11134201-82623-mjgrjm4vnmdfd4",
                "sg-11134201-825zs-mjgrjmozzugz9c",
                "sg-11134201-8260l-mjgrjn9omgasbc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768378727,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 21510000000,
              "price_min": 21510000000,
              "price_max": 21510000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "20",
                    "19",
                    "18",
                    "17",
                    "24",
                    "23",
                    "22",
                    "21",
                    "12",
                    "11",
                    "10",
                    "09",
                    "16",
                    "15",
                    "14",
                    "13",
                    "04",
                    "03",
                    "02",
                    "01",
                    "08",
                    "07",
                    "06",
                    "05"
                  ],
                  "images": [
                    "sg-11134201-82623-mjgrjm4vnmdfd4",
                    "sg-11134201-825zs-mjgrjmozzugz9c",
                    "sg-11134201-8261a-mjgrjnogk8hxda",
                    "sg-11134201-825zr-mjgrjoeflloidb",
                    "sg-11134201-82633-mjgrjov4ya6b78",
                    "sg-11134201-82607-mjgrjpg6j6yt75",
                    "sg-11134201-8261s-mjgrjpxyh340af",
                    "sg-11134201-8261z-mjgrjqdnxipu2c",
                    "sg-11134201-82601-mjgrjqvfy80477",
                    "sg-11134201-8261c-mjgrjrairv2c60",
                    "sg-11134201-82629-mjgrjryufbwl81",
                    "sg-11134201-825zy-mjgrjsdyyv46a6",
                    "sg-11134201-82633-mjgrjss4bchwf3",
                    "sg-11134201-82621-mjgrjt88lgqo90",
                    "sg-11134201-825zx-mjgrjtsw4qo43f",
                    "sg-11134201-8261p-mjgrju9r0xdv5a",
                    "sg-11134201-825zn-mjgrjur73rb872",
                    "sg-11134201-8260y-mjgrjv937y85ba",
                    "sg-11134201-825zu-mjgrjvteusxwa2",
                    "sg-11134201-82633-mjgrjwaorqps76",
                    "sg-11134201-82628-mjgrjwsvnnya3b",
                    "sg-11134201-8260n-mjgrjxb46jgm6b",
                    "sg-11134201-82634-mjgrjxnrvke95a",
                    "sg-11134201-82608-mjgrjy3xoidd27"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "20MM",
                    "22MM"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 21510000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 277333551684,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 21510000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52654643076,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261x-mjgrjk0gmdxf43\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":109,\"model_id\":277333551684,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261x-mjgrjk0gmdxf43\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":109,\"model_id\":277333551684,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52654643076",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50404647414,
              "shopid": 1531387649,
              "name": "Sports Nylon Strap For Huawei Watch Fit 4/4Pro Ocean Band Bracelet Huawei Watch Fit3 2 Correas Replacement Accessories",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-82634-mjgreuhep89179",
              "images": [
                "sg-11134201-82634-mjgreuhep89179",
                "sg-11134201-8261g-mjgreuu9ul8i44",
                "sg-11134201-8260b-mjgrev639n2b53",
                "sg-11134201-8262w-mjgrevi9pszr3a",
                "sg-11134201-8260a-mjgrevx4terq06",
                "sg-11134201-82624-mjgrew7qark1b9",
                "sg-11134201-8261u-mjgrewpr94w5df",
                "sg-11134201-82602-mjgrex1vpr0j34",
                "sg-11134201-8262h-mjgrexbmx34273"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768378496,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 24500000000,
              "price_min": 24500000000,
              "price_max": 24500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "DH silver",
                    "DH black",
                    "White black",
                    "White silver",
                    "Green black",
                    "Green silver",
                    "Orange black",
                    "Orange silver"
                  ],
                  "images": [
                    "sg-11134201-8262h-mjgrexbmx34273",
                    "sg-11134201-82624-mjgrew7qark1b9",
                    "sg-11134201-8262o-mjgrexntiygy48",
                    "sg-11134201-825zn-mjgrey2nklc068",
                    "sg-11134201-82604-mjgreyh2msjl5d",
                    "sg-11134201-82621-mjgreyziyn7r40",
                    "sg-11134201-82614-mjgrezkffl6t46",
                    "sg-11134201-8262v-mjgrezzaexoheb"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "for huawei fit",
                    "for huawei fit 3",
                    "for huawei fit 2"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 24500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 310433091149,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 24500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50404647414,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82634-mjgreuhep89179\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":116,\"model_id\":310433091149,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82634-mjgreuhep89179\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":116,\"model_id\":310433091149,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50404647414",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47404672388,
              "shopid": 1531387649,
              "name": "20MM 22MM Loop Strap For Samsung Galaxy Watch 6 5 Pro/4/Classic/Gear S3 Frontier/Active Silicone Sport Band For Huawei GT2 3",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-82618-mjgre8umfdhf4c",
              "images": [
                "sg-11134201-82618-mjgre8umfdhf4c",
                "sg-11134201-8262k-mjgre95vwooz5a",
                "sg-11134201-82617-mjgre9ecrbpe6c",
                "sg-11134201-8261o-mjgre9tb22gz9c",
                "sg-11134201-8261h-mjgrea3m30nb43",
                "sg-11134201-82635-mjgreaeh0cg09c",
                "sg-11134201-8262v-mjgreap7eosm64",
                "sg-11134201-82602-mjgreavx613642",
                "sg-11134201-82609-mjgrebd1uqrre7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768378466,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 24270000000,
              "price_min": 24270000000,
              "price_max": 24270000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Black Blue",
                    "White Red",
                    "Black Green",
                    "Black Red",
                    "Blue White",
                    "Black Gray",
                    "Black White"
                  ],
                  "images": [
                    "sg-11134201-82635-mjgreaeh0cg09c",
                    "sg-11134201-8261o-mjgre9tb22gz9c",
                    "sg-11134201-8262b-mjgrebkyq70k81",
                    "sg-11134201-8262j-mjgrebvfhmo0d5",
                    "sg-11134201-825zt-mjgrecbwyiv5e4",
                    "sg-11134201-82631-mjgreco4m9z607",
                    "sg-11134201-82634-mjgrecxlzojmc3"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 24270000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 365432505629,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 24270000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47404672388,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82618-mjgre8umfdhf4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":117,\"model_id\":365432505629,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82618-mjgre8umfdhf4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":117,\"model_id\":365432505629,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47404672388",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53954657017,
              "shopid": 1531387649,
              "name": "20mm Skull Printed Strap for Samsung Galaxy Watch 7/6/5 40mm 44mm Band Replaceable Bracelet for Xiaomi Huawei Amazfit Watchband",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8262j-mjgrbrad2tqc77",
              "images": [
                "sg-11134201-8262j-mjgrbrad2tqc77",
                "sg-11134201-8261k-mjgrbrvwkirk54",
                "sg-11134201-8260v-mjgrbscsfqiv02",
                "sg-11134201-8260r-mjgrbtqfej9h04",
                "sg-11134201-8260z-mjgrbuh9w26c41",
                "sg-11134201-8262i-mjgrbversnb858",
                "sg-11134201-8261g-mjgrbw0lwetiac",
                "sg-11134201-8260r-mjgrbwmxy9z6b8",
                "sg-11134201-8262o-mjgrbx4sny0x38"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768378373,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 21510000000,
              "price_min": 21510000000,
              "price_max": 21510000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "20",
                    "19",
                    "18",
                    "17",
                    "24",
                    "23",
                    "22",
                    "21",
                    "12",
                    "11",
                    "10",
                    "09",
                    "16",
                    "15",
                    "14",
                    "13",
                    "04",
                    "03",
                    "02",
                    "01",
                    "08",
                    "07",
                    "06",
                    "05"
                  ],
                  "images": [
                    "sg-11134201-8260z-mjgrbuh9w26c41",
                    "sg-11134201-8260r-mjgrbwmxy9z6b8",
                    "sg-11134201-8260k-mjgrbxov8wzl41",
                    "sg-11134201-82623-mjgrbyjsej2cae",
                    "sg-11134201-8261k-mjgrbzcmg7ieba",
                    "sg-11134201-82607-mjgrc0hldwqt25",
                    "sg-11134201-8261t-mjgrc1b8b30jf1",
                    "sg-11134201-82617-mjgrc240bpxh39",
                    "sg-11134201-8262t-mjgrc2oi8q2p45",
                    "sg-11134201-82613-mjgrc480dipvba",
                    "sg-11134201-82622-mjgrc568t8g49d",
                    "sg-11134201-8260h-mjgrc5n281kw29",
                    "sg-11134201-8262m-mjgrc67yuk91a4",
                    "sg-11134201-825zm-mjgrc6yhfny8b9",
                    "sg-11134201-8262a-mjgrc7ixk3k225",
                    "sg-11134201-8262y-mjgrc7yufdhh51",
                    "sg-11134201-8262o-mjgrc8nihix321",
                    "sg-11134201-82613-mjgrc92w01l0a8",
                    "sg-11134201-8262r-mjgrc9m4xgxvd6",
                    "sg-11134201-825zy-mjgrca5ikv0gfa",
                    "sg-11134201-825zq-mjgrcavkjmdc6f",
                    "sg-11134201-8260j-mjgrcbhp9gci18",
                    "sg-11134201-8262n-mjgrcbxeslxf34",
                    "sg-11134201-8262d-mjgrccldapdvef"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "20MM",
                    "22MM"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 21510000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 420432483801,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 21510000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53954657017,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262j-mjgrbrad2tqc77\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":118,\"model_id\":420432483801,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262j-mjgrbrad2tqc77\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":118,\"model_id\":420432483801,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53954657017",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46404676944,
              "shopid": 898467586,
              "name": "Eggel Tempo 4 Active Amoled Smart Watch Smartwatch Smartband",
              "label_ids": [
                2018618,
                2153644,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                2048661,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                2048660,
                1400066568,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-825zu-mjgrbxcd8xdu54",
              "images": [
                "sg-11134201-825zu-mjgrbxcd8xdu54",
                "sg-11134201-8261f-mjgrbxji2dq82b",
                "sg-11134201-8260p-mjgrbxpzij29d1",
                "sg-11134201-82606-mjgraezzwkqr82",
                "sg-11134201-825zm-mjgrby9a8kjmb6",
                "sg-11134201-82622-mjgrafeuvyth59",
                "sg-11134201-82604-mjgrbyo6b7cw3b",
                "sg-11134201-82620-mjgrbysg5u6844",
                "sg-11134201-8260c-mjgrbyykytxd55"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768378355,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 35700000000,
              "price_min": 35700000000,
              "price_max": 35700000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 35343000000,
                "strikethrough_price": 35700000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1330707549536256,
                "discount_text": null,
                "model_id": 350432490576,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1330707549536256,
                  "voucher_code": "ZTHOVTFAQ",
                  "voucher_discount": 357000000,
                  "time_info": {
                    "start_time": 1768092001,
                    "end_time": 1773794280,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 35700000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ZTH Official",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46404676944,
            "shopid": 898467586,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zu-mjgrbxcd8xdu54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,844931086908638,844931064601283,298463379,1059152,1049122,1718093079,822059908662278,2048661,825465608493600,825465608494624,825465608499232,825465608497696,2048660,1400066568,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":119,\"model_id\":350432490576,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zu-mjgrbxcd8xdu54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,844931086908638,844931064601283,298463379,1059152,1049122,1718093079,822059908662278,2048661,825465608493600,825465608494624,825465608499232,825465608497696,2048660,1400066568,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":119,\"model_id\":350432490576,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46404676944",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55754642953,
              "shopid": 1194454428,
              "name": "Jam tangan pintar T200/T210 mendukung koneksi Bluetooth dengan layar sentuh penuh HD 1,99 inci, tahan air IP68 dengan pemantauan detak jantung",
              "label_ids": [
                700700063,
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-825zp-mjgr99wrovep3e",
              "images": [
                "sg-11134201-825zp-mjgr99wrovep3e",
                "sg-11134201-82608-mjgr9a9z65fq59",
                "sg-11134201-82628-mjgr9ahepvy8b7",
                "sg-11134201-8262x-mjgr9aoggf0n72",
                "sg-11134201-8260y-mjgr9ay9105c6d",
                "sg-11134201-8260b-mjgr9b67ru2pd4",
                "sg-11134201-82621-mjgr9bda0miv86",
                "sg-11134201-8261h-mjgr9biscj5ydb",
                "sg-11134201-8262e-mjgr9bv43thj12"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768378234,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Gionee",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 23983300000,
              "price_min": 23983300000,
              "price_max": 23983300000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Model",
                  "options": [
                    "T200-Olahraga",
                    "T210-Klasik"
                  ],
                  "images": [
                    "sg-11134201-82609-mjgr9c8yvldt3c",
                    "sg-11134201-82618-mjgr9d3eczd3d0"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 23483300000,
                "strikethrough_price": 23983300000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1313424056270848,
                "discount_text": null,
                "model_id": 430432469144,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1313424056270848,
                  "voucher_code": "GIONGFSDO",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1766032080,
                    "end_time": 1774070880,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 23983300000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gionee Center",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55754642953,
            "shopid": 1194454428,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zp-mjgr99wrovep3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,2023641,1718087960,1428713,844931064601283,844931086908638,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":122,\"model_id\":430432469144,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zp-mjgr99wrovep3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,2023641,1718087960,1428713,844931064601283,844931086908638,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":122,\"model_id\":430432469144,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55754642953",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52154642940,
              "shopid": 54674133,
              "name": "garmin instinct 3 amoled murah bisa tt fenix",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                298463379,
                1400066568,
                700005487,
                1059152,
                1718093079,
                822059908662278,
                825465608497696,
                825465608493600,
                825465608494624,
                825465608499232,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224s-mjgr390azpxc18",
              "images": [
                "id-11134207-8224s-mjgr390azpxc18",
                "id-11134207-8224y-mjgr3910e5mqa5",
                "id-11134207-8224v-mjgr390lerk0d2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768378103,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 659000000000,
              "price_min": 659000000000,
              "price_max": 659000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 659000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 365432465660,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 659000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "armywatch.id",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52154642940,
            "shopid": 54674133,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mjgr390azpxc18\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1400066568,700005487,1059152,1718093079,822059908662278,825465608497696,825465608493600,825465608494624,825465608499232,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":124,\"model_id\":365432465660,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mjgr390azpxc18\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1400066568,700005487,1059152,1718093079,822059908662278,825465608497696,825465608493600,825465608494624,825465608499232,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":124,\"model_id\":365432465660,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52154642940",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45754677078,
              "shopid": 1531387649,
              "name": "22mm 20mm Silicone Band for Amazfit Active 2/GTS 4 Mini 3 2e Bracelet for Amazfit GTR/4 3 Pro 47mm/Amazfit Bip 6/Balance 2 Strap",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8261e-mjgr6t0qhddv80",
              "images": [
                "sg-11134201-8261e-mjgr6t0qhddv80",
                "sg-11134201-825zm-mjgr6tee2qdd74",
                "sg-11134201-82617-mjgr6tn0tfk74d",
                "sg-11134201-8262a-mjgr6u1wcg016f",
                "sg-11134201-82617-mjgr6ubqy2o4de",
                "sg-11134201-82621-mjgr6ujvl1xfaf",
                "sg-11134201-8261r-mjgr6usew6pzd8",
                "sg-11134201-8261f-mjgr6v1dcbusec",
                "sg-11134201-8262z-mjgr6vd3ej9d28"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768378127,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 21280000000,
              "price_min": 21280000000,
              "price_max": 21280000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Green black",
                    "Blue",
                    "Army green black",
                    "Black wine Red",
                    "Dark blue white",
                    "Official orange",
                    "Black",
                    "Black yellow",
                    "White black",
                    "Black gray",
                    "Red wine black",
                    "White",
                    "Pink",
                    "Green",
                    "Purple",
                    "Teal Green Blue",
                    "Orange",
                    "Midnight blue",
                    "Dark green"
                  ],
                  "images": [
                    "sg-11134201-82617-mjgr6tn0tfk74d",
                    "sg-11134201-8261f-mjgr6v1dcbusec",
                    "sg-11134201-825zs-mjgr6w3t7jlw74",
                    "sg-11134201-8261f-mjgr6wd4hs0360",
                    "sg-11134201-8260q-mjgr6wou0d1fd1",
                    "sg-11134201-8260k-mjgr6wzaytj9e8",
                    "sg-11134201-825zp-mjgr6xgp6bd160",
                    "sg-11134201-8262t-mjgr6xuuadc370",
                    "sg-11134201-825zn-mjgr6y6o91jbb9",
                    "sg-11134201-8262t-mjgr6ymlgykh59",
                    "sg-11134201-8261h-mjgr6ywfg2kj31",
                    "sg-11134201-8261t-mjgr6zbrehohf8",
                    "sg-11134201-825zx-mjgr6zrnri8118",
                    "sg-11134201-8261e-mjgr70dujsaqb2",
                    "sg-11134201-8262e-mjgr70vv43y8fe",
                    "sg-11134201-82624-mjgr71f4e4uf4d",
                    "sg-11134201-82611-mjgr71xpmxhh33",
                    "sg-11134201-8261b-mjgr72dfpsljec",
                    "sg-11134201-8262m-mjgr72szv6yt51"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "20mm Universal",
                    "22mm Universal"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 21280000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 375432457954,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 21280000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45754677078,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261e-mjgr6t0qhddv80\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":123,\"model_id\":375432457954,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261e-mjgr6t0qhddv80\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":123,\"model_id\":375432457954,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45754677078",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44654667419,
              "shopid": 1531387649,
              "name": "18mm 20mm 22mm hole Silicone Band for Samsung Galaxy Watch 6 5 4 for Huawei GT4 3 GT2 pro bracelet for Garmin Vivoactive 4 strap",
              "label_ids": [
                844931064601283,
                1718093079,
                1059154,
                1059152,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8260m-mjgr6b7uwydh44",
              "images": [
                "sg-11134201-8260m-mjgr6b7uwydh44",
                "sg-11134201-8262x-mjgr6bqgmneq6b",
                "sg-11134201-8260i-mjgr6c206bk34b",
                "sg-11134201-8260d-mjgr6cfd6z288e",
                "sg-11134201-8261p-mjgr6cmfikn7c8",
                "sg-11134201-8262b-mjgr6ct4rlz82c",
                "sg-11134201-8262v-mjgr6d68cf7q78",
                "sg-11134201-8260c-mjgr6dre0v7k8b",
                "sg-11134201-8262b-mjgr6eawfkzma9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768378098,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 21740000000,
              "price_min": 21740000000,
              "price_max": 21740000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "11",
                    "12",
                    "9",
                    "10",
                    "6",
                    "7",
                    "8",
                    "3",
                    "4",
                    "5",
                    "1",
                    "2"
                  ],
                  "images": [
                    "sg-11134201-8261p-mjgr6cmfikn7c8",
                    "sg-11134201-8262b-mjgr6ct4rlz82c",
                    "sg-11134201-825zv-mjgr6ehwaqdi76",
                    "sg-11134201-8262i-mjgr6etciyo0d3",
                    "sg-11134201-82633-mjgr6f4ysykm62",
                    "sg-11134201-825zl-mjgr6ffivshvfd",
                    "sg-11134201-82601-mjgr6fo6iubna9",
                    "sg-11134201-8260d-mjgr6fxl7bph54",
                    "sg-11134201-8261f-mjgr6g48w6bke3",
                    "sg-11134201-82631-mjgr6ggxpzb8d7",
                    "sg-11134201-8262i-mjgr6gpnb9ja3a",
                    "sg-11134201-8261e-mjgr6h0h3uv72f"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "18mm",
                    "20mm",
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 21740000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 365432461392,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 21740000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44654667419,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260m-mjgr6b7uwydh44\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059154,1059152,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":125,\"model_id\":365432461392,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260m-mjgr6b7uwydh44\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059154,1059152,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":125,\"model_id\":365432461392,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44654667419",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48554667325,
              "shopid": 95906098,
              "name": "Jam Tangan All Gender Garmin Forerunner 165 Black/Slate Grey 100% Original",
              "label_ids": [
                700700063,
                2018619,
                700190019,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1718093079,
                1059150,
                700005498,
                822059908662278,
                825465608494624,
                825465608499232,
                2048660,
                2048661,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82251-mjgqrqnwks9033",
              "images": [
                "id-11134207-82251-mjgqrqnwks9033",
                "id-11134207-8224u-mjgqrqnvvi0y23",
                "id-11134207-82252-mjgqrqny3ked20"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768377585,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 289900000000,
              "price_min": 289900000000,
              "price_max": 289900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Medan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 288400000000,
                "strikethrough_price": 289900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1303212167938052,
                "discount_text": null,
                "model_id": 287333485327,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1303212167938052,
                  "voucher_code": "JAMOD1225",
                  "voucher_discount": 1500000000,
                  "time_info": {
                    "start_time": 1764815400,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 289900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Jam Original by RADATIME",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48554667325,
            "shopid": 95906098,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mjgqrqnwks9033\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,700190019,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,1059150,700005498,822059908662278,825465608494624,825465608499232,2048660,2048661,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":140,\"model_id\":287333485327,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mjgqrqnwks9033\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,700190019,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,1059150,700005498,822059908662278,825465608494624,825465608499232,2048660,2048661,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":140,\"model_id\":287333485327,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48554667325",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52854642788,
              "shopid": 1542929270,
              "name": "22mm Soft Breathable Sport Strap for Xiaomi Redmi Wat 5 Active/5 Lite Nylon Loop Bracelet for Redmi Wat 3 Active/3 Lite Band",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079
              ],
              "image": "sg-11134201-8261y-mjgqtynt7zerd2",
              "images": [
                "sg-11134201-8261y-mjgqtynt7zerd2",
                "sg-11134201-8260q-mjgqtzer7vuu75",
                "sg-11134201-8262y-mjgqtzxyv01z34",
                "sg-11134201-82614-mjgqu0ixy22s3b",
                "sg-11134201-8261y-mjgqu0wrfitce9",
                "sg-11134201-8261c-mjgqu180ehhc1e",
                "sg-11134201-8261x-mjgqu23bzv9ea9",
                "sg-11134201-8261q-mjgqu2f2esxu4c",
                "sg-11134201-8260i-mjgqu2rku77m5f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768377520,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 54780000000,
              "price_min": 54780000000,
              "price_max": 54780000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Green",
                    "Black",
                    "Grey",
                    "Orange",
                    "Blue"
                  ],
                  "images": [
                    "sg-11134201-8261q-mjgqu2f2esxu4c",
                    "sg-11134201-8260i-mjgqu2rku77m5f",
                    "sg-11134201-8261g-mjgqu2z7aner94",
                    "sg-11134201-8262o-mjgqu3bjiqyp2d",
                    "sg-11134201-8261b-mjgqu3m2b85f6d"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "Redmi Watch 3 Active",
                    "Redmi Watch 5 Lite",
                    "Redmi Watch 5 Active",
                    "22mm",
                    "Redmi Watch 3 Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 54780000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 365432401238,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 54780000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52854642788,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261y-mjgqtynt7zerd2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":143,\"model_id\":365432401238,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261y-mjgqtynt7zerd2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":143,\"model_id\":365432401238,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52854642788",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41478022082,
              "shopid": 1542929270,
              "name": "20/22mm Stylish Nylon Velcro Strap Suitable for Samsung Wat Series Straps Mountaineering Nylon Loop Straps",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-82628-mjgqsv39olj877",
              "images": [
                "sg-11134201-82628-mjgqsv39olj877",
                "sg-11134201-82620-mjgqsv9elszo9a",
                "sg-11134201-8260g-mjgqsvj4hfcz85",
                "sg-11134201-82606-mjgqsvvdwcg5a4",
                "sg-11134201-8261n-mjgqsw6bpnuv30",
                "sg-11134201-82609-mjgqswfzvfnrd3",
                "sg-11134201-825zm-mjgqswoqh8na60",
                "sg-11134201-82608-mjgqswvgcsn6fd",
                "sg-11134201-8261v-mjgqsx1wsc1s30"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768377465,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 43970000000,
              "price_min": 43970000000,
              "price_max": 43970000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "black",
                    "orange",
                    "green",
                    "grey",
                    "blue"
                  ],
                  "images": [
                    "sg-11134201-82608-mjgqswvgcsn6fd",
                    "sg-11134201-8261v-mjgqsx1wsc1s30",
                    "sg-11134201-8260y-mjgqsx97ysjoc3",
                    "sg-11134201-81zuj-mik5myjqch6pf4",
                    "sg-11134201-8260e-mjgqsxlc44jn3a"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "20mm",
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 43970000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 345432389676,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 43970000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41478022082,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82628-mjgqsv39olj877\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":145,\"model_id\":345432389676,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82628-mjgqsv39olj877\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":145,\"model_id\":345432389676,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41478022082",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56004642536,
              "shopid": 1542929270,
              "name": "Handmade Italian MBOX top layer cowhide strap, 18 19 20 22MM quick release Watband, compatible For smart wat straps",
              "label_ids": [
                844931064601283,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-8261e-mjgqmtkel7nrd8",
              "images": [
                "sg-11134201-8261e-mjgqmtkel7nrd8",
                "sg-11134201-8262c-mjgqmu5lik8zc9",
                "sg-11134201-825zp-mjgqmukfk7415f",
                "sg-11134201-825zz-mjgqmuwublkw63",
                "sg-11134201-8261s-mjgqmvahzrpc28",
                "sg-11134201-8262z-mjgqmvodfgud0b",
                "sg-11134201-8261z-mjgqmw3tis5jc9",
                "sg-11134201-82631-mjgqmwektfk50b",
                "sg-11134201-825zu-mjgqmwx84oas24"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768377188,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 106300000000,
              "price_min": 106300000000,
              "price_max": 106300000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "B  Brack buckle",
                    "B silver buckle",
                    "A Brack buckle",
                    "A silver buckle",
                    "B rose gold",
                    "A rose gold",
                    "C  Brack buckle",
                    "C silver buckle",
                    "C  rose gold"
                  ],
                  "images": [
                    "sg-11134201-82631-mjgqmwektfk50b",
                    "sg-11134201-825zu-mjgqmwx84oas24",
                    "sg-11134201-8260z-mjgqmxellhc1a6",
                    "sg-11134201-8260r-mjgqmxuo06boaf",
                    "sg-11134201-82622-mjgqmyejdbsx2e",
                    "sg-11134201-8261h-mjgqmyykz6kk06",
                    "sg-11134201-82627-mjgqmzghwverd2",
                    "sg-11134201-8261e-mjgqmtkel7nrd8",
                    "sg-11134201-8260k-mjgqmzwtrhtyed"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "18mm",
                    "22mm",
                    "20mm",
                    "19mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 106300000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 340432367755,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 106300000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56004642536,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261e-mjgqmtkel7nrd8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":150,\"model_id\":340432367755,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261e-mjgqmtkel7nrd8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":150,\"model_id\":340432367755,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56004642536",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49454667134,
              "shopid": 242931987,
              "name": "garmin foruner 55",
              "label_ids": [
                700700063,
                2018619,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1718093079,
                1049112,
                700005512,
                822059908662278,
                825465608499232,
                2048660,
                2048661
              ],
              "image": "id-11134207-82251-mjgqco747rpc48",
              "images": [
                "id-11134207-82251-mjgqco747rpc48",
                "id-11134207-8224o-mjgqco74969se8",
                "id-11134207-8224r-mjgqco74aku81e",
                "id-11134207-8224z-mjgqco74bzeobb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768376965,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 150000000000,
              "price_min": 150000000000,
              "price_max": 150000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 150000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 310432931409,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 150000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Second_Explorer",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49454667134,
            "shopid": 242931987,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mjgqco747rpc48\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,1428713,1718087960,844931064601283,844931086908638,1718093079,1049112,700005512,822059908662278,825465608499232,2048660,2048661],\"matched_keywords\":[\"\"],\"merge_rank\":154,\"model_id\":310432931409,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mjgqco747rpc48\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,1428713,1718087960,844931064601283,844931086908638,1718093079,1049112,700005512,822059908662278,825465608499232,2048660,2048661],\"matched_keywords\":[\"\"],\"merge_rank\":154,\"model_id\":310432931409,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49454667134",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45504676626,
              "shopid": 1542929270,
              "name": "20mm 22mm 18mm Bling Metal Bracelet Strap band For Samsung Galaxy Wat 7 FE 5 Pro 4 6 classic 44mm 40mm sport correa",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-8262t-mjgq8d0br2f79d",
              "images": [
                "sg-11134201-8262t-mjgq8d0br2f79d",
                "sg-11134201-8261m-mjgq8fr2al8i86",
                "sg-11134201-825zs-mjgq8g9y87wn67",
                "sg-11134201-8260z-mjgq8grv7bb970",
                "sg-11134201-82604-mjgq8h9mpsslc0",
                "sg-11134201-8262q-mjgq8hqz38cje3",
                "sg-11134201-8262m-mjgq8i8dq39hf6",
                "sg-11134201-825zx-mjgq8ii2tm9w4f",
                "sg-11134201-82617-mjgq8j0wq8zlc3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768376514,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 30170000000,
              "price_min": 30170000000,
              "price_max": 30170000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "rose gold",
                    "gold",
                    "silver",
                    "black",
                    "starlight"
                  ],
                  "images": [
                    "sg-11134201-825zx-mjgq8ii2tm9w4f",
                    "sg-11134201-82617-mjgq8j0wq8zlc3",
                    "sg-11134201-8262t-mjgq8d0br2f79d",
                    "sg-11134201-8260n-mjgq8jiyxkhzb9",
                    "sg-11134201-825zt-mjgq8jttnvgkc0"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "universal 20mm",
                    "universal 22mm",
                    "universal 18mm",
                    "Watch 6 40mm 44mm",
                    "6 classic 43mm 47mm",
                    "Galaxy Watch FE 40mm",
                    "Watch 7 40mm 44mm",
                    "watch 4 classic 46mm",
                    "Galaxy Watch 4 44mm",
                    "watch 4 classic 42mm",
                    "Watch 5 pro 45mm",
                    "Galaxy Watch 4 40mm",
                    "Galaxy Watch5 40mm",
                    "Galaxy Watch5 44mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 30170000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 325432284700,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 30170000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45504676626,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjgq8d0br2f79d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":160,\"model_id\":325432284700,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjgq8d0br2f79d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":160,\"model_id\":325432284700,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45504676626",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50104642395,
              "shopid": 1542929270,
              "name": "20mm Nylon Strap for Garmin S50/S42/S40/S12 Band, for Garmin 165/245/Vivoactive 6 5 3, Venu Sq 2 4 Sq 2 sport nylon starp",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232
              ],
              "image": "sg-11134201-82602-mjgq72yoy29u08",
              "images": [
                "sg-11134201-82602-mjgq72yoy29u08",
                "sg-11134201-82624-mjgq73s336rq0e",
                "sg-11134201-8260y-mjgq74c90ykl02",
                "sg-11134201-8261y-mjgq74mnybya41",
                "sg-11134201-82618-mjgq75dbdm2t9e",
                "sg-11134201-8262y-mjgq75p8kwzn51",
                "sg-11134201-8260v-mjgq7642gz5v1d",
                "sg-11134201-8262e-mjgq76kxfxfl61",
                "sg-11134201-8260d-mjgq77akkttx20"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768376452,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 51560000000,
              "price_min": 51560000000,
              "price_max": 51560000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Water Duck",
                    "Orange",
                    "green",
                    "Black gray"
                  ],
                  "images": [
                    "sg-11134201-8262e-mjgq76kxfxfl61",
                    "sg-11134201-82602-mjgq72yoy29u08",
                    "sg-11134201-8260d-mjgq77akkttx20",
                    "sg-11134201-8261t-mjgq78agvaptd3"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "20mm-L",
                    "20mm-S"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 51560000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 430432287659,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 51560000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50104642395,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82602-mjgq72yoy29u08\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":163,\"model_id\":430432287659,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82602-mjgq72yoy29u08\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":163,\"model_id\":430432287659,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50104642395",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45004676650,
              "shopid": 1542929270,
              "name": "24mm Quick Fit Nylon Loop Strap For Suunto7/9/Spartan Sport Easy Fit Wat Band 9Baro Replaceable Wristband Belt",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079
              ],
              "image": "sg-11134201-82633-mjgq7mvfgb9i0d",
              "images": [
                "sg-11134201-82633-mjgq7mvfgb9i0d",
                "sg-11134201-825zw-mjgq7ojyxzice4",
                "sg-11134201-8261a-mjgq7ox4tmo5bb",
                "sg-11134201-82617-mjgq7plp24g317",
                "sg-11134201-8260q-mjgq7q02k6ip3e",
                "sg-11134201-8260d-mjgq7qcoi32f68",
                "sg-11134201-8262a-mjgq7r0vgy6993",
                "sg-11134201-8260y-mjgq7s1ctxqa25",
                "sg-11134201-8260y-mjgq7u628t8n5d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768376495,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 46500000000,
              "price_min": 46500000000,
              "price_max": 46500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Black",
                    "White",
                    "Sky blue",
                    "Green",
                    "Brown",
                    "Red",
                    "Gray",
                    "Navy blue",
                    "Orange"
                  ],
                  "images": [
                    "sg-11134201-8260y-mjgq7s1ctxqa25",
                    "sg-11134201-8260y-mjgq7u628t8n5d",
                    "sg-11134201-825zm-mjgq7w2v7oqseb",
                    "sg-11134201-8260g-mjgq7xszo9ae98",
                    "sg-11134201-82623-mjgq7zlcbbpg81",
                    "sg-11134201-8262s-mjgq819slwjmd4",
                    "sg-11134201-825zp-mjgq830f0j5x8f",
                    "sg-11134201-82620-mjgq84xhs0sh7e",
                    "sg-11134201-82633-mjgq7mvfgb9i0d"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "SUUNTO 7",
                    "Spartan Sport",
                    "SUUNTO D5",
                    "SUUNTO 9 Baro",
                    "SUUNTO 9",
                    "24mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 46500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 385432289291,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 46500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45004676650,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82633-mjgq7mvfgb9i0d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":161,\"model_id\":385432289291,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82633-mjgq7mvfgb9i0d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":161,\"model_id\":385432289291,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45004676650",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54454642424,
              "shopid": 1542929270,
              "name": "Leather Band For Samsung Galaxy Wat Ultra 2025 2024 horse leather strap For SAMSUNG GALAXY ULTRA 47MM watband",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-8261u-mjgq55s2mux1a5",
              "images": [
                "sg-11134201-8261u-mjgq55s2mux1a5",
                "sg-11134201-8261y-mjgq5636562pf2",
                "sg-11134201-8261s-mjgq56fgqbd1dc",
                "sg-11134201-82618-mjgq56r89wck56",
                "sg-11134201-8260i-mjgq572eldz8fa",
                "sg-11134201-82616-mjgq57fb864h36",
                "sg-11134201-82630-mjgq57qbnif501",
                "sg-11134201-8262v-mjgq580yurd000",
                "sg-11134201-8262e-mjgq589uncavcc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768376359,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 58690000000,
              "price_min": 58690000000,
              "price_max": 58690000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Gray",
                    "silver black",
                    "silver brown",
                    "Black",
                    "Brown"
                  ],
                  "images": [
                    "sg-11134201-8262v-mjgq580yurd000",
                    "sg-11134201-8262e-mjgq589uncavcc",
                    "sg-11134201-8260e-mjgq58jqyqdf10",
                    "sg-11134201-8262n-mjgq58wvoa2o9d",
                    "sg-11134201-8260r-mjgq59a23l6u83"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 58690000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 262333626777,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 58690000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54454642424,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261u-mjgq55s2mux1a5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":165,\"model_id\":262333626777,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261u-mjgq55s2mux1a5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":165,\"model_id\":262333626777,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54454642424",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51104651804,
              "shopid": 1542929270,
              "name": "Top Leather Wat Band, Quick Release 22mm Wat Straps, Fits Garmin fenix 8 7 6 6Pro epix Pro 47 mm watband",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232
              ],
              "image": "sg-11134201-825zn-mjgq32nm7sw26f",
              "images": [
                "sg-11134201-825zn-mjgq32nm7sw26f",
                "sg-11134201-8261t-mjgq332h76yq65",
                "sg-11134201-8260h-mjgq33dmxm2q85",
                "sg-11134201-8260v-mjgq33q6ez9j86",
                "sg-11134201-82631-mjgq345kbl6r78",
                "sg-11134201-82600-mjgq34odhj411f",
                "sg-11134201-8260i-mjgq3590foxxb4",
                "sg-11134201-8262q-mjgq35pbz4ea51",
                "sg-11134201-825zo-mjgq364fp43r82"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768376262,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 141260000000,
              "price_min": 141260000000,
              "price_max": 141260000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Brown-Silver buckle",
                    "Brown-Black buckle"
                  ],
                  "images": [
                    "sg-11134201-825zn-mjgq32nm7sw26f",
                    "sg-11134201-8262q-mjgq35pbz4ea51"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 141260000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 440432267647,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 141260000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51104651804,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zn-mjgq32nm7sw26f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":166,\"model_id\":440432267647,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zn-mjgq32nm7sw26f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":166,\"model_id\":440432267647,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51104651804",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40128021932,
              "shopid": 1542929270,
              "name": "20mm 22mm Nylon Wat Band For Omega X S-wat Joint MoonSwat Strap Quick Release Sport Watband Bracelet for Men Women",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-8262j-mjgq5la8nx8hfa",
              "images": [
                "sg-11134201-8262j-mjgq5la8nx8hfa",
                "sg-11134201-8262k-mjgq5lzw1am99e",
                "sg-11134201-8261x-mjgq5mppotfma2",
                "sg-11134201-8262t-mjgq5nf5x4w300",
                "sg-11134201-825zu-mjgq5o1sxpmv7b",
                "sg-11134201-8260c-mjgq5ofb2gp31a",
                "sg-11134201-825zz-mjgq5ouf53i82c",
                "sg-11134201-8261i-mjgq5p4gga9s34",
                "sg-11134201-8262t-mjgq5pdbi80414"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768376381,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 42590000000,
              "price_min": 42590000000,
              "price_max": 42590000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "khaki",
                    "red khaki",
                    "oilve khaki",
                    "navy black khaki"
                  ],
                  "images": [
                    "sg-11134201-8261i-mjgq5p4gga9s34",
                    "sg-11134201-8262t-mjgq5pdbi80414",
                    "sg-11134201-8262c-mjgq5pmwtgcjc6",
                    "sg-11134201-82608-mjgq5punn85ce1"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "20mm",
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 42590000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435432280890,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 42590000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40128021932,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262j-mjgq5la8nx8hfa\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":164,\"model_id\":435432280890,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262j-mjgq5la8nx8hfa\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":164,\"model_id\":435432280890,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40128021932",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51954651890,
              "shopid": 1321479308,
              "name": "Samsung galaxy Watch 4 42mm werOs by google",
              "label_ids": [
                1400066568,
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                1718093079
              ],
              "image": "id-11134207-8224w-mjgpttm14k5cd9",
              "images": [
                "id-11134207-8224w-mjgpttm14k5cd9",
                "id-11134207-8224r-mjgpt97up3ia26",
                "id-11134207-82250-mjgpt97uqi2qd5",
                "id-11134207-8224v-mjgpt98wl0xz42"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768376035,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Samsung",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 70000000000,
              "price_min": 70000000000,
              "price_max": 70000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6ven8-mjgptipdg3r9ae.16000081768375814.mp4",
                  "thumb_url": "id-11110107-6ven8-mjgptipdg3r9ae_cover",
                  "duration": 39,
                  "version": 2,
                  "vid": "id-11110107-6ven8-mjgptipdg3r9ae",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ven8-mjgptipdg3r9ae.16000081768375814.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ven8-mjgptipdg3r9ae.16000081768375814.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ven8-mjgptipdg3r9ae.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 70000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 370432241481,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 70000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Jam second",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51954651890,
            "shopid": 1321479308,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjgpttm14k5cd9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1059152,1059154,822059908662278,825465608494624,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":170,\"model_id\":370432241481,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjgpttm14k5cd9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1059152,1059154,822059908662278,825465608494624,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":170,\"model_id\":370432241481,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51954651890",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46104671842,
              "shopid": 1542929270,
              "name": "QuickFit 20mm 22mm 26mm Woven Nylon Band For Garmin Fenix 8 47mm 51mm 7 7X 6 6X 5 5X Plus/Enduro 3/Epix Pro Gen 2 Strap Bracelet",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232
              ],
              "image": "sg-11134201-8260u-mjgpywl6vbwm28",
              "images": [
                "sg-11134201-8260u-mjgpywl6vbwm28",
                "sg-11134201-8260j-mjgpyxp33ls744",
                "sg-11134201-825zx-mjgpyy55s4qt0f",
                "sg-11134201-825zk-mjgpyz4hqtc027",
                "sg-11134201-8260p-mjgpyzy1xm9tcc",
                "sg-11134201-8260d-mjgpz0dlko3r1a",
                "sg-11134201-8261o-mjgpz0t0c83qab",
                "sg-11134201-8261q-mjgpz1bq86br1b",
                "sg-11134201-82607-mjgpz29c2l8hdc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768376085,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 80770000000,
              "price_min": 80770000000,
              "price_max": 80770000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Orange",
                    "Black",
                    "Gray",
                    "Wine Red",
                    "Starlight",
                    "Smoke purple",
                    "green",
                    "dark Gray",
                    "Dark Blue",
                    "Stone lotus color"
                  ],
                  "images": [
                    "sg-11134201-8260u-mjgpywl6vbwm28",
                    "sg-11134201-82635-mjgpzbq5cb2d61",
                    "sg-11134201-8262a-mjgpzcr8biti38",
                    "sg-11134201-8260f-mjgpz3qux2boee",
                    "sg-11134201-8261q-mjgpz1bq86br1b",
                    "sg-11134201-82607-mjgpz29c2l8hdc",
                    "sg-11134201-82621-mjgpz6newtmva5",
                    "sg-11134201-8261w-mjgpz7kxzi85e6",
                    "sg-11134201-8260e-mjgpz8vnu3gh9d",
                    "sg-11134201-825zk-mjgpzao67oxt8e"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "QuickFit 20mm",
                    "QuickFit 22mm",
                    "QuickFit 26mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 80770000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 445432247562,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 80770000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46104671842,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjgpywl6vbwm28\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":169,\"model_id\":445432247562,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjgpywl6vbwm28\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":169,\"model_id\":445432247562,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46104671842",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44478017096,
              "shopid": 1542929270,
              "name": "Stainless Steel Strap For Samsung Galaxy Wat 8/8 classic 46mm 40 44mm Metal Watband Bracelet Correa For Samsung Ultra 2 band",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079
              ],
              "image": "sg-11134201-82629-mjgpv12xe9dz15",
              "images": [
                "sg-11134201-82629-mjgpv12xe9dz15",
                "sg-11134201-8260h-mjgpv1bw8g74f3",
                "sg-11134201-82630-mjgpv22x8lja20",
                "sg-11134201-8262g-mjgpv2b8l4w755",
                "sg-11134201-825zo-mjgpv2u3s5xf67",
                "sg-11134201-825zm-mj9npvoz7nyf85",
                "sg-11134201-8260o-mjgpv3for8jp66",
                "sg-11134201-825zu-mjgpv3p64lj6d4",
                "sg-11134201-82616-mjgpv4295p8ha2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768375887,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 46270000000,
              "price_min": 46270000000,
              "price_max": 46270000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "starlight",
                    "black",
                    "rose gold",
                    "Gold",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134201-825zu-mjgpv3p64lj6d4",
                    "sg-11134201-82616-mjgpv4295p8ha2",
                    "sg-11134201-8261k-mjgpv4dhnw8w68",
                    "sg-11134201-8260y-mjgpv4ro3pj556",
                    "sg-11134201-8260c-mjgpv56ahzidbb"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "Watch 8 Classic 46mm",
                    "Galaxy Watch 8 44mm",
                    "Galaxy Watch 8 40mm",
                    "Galaxy Ultra 47mm",
                    "Galaxy Ultra (2025)"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 46270000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 320432221770,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 46270000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44478017096,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82629-mjgpv12xe9dz15\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":171,\"model_id\":320432221770,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82629-mjgpv12xe9dz15\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":171,\"model_id\":320432221770,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44478017096",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47204662374,
              "shopid": 1542929270,
              "name": "No Gap Stainless Steel Band for Samsung Galaxy Wat 8/8Classic 40mm 44mm 46mm Metal Correa Bracelet for GALAXY Ultra 47mm Strap",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079
              ],
              "image": "sg-11134201-82635-mjgpt2avkq2s2a",
              "images": [
                "sg-11134201-82635-mjgpt2avkq2s2a",
                "sg-11134201-825zw-mjgpt2q6a3uq08",
                "sg-11134201-8261w-mjgpt36d0rgic0",
                "sg-11134201-8261d-mjgpt3o37g1sc0",
                "sg-11134201-82613-mjgpt45e7rb704",
                "sg-11134201-8262d-mjgpt4ykjwn663",
                "sg-11134201-8260q-mjgpt5pd0e1155",
                "sg-11134201-8261p-mjgpt5why22t17",
                "sg-11134201-82609-mjgpt64cpp8k13"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768375795,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 76630000000,
              "price_min": 76630000000,
              "price_max": 76630000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "silver",
                    "black"
                  ],
                  "images": [
                    "sg-11134201-8261p-mjgpt5why22t17",
                    "sg-11134201-82609-mjgpt64cpp8k13"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 76630000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 330432212109,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 76630000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47204662374,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82635-mjgpt2avkq2s2a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":173,\"model_id\":330432212109,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82635-mjgpt2avkq2s2a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":173,\"model_id\":330432212109,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47204662374",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29844037553,
              "shopid": 1542929270,
              "name": "Leather Wat Strap for Samsung Galaxy Wat 8 40mm 44mm Magnetic Band Classic Bracelet for Galaxy Wat8 Classic 46mm Watband",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079
              ],
              "image": "sg-11134201-82616-mjgptofd0p396d",
              "images": [
                "sg-11134201-82616-mjgptofd0p396d",
                "sg-11134201-8262n-mjgptoty39c0de",
                "sg-11134201-825zy-mjgptp51bqis3a",
                "sg-11134201-82610-mjgptpf5g3r884",
                "sg-11134201-8261x-mjgptponabk3e6",
                "sg-11134201-82635-mjgptq0n6l8nea",
                "sg-11134201-8261g-mjgptqbn29ky06",
                "sg-11134201-8260u-mjgptqn63pxh1b",
                "sg-11134201-8260t-mjgptr8vwxdvd5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768375824,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 36840000000,
              "price_min": 36840000000,
              "price_max": 36840000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Brown",
                    "Black",
                    "Gray",
                    "Green"
                  ],
                  "images": [
                    "sg-11134201-8260u-mjgptqn63pxh1b",
                    "sg-11134201-8260t-mjgptr8vwxdvd5",
                    "sg-11134201-825zo-mjgptrmchhqd32",
                    "sg-11134201-82600-mjgpts29s7wl7a"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "Galaxy Watch 8 40mm",
                    "Watch 8 Classic 46mm",
                    "Galaxy Watch 8 44mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 36840000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 445432204881,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 36840000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 29844037553,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82616-mjgptofd0p396d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":172,\"model_id\":445432204881,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82616-mjgptofd0p396d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":172,\"model_id\":445432204881,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29844037553",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55154651696,
              "shopid": 49856158,
              "name": "apple watch ultra 2",
              "label_ids": [
                1400066568,
                844931086908638,
                844931064601283,
                1059152,
                700005487,
                822059908662278,
                825465608492064,
                825465608493600,
                825465608499232,
                1718093079
              ],
              "image": "id-11134207-8224z-mjgpki0grtvnf4",
              "images": [
                "id-11134207-8224z-mjgpki0grtvnf4",
                "id-11134207-8224p-mjgpki7lmqde52",
                "id-11134207-8224w-mjgpki9k4yki48",
                "id-11134207-8224r-mjgpki7m26ma78",
                "id-11134207-8224s-mjgpkhplxb7qff"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768375645,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 904800000000,
              "price_min": 904800000000,
              "price_max": 904800000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 904800000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 330432183329,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 904800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GRauto",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55154651696,
            "shopid": 49856158,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgpki0grtvnf4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931086908638,844931064601283,1059152,700005487,822059908662278,825465608492064,825465608493600,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":176,\"model_id\":330432183329,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgpki0grtvnf4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931086908638,844931064601283,1059152,700005487,822059908662278,825465608492064,825465608493600,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":176,\"model_id\":330432183329,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55154651696",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43128007303,
              "shopid": 1542929270,
              "name": "Premium Leather Band For Samsung Galaxy Wat Ultra 2025 47mm Comfortable Bracelet Samsung Galaxy Wat 8 40/44mm 8 Classic 46mm",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079
              ],
              "image": "sg-11134201-8262v-mjgpqr8b5amcda",
              "images": [
                "sg-11134201-8262v-mjgpqr8b5amcda",
                "sg-11134201-8262c-mjgpqry166mfaf",
                "sg-11134201-82625-mjgpqsr75qfb51",
                "sg-11134201-8261t-mjgpqtex47if28",
                "sg-11134201-8260d-mjgpqtoosg07b3",
                "sg-11134201-8260l-mjgpqu947jsx04",
                "sg-11134201-8262c-mjgpquivylfq87",
                "sg-11134201-8261z-mjgpquy62wow2c",
                "sg-11134201-82619-mjgpqvhcmozk98"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768375693,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 87670000000,
              "price_min": 87670000000,
              "price_max": 87670000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Taupe",
                    "Orange",
                    "White",
                    "Dark blue",
                    "Malachite green",
                    "Brown",
                    "Red",
                    "Black",
                    "Lndigo blue"
                  ],
                  "images": [
                    "sg-11134201-82621-mjgpqw5lqtc2e9",
                    "sg-11134201-8261o-mjgpqwouo8ox9e",
                    "sg-11134201-82632-mjgpqvpsl0xva3",
                    "sg-11134201-8262m-mjgpqx6rvt345d",
                    "sg-11134201-82633-mjgpqxzlkuf5c9",
                    "sg-11134201-82608-mjgpqyj5bd3524",
                    "sg-11134201-82612-mjgpqzdwxiio2a",
                    "sg-11134201-82619-mjgpqvhcmozk98",
                    "sg-11134201-8261z-mjgpquy62wow2c"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "Watch Ultra 2025",
                    "Galaxy Watch 8 40mm",
                    "Galaxy Watch Ultra",
                    "Watch 8 Classic 46mm",
                    "Galaxy Watch 8 44mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 87670000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 307333354405,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 87670000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43128007303,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262v-mjgpqr8b5amcda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":175,\"model_id\":307333354405,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262v-mjgpqr8b5amcda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":175,\"model_id\":307333354405,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43128007303",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50154642220,
              "shopid": 1714905707,
              "name": "Coros Pace 4 Baru Sebulan",
              "label_ids": [
                844931064601283,
                844931086908638,
                1049112,
                1059151,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608493600
              ],
              "image": "id-11134207-8224z-mjgil709eyo7ff",
              "images": [
                "id-11134207-8224z-mjgil709eyo7ff",
                "id-11134207-8224q-mjgil709dk3r07",
                "id-11134207-8224s-mjgil709gd8n77",
                "id-11134207-8224z-mjgil709hrt33f",
                "id-11134207-8224o-mjgil70prim8c4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768375259,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "COROS",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 385400000000,
              "price_min": 385400000000,
              "price_max": 385400000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 385400000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 262333543184,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 385400000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "darisfauzannurhidayat",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50154642220,
            "shopid": 1714905707,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgil709eyo7ff\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049112,1059151,822059908662278,825465608494624,825465608499232,825465608493600],\"matched_keywords\":[\"\"],\"merge_rank\":186,\"model_id\":262333543184,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgil709eyo7ff\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049112,1059151,822059908662278,825465608494624,825465608499232,825465608493600],\"matched_keywords\":[\"\"],\"merge_rank\":186,\"model_id\":262333543184,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50154642220",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26344027593,
              "shopid": 240497449,
              "name": "Huawei Band 9 second",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608493600,
                825465608499232
              ],
              "image": "id-11134207-8224p-mjgpbbrurais39",
              "images": [
                "id-11134207-8224p-mjgpbbrurais39",
                "id-11134207-8224z-mjgpbbt32znnb4",
                "id-11134207-8224o-mjgpbbs91edc3e",
                "id-11134207-8224x-mjgpbbsytvr894",
                "id-11134207-8224w-mjgpbbsx8ah353",
                "id-11134207-8224w-mjgpbxjxd0ch3a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768375266,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 28000000000,
              "price_min": 28000000000,
              "price_max": 28000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 28000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 350432146016,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 28000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "rewi.dahmawati",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26344027593,
            "shopid": 240497449,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjgpbbrurais39\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608493600,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2289,\"model_id\":350432146016,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjgpbbrurais39\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608493600,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2289,\"model_id\":350432146016,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26344027593",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55904655929,
              "shopid": 204082562,
              "name": "Garmin Fenix 5s Plus",
              "label_ids": [
                298463379,
                844931064601283,
                1049143,
                1049142,
                1718093079,
                822059908662278,
                2048660,
                2048661,
                825465608499232,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224s-mjgp1dyutwjo4c",
              "images": [
                "id-11134207-8224s-mjgp1dyutwjo4c",
                "id-11134207-8224w-mjgp1dyphgquf4",
                "id-11134207-8224w-mjgp1dyzigoxa2",
                "id-11134207-8224y-mjgp1dyp0lxfe5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768374791,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 320000000000,
              "price_min": 320000000000,
              "price_max": 320000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pekanbaru",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 320000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435432080155,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 320000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "krismauca",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55904655929,
            "shopid": 204082562,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mjgp1dyutwjo4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,844931064601283,1049143,1049142,1718093079,822059908662278,2048660,2048661,825465608499232,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1104,\"model_id\":435432080155,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mjgp1dyutwjo4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,844931064601283,1049143,1049142,1718093079,822059908662278,2048660,2048661,825465608499232,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1104,\"model_id\":435432080155,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55904655929",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52904655803,
              "shopid": 1549406,
              "name": "WIRELESS TAG FINDER PENCARI PELACAK  WORKS TRACKER DENGAN APPLE FIND MY  KECIL DAN BULAT  BATERAI BERTAHAN 1 TAHUN",
              "label_ids": [
                1000016,
                2018619,
                844931064601283,
                298463379,
                1059156,
                700005499,
                1718093079,
                822059908662278,
                2048660,
                2048661,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224p-mjgny8tbompz2e",
              "images": [
                "id-11134207-8224p-mjgny8tbompz2e",
                "id-11134207-82250-mjgokejezdae41",
                "id-11134207-8224x-mjgokejcn37n5b",
                "id-11134207-8224q-mjgokejc0m4ibb",
                "id-11134207-82252-mjgokejbmkg45c",
                "id-11134207-8224p-mjgokeihmdqbc0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768374271,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 23875000000,
              "price_min": 23875000000,
              "price_max": 23875000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venc-mjgouus5j2f4f2.16000081768374210.mp4",
                  "thumb_url": "id-11110105-6venc-mjgouus5j2f4f2_cover",
                  "duration": 12,
                  "version": 2,
                  "vid": "id-11110105-6venc-mjgouus5j2f4f2",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venc-mjgouus5j2f4f2.16000081768374210.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venc-mjgouus5j2f4f2.16000081768374210.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venc-mjgouus5j2f4f2.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": true,
              "is_preferred_plus_seller": false,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 23875000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 380432025547,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 23875000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "erwindeepblue",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52904655803,
            "shopid": 1549406,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjgny8tbompz2e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000016,2018619,844931064601283,298463379,1059156,700005499,1718093079,822059908662278,2048660,2048661,825465608493600,825465608494624,825465608499232,825465608497696,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1291,\"model_id\":380432025547,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjgny8tbompz2e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000016,2018619,844931064601283,298463379,1059156,700005499,1718093079,822059908662278,2048660,2048661,825465608493600,825465608494624,825465608499232,825465608497696,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1291,\"model_id\":380432025547,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52904655803",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50704646356,
              "shopid": 1536174829,
              "name": "MiLI SMART ANTI LOST CARD Pelacak NFC, Alarm 100dB, Tahan Air IP67 - Bisa Lacak via Google Maps",
              "label_ids": [
                298463379,
                844931064601283,
                1049126,
                700005496,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224p-mjgor5o2iqdi84",
              "images": [
                "id-11134207-8224p-mjgor5o2iqdi84",
                "id-11134207-82250-mjgor5nzbjsx71",
                "id-11134207-8224p-mjgor5nzcyddb3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768374138,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 55000000000,
              "price_min": 55000000000,
              "price_max": 55000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Gianyar",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 55000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390431999131,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 55000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "chatuponmid",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50704646356,
            "shopid": 1536174829,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjgor5o2iqdi84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,844931064601283,1049126,700005496,822059908662278,825465608499232,825465608497696,1718093079,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1446,\"model_id\":390431999131,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjgor5o2iqdi84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,844931064601283,1049126,700005496,822059908662278,825465608499232,825465608497696,1718093079,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1446,\"model_id\":390431999131,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50704646356",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52554646076,
              "shopid": 1582266054,
              "name": "Xiaomi Redmi 15C (8GB/256GB) | Baterai besar 6000mAh dengan pengisian daya 33W | Desain ramping dan elegan |",
              "label_ids": [
                1400066568,
                2018619,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "id-11134207-8224o-mjgn89vrdix1e4",
              "images": [
                "id-11134207-8224o-mjgn89vrdix1e4",
                "id-11134207-8224t-mjgn89vrexhh08",
                "id-11134207-82250-mjgn89vrgc1x32",
                "id-11134207-8224t-mjgn89vr6i2t53",
                "id-11134207-8224r-mjgn89vraps550",
                "id-11134207-8224q-mjgn89vr53idbc",
                "id-11134207-82251-mjgn89vr7wn99a",
                "id-11134207-8224x-mjgn89vrc4cl5b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768373330,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 169900000000,
              "price_min": 169900000000,
              "price_max": 169900000000,
              "price_min_before_discount": 339800000000,
              "price_max_before_discount": 339800000000,
              "hidden_price_display": null,
              "price_before_discount": 339800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvi-mjgnz9k4ejusaa.16000101768372719.mp4",
                  "thumb_url": "id-11110105-6vdvi-mjgnz9k4ejusaa_cover",
                  "duration": 37,
                  "version": 2,
                  "vid": "id-11110105-6vdvi-mjgnz9k4ejusaa",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvi-mjgnz9k4ejusaa.16000101768372719.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvi-mjgnz9k4ejusaa.16000101768372719.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvi-mjgnz9k4ejusaa.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Blue",
                    "Green"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 740438504424448,
                "price": 168900000000,
                "strikethrough_price": 339800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1317914335395872,
                "discount_text": "-50%",
                "model_id": 287333210586,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1317914335395872,
                  "voucher_code": "HARDSV001",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1766567340,
                    "end_time": 1774606140,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 20000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 339800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Hardware Market",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52554646076,
            "shopid": 1582266054,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjgn89vrdix1e4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,1718087960,1428713,844931064601283,844931086908638,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1320,\"model_id\":287333210586,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjgn89vrdix1e4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,1718087960,1428713,844931064601283,844931086908638,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1320,\"model_id\":287333210586,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52554646076",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51204651053,
              "shopid": 284175299,
              "name": "[NEW ARRIVAL] UltraWatch Series 11 Mini 42mm Smartwatch Jam Tangan Pria & Wanita Bluetooth 5.4 Amoled Display IP 68 Water Resistant with Sport & Health Mode Dynamic Island ChatGPT - by PodsIndonesia",
              "label_ids": [
                700700063,
                2018619,
                298938357,
                298888358,
                2023641,
                700025016,
                1718072935,
                1718087960,
                1428713,
                844931064601283,
                1049112,
                1049133,
                822059908662278,
                825465608497696,
                825465608499232,
                298463379,
                1718093079,
                298938368,
                2098628,
                2098629,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8261e-mjfhpn0ehkhue3",
              "images": [
                "sg-11134201-8261e-mjfhpn0ehkhue3",
                "sg-11134201-8260r-mjgo96tq91xfed",
                "sg-11134201-8261j-mjgo97cjug3od7",
                "sg-11134201-82628-mjgo97mfdsefac",
                "sg-11134201-8261p-mjgo97vj6br5ae",
                "sg-11134201-8260w-mjgo981vtnnoc5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768373183,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 59900000000,
              "price_min": 59900000000,
              "price_max": 59900000000,
              "price_min_before_discount": 299900000000,
              "price_max_before_discount": 299900000000,
              "hidden_price_display": null,
              "price_before_discount": 299900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-80%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Silver",
                    "Rose Gold"
                  ],
                  "images": [
                    "sg-11134201-8262v-mjgo988gz8xzcb",
                    "sg-11134201-8262b-mjgo98f0c6isfb",
                    "sg-11134201-82604-mjgo98kw4p3793"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp99RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 809482544791552,
                "price": 59400000000,
                "strikethrough_price": 299900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1312033836646404,
                "discount_text": "-80%",
                "model_id": 325431913510,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1312033836646404,
                  "voucher_code": "PODS5K",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1765866360,
                    "end_time": 1772297940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 45000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 299900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp99RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Pods Indonesia Official Mall",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51204651053,
            "shopid": 284175299,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261e-mjfhpn0ehkhue3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,298938357,298888358,2023641,700025016,1718072935,1718087960,1428713,844931064601283,1049112,1049133,822059908662278,825465608497696,825465608499232,298463379,1718093079,298938368,2098628,2098629,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1416,\"model_id\":325431913510,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261e-mjfhpn0ehkhue3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,298938357,298888358,2023641,700025016,1718072935,1718087960,1428713,844931064601283,1049112,1049133,822059908662278,825465608497696,825465608499232,298463379,1718093079,298938368,2098628,2098629,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1416,\"model_id\":325431913510,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51204651053",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50954655161,
              "shopid": 1656110262,
              "name": "FAVORIT [NEW 2026] ILV ELEKTRONIK SERIES S10 MAX SMARTWATCH 2.3 INCI HD AMOLED DISPLAY GPS NFC BLUETOOTH IPHONE CALL  WATERPROOF SMARTWATCH WANITA PRIA DAN GANTI WALLPAPER JAM TANGAN PRIA JAM TANGAN WANITA JAM TANGAN SMARTWATCH COUPLE",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224u-mjgmvhzgxam942",
              "images": [
                "id-11134201-8224u-mjgmvhzgxam942",
                "id-11134201-8224s-mjgmvj1u991eda",
                "id-11134201-8224u-mjgmvlo96xhj58",
                "id-11134201-8224y-mjgmvmpr89a914",
                "id-11134201-8224u-mjgmvpb62mf601",
                "id-11134201-8224x-mjgmvs0yfm6823",
                "id-11134201-8224y-mjgmvt3iebk410",
                "id-11134201-8224u-mjgmvu8naxojf5",
                "id-11134201-8224z-mjgmvw2f981t83"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768370904,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 26000000000,
              "price_min": 26000000000,
              "price_max": 26000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "S9-Black",
                    "S10-Black",
                    "S10-White",
                    "S11-White",
                    "S11-Pink",
                    "S9-Silver",
                    "S11-Black",
                    "S11-Blue",
                    "S9-Pink",
                    "S10-Pink"
                  ],
                  "images": [
                    "id-11134201-8224r-mjgmvzfkw6bm21",
                    "id-11134201-82251-mjgmw15gge85cf",
                    "id-11134201-8224r-mjgmw3p4shkx85",
                    "id-11134201-8224q-mjgmw66h1j465a",
                    "id-11134201-82252-mjgmw75wfs3oc1",
                    "id-11134201-8224x-mjgmw9olb2tc1d",
                    "id-11134201-8224r-mjgmwbej4t8n85",
                    "id-11134201-8224q-mjgmwdx8cphcef",
                    "id-11134201-82252-mjgmweugb0nb62",
                    "id-11134201-8224o-mjgmwfrw9ddxc2"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 26000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 345431708938,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 26000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50954655161,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224u-mjgmvhzgxam942\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1428,\"model_id\":345431708938,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224u-mjgmvhzgxam942\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1428,\"model_id\":345431708938,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50954655161",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48654670593,
              "shopid": 1656110262,
              "name": "ORIGINAL COD TERBARU JAM TANGAN ULTRA 8 SMARTWATCH FREE HEADSET DAN STRAP POLOS JAM TANGAN PRIA/WANITA",
              "label_ids": [
                844931064601283,
                1049134,
                700005505,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224x-mjgmxppd2sxs17",
              "images": [
                "id-11134201-8224x-mjgmxppd2sxs17",
                "id-11134201-8224y-mjgmxqty7apw45",
                "id-11134201-8224t-mjgmxsokcr2f4c",
                "id-11134201-8224y-mjgmxtmjdxxg9e",
                "id-11134201-8224r-mjgmxut861a881",
                "id-11134201-8224s-mjgmxvvlysxz20"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768370999,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 35513400000,
              "price_min": 35513400000,
              "price_max": 35513400000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "PINK",
                    "FULL HITAM",
                    "CREAM",
                    "HIJAU ARMI",
                    "PUTIH",
                    "NAVY",
                    "ABU ABU",
                    "ORANGE",
                    "HITAM SILVER"
                  ],
                  "images": [
                    "id-11134201-8224s-mjgmxz34ihac3a",
                    "id-11134201-82252-mjgmy06hfeh222",
                    "id-11134201-8224y-mjgmy2uhhiboa8",
                    "id-11134201-82252-mjgmy4p6kb9ib4",
                    "id-11134201-82252-mjgmy5si5kaua6",
                    "id-11134201-8224r-mjgmy7p2t79d51",
                    "id-11134201-82252-mjgmyabf8zd350",
                    "id-11134201-82252-mjgmycwcj8xy75",
                    "id-11134201-82251-mjgmyfcso93945"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pontianak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 35513400000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 292333082821,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 35513400000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 8",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48654670593,
            "shopid": 1656110262,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgmxppd2sxs17\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1572,\"model_id\":292333082821,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgmxppd2sxs17\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1572,\"model_id\":292333082821,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48654670593",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53554640946,
              "shopid": 1666692538,
              "name": "HOT [NEW 2026] iLV Elektronik Series S10 MAX SmartWatch 2.3 inci HD AMOLED Display GPS NFC Bluetooth iphone Call  Waterproof Smartwatch Wanita Pria Dan Ganti Wallpaper Jam tangan Pria Jam Tangan Wanita Jam Tangan Smartwatch Couple",
              "label_ids": [
                844931064601283,
                1049130,
                700005503,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224o-mjgmtfndz0ua75",
              "images": [
                "id-11134201-8224o-mjgmtfndz0ua75",
                "id-11134201-8224y-mjgmtgof46blf4",
                "id-11134201-82252-mjgmthnit0xx55",
                "id-11134201-8224o-mjgmtiq9li4m15",
                "id-11134201-8224y-mjgmtjqh7bpi6d",
                "id-11134201-8224z-mjgmtm9852it8a",
                "id-11134201-8224y-mjgmtot8ey2ucd",
                "id-11134201-8224t-mjgmtrb70v0j2a",
                "id-11134201-8224p-mjgmttw3yhhdc9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768370805,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 26100000000,
              "price_min": 26100000000,
              "price_max": 26100000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "S9-Black",
                    "S10-Black",
                    "S10-White",
                    "S11-White",
                    "S11-Pink",
                    "S9-Silver",
                    "S11-Black",
                    "S11-Blue",
                    "S9-Pink",
                    "S10-Pink"
                  ],
                  "images": [
                    "id-11134201-8224u-mjgmtxj62honcc",
                    "id-11134201-82252-mjgmtygbpyx20a",
                    "id-11134201-8224o-mjgmtzejndom33",
                    "id-11134201-82251-mjgmu146xwck71",
                    "id-11134201-8224q-mjgmu22804qu5f",
                    "id-11134201-8224z-mjgmu2yet8u98f",
                    "id-11134201-8224v-mjgmu5ecm22rcc",
                    "id-11134201-8224w-mjgmu6bxsjr971",
                    "id-11134201-82251-mjgmu804byme58",
                    "id-11134201-8224q-mjgmu9o86epw5a"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 26100000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 395431706983,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 26100000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 6",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53554640946,
            "shopid": 1666692538,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgmtfndz0ua75\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1256,\"model_id\":395431706983,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgmtfndz0ua75\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1256,\"model_id\":395431706983,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53554640946",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49954675069,
              "shopid": 1623695925,
              "name": "Fast Delivery [New 2026] Ilv Elektronik Series S10 Max Smartwatch 2.3 Inci Hd Amoled Display Gps Nfc Bluetooth Iphone Call  Waterproof Smartwatch Wanita Pria Dan Ganti Wallpaper Jam Tangan Pria Jam Tangan Wanita Jam Tangan Smartwatch Couple",
              "label_ids": [
                844931064601283,
                1049130,
                1049131,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134201-8224o-mjgmuuzed8ud8c",
              "images": [
                "id-11134201-8224o-mjgmuuzed8ud8c",
                "id-11134201-82251-mjgmuvxbvlz8c6",
                "id-11134201-82252-mjgmuydk7ojp1a",
                "id-11134201-8224s-mjgmuza019tub1",
                "id-11134201-8224z-mjgmv1qm3tvm0e",
                "id-11134201-8224o-mivar88fsemdc4",
                "id-11134201-8224w-mjgmv54rlmh012",
                "id-11134201-8224p-mjgmv6u4eadj90",
                "id-11134201-82250-mjgmv8iy5fk1ec"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768370875,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 26800000000,
              "price_min": 26800000000,
              "price_max": 26800000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "S9-Black",
                    "S10-Black",
                    "S10-White",
                    "S11-White",
                    "S11-Pink",
                    "S9-Silver",
                    "S11-Black",
                    "S11-Blue",
                    "S9-Pink",
                    "S10-Pink"
                  ],
                  "images": [
                    "id-11134201-8224v-mjgmvbjx3pc697",
                    "id-11134201-8224o-mjgmvd7uwgzme8",
                    "id-11134201-8224z-mjgmvewpih3786",
                    "id-11134201-8224t-mjgmvgm7m4n95a",
                    "id-11134201-8224r-mjgmvj2r5ds5ae",
                    "id-11134201-8224s-mjgmvljqk8w3a8",
                    "id-11134201-8224y-mjgmvo0up5vpfc",
                    "id-11134201-8224x-mjgmvppgaosn4d",
                    "id-11134201-8224y-mj411x3xibk088",
                    "id-11134201-8224t-mjgmvt4hpjiaf2"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 26800000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 330431715652,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 26800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Levia Store 7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49954675069,
            "shopid": 1623695925,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgmuuzed8ud8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1496,\"model_id\":330431715652,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgmuuzed8ud8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1496,\"model_id\":330431715652,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49954675069",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50004650361,
              "shopid": 475189058,
              "name": "Samsung Galaxy Watch Ultra 47mm Inter",
              "label_ids": [
                844931064601283,
                1049116,
                1049123,
                1718093079,
                822059908662278,
                2048661,
                825465608499232,
                2048660
              ],
              "image": "id-11134207-82250-mjgmp6w8cgsndb",
              "images": [
                "id-11134207-82250-mjgmp6w8cgsndb",
                "id-11134207-8224u-mjgmp6wegzy8a0",
                "id-11134207-8224q-mjgmp6w8b287a9",
                "id-11134207-8224y-mjgmp6vzzv9h6d",
                "id-11134207-8224s-mjgmp6we2y9w62",
                "id-11134207-8224v-mjgmp6widgqv31",
                "id-11134207-8224v-mjgmp6wu1gjp17"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768370667,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 345000000000,
              "price_min": 345000000000,
              "price_max": 345000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Malang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 345000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 292333059306,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 345000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "dapsgadget",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50004650361,
            "shopid": 475189058,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mjgmp6w8cgsndb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049123,1718093079,822059908662278,2048661,825465608499232,2048660],\"matched_keywords\":[\"\"],\"merge_rank\":1491,\"model_id\":292333059306,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mjgmp6w8cgsndb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049123,1718093079,822059908662278,2048661,825465608499232,2048660],\"matched_keywords\":[\"\"],\"merge_rank\":1491,\"model_id\":292333059306,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50004650361",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41528011454,
              "shopid": 204825196,
              "name": "Redmi Watch 5 Lite - Tahan Air 5ATM, 150+ Mode Olahraga, Baterai Tahan 18 Hari",
              "label_ids": [
                2143597,
                2018619,
                2143613,
                1428713,
                1718087960,
                2103651,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                825465608493600,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224w-mjgmq450qsqt4c",
              "images": [
                "id-11134207-8224w-mjgmq450qsqt4c",
                "id-11134207-8224q-mjgmq45er2m934",
                "id-11134207-8224z-mjgmq45i2gw0cc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768370691,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Xiaomi",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 69000000000,
              "price_min": 69000000000,
              "price_max": 69000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "black"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 69000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 375431700467,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 69000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "mayaulfahh",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41528011454,
            "shopid": 204825196,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjgmq450qsqt4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2143597,2018619,2143613,1428713,1718087960,2103651,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2004,\"model_id\":375431700467,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjgmq450qsqt4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2143597,2018619,2143613,1428713,1718087960,2103651,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2004,\"model_id\":375431700467,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41528011454",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45304670465,
              "shopid": 132240270,
              "name": "HUAWEI WATCH GT 5 Pro Smartwatch second",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                1400066568,
                1049116,
                700000488,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079
              ],
              "image": "id-11134207-82252-mjgmgkmq0fevbe",
              "images": [
                "id-11134207-82252-mjgmgkmq0fevbe"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768370493,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 275000000000,
              "price_min": 275000000000,
              "price_max": 275000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Mojokerto",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 275000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 380431685639,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 275000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Juraganmediaku",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45304670465,
            "shopid": 132240270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjgmgkmq0fevbe\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1400066568,1049116,700000488,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1782,\"model_id\":380431685639,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjgmgkmq0fevbe\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1400066568,1049116,700000488,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1782,\"model_id\":380431685639,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45304670465",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46404675008,
              "shopid": 262670100,
              "name": "Apple Watch Series 3 GPS (2021) Second Orginal, 38mm, Space Gray Aluminum Black Sport",
              "label_ids": [
                844931064601283,
                1049112,
                1049133,
                822059908662278,
                825465608494624,
                825465608499232
              ],
              "image": "id-11134207-8224x-mjgln6v0cnwk75",
              "images": [
                "id-11134207-8224x-mjgln6v0cnwk75",
                "id-11134207-82250-mjgln6v000sh21",
                "id-11134207-8224t-mjgln6uwltdu47",
                "id-11134207-8224w-mjgln6v01fcx2e",
                "id-11134207-8224q-mjgln6veik1y6b",
                "id-11134207-8224u-mjgln6va58g12e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768370348,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple Watch",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 59900000000,
              "price_min": 59900000000,
              "price_max": 59900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 59900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 244143672248,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 59900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Soura",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46404675008,
            "shopid": 262670100,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjgln6v0cnwk75\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1049133,822059908662278,825465608494624,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1716,\"model_id\":244143672248,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjgln6v0cnwk75\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1049133,822059908662278,825465608494624,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1716,\"model_id\":244143672248,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46404675008",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54654640836,
              "shopid": 1710460748,
              "name": "Watch Series 10  38mm Jam Tangan Pintar Olahraga DIY Wallpaper Bluetooth Fitness Blood Pressure Blood Oxygen Sleep Monitoring Sport Wanita Pria Garansi Resmi IOS Android Jam Tangan Alumunium Case",
              "label_ids": [
                844931064601283,
                700005495,
                700005490,
                822059908662278,
                825465608499232
              ],
              "image": "id-11134207-8224o-mjgm9plmgpokac",
              "images": [
                "id-11134207-8224o-mjgm9plmgpokac",
                "id-11134207-8224x-mjgm9plfvbph27",
                "id-11134207-82252-mjgm9pmnj56q04",
                "id-11134207-8224q-mjgm9pli7ls198",
                "id-11134207-8224z-mjgm9plmfb4483",
                "id-11134207-82251-mjgm9plj13pef6",
                "id-11134207-82250-mjgm9pmj1lvk86",
                "id-11134207-8224t-mjgm9plftx5125",
                "id-11134207-8224o-mjgm9plefcowe5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768370137,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 29700000000,
              "price_min": 29700000000,
              "price_max": 29700000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "white",
                    "pink",
                    "black"
                  ],
                  "images": [
                    "id-11134207-8224y-mjgm9pmq598m2a",
                    "id-11134207-8224q-mjgm9pmq6nt213",
                    "id-11134207-82250-mjgm9pmq82dife"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 29700000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435431651071,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 29700000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "watch 143",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54654640836,
            "shopid": 1710460748,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjgm9plmgpokac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005495,700005490,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1190,\"model_id\":435431651071,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjgm9plmgpokac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005495,700005490,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1190,\"model_id\":435431651071,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54654640836",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47204665450,
              "shopid": 1437319556,
              "name": "iWatch Seri 10 45MM",
              "label_ids": [
                1049126,
                700005567,
                822059908662278,
                825465608499232,
                1400066568
              ],
              "image": "id-11134207-8224o-mjgme1vdog0543",
              "images": [
                "id-11134207-8224o-mjgme1vdog0543",
                "id-11134207-82252-mjgme1wpy0huc5",
                "id-11134207-8224t-mjgme1vg4xs1fe",
                "id-11134207-8224q-mjgme1vg6cchdc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768370188,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple",
              "cmt_count": 0,
              "flag": 0,
              "cb_option": 0,
              "item_status": "new",
              "price": 450000000000,
              "price_min": 450000000000,
              "price_max": 450000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tabanan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 450000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 315432245731,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 450000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "agushofira",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47204665450,
            "shopid": 1437319556,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjgme1vdog0543\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049126,700005567,822059908662278,825465608499232,1400066568],\"matched_keywords\":[\"\"],\"merge_rank\":1668,\"model_id\":315432245731,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjgme1vdog0543\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049126,700005567,822059908662278,825465608499232,1400066568],\"matched_keywords\":[\"\"],\"merge_rank\":1668,\"model_id\":315432245731,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47204665450",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44504670453,
              "shopid": 280628135,
              "name": "Aolon Curve 3 Ultra Smartwatch 45mm Layar AMOLED 60Hz Tombol Kustom Bluetooth Pemantauan Tidur Tahan Air 1ATM Olahraga",
              "label_ids": [
                700700063,
                1000314,
                1000653,
                1002164,
                1016119,
                1011692,
                2153644,
                1518617,
                2018618,
                298888358,
                298938357,
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                700005495,
                1718093079,
                822059908662278,
                2048661,
                825465608494624,
                825465608499232,
                825465608497696,
                2048660,
                1718088045,
                298468389,
                2098629,
                2098628,
                298938368
              ],
              "image": "id-11134207-8224z-mjgi7710wlc030",
              "images": [
                "id-11134207-8224z-mjgi7710wlc030",
                "id-11134207-8224r-mjgi7710jy8021",
                "id-11134207-82250-mjgi7710mrcwf6",
                "id-11134207-8224v-mjgi7710lcsg00",
                "id-11134207-82251-mjgi7710ts746c",
                "id-11134207-8224t-mjgi7710o5xcbb",
                "id-11134207-8224s-mjgi7710pkhs36",
                "id-11134207-8224o-mjgi7710qz2883",
                "id-11134207-8224y-mjgi7710sdmo84"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768370064,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Aolon",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 62900000000,
              "price_min": 62900000000,
              "price_max": 62900000000,
              "price_min_before_discount": 199900000000,
              "price_max_before_discount": 199900000000,
              "hidden_price_display": null,
              "price_before_discount": 199900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-69%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "RoseGold",
                    "Perak",
                    "Hitam",
                    "Logam RoseGold",
                    "Logam Perak",
                    "Milan Perak"
                  ],
                  "images": [
                    "id-11134207-7ra0p-mb805ca3jba1a8",
                    "id-11134207-7ra0o-mb805ca3kpuhaf",
                    "id-11134207-7ra0k-mb805ca3hwpl54",
                    "id-11134207-7ra0h-mcbfijapjz5xed",
                    "id-11134207-7ra0i-mcbfijaph611c4",
                    "id-11134207-7ra0s-mcbfijapiklhd3"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp103RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 798665325723648,
                "price": 61900000000,
                "strikethrough_price": 199900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1332891314700288,
                "discount_text": "-69%",
                "model_id": 335431648261,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1332891314700288,
                  "voucher_code": "SVC-1332891314700288",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1768323600,
                    "end_time": 1768409999,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp103RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Aolon Indonesia Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44504670453,
            "shopid": 280628135,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgi7710wlc030\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,1000314,1000653,1002164,1016119,1011692,2153644,1518617,2018618,298888358,298938357,844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,2048661,825465608494624,825465608499232,825465608497696,2048660,1718088045,298468389,2098629,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":1838,\"model_id\":335431648261,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgi7710wlc030\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,1000314,1000653,1002164,1016119,1011692,2153644,1518617,2018618,298888358,298938357,844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,2048661,825465608494624,825465608499232,825465608497696,2048660,1718088045,298468389,2098629,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":1838,\"model_id\":335431648261,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44504670453",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44604670264,
              "shopid": 1531387649,
              "name": "Nylon Strap for Fitbit Versa 3 4 Band Smart Watch Replacment Soft Breathable Sport Loop Belt Correa Bracelet Fitbit Sense 2 Band",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "sg-11134201-8262m-mjgm6td66fwl6c",
              "images": [
                "sg-11134201-8262m-mjgm6td66fwl6c",
                "sg-11134201-82617-mjgm6tmxm8zn53",
                "sg-11134201-8262l-mjgm6tx8hkw4d6",
                "sg-11134201-8260k-mjgm6u7psq2uda",
                "sg-11134201-8261f-mjgm6unufhfmce",
                "sg-11134201-82617-mjgm6v3t6876a9",
                "sg-11134201-8262g-mjgm6vb8lslgeb",
                "sg-11134201-825zn-mjgm6vnbjkzl1a",
                "sg-11134201-8260s-mjgm6w3z981z18"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768369714,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 21510000000,
              "price_min": 21510000000,
              "price_max": 21510000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Marine Green",
                    "red black",
                    "Cargo Khaki",
                    "flash light",
                    "Dark Black",
                    "Indigo",
                    "Storm gray",
                    "Cape Cod Blue",
                    "Neon Lime",
                    "Red",
                    "NEW Pride Edition",
                    "Anchor Gray",
                    "Rainbow",
                    "Hyper Grape",
                    "Sunshine",
                    "Alaskan Blue",
                    "Pink sand",
                    "Pearl",
                    "Black",
                    "Flash"
                  ],
                  "images": [
                    "sg-11134201-82612-mjgm6zdwnq4n21",
                    "sg-11134201-8262o-mjgm6z74fxms3c",
                    "sg-11134201-82634-mjgm6wguk8w72f",
                    "sg-11134201-82605-mjgm6yuvufbaff",
                    "sg-11134201-82616-mjgm6zlq0r9j42",
                    "sg-11134201-8262g-mjgm6vb8lslgeb",
                    "sg-11134201-8262l-mjgm6tx8hkw4d6",
                    "sg-11134201-8261r-mjgm6waoi9dx83",
                    "sg-11134201-82605-mjgm6wo9vll040",
                    "sg-11134201-82607-mjgm6wu4ay9w16",
                    "sg-11134201-8260m-mjgm6x0bsv7q58",
                    "sg-11134201-825zk-mjgm6x677aioe3",
                    "sg-11134201-8260e-mjgm6xdfuhom64",
                    "sg-11134201-8260v-mjgm6xkrhreqd5",
                    "sg-11134201-8261u-mjgm6xsdk4cn58",
                    "sg-11134201-8261i-mjgm6y0al8g625",
                    "sg-11134201-825zn-mjgm6y8c0zk687",
                    "sg-11134201-8261n-mjgm6yggie4n3a",
                    "sg-11134201-8261v-mjgm6ynqmxadff",
                    "sg-11134201-8260g-mjgm6z0th05ja6"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland",
                    "United States"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 21510000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 360431626440,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 21510000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44604670264,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262m-mjgm6td66fwl6c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1830,\"model_id\":360431626440,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262m-mjgm6td66fwl6c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1830,\"model_id\":360431626440,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44604670264",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57154645263,
              "shopid": 203077727,
              "name": "Apple watch ultra 2 49mm fullset garansi on",
              "label_ids": [
                844931064601283,
                1049122,
                1059152,
                1718093079,
                822059908662278,
                2048660,
                2048661,
                825465608494624,
                825465608499232
              ],
              "image": "id-11134207-8224x-mjgm0ue4otmpdf",
              "images": [
                "id-11134207-8224x-mjgm0ue4otmpdf",
                "id-11134207-8224u-mjgm0ue4rmrpc3",
                "id-11134207-8224q-mjgm0udzkt8kee",
                "id-11134207-82252-mjgm0uf4e39icd",
                "id-11134207-82250-mjgm0uig505cc8",
                "id-11134207-8224u-mjgm0ujfg83p9b",
                "id-11134207-8224t-mjgm0ujhd1xf27",
                "id-11134207-8224w-mjgm0ujz5kw116"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768369527,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple Watch",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 860000000000,
              "price_min": 860000000000,
              "price_max": 860000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 860000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 315432184146,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 860000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Aril_kisara",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57154645263,
            "shopid": 203077727,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjgm0ue4otmpdf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049122,1059152,1718093079,822059908662278,2048660,2048661,825465608494624,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1025,\"model_id\":315432184146,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjgm0ue4otmpdf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049122,1059152,1718093079,822059908662278,2048660,2048661,825465608494624,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1025,\"model_id\":315432184146,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57154645263",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52054639760,
              "shopid": 1531387649,
              "name": "20mm 22mm Magnetic Strap for Huawei Watch GT5 GT4 5Pro 3 46mm Silicone Band for Samsung Galaxy 7 6 5 4 40mm 44mm Sport Bracelet",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "sg-11134201-825zo-mjgm2b97ueivfb",
              "images": [
                "sg-11134201-825zo-mjgm2b97ueivfb",
                "sg-11134201-82601-mjgm2bwbpvr81d",
                "sg-11134201-82630-mjgm2cija7ltd1",
                "sg-11134201-8260b-mjgm2ctv57gm20",
                "sg-11134201-8260r-mjgm2dggisckb6",
                "sg-11134201-82606-mjgm2dsbp1qea6",
                "sg-11134201-8260x-mjgm2dz9ucjrc2",
                "sg-11134201-8260e-mjgm2ec0xo1wca",
                "sg-11134201-8261x-mjgm2f1feqdj71"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768369506,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 26340000000,
              "price_min": 26340000000,
              "price_max": 26340000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "grey orange",
                    "wine red",
                    "navy blue",
                    "pink",
                    "starlight",
                    "starlight pink",
                    "mint",
                    "midnight",
                    "black",
                    "black orange",
                    "mint starlight",
                    "starlight orange"
                  ],
                  "images": [
                    "sg-11134201-8262o-mjgm2inejh8ie0",
                    "sg-11134201-82615-mjgm2j3jspokaf",
                    "sg-11134201-8260e-mjgm2ec0xo1wca",
                    "sg-11134201-82606-mjgm2dsbp1qea6",
                    "sg-11134201-8261p-mjgm2fe91b7ra4",
                    "sg-11134201-82627-mjgm2ft3bdhha1",
                    "sg-11134201-8262m-mjgm2g8c5dl34c",
                    "sg-11134201-8261r-mjgm2gldxj4150",
                    "sg-11134201-825zs-mjgm2gxbu5tz80",
                    "sg-11134201-82613-mjgm2havu8zpaf",
                    "sg-11134201-825zp-mjgm2hq553wg60",
                    "sg-11134201-8260e-mjgm2ia0qn7oc7"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "20mm",
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 26340000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 310432179124,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 26340000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52054639760,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zo-mjgm2b97ueivfb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1353,\"model_id\":310432179124,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zo-mjgm2b97ueivfb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1353,\"model_id\":310432179124,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52054639760",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56604650167,
              "shopid": 1531387649,
              "name": "20mm 22mm WatchBand For Amazfit Active/Bip 5/GTS 2/3/4 Mini Strap GTR 2/3/4 42 47mm Milanese Bracelet For Amazfit Bip 3 Pro Band",
              "label_ids": [
                844931064601283,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-82635-mjglz5u6qnly6d",
              "images": [
                "sg-11134201-82635-mjglz5u6qnly6d",
                "sg-11134201-8261s-mjglz633gzr8ef",
                "sg-11134201-82628-mjglz6bjdx4xa5",
                "sg-11134201-82617-mjglz8fxogsnf4",
                "sg-11134201-82625-mjglz8ocp340da",
                "sg-11134201-82606-mjglz8yij7r9a2",
                "sg-11134201-8260a-mjglz95uj4li29",
                "sg-11134201-8262d-mjglz9escsn7c1",
                "sg-11134201-8262f-mjglz9mmxeyr84"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768369354,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 27030000000,
              "price_min": 27030000000,
              "price_max": 27030000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "GOLD",
                    "black",
                    "Silver",
                    "rose gold"
                  ],
                  "images": [
                    "sg-11134201-82628-mjglz6bjdx4xa5",
                    "sg-11134201-82617-mjglz8fxogsnf4",
                    "sg-11134201-82612-mjglz9smqm0x07",
                    "sg-11134201-8261u-mjglz9zfp3b43a"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "20mm",
                    "For Amazfit GTRmini",
                    "For Amazfit GTS 2e",
                    "For Amazfit GTS 2",
                    "For Amazfit GTS 4",
                    "For Amazfit GTS4mini",
                    "For Amazfit GTS2mini",
                    "For Amazfit GTS",
                    "For Amazfit GTR 42",
                    "For Amazfit Active",
                    "For Amazfit Bip",
                    "For Amazfit Bip3Pro",
                    "For Amazfit Bip 3",
                    "22mm",
                    "For Amazfit GTR 2",
                    "For Amazfit Bip 5",
                    "For Amazfit GTR 47",
                    "For Amazfit GTR3pro",
                    "For Amazfit GTR 4",
                    "For Amazfit GTR 3"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 27030000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 430431589716,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 27030000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56604650167,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82635-mjglz5u6qnly6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1054,\"model_id\":430431589716,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82635-mjglz5u6qnly6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1054,\"model_id\":430431589716,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56604650167",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42128021117,
              "shopid": 1531387649,
              "name": "Silicone Strap For Samsung Galaxy Watch 8 Watch8 Classic accessories Magnetic Buckle Sports Bracelet 40mm 44mm 46mm No Gaps Band",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "sg-11134201-8261x-mjglzwsrd5hi98",
              "images": [
                "sg-11134201-8261x-mjglzwsrd5hi98",
                "sg-11134201-8260j-mjglzwzucmpz8d",
                "sg-11134201-8260z-mjglzxavy5muef",
                "sg-11134201-8261r-mjglzxo132f782",
                "sg-11134201-82622-mjglzy88464m62",
                "sg-11134201-8261l-mjglzys4ov7q01",
                "sg-11134201-82632-mjglzz8idjwg2a",
                "sg-11134201-8261c-mjglzzp002dh00",
                "sg-11134201-8260d-mjgm0048g0sh63"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768369394,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 21970000000,
              "price_min": 21970000000,
              "price_max": 21970000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "StarlightB",
                    "GrayB",
                    "LimeB",
                    "BlackB",
                    "Midnight BlueB",
                    "Dark GreenB",
                    "Space GreyB",
                    "WhiteB",
                    "OrangeB",
                    "PurpleB"
                  ],
                  "images": [
                    "sg-11134201-82622-mjglzy88464m62",
                    "sg-11134201-8261r-mjglzxo132f782",
                    "sg-11134201-8262t-mjgm00jw2e4gb3",
                    "sg-11134201-8260y-mjgm013nx2wwfc",
                    "sg-11134201-8260b-mjgm01r2k7b772",
                    "sg-11134201-8262z-mjgm027ug6pwd1",
                    "sg-11134201-8260u-mjgm02t87e9v50",
                    "sg-11134201-8261g-mjgm03afqnev8c",
                    "sg-11134201-8262p-mjgm03suz66fb8",
                    "sg-11134201-8260x-mjgm0494okxyd7"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "Watch 8 44mm",
                    "Watch 8classic 46mm",
                    "Watch 8 40mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 21970000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 282333011500,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 21970000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42128021117,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261x-mjglzwsrd5hi98\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1969,\"model_id\":282333011500,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261x-mjglzwsrd5hi98\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1969,\"model_id\":282333011500,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42128021117",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51954640773,
              "shopid": 1531387649,
              "name": "22mm 20mm Leather Strap for Huawei Watch GT6/5/GT 4 3 Pro 46mm Silicone Wristband for Amazfit Active 2/Bip 6 5/Galaxy 7 6 5 Belt",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8262t-mjglwdwjuj9h71",
              "images": [
                "sg-11134201-8262t-mjglwdwjuj9h71",
                "sg-11134201-8261o-mjglwe622ubob3",
                "sg-11134201-82616-mjglwegjgr2b0d",
                "sg-11134201-81zvw-mj2s4d6mdcsi20",
                "sg-11134201-8261l-mjglwfnriqyscd",
                "sg-11134201-8262s-mjglwfush89056",
                "sg-11134201-8262p-mjglwg7k2pzad8",
                "sg-11134201-82617-mjglwggbupl3c9",
                "sg-11134201-825zq-mjglwgw07rph79"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768369224,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 21740000000,
              "price_min": 21740000000,
              "price_max": 21740000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Black strap",
                    "Green strap",
                    "Midnight blue strap",
                    "Gray strap",
                    "Brown strap",
                    "Beige strap"
                  ],
                  "images": [
                    "sg-11134201-8262s-mjglwfush89056",
                    "sg-11134201-8262t-mjglwdwjuj9h71",
                    "sg-11134201-82602-mjglwh664phf37",
                    "sg-11134201-8260t-mjglwhdo7shw7b",
                    "sg-11134201-8262n-mjglwhmivmyobe",
                    "sg-11134201-8260a-mjglwhuugnba6c"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "Width 20mm",
                    "Huawei GT5 Pro 46mm",
                    "Width 22mm",
                    "Huawei Watch 4 3 Pro",
                    "Huawei GT3 GT2 Pro",
                    "Huawei GT6 GT5 46mm",
                    "Huawei GT4 46mm",
                    "Samsung 7 6 5 4 40mm",
                    "Amazfit Active 2",
                    "Amazfit Bip 6-5",
                    "Samsung 7 6 5 4 44mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 21740000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 400431587457,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 21740000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51954640773,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjglwdwjuj9h71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1360,\"model_id\":400431587457,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjglwdwjuj9h71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1360,\"model_id\":400431587457,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51954640773",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45554659803,
              "shopid": 1531387649,
              "name": "20 22mm Garmin Easy Fit Nylon Strap For Forerunner 255/265/965 Wristband For Active /Vivoactive 4 Bracelet Venu Universal Band",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "sg-11134201-8260r-mjglx347udq864",
              "images": [
                "sg-11134201-8260r-mjglx347udq864",
                "sg-11134201-825zu-mjglx3jk16o23e",
                "sg-11134201-8261w-mjglx4bl35ky73",
                "sg-11134201-82605-mjglx4z309on1e",
                "sg-11134201-8262o-mjglx5ikfyf63e",
                "sg-11134201-825zn-mjglx6ae1og478",
                "sg-11134201-8260u-mjglx6ohvc3nfa",
                "sg-11134201-82634-mjglx6yu81l130",
                "sg-11134201-8261c-mjglx7lqg7ic8f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768369267,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 26570000000,
              "price_min": 26570000000,
              "price_max": 26570000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "black",
                    "black camouflage",
                    "deep blue",
                    "black army green",
                    "army green",
                    "black orange",
                    "orange",
                    "black brown",
                    "Beige",
                    "brown",
                    "grey blue",
                    "sky blue"
                  ],
                  "images": [
                    "sg-11134201-8261w-mjglx4bl35ky73",
                    "sg-11134201-825zu-mjglx3jk16o23e",
                    "sg-11134201-82624-mjglx8awvyf781",
                    "sg-11134201-8260s-mjglx8uwkzcyc4",
                    "sg-11134201-8261n-mjglx99q8kjn02",
                    "sg-11134201-82634-mjglx9xcx1xc76",
                    "sg-11134201-82606-mjglxavvhzb60a",
                    "sg-11134201-8260w-mjglxbf2v7yd10",
                    "sg-11134201-82633-mjglxc67gidf0d",
                    "sg-11134201-825zw-mjglxd1xoop35d",
                    "sg-11134201-8260z-mjglxdvpsmx391",
                    "sg-11134201-8260c-mjglxepgf7k0a9"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 26570000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 335431588323,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 26570000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45554659803,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260r-mjglx347udq864\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1764,\"model_id\":335431588323,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260r-mjglx347udq864\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1764,\"model_id\":335431588323,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45554659803",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29744037342,
              "shopid": 1531387649,
              "name": "No Gaps Nylon Woven Silicone Strap for Huawei Watch GT6 Pro Smartwatch Quick Fit Band Wristband for Watch GT6 Pro 46mm Bracelet",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8261f-mjgly379h4w24b",
              "images": [
                "sg-11134201-8261f-mjgly379h4w24b",
                "sg-11134201-8261p-mjgly3jw5on48b",
                "sg-11134201-8262f-mjgly3y3hszk72",
                "sg-11134201-8260c-mjgly4h1do1wc2",
                "sg-11134201-82610-mjgly4qiin7o81",
                "sg-11134201-82622-mjgly50hg6x0b5",
                "sg-11134201-82607-mjgly5f1gs90b3",
                "sg-11134201-81ztt-mj0p4ku7wj5s90",
                "sg-11134201-82624-mjgly5w0nhfpba"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768369303,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 42440000000,
              "price_min": 42440000000,
              "price_max": 42440000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "red",
                    "khaki",
                    "Official Green",
                    "starlight",
                    "black",
                    "dark blue"
                  ],
                  "images": [
                    "sg-11134201-82617-mjgly6bvyj2901",
                    "sg-11134201-8262t-mjgly6lcwhdtee",
                    "sg-11134201-8261w-mjgly6u0urr76a",
                    "sg-11134201-81ztt-mj0p4ku7wj5s90",
                    "sg-11134201-82610-mjgly4qiin7o81",
                    "sg-11134201-8262s-mjgly644cphj06"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "Watch GT6 Pro 46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 42440000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 410431590491,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 42440000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 29744037342,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261f-mjgly379h4w24b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2119,\"model_id\":410431590491,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261f-mjgly379h4w24b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2119,\"model_id\":410431590491,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29744037342",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42378021126,
              "shopid": 1531387649,
              "name": "Ocean Silicone Band for Samsung Galaxy Watch 6 Classic 43mm 47mm/7 FE 6 5 4 40mm 44mm No Gaps Wristband Galaxy 5 Pro 45mm Strap",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "sg-11134201-8262x-mjglvs118sn7e2",
              "images": [
                "sg-11134201-8262x-mjglvs118sn7e2",
                "sg-11134201-8260n-mjglvsfs7gn672",
                "sg-11134201-8261f-mjglvt0jg6it02",
                "sg-11134201-8260f-mjglvtpuanlz9b",
                "sg-11134201-82618-mjglvu1nsgzlef",
                "sg-11134201-825zw-mjglvucurvup3e",
                "sg-11134201-8262r-mjglvurijbpge4",
                "sg-11134201-8261f-mjglvvc2d5oj2a",
                "sg-11134201-8260m-mjglvvwf65fr65"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768369208,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 21280000000,
              "price_min": 21280000000,
              "price_max": 21280000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Black black",
                    "Midnight blue black",
                    "Orange black",
                    "Space gray orange",
                    "Starlight orange",
                    "Llime Grey",
                    "Army green Black",
                    "Black orange",
                    "Black Red",
                    "Black Grey",
                    "White black",
                    "Black White"
                  ],
                  "images": [
                    "sg-11134201-8261r-mjglvzuf3dvp30",
                    "sg-11134201-82627-mjglw0tl0cg61e",
                    "sg-11134201-82608-mjglw1fhaq6ccd",
                    "sg-11134201-8262l-mjglw2i4jf9hb0",
                    "sg-11134201-825zv-mjglw3miwv7o28",
                    "sg-11134201-8260g-mjglw4oiqt50b7",
                    "sg-11134201-825zw-mjglw5ku9vycb9",
                    "sg-11134201-8261f-mjglvvc2d5oj2a",
                    "sg-11134201-8260n-mjglvsfs7gn672",
                    "sg-11134201-8262z-mjglvwsgv94y31",
                    "sg-11134201-8262w-mjglvxutqcqq62",
                    "sg-11134201-8261u-mjglvyskvrb87e"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "4 Classic 46mm 42mm",
                    "Galaxy 4 44mm 40mm",
                    "6 Classic 47mm 43mm",
                    "Galaxy 6 44mm 40mm",
                    "Watch 5 Pro 45mm",
                    "Galaxy 5 44mm 40mm",
                    "Galaxy Watch FE",
                    "Galaxy 7 44mm 40mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 21280000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390431582307,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 21280000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42378021126,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262x-mjglvs118sn7e2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1950,\"model_id\":390431582307,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262x-mjglvs118sn7e2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1950,\"model_id\":390431582307,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42378021126",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40178026143,
              "shopid": 1531387649,
              "name": "Silicone Strap for Samsung Galaxy Watch 8/8 Classic Official Bracelet Wristband Correa for Galaxy Watch 8 44mm 40mm Accessories",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8261k-mjglv8wzr2f95e",
              "images": [
                "sg-11134201-8261k-mjglv8wzr2f95e",
                "sg-11134201-8261l-mjglv9ar8umb26",
                "sg-11134201-8262f-mjglv9mdn3t353",
                "sg-11134201-825zt-mjglv9wrv8jk99",
                "sg-11134201-82615-mjglva6yg0ea05",
                "sg-11134201-825zm-mjglvafzib5s82",
                "sg-11134201-8262h-mjglvanf92is46",
                "sg-11134201-8262m-mjglvatbtog738",
                "sg-11134201-8262b-mjglvb06p15293"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768369181,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 20820000000,
              "price_min": 20820000000,
              "price_max": 20820000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Fluorescent green",
                    "Starlight A",
                    "Light blue",
                    "Pink sand ",
                    "Official grey",
                    "Official grey A",
                    "Official blue",
                    "Pink ",
                    "Yellow",
                    "Official purple",
                    "Official black",
                    "Grey",
                    "Official black A",
                    "Dark green",
                    "Teal",
                    "White A",
                    "Orange",
                    "Royal blue",
                    "Starlight",
                    "White",
                    "Space ash",
                    "Midnight blue"
                  ],
                  "images": [
                    "sg-11134201-8262h-mjglvanf92is46",
                    "sg-11134201-8261k-mjglv8wzr2f95e",
                    "sg-11134201-82604-mjglvbbjq4g254",
                    "sg-11134201-82608-mjglvbrvw0zk62",
                    "sg-11134201-825zq-mjglvc6liw3q87",
                    "sg-11134201-8260w-mjglvcmsw0sh9c",
                    "sg-11134201-8261l-mjglvd4h0av63e",
                    "sg-11134201-8261l-mjglvdkfsd1g0b",
                    "sg-11134201-8262c-mjglve08wu0y14",
                    "sg-11134201-8261f-mjglvei6v1mueb",
                    "sg-11134201-82624-mjglvezqlwxxac",
                    "sg-11134201-82607-mjglvfgd2ozm7e",
                    "sg-11134201-8261y-mjglvg2k90qo51",
                    "sg-11134201-825zr-mjglvgj08kxsbe",
                    "sg-11134201-8261q-mjglvh1jnbb765",
                    "sg-11134201-82635-mjglvhmhenlz36",
                    "sg-11134201-825zq-mjglvi3pwzcze0",
                    "sg-11134201-825zz-mjglvimqc8hzd3",
                    "sg-11134201-8260l-mjglvj6u4r2e25",
                    "sg-11134201-8261v-mjglvjmb4a9sfe",
                    "sg-11134201-8260u-mjglvk55asjpdf",
                    "sg-11134201-8261a-mjglvkp5yxom95"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "ML",
                    "SM"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 20820000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 420431578546,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 20820000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40178026143,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261k-mjglv8wzr2f95e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2089,\"model_id\":420431578546,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261k-mjglv8wzr2f95e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2089,\"model_id\":420431578546,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40178026143",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53904639676,
              "shopid": 1531387649,
              "name": "Quick Fit For Garmin 20mm22mm 26mm Band Weaves Nylon Loop Magnetic Correa For Garmin Fenix 5 tinct 2X Fenix 3 Strap Watchband",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-82619-mjglshu6z30j74",
              "images": [
                "sg-11134201-82619-mjglshu6z30j74",
                "sg-11134201-8260f-mjglsi1r4m4nac",
                "sg-11134201-8260l-mjglsib2988xc3",
                "sg-11134201-82634-mjglsihtavpjee",
                "sg-11134201-8261h-mjglsiu0c5q943",
                "sg-11134201-8261u-mjglsizy74ea96",
                "sg-11134201-825zs-mjglsj8kzbb78b",
                "sg-11134201-82624-mjglsjfw8kxyd7",
                "sg-11134201-825zs-mjglsjo4fdvke8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768369041,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 84300000000,
              "price_min": 84300000000,
              "price_max": 84300000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Light new rainbow",
                    "Black",
                    "Interblack graphite",
                    "Dark olive green",
                    "Space grey",
                    "Black color",
                    "Camouflage rainbow",
                    "Official rainbow"
                  ],
                  "images": [
                    "sg-11134201-82634-mjglsihtavpjee",
                    "sg-11134201-82624-mjglsjfw8kxyd7",
                    "sg-11134201-82634-mjglsjuvzapw13",
                    "sg-11134201-8262a-mjglsk3qg4cnc8",
                    "sg-11134201-82612-mjglska9ggef2c",
                    "sg-11134201-8260x-mjglskhxh05j4b",
                    "sg-11134201-8262q-mjglskpstptwa7",
                    "sg-11134201-8262s-mjglskx8eux3e6"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "20mm",
                    "22mm",
                    "26mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 84300000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 380431564868,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 84300000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53904639676,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82619-mjglshu6z30j74\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1237,\"model_id\":380431564868,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82619-mjglshu6z30j74\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1237,\"model_id\":380431564868,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53904639676",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49204670052,
              "shopid": 1722003388,
              "name": "Fitbit Versa 2 Health and Fitness Smartwatch with Heart Rate, Music, Alexa Built-In, Sleep and Swim Tracking, Black/Carbon",
              "label_ids": [
                844931064601283,
                1059151,
                1049112,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-825zk-mjgltbd0vxmta6",
              "images": [
                "sg-11134201-825zk-mjgltbd0vxmta6",
                "sg-11134201-825zv-mjgltcadhhj674",
                "sg-11134201-8261q-mjgltcrldc7a2a",
                "sg-11134201-8262j-mjgltdb2neo14a",
                "sg-11134201-8261a-mjgltdzekphe26",
                "sg-11134201-8260c-mjglteqkaryd8e",
                "sg-11134201-82630-mjgltf7w7cp08c",
                "sg-11134201-8262r-mjgltfue2k1x7e",
                "sg-11134201-8260p-mjgltgxl91c790"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768369085,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 172816600000,
              "price_min": 172816600000,
              "price_max": 172816600000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Versa2-Black",
                    "Versa2 SE-Rose",
                    "Versa2 SE-Black",
                    "Versa2-Rose",
                    "Versa2-Grey"
                  ],
                  "images": [
                    "sg-11134201-8262r-mjgltfue2k1x7e",
                    "sg-11134201-8260p-mjgltgxl91c790",
                    "sg-11134201-8260k-mjglthncvh1i18",
                    "sg-11134201-825zm-mjglti3vcxkyf9",
                    "sg-11134201-82602-mjgltijghg5cc6"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 172816600000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 445431580538,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 172816600000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "hi1wxh52jz",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49204670052,
            "shopid": 1722003388,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zk-mjgltbd0vxmta6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059151,1049112,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1536,\"model_id\":445431580538,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zk-mjgltbd0vxmta6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059151,1049112,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1536,\"model_id\":445431580538,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49204670052",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40528006556,
              "shopid": 1722003388,
              "name": "NEW Zeblaze Stratos 4 GPS Smart Watch 1.43 AMOLED Display Built-in Compass Barometric Altimeter Flashlight Voice Call Smartwatch",
              "label_ids": [
                844931064601283,
                1059151,
                1049112,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8262t-mjglse2jyyvbb3",
              "images": [
                "sg-11134201-8262t-mjglse2jyyvbb3",
                "sg-11134201-8261p-mjglsebxlkhsbf",
                "sg-11134201-82633-mjglsenor3t0da",
                "sg-11134201-8260b-mjglsexix8n706",
                "sg-11134201-8261c-mjglsfckum83e3",
                "sg-11134201-8262k-mjglsfnp7vgi02",
                "sg-11134201-82606-mjglsfzyd05eb8",
                "sg-11134201-8262a-mjglsg7gsq9u9e",
                "sg-11134201-8261s-mjglsghx1wjled"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768369036,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 178513300000,
              "price_min": 178513300000,
              "price_max": 178513300000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Abyss Black",
                    "Electric Orange"
                  ],
                  "images": [
                    "sg-11134201-8262a-mjglsg7gsq9u9e",
                    "sg-11134201-8261s-mjglsghx1wjled"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 178513300000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 310432154784,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 178513300000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "hi1wxh52jz",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40528006556,
            "shopid": 1722003388,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjglse2jyyvbb3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059151,1049112,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2066,\"model_id\":310432154784,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjglse2jyyvbb3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059151,1049112,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2066,\"model_id\":310432154784,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40528006556",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 58004640585,
              "shopid": 1531387649,
              "name": "Official Silicone Strap for Samsung Galaxy Watch 8 44mm 40mm/8 Classic 46mm Band Breathable Wristband Sport Bracelet Accessories",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8260o-mjglof224y69a8",
              "images": [
                "sg-11134201-8260o-mjglof224y69a8",
                "sg-11134201-82603-mjglof9dv479b0",
                "sg-11134201-8260v-mjglofk5l7urda",
                "sg-11134201-8260r-mjglofv9u9dt86",
                "sg-11134201-8262y-mjglog4mexon68",
                "sg-11134201-82611-mjglogcj64n506",
                "sg-11134201-82625-mjglognq9r7odc",
                "sg-11134201-8262l-mjgloh0vydj429",
                "sg-11134201-8261k-mjglohfl4feqbd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768368857,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 20360000000,
              "price_min": 20360000000,
              "price_max": 20360000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Light blue",
                    "Royal blue",
                    "Space ash",
                    "Dark green",
                    "Midnight blue",
                    "Yellow",
                    "Official grey A",
                    "Official grey",
                    "Starlight A",
                    "Fluorescent green",
                    "Pink sand ",
                    "Grey",
                    "Orange",
                    "Official black A",
                    "Teal",
                    "Pink ",
                    "Official black",
                    "Official purple",
                    "White",
                    "White A",
                    "Starlight",
                    "Official blue"
                  ],
                  "images": [
                    "sg-11134201-82603-mjglof9dv479b0",
                    "sg-11134201-82611-mjglogcj64n506",
                    "sg-11134201-825zs-mjgloho0g8p343",
                    "sg-11134201-8260k-mjglohxodmo25c",
                    "sg-11134201-8261j-mjgloi827pqfc2",
                    "sg-11134201-8262g-mjgloirj6jnl51",
                    "sg-11134201-82619-mjgloj10bh8n70",
                    "sg-11134201-8261p-mjgloja78flz67",
                    "sg-11134201-825zw-mjglojksyayrcd",
                    "sg-11134201-82626-mjglojunbf2b6c",
                    "sg-11134201-8260q-mjglok549vk763",
                    "sg-11134201-8260q-mjglokfbplhice",
                    "sg-11134201-82627-mjgloko5h6gw3f",
                    "sg-11134201-82617-mjglokxwhjb763",
                    "sg-11134201-8261m-mjglol6i6ebp54",
                    "sg-11134201-82627-mjglolfnq6tfc6",
                    "sg-11134201-8262t-mjglolpzyolg4a",
                    "sg-11134201-8262d-mjglolyix4p343",
                    "sg-11134201-8260g-mjglom9u47bab2",
                    "sg-11134201-82606-mjglomhk78qr0f",
                    "sg-11134201-82630-mjglomqh7ev5f5",
                    "sg-11134201-8261l-mjglomyc1v5z99"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "ML",
                    "SM"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 20360000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 138454964054,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 20360000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 58004640585,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260o-mjglof224y69a8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":966,\"model_id\":138454964054,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260o-mjglof224y69a8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":966,\"model_id\":138454964054,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_58004640585",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49804659645,
              "shopid": 1531387649,
              "name": "sney 20mm Halloween Series Printed Strap for Samsung Galaxy Watch 7/6/5 40mm 44mm Band Replaceable Bracelet for Xiaomi Amazfit",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8260a-mjglp0mwyi2o14",
              "images": [
                "sg-11134201-8260a-mjglp0mwyi2o14",
                "sg-11134201-8262w-mjglp1z1hslfcd",
                "sg-11134201-825zp-mjglp2u4i5fq13",
                "sg-11134201-8262e-mjglp486q682e2",
                "sg-11134201-82608-mjglp5632ebqfd",
                "sg-11134201-8260z-mjglp6794kxvb0",
                "sg-11134201-82600-mjglp7flhlhe1e",
                "sg-11134201-82619-mjglp8mbbm6ea4",
                "sg-11134201-825zy-mjglp9jsem81d6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768368896,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 26570000000,
              "price_min": 26570000000,
              "price_max": 26570000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "021",
                    "024",
                    "025",
                    "023",
                    "022",
                    "028",
                    "029",
                    "027",
                    "026",
                    "032",
                    "031",
                    "030"
                  ],
                  "images": [
                    "sg-11134201-825zy-mjglp9jsem81d6",
                    "sg-11134201-8260a-mjglp0mwyi2o14",
                    "sg-11134201-8262w-mjglp1z1hslfcd",
                    "sg-11134201-82613-mjglpaf1p62o99",
                    "sg-11134201-82605-mjglpb4tfthi6a",
                    "sg-11134201-8262e-mjglpciytnuqf1",
                    "sg-11134201-82617-mjglpd5t6cxvb4",
                    "sg-11134201-825zr-mjglpdux8f7q5c",
                    "sg-11134201-825zv-mjglpenqytj800",
                    "sg-11134201-825zk-mjglpfb9bfgj97",
                    "sg-11134201-8261q-mjglpfyuqx34ef",
                    "sg-11134201-82610-mjglpgy01czlc7"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "20MM",
                    "22MM"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 26570000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 410431567273,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 26570000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49804659645,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260a-mjglp0mwyi2o14\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1503,\"model_id\":410431567273,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260a-mjglp0mwyi2o14\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1503,\"model_id\":410431567273,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49804659645",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45104670104,
              "shopid": 1531387649,
              "name": "New Zeblaze Btalk 3 GPS Smartwatch 1.43\" AMOLED Screen Dual Straps Make/Answer Phone Calls Heart Rate SpO2 Stress Tracking Watch",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "sg-11134201-8260a-mjglou22q5fkf8",
              "images": [
                "sg-11134201-8260a-mjglou22q5fkf8",
                "sg-11134201-8262h-mjgloudfpu6d5c",
                "sg-11134201-8262i-mjglouo3xipyfb",
                "sg-11134201-8260l-mjglov1tlbsyaa",
                "sg-11134201-82628-mjglovc7wb9d26",
                "sg-11134201-82611-mjglovre1e6f7d",
                "sg-11134201-825zv-mjglow2qwtmu4f",
                "sg-11134201-8261f-mjglowenki6b3b",
                "sg-11134201-8262m-mjglowv3fuo34f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768368870,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 384450000000,
              "price_min": 384450000000,
              "price_max": 384450000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 384450000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 272332995584,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 384450000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45104670104,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260a-mjglou22q5fkf8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1795,\"model_id\":272332995584,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260a-mjglou22q5fkf8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1795,\"model_id\":272332995584,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45104670104",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56304640487,
              "shopid": 1531387649,
              "name": "Crazy Horse Leather band for Samsung Galaxy Watch 7/6/5/4/FE 18mm 20mm 22mm straps retro Bracelet for Huawei watch GT 5-4-3-pro",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8261x-mjglnihi44xw30",
              "images": [
                "sg-11134201-8261x-mjglnihi44xw30",
                "sg-11134201-82604-mjglnispssg33d",
                "sg-11134201-8262t-mjglniz0ov7ke6",
                "sg-11134201-8261p-mjglnj6tqnsw27",
                "sg-11134201-82617-mjglnjf6yo0455",
                "sg-11134201-8260f-mjghy3rnsv7rb2",
                "sg-11134201-8261v-mjglnju2dibmfd",
                "sg-11134201-8260d-mjglnk538cg570",
                "sg-11134201-825zo-mjglnkcwbjlx3f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768368808,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 27260000000,
              "price_min": 27260000000,
              "price_max": 27260000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "01 black",
                    "07 green",
                    "04 gray",
                    "05 blue",
                    "06 red",
                    "03 brown",
                    "02 deep brown"
                  ],
                  "images": [
                    "sg-11134201-825zo-mjglnkcwbjlx3f",
                    "sg-11134201-8260f-mjghy3rnsv7rb2",
                    "sg-11134201-8260f-mjghy41qa70jdf",
                    "sg-11134201-8260c-mjglnkpnvmrk82",
                    "sg-11134201-825zl-mjglnkwitr0ha2",
                    "sg-11134201-825zn-mjglnl3q800739",
                    "sg-11134201-8261o-mjglnlag94oycb"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "20mm watch band",
                    "22mm watch band",
                    "18mm watch band"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 27260000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 350431558048,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 27260000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56304640487,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261x-mjglnihi44xw30\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1079,\"model_id\":350431558048,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261x-mjglnihi44xw30\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1079,\"model_id\":350431558048,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56304640487",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53204645165,
              "shopid": 1531387649,
              "name": "Silicone Strap For Samsung Galaxy Watch 7 Ultra 47mm Band Accessories Correa Sport Bracelet For Galaxy Watch 7 Ultra Watchband",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-82608-mjglmltucbno8a",
              "images": [
                "sg-11134201-82608-mjglmltucbno8a",
                "sg-11134201-8262r-mjglmmekkh6vfe",
                "sg-11134201-825zs-mjglmmwo3k0500",
                "sg-11134201-8262b-mjglmn6dz6di33",
                "sg-11134201-8262p-mjglmnfmhq1379",
                "sg-11134201-8261j-mjglmnz20kxt67",
                "sg-11134201-8261a-mjglmoj3qnev41",
                "sg-11134201-82626-mjglmossiwase6",
                "sg-11134201-8260k-mjglmpai8q2ob9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768368777,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 26110000000,
              "price_min": 26110000000,
              "price_max": 26110000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Red",
                    "SkyUS",
                    "Black",
                    "OrangeS",
                    "WhiteS",
                    "Orange Red",
                    "Royal blue",
                    "Green",
                    "MGreen",
                    "Midnight blue",
                    "Yellow",
                    "BarbiePS",
                    "Light blue",
                    "Emma Orange",
                    "Grey",
                    "AGreen",
                    "Pink",
                    "Brown",
                    "Purple"
                  ],
                  "images": [
                    "sg-11134201-825zz-mjglmslp0umfc6",
                    "sg-11134201-82601-mjglmsz8oc8w19",
                    "sg-11134201-82615-mjglmtectqmdd4",
                    "sg-11134201-8262k-mjglmtrjohz5d3",
                    "sg-11134201-825zn-mjglmu4i9gxu7a",
                    "sg-11134201-8262t-mjglmugkum8357",
                    "sg-11134201-8262y-mjglmutg2scmbe",
                    "sg-11134201-8262l-mjglmv4kwxz5d5",
                    "sg-11134201-82602-mjglmvh4ihac3e",
                    "sg-11134201-8261h-mjglmvvqptl1c9",
                    "sg-11134201-8262h-mjglmw9pgveoe0",
                    "sg-11134201-82616-mjglmwqy94at81",
                    "sg-11134201-825zs-mjglmx1rcdtu1f",
                    "sg-11134201-8261v-mjglmxc9o1s309",
                    "sg-11134201-8262p-mjglmnfmhq1379",
                    "sg-11134201-82608-mjglmltucbno8a",
                    "sg-11134201-8261f-mjglmppdhwjlb7",
                    "sg-11134201-8262t-mjglmrwru0at64",
                    "sg-11134201-82621-mjglms9e79xh9f"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "Watch Ultra 47mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 26110000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 395431565609,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 26110000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53204645165,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82608-mjglmltucbno8a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1273,\"model_id\":395431565609,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82608-mjglmltucbno8a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1273,\"model_id\":395431565609,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53204645165",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52304640530,
              "shopid": 1531387649,
              "name": "Candy Strap For Apple Watch band 44mm 40mm 41mm 45mm 38/42mm emovable link bracelet iwatch series 9/8/7/SE 6 5 4 3 ultra 2 49mm",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8262y-mjgllfmdg9a8d4",
              "images": [
                "sg-11134201-8262y-mjgllfmdg9a8d4",
                "sg-11134201-82613-mjgllg6xh2ipa2",
                "sg-11134201-825zr-mjgllgtim9l274",
                "sg-11134201-82623-mjglli2tmmf8c3",
                "sg-11134201-8262s-mjgllis3gmbk95",
                "sg-11134201-8260j-mjglljarmpz705",
                "sg-11134201-8262q-mjglljqqg8av54",
                "sg-11134201-8261u-mjgllkevwcuc5b",
                "sg-11134201-8261e-mjgllkyj3xmv5b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768368722,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 27950000000,
              "price_min": 27950000000,
              "price_max": 27950000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Pine green 09",
                    "Black 12",
                    "Midnight 11",
                    "Yellow 06",
                    "turquoise 05",
                    "Orange 08",
                    "Lalic 07",
                    "Blue 02",
                    "White 01",
                    "Pink sand 04",
                    "light cyan 03",
                    "transparent",
                    "dark green 10"
                  ],
                  "images": [
                    "sg-11134201-8262q-mjglljqqg8av54",
                    "sg-11134201-8260j-mjglljarmpz705",
                    "sg-11134201-825zx-mjgllle1gmpxfa",
                    "sg-11134201-8262y-mjglllvwpypxbc",
                    "sg-11134201-8262g-mjgllmh7be9wd9",
                    "sg-11134201-8262n-mjgllmxk7zls3c",
                    "sg-11134201-8262w-mjgllngkn5kz8b",
                    "sg-11134201-82620-mjgllo14fmki52",
                    "sg-11134201-8260y-mjgllokg0kjo95",
                    "sg-11134201-8260j-mjgllp3bfzeq3a",
                    "sg-11134201-82607-mjgllpk1f3er9e",
                    "sg-11134201-825zs-mjgllq0b0c1w09",
                    "sg-11134201-8261t-mjgllql1l4p0fe"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "49mm-45mm-44mm-42mm",
                    "41mm-40mm-38 mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 27950000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 262333210403,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 27950000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52304640530,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262y-mjgllfmdg9a8d4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1331,\"model_id\":262333210403,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262y-mjgllfmdg9a8d4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1331,\"model_id\":262333210403,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52304640530",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51854639654,
              "shopid": 1531387649,
              "name": "Nylon Watchband For Samsung Galaxy Watch 8 40/44mm Strap Adjustable Elasticity Bracelet For Galaxy Watch 8 classic Accessories",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8261r-mjglk4eeclxfd0",
              "images": [
                "sg-11134201-8261r-mjglk4eeclxfd0",
                "sg-11134201-8262u-mjglk4pjulmr6e",
                "sg-11134201-8262u-mjglk58tei2sdc",
                "sg-11134201-8262i-mjglk5nk0iyv6d",
                "sg-11134201-8260y-mjglk67ljm6b2a",
                "sg-11134201-8260i-mjglk6q9wqo6da",
                "sg-11134201-8260g-mjglk79mntoi7f",
                "sg-11134201-8261c-mjglk7nc4ni83b",
                "sg-11134201-8262s-mjglk83l651i4c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768368654,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 22200000000,
              "price_min": 22200000000,
              "price_max": 22200000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "22-Black1",
                    "09-Pink-Sand",
                    "01-Green-Arrow",
                    "02-Bohemia-purple",
                    "35-Bohemia-balck",
                    "11-Black",
                    "12-Army-Green",
                    "05-White",
                    "36-brown-cheetah",
                    "21-pink-sand1"
                  ],
                  "images": [
                    "sg-11134201-8260y-mjglk67ljm6b2a",
                    "sg-11134201-8262u-mjglk4pjulmr6e",
                    "sg-11134201-825zt-mjglk8cfln9d0f",
                    "sg-11134201-8260e-mjglk8idw26c00",
                    "sg-11134201-8260q-mjglk8pn8gedbd",
                    "sg-11134201-8262n-mjglk93uuepxc2",
                    "sg-11134201-8261v-mjglk9gqw4cm1c",
                    "sg-11134201-8261p-mjglk9nvy1oife",
                    "sg-11134201-825zs-mjglk9xfxipu6f",
                    "sg-11134201-82607-mjglka8cf2tj9d"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "Watch 8 40 44mm",
                    "Watch 8 Classic"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 22200000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 385431555356,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 22200000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51854639654,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261r-mjglk4eeclxfd0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1372,\"model_id\":385431555356,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261r-mjglk4eeclxfd0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1372,\"model_id\":385431555356,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51854639654",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50654639677,
              "shopid": 1531387649,
              "name": "22mm 20mm Engraved strap For Samsung Galaxy Watch 6 43mm/4/5/pro/Active2 Leopard silicone Bracelet Huawei gt2 2e 20mm watch Band",
              "label_ids": [
                844931064601283,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-82621-mjglj37s2t5185",
              "images": [
                "sg-11134201-82621-mjglj37s2t5185",
                "sg-11134201-8260v-mjglj3evuc5he5",
                "sg-11134201-8261n-mjglj3p7t1j5cb",
                "sg-11134201-82620-mjglj42awyddeb",
                "sg-11134201-8261d-mjglj4ikz08w68",
                "sg-11134201-8261l-mjglj4y951j7cb",
                "sg-11134201-8260s-mjglj58xmlms98",
                "sg-11134201-8260r-mjglj5utkdtzdc",
                "sg-11134201-82609-mjglj69nrmyq49"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768368605,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 21970000000,
              "price_min": 21970000000,
              "price_max": 21970000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Light blue",
                    "Starlight",
                    "Midnight blue",
                    "Milk tea",
                    "Black",
                    "wine red",
                    "Gray",
                    "Pine green",
                    "Brown",
                    "Lavender"
                  ],
                  "images": [
                    "sg-11134201-8260s-mjglj58xmlms98",
                    "sg-11134201-8261d-mjglj4ikz08w68",
                    "sg-11134201-8260g-mjglj6hswu0x5b",
                    "sg-11134201-8260b-mjglj6u5iz9ce1",
                    "sg-11134201-8262h-mjglj778oao28f",
                    "sg-11134201-82628-mjglj7hvwy6fbb",
                    "sg-11134201-825zo-mjglj7up9ngj66",
                    "sg-11134201-8260q-mjglj85xjf298b",
                    "sg-11134201-8260h-mjglj8hn90xt54",
                    "sg-11134201-82608-mjglj8t7ukub06"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "20mm",
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 21970000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 310432128378,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 21970000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50654639677,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82621-mjglj37s2t5185\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1453,\"model_id\":310432128378,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82621-mjglj37s2t5185\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1453,\"model_id\":310432128378,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50654639677",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45204659730,
              "shopid": 1531387649,
              "name": "20/22mm Milanese Strap For Samsung Galaxy Watch 7 6 5 4 40 44mm Gear S3 Magnetic Steel Bracelet For Huawei GT5 4 3 Band",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "sg-11134201-8261u-mjglkhwacum850",
              "images": [
                "sg-11134201-8261u-mjglkhwacum850",
                "sg-11134201-82608-mjglki5kpeysf4",
                "sg-11134201-8262i-mjglkib06tqffc",
                "sg-11134201-82622-mjglkimyg1za19",
                "sg-11134201-8262w-mjglkiwymi9s8a",
                "sg-11134201-8260n-mjglkjeo6o785a",
                "sg-11134201-825zy-mjglkk1dp8g179",
                "sg-11134201-82607-mjglkk9oyyo598",
                "sg-11134201-82623-mjglkkpyir5u99"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768368672,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 26340000000,
              "price_min": 26340000000,
              "price_max": 26340000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "14-Gary",
                    "02-Black",
                    "08-Red",
                    "04-Rose Gold",
                    "07-Blue",
                    "03-Rose Pink",
                    "01-Silver",
                    "05-Gold",
                    "24-Starlight"
                  ],
                  "images": [
                    "sg-11134201-8260n-mjglkjeo6o785a",
                    "sg-11134201-8262w-mjglkiwymi9s8a",
                    "sg-11134201-82612-mjglkkzmrf9dcb",
                    "sg-11134201-82617-mjglkllzv9c7b9",
                    "sg-11134201-8262w-mjglkltqnkzk31",
                    "sg-11134201-825zv-mjglkm5t5x5062",
                    "sg-11134201-8260k-mjglkmskz9qaa1",
                    "sg-11134201-825zk-mjglkn2zegw2a9",
                    "sg-11134201-8261b-mjglknf8kykn61"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "20mm Watchband",
                    "22mm Watchband"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 26340000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435431550819,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 26340000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45204659730,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261u-mjglkhwacum850\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1790,\"model_id\":435431550819,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261u-mjglkhwacum850\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1790,\"model_id\":435431550819,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45204659730",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48204660529,
              "shopid": 1531387649,
              "name": "Silicone Charging Bracket for Galaxy Watch Ultra 2025 47mm Samsung Galaxy Watch 8 7 6 5 40/44mm 8 Classic 46mm 5Pro Storage Seat",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                1718093079
              ],
              "image": "sg-11134201-8262t-mjglhdhowa9z8c",
              "images": [
                "sg-11134201-8262t-mjglhdhowa9z8c",
                "sg-11134201-82616-mjglhds8s3cw5b",
                "sg-11134201-8260e-mjglhef2e3nkf8",
                "sg-11134201-8261m-mjglhenope6b95",
                "sg-11134201-825zk-mjglhezqpfd1ba",
                "sg-11134201-8261v-mjglhfacmbk498",
                "sg-11134201-82618-mjglhfkgfeo1d0",
                "sg-11134201-8261y-mjglhftuitj87e",
                "sg-11134201-8262x-mjglhgelx5oj04"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768368522,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 26340000000,
              "price_min": 26340000000,
              "price_max": 26340000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Red",
                    "Black",
                    "White"
                  ],
                  "images": [
                    "sg-11134201-8261y-mjglhftuitj87e",
                    "sg-11134201-82616-mjglhds8s3cw5b",
                    "sg-11134201-82627-mjglhgwg8ow49c"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "Watch 6 40mm 44mm",
                    "Watch 5 40mm 44mm",
                    "Watch 8 40mm 44mm",
                    "Watch 7 40mm 44mm",
                    "Watch 6 Classic 43mm",
                    "Watch 6 Classic 47mm",
                    "Watch Ultra 47mm",
                    "Watch 5 Pro 45mm",
                    "Watch 8 Classic 46mm",
                    "Watch Ultra 2025"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 26340000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 425431546778,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 26340000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48204660529,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjglhdhowa9z8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1595,\"model_id\":425431546778,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjglhdhowa9z8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1595,\"model_id\":425431546778,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48204660529",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43278016100,
              "shopid": 1531387649,
              "name": "Silicone Correa for Samsung Galaxy Watch Ultra Strap 47mm Bracelet Galaxy Watch 7/6 44mm 40mm",
              "label_ids": [
                844931064601283,
                1718093079,
                1059154,
                1059152,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-82629-mjgkjycxj9j9b7",
              "images": [
                "sg-11134201-82629-mjgkjycxj9j9b7",
                "sg-11134201-825zm-mjgkjz1cgq2scd",
                "sg-11134201-82630-mjgkk08cveo63c",
                "sg-11134201-8261q-mjgkk10niyv561",
                "sg-11134201-8261n-mjgkk2d1p62o3a",
                "sg-11134201-82602-mjgkk3x4h2pt30",
                "sg-11134201-82609-mjgkk512ytj417",
                "sg-11134201-8260g-mjgkk5f0nzlsa8",
                "sg-11134201-825zt-mjgkk6614feo09"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768366972,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 24960000000,
              "price_min": 24960000000,
              "price_max": 24960000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Blue",
                    "black",
                    "starlight",
                    "white",
                    "Orange"
                  ],
                  "images": [
                    "sg-11134201-8261n-mjgkk2d1p62o3a",
                    "sg-11134201-82602-mjgkk3x4h2pt30",
                    "sg-11134201-825zk-mjgkk79vpr0g6d",
                    "sg-11134201-825zt-mjgkk8gfnnya4a",
                    "sg-11134201-8260p-mjgkk9omseth69"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "galaxy watch ultra",
                    "Galaxy 6 40mm",
                    "Galaxy 7 40mm",
                    "Galaxy 6 44mm",
                    "Galaxy 7 44mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 24960000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 410431452439,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 24960000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almakkah Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43278016100,
            "shopid": 1531387649,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82629-mjgkjycxj9j9b7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059154,1059152,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1908,\"model_id\":410431452439,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82629-mjgkjycxj9j9b7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059154,1059152,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1908,\"model_id\":410431452439,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43278016100",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44554654814,
              "shopid": 1542929270,
              "name": "22 26mm Sport Nylon Strap for Garmin Fenxi 8 47/51mm Enduro 3 2 Quick Fit Replacement Wristband for Garmin Fenix E/7X/6X/5X Band",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-8262d-mjgk8kzvt9fma0",
              "images": [
                "sg-11134201-8262d-mjgk8kzvt9fma0",
                "sg-11134201-82614-mjgk8ljr6ex013",
                "sg-11134201-8261p-mjgk8m0nxxq9e7",
                "sg-11134201-8260z-mjgk8mg99fk29b",
                "sg-11134201-8262r-mjgk8mopg8hw29",
                "sg-11134201-8260r-mjgk8nahg3r43a",
                "sg-11134201-8260j-mjgk8nima5fp5b",
                "sg-11134201-825zl-mjgk8o1psbusbd",
                "sg-11134201-8262a-mjgk8oslslc26d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768366432,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 77550000000,
              "price_min": 77550000000,
              "price_max": 77550000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "BlackOrange",
                    "BlackRed",
                    "BlackOrange-A",
                    "OrangeBlack"
                  ],
                  "images": [
                    "sg-11134201-825zl-mjgk8o1psbusbd",
                    "sg-11134201-8262a-mjgk8oslslc26d",
                    "sg-11134201-8260i-mjgk8pbtmosi94",
                    "sg-11134201-8262l-mjgk8ppi2zuv7c"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "26mm",
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 77550000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 405431428617,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 77550000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44554654814,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262d-mjgk8kzvt9fma0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1833,\"model_id\":405431428617,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262d-mjgk8kzvt9fma0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1833,\"model_id\":405431428617,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44554654814",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56204640142,
              "shopid": 1542929270,
              "name": "18mm 20mm 22mm Silicone Magnetic Loop Strap For Samsung Galaxy Wat 7/6/5/4 Active 2 Amazfit Bracelet HUAWEI Wat GT 2e 3 Band",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-82612-mjgk5o26v7yfd7",
              "images": [
                "sg-11134201-82612-mjgk5o26v7yfd7",
                "sg-11134201-8261j-mjgk5oiui1vp17",
                "sg-11134201-8260r-mjgk5p18olqd59",
                "sg-11134201-8262k-mjgk5pd8kveo13",
                "sg-11134201-8262k-mjgk5pz554p047",
                "sg-11134201-8262q-mjgk5qclil1dca",
                "sg-11134201-8260r-mjgk5qq72whv26",
                "sg-11134201-8262o-mjgk5r5i0r9cff",
                "sg-11134201-8260c-mjgk5rjy7s3lc5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768366300,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 33160000000,
              "price_min": 33160000000,
              "price_max": 33160000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "B",
                    "StarH",
                    "W",
                    "Stone",
                    "Pu",
                    "O",
                    "MidU",
                    "Gr",
                    "Y",
                    "Star"
                  ],
                  "images": [
                    "sg-11134201-8262o-mjgk5r5i0r9cff",
                    "sg-11134201-8260c-mjgk5rjy7s3lc5",
                    "sg-11134201-8261h-mjgk5s39oide0b",
                    "sg-11134201-8261n-mjgk5smegzyef0",
                    "sg-11134201-8260e-mjgk5t4vxl3468",
                    "sg-11134201-8260k-mjgk5u0me58i64",
                    "sg-11134201-825zr-mjgk5uvgth52e3",
                    "sg-11134201-825zk-mjgk5v8td9tzc9",
                    "sg-11134201-82607-mjgk5vov9r0h91",
                    "sg-11134201-8262q-mjgk5w6uxt6tcf"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "18mm watch band",
                    "22mm watch band",
                    "20mm watch band"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 33160000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 395431414072,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 33160000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56204640142,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82612-mjgk5o26v7yfd7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1086,\"model_id\":395431414072,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82612-mjgk5o26v7yfd7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1086,\"model_id\":395431414072,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56204640142",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44804654725,
              "shopid": 1542929270,
              "name": "Tempered Glass+Case For Amazfit T REX 3 Screen Protector Hard PC Bumper Protective Cover for Huami Amazfit T-REX3 Accessories",
              "label_ids": [
                844931064601283,
                1718093079,
                1059154,
                1059152,
                822059908662278,
                825465608497696,
                825465608499232
              ],
              "image": "sg-11134201-82604-mjgk75d0ndhicf",
              "images": [
                "sg-11134201-82604-mjgk75d0ndhicf",
                "sg-11134201-8260m-mjgk75xfoe0w9f",
                "sg-11134201-8260i-mjgk76gn09oh90",
                "sg-11134201-8260l-mjgk76yhlmvba3",
                "sg-11134201-82617-mjgk77h40m4g68",
                "sg-11134201-825zz-mjgk780yiryfcb",
                "sg-11134201-8262b-mjgk78fx3cp1df",
                "sg-11134201-825zk-mjgk78uet5ok86",
                "sg-11134201-82612-mjgk798dvg1yb8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768366364,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 20510000000,
              "price_min": 20510000000,
              "price_max": 20510000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Clean",
                    "Black"
                  ],
                  "images": [
                    "sg-11134201-825zk-mjgk78uet5ok86",
                    "sg-11134201-82612-mjgk798dvg1yb8"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Dial Diameter",
                  "options": [
                    "For Amazfit T REX 3"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 20510000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 315432004821,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 20510000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44804654725,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82604-mjgk75d0ndhicf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059154,1059152,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1815,\"model_id\":315432004821,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82604-mjgk75d0ndhicf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059154,1059152,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1815,\"model_id\":315432004821,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44804654725",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43628016025,
              "shopid": 181707083,
              "name": "Redmi watch 5 active",
              "label_ids": [
                844931086908638,
                700005500,
                1059156,
                822059908662278,
                825465608499232,
                825465608493600
              ],
              "image": "id-11134207-8224q-mjgjnrfzkzk65f",
              "images": [
                "id-11134207-8224q-mjgjnrfzkzk65f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768366312,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Xiaomi Youpin",
              "cmt_count": 0,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "new",
              "price": 33000000000,
              "price_min": 33000000000,
              "price_max": 33000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surakarta (Solo)",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 33000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 325431427204,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 33000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Dawam Abdillah",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43628016025,
            "shopid": 181707083,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjgjnrfzkzk65f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,700005500,1059156,822059908662278,825465608499232,825465608493600],\"matched_keywords\":[\"\"],\"merge_rank\":1893,\"model_id\":325431427204,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjgjnrfzkzk65f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,700005500,1059156,822059908662278,825465608499232,825465608493600],\"matched_keywords\":[\"\"],\"merge_rank\":1893,\"model_id\":325431427204,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43628016025",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54004640135,
              "shopid": 1542929270,
              "name": "Nylon+Silicone 22mm 26mm Sports Watband For Garmin Fenix 8 Pro E 7X 6 Tactix 8 Forerunner 970 Epix Gen2 G2 Quick Release Strap",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079
              ],
              "image": "sg-11134201-8261k-mjgk4idg3j7l4f",
              "images": [
                "sg-11134201-8261k-mjgk4idg3j7l4f",
                "sg-11134201-825zw-mjgk4jptonwkd4",
                "sg-11134201-8261q-mjgk4kjieeps92",
                "sg-11134201-8261a-mjgk4m3gos1s66",
                "sg-11134201-82624-mjgk4mxqxwcha4",
                "sg-11134201-8261x-mjgk4oafc5xfa4",
                "sg-11134201-8260g-mjgk4pd89zie9f",
                "sg-11134201-8260e-mjgk4q674ft208",
                "sg-11134201-8260g-mjgk4qliyk1wff"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768366252,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 28560000000,
              "price_min": 28560000000,
              "price_max": 28560000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Rock Green",
                    "Army Green",
                    "Yellow",
                    "Black",
                    "Green Black",
                    "Grey Black",
                    "Orange",
                    "Army Green Black",
                    "Midnight Blue Black",
                    "Orange Black"
                  ],
                  "images": [
                    "sg-11134201-8260e-mjgk4q674ft208",
                    "sg-11134201-8260g-mjgk4qliyk1wff",
                    "sg-11134201-8261z-mjgk4qyzaneu0e",
                    "sg-11134201-8262q-mjgk4rocofeq26",
                    "sg-11134201-82618-mjgk4s3risjq17",
                    "sg-11134201-8260a-mjgk4ss7p79j13",
                    "sg-11134201-8261d-mjgk4t9j3h1gf9",
                    "sg-11134201-8260b-mjgk4ttrklc7eb",
                    "sg-11134201-8262u-mjgk4ubngcue3a",
                    "sg-11134201-82610-mjgk4uuhbkzm1f"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "1Pcs QuickFit 22mm",
                    "1Pcs QuickFit 26mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 28560000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435431426254,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 28560000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54004640135,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261k-mjgk4idg3j7l4f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1230,\"model_id\":435431426254,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261k-mjgk4idg3j7l4f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1230,\"model_id\":435431426254,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54004640135",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52804640177,
              "shopid": 1542929270,
              "name": "Quick Release Band 22mm 26mm For Garmin Fenix 8 Pro E 7 7X 6 6X Forerunner 970 965 955 Solar 945 Enduro 3 2 Nylon Velcro Strap",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-825zw-mjgk3uxcaubr91",
              "images": [
                "sg-11134201-825zw-mjgk3uxcaubr91",
                "sg-11134201-8261b-mjgk3vxpg2yu56",
                "sg-11134201-82616-mjgk3wx3mscjbe",
                "sg-11134201-8260i-mjgk3xg0p72b46",
                "sg-11134201-825zo-mjgk3y2ykb9g6d",
                "sg-11134201-8260s-mjgk3ymtglxh20",
                "sg-11134201-825zo-mjgk3zomkwlf9d",
                "sg-11134201-825zq-mjgk407bao7b8b",
                "sg-11134201-8261e-mjgk40phtwqt97"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768366219,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 47650000000,
              "price_min": 47650000000,
              "price_max": 47650000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "a-Grey White",
                    "a-Black",
                    "b-Black",
                    "b-Blue",
                    "a-Army green",
                    "a-Grey",
                    "b-Army Green",
                    "b-Grey"
                  ],
                  "images": [
                    "sg-11134201-825zq-mjgk407bao7b8b",
                    "sg-11134201-8261e-mjgk40phtwqt97",
                    "sg-11134201-8261x-mjgk41wdlhc13e",
                    "sg-11134201-8262g-mjgk42m3dwck24",
                    "sg-11134201-8262a-mjgk437deayt17",
                    "sg-11134201-8261v-mjgk43xtwwzm20",
                    "sg-11134201-8260y-mjgk4563qmmd53",
                    "sg-11134201-8261l-mjgk45uixx4x45"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "1PCS QuickFit 22mm",
                    "1PCS QuickFit 26mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 47650000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 157996021610,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 47650000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52804640177,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zw-mjgk3uxcaubr91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1303,\"model_id\":157996021610,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zw-mjgk3uxcaubr91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1303,\"model_id\":157996021610,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52804640177",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52004640067,
              "shopid": 1542929270,
              "name": "26 20 22mm Nylon Wat Band For Garmin Fenix 7X 6X Pro 7 7S 6 6S 5X 5 5S Plus/Venu 2 Plus Hook and Loop Quick Dry Strap",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079
              ],
              "image": "sg-11134201-825zt-mjgk3d5o77yd2a",
              "images": [
                "sg-11134201-825zt-mjgk3d5o77yd2a",
                "sg-11134201-825zk-mjgk3dhog35va1",
                "sg-11134201-82601-mjgk3ebfnqbnf6",
                "sg-11134201-8260l-mjgk3eoer08y43",
                "sg-11134201-82604-mjgk3f2zfh8l25",
                "sg-11134201-8260p-mjgk3fgnj3lt2b",
                "sg-11134201-8261x-mjgk3g0nglj762",
                "sg-11134201-8260u-mjgk3gd64f7pd0",
                "sg-11134201-8261g-mjgk3gop7a4m70"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768366196,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 21430000000,
              "price_min": 21430000000,
              "price_max": 21430000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Black",
                    "Grey",
                    "YGR",
                    "Rainbow",
                    "McU",
                    "BH",
                    "MU",
                    "McH",
                    "R",
                    "McGr"
                  ],
                  "images": [
                    "sg-11134201-8260u-mjgk3gd64f7pd0",
                    "sg-11134201-8261g-mjgk3gop7a4m70",
                    "sg-11134201-8260j-mjgk3h8gjpja8f",
                    "sg-11134201-825zw-mjgk3htj0xdydd",
                    "sg-11134201-82600-mjgk3it4uy2u87",
                    "sg-11134201-82615-mjgk3jt6f37mf9",
                    "sg-11134201-82622-mjgk3kvc7wg4de",
                    "sg-11134201-8260i-mjgk3lyf6oe930",
                    "sg-11134201-82632-mjgk3mvb5r7ka6",
                    "sg-11134201-82620-mjgk3nt5bd3958"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "22mm",
                    "26mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 21430000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 365431417625,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 21430000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52004640067,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zt-mjgk3d5o77yd2a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1355,\"model_id\":365431417625,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zt-mjgk3d5o77yd2a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1355,\"model_id\":365431417625,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52004640067",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51804640126,
              "shopid": 39921517,
              "name": "Aibro Ultra Nexus 5G",
              "label_ids": [
                2018619,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                700005489,
                1718093079,
                822059908662278,
                834403089593352,
                825465608497696,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                1119699,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224z-mjgdvuhxawhv76",
              "images": [
                "id-11134207-8224z-mjgdvuhxawhv76",
                "id-11134207-8224w-mjgdvuhxcb2b0a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768366193,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "AIBRO",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 100000000000,
              "price_min": 100000000000,
              "price_max": 100000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venb-mjgk0d0a6xa9f3.16000081768366048.mp4",
                  "thumb_url": "id-11110105-6venb-mjgk0d0a6xa9f3_cover",
                  "duration": 58,
                  "version": 2,
                  "vid": "id-11110105-6venb-mjgk0d0a6xa9f3",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venb-mjgk0d0a6xa9f3.16000081768366048.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mjgk0d0a6xa9f3.16000081768366048.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mjgk0d0a6xa9f3.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 100000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435431425606,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 100000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HomiTech Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51804640126,
            "shopid": 39921517,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgdvuhxawhv76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,298463379,1059152,700005489,1718093079,822059908662278,834403089593352,825465608497696,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1374,\"model_id\":435431425606,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgdvuhxawhv76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,298463379,1059152,700005489,1718093079,822059908662278,834403089593352,825465608497696,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1374,\"model_id\":435431425606,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51804640126",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51354639252,
              "shopid": 276030541,
              "name": "Aibro Ultra Nexus 5G",
              "label_ids": [
                2018619,
                2068629,
                298938357,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                825465608493600,
                825465608494624,
                2098629,
                1718088045,
                298468389,
                2098628,
                298938368
              ],
              "image": "id-11134207-8224z-mjgdvuhxawhv76",
              "images": [
                "id-11134207-8224z-mjgdvuhxawhv76",
                "id-11134207-8224w-mjgdvuhxcb2b0a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768366147,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "AIBRO",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 100000000000,
              "price_min": 100000000000,
              "price_max": 100000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvm-mjgk1mbv2m817c.16000081768366108.mp4",
                  "thumb_url": "id-11110105-6vdvm-mjgk1mbv2m817c_cover",
                  "duration": 58,
                  "version": 2,
                  "vid": "id-11110105-6vdvm-mjgk1mbv2m817c",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvm-mjgk1mbv2m817c.16000081768366108.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvm-mjgk1mbv2m817c.16000081768366108.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvm-mjgk1mbv2m817c.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp333RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 100000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 118776787985,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 100000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp333RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "csvzio00v_",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51354639252,
            "shopid": 276030541,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgdvuhxawhv76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2068629,298938357,844931064601283,844931086908638,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,825465608494624,2098629,1718088045,298468389,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":1403,\"model_id\":118776787985,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgdvuhxawhv76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2068629,298938357,844931064601283,844931086908638,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,825465608494624,2098629,1718088045,298468389,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":1403,\"model_id\":118776787985,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51354639252",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50904629640,
              "shopid": 1542929270,
              "name": "24mm Silicone Wat Strap For Suunto 7 9 Spartan Sport Belt Wristbands Suunto 9 baro Smart Watband Replacement Bracelet Correa",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-8261d-mjgk2mx3pgqvd5",
              "images": [
                "sg-11134201-8261d-mjgk2mx3pgqvd5",
                "sg-11134201-8261a-mjgk2n95qwhv90",
                "sg-11134201-82626-mjgk2ngwdlvo0c",
                "sg-11134201-8262i-mjgk2np8wbus73",
                "sg-11134201-82606-mjgk2nxiudxe9f",
                "sg-11134201-8262t-mjgk2o63a96o4d",
                "sg-11134201-82601-mjgk2ogjgkqvfb",
                "sg-11134201-8262h-mjgk2oocgyrp95",
                "sg-11134201-8262q-mjgk2oxbi805ec"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768366153,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 35920000000,
              "price_min": 35920000000,
              "price_max": 35920000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "03",
                    "09",
                    "07",
                    "05",
                    "10",
                    "06",
                    "02",
                    "04",
                    "08",
                    "01"
                  ],
                  "images": [
                    "sg-11134201-8262h-mjgk2oocgyrp95",
                    "sg-11134201-8262q-mjgk2oxbi805ec",
                    "sg-11134201-82601-mjgk2p741czk1d",
                    "sg-11134201-8262t-mjgk2pg6b5s719",
                    "sg-11134201-8261v-mjgk2pqm7oxs9f",
                    "sg-11134201-8262p-mjgk2q06wg7501",
                    "sg-11134201-8260d-mjgk2q8q20ap69",
                    "sg-11134201-8261i-mjgk2qijn2maf3",
                    "sg-11134201-8261s-mjgk2qtrd3422a",
                    "sg-11134201-82620-mjgk2r2bykn94e"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "For suunto 9",
                    "For suunto 9 baro",
                    "For Suunto 7",
                    "Sport wrist hr baro",
                    "For suunto D5",
                    "24mm",
                    "Suunto spartan sport"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 35920000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 335431425378,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 35920000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50904629640,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261d-mjgk2mx3pgqvd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1433,\"model_id\":335431425378,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261d-mjgk2mx3pgqvd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1433,\"model_id\":335431425378,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50904629640",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46204659203,
              "shopid": 57810643,
              "name": "Aibro Ultra Nexus 5G",
              "label_ids": [
                2018619,
                47,
                844931086908638,
                844931064601283,
                298463379,
                1049122,
                1059152,
                822059908662278,
                2048661,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                2048660,
                1718093079,
                1119699,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224z-mjgdvuhxawhv76",
              "images": [
                "id-11134207-8224z-mjgdvuhxawhv76",
                "id-11134207-8224w-mjgdvuhxcb2b0a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768366249,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "AIBRO",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 100000000000,
              "price_min": 100000000000,
              "price_max": 100000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven1-mjgjyxkbypdwd2.16000081768365981.mp4",
                  "thumb_url": "id-11110105-6ven1-mjgjyxkbypdwd2_cover",
                  "duration": 58,
                  "version": 2,
                  "vid": "id-11110105-6ven1-mjgjyxkbypdwd2",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven1-mjgjyxkbypdwd2.16000081768365981.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven1-mjgjyxkbypdwd2.16000081768365981.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven1-mjgjyxkbypdwd2.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 100000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 425431421832,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 100000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "marcelcell",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46204659203,
            "shopid": 57810643,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgdvuhxawhv76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,47,844931086908638,844931064601283,298463379,1049122,1059152,822059908662278,2048661,825465608493600,825465608494624,825465608499232,825465608497696,2048660,1718093079,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1727,\"model_id\":425431421832,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgdvuhxawhv76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,47,844931086908638,844931064601283,298463379,1049122,1059152,822059908662278,2048661,825465608493600,825465608494624,825465608499232,825465608497696,2048660,1718093079,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1727,\"model_id\":425431421832,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46204659203",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43978016011,
              "shopid": 1542929270,
              "name": "TPU Protective Cover for Garmin Quatix 8 51mm 47mm AMOLED Soft Silicone Bumper Case Accessories for Fenix8 47 51 Solar Protector",
              "label_ids": [
                844931064601283,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608499232
              ],
              "image": "sg-11134201-8262q-mjgk0w8zcg784e",
              "images": [
                "sg-11134201-8262q-mjgk0w8zcg784e",
                "sg-11134201-8262o-mjgk0wshhdl3dc",
                "sg-11134201-825zx-mjgk0x8u6znqb8",
                "sg-11134201-8262f-mjgk0xomaups48",
                "sg-11134201-82614-mjgk0y55n7r815",
                "sg-11134201-82604-mjgk0zmub2mfeb",
                "sg-11134201-8262f-mjgk103bteyp2b",
                "sg-11134201-8261y-mjgk10hjb5kxe7",
                "sg-11134201-82606-mjgk10xet9mp79"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768366073,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 22120000000,
              "price_min": 22120000000,
              "price_max": 22120000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": [
                    "sg-11134201-8261y-mjgk10hjb5kxe7"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "Fenix 8 51mm AMOLED",
                    "Fenix 8 47mm AMOLED",
                    "Fenix 8 51mm Solar",
                    "Fenix 8 47mm Solar",
                    "Quatix 8 51mm AMOLED",
                    "Quatix 8 47mm AMOLED"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 22120000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 400431411436,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 22120000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43978016011,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262q-mjgk0w8zcg784e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1873,\"model_id\":400431411436,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262q-mjgk0w8zcg784e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1873,\"model_id\":400431411436,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43978016011",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57804634551,
              "shopid": 1542929270,
              "name": "Two-Tone Sports Silicone Strap For Samsung Galaxy Wat Ultra Marine Band Bracelet For GalaxyWat Ultra 47mm Watband",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079
              ],
              "image": "sg-11134201-825zu-mjgjyssavmyt71",
              "images": [
                "sg-11134201-825zu-mjgjyssavmyt71",
                "sg-11134201-825zl-mjgjyt6f4sg30f",
                "sg-11134201-82607-mjgjytmdd9tsf2",
                "sg-11134201-825zr-mjgjytxympdu1f",
                "sg-11134201-8262q-mjgjyufrcow225",
                "sg-11134201-8262a-mjgjyux0stfod5",
                "sg-11134201-82631-mjgjyvlyja4g45",
                "sg-11134201-8262i-mjgjyvyrumf494",
                "sg-11134201-82622-mjgjywvdyepvcc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365996,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 20510000000,
              "price_min": 20510000000,
              "price_max": 20510000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Army Green Black",
                    "Dark Gray Orange",
                    "Green Gray",
                    "Coal Ash Black",
                    "Black Gray",
                    "Black Red",
                    "White Black",
                    "Black Orange",
                    "Starlight Orange",
                    "Orange Black",
                    "Orange",
                    "White",
                    "Gray",
                    "Black",
                    "Dark Blue",
                    "Army Green",
                    "Red"
                  ],
                  "images": [
                    "sg-11134201-8262i-mjgjyvyrumf494",
                    "sg-11134201-82622-mjgjywvdyepvcc",
                    "sg-11134201-8260e-mjgjyxjvjcav4d",
                    "sg-11134201-82630-mjgjyy9pchdsa5",
                    "sg-11134201-82632-mjgjyz3goc9154",
                    "sg-11134201-8262d-mjgjyzq3gj5z3f",
                    "sg-11134201-8262u-mjgjz0ieus5h84",
                    "sg-11134201-82616-mjgjz1bsomipe8",
                    "sg-11134201-82602-mjgjz24b2cqo58",
                    "sg-11134201-8261g-mjgjz43ney9s65",
                    "sg-11134201-82607-mjgjz5gvh4hw47",
                    "sg-11134201-8261s-mjgjz6xpjojp2d",
                    "sg-11134201-8261y-mjgjz7s7hkao78",
                    "sg-11134201-8261x-mjgjz9b5ombq63",
                    "sg-11134201-8261j-mjgjzb4f6eww1b",
                    "sg-11134201-8260k-mjgjzbvgq6mf6f",
                    "sg-11134201-8261w-mjgjzdbs2i2v4b"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 20510000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390431415344,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 20510000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57804634551,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zu-mjgjyssavmyt71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":973,\"model_id\":390431415344,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zu-mjgjyssavmyt71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":973,\"model_id\":390431415344,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57804634551",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54704634478,
              "shopid": 1542929270,
              "name": "22/26mm Nylon Quick Release Strap for Garmin Fenix 7 7X Pro 6 6X 5 5X Plus QuickFit Strap tinctive 2 Replacement Bracelet",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232
              ],
              "image": "sg-11134201-8262w-mjgjx7kvqozrda",
              "images": [
                "sg-11134201-8262w-mjgjx7kvqozrda",
                "sg-11134201-825zy-mjgjx81zgah2ca",
                "sg-11134201-8262q-mjgjx90sswlg4e",
                "sg-11134201-8260x-mjgjx9xrl7gn4f",
                "sg-11134201-82611-mjgjxalpp7nlf2",
                "sg-11134201-825zp-mjgjxbcqcoav13",
                "sg-11134201-8260c-mjgjxc6o5pfn5f",
                "sg-11134201-8262r-mjgjxdktnrif5d",
                "sg-11134201-82622-mjgjxeq9lwch32"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365916,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 46040000000,
              "price_min": 46040000000,
              "price_max": 46040000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Be",
                    "Black Orange",
                    "sky blue",
                    "black",
                    "Orange",
                    "Brown",
                    "dark blue",
                    "army green",
                    "Black camouflage",
                    "Black Green"
                  ],
                  "images": [
                    "sg-11134201-8262b-mjgjxkghnax01c",
                    "sg-11134201-8260l-mjgjxlnc09he99",
                    "sg-11134201-82630-mjgjxmp9m3gha5",
                    "sg-11134201-82604-mjgjxnvsnpc7b5",
                    "sg-11134201-8262r-mjgjxdktnrif5d",
                    "sg-11134201-82622-mjgjxeq9lwch32",
                    "sg-11134201-8262a-mjgjxfb5aqyp02",
                    "sg-11134201-8260l-mjgjxgbq0hs15a",
                    "sg-11134201-8261o-mjgjxi5haux3ae",
                    "sg-11134201-8260d-mjgjxjdw4d8j4f"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "22mm",
                    "26mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 46040000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 315431979410,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 46040000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54704634478,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262w-mjgjx7kvqozrda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1185,\"model_id\":315431979410,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262w-mjgjx7kvqozrda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1185,\"model_id\":315431979410,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54704634478",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47104649635,
              "shopid": 1542929270,
              "name": "Nylon Band For Garmin quatix 8 47mm 51mm/tinct 3 2X/Forerunner 970 965 955 945/MARQ/Fenix 7 QuickFit 26mm 22mm Strap Bracelet",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-8262z-mjgjyaduroqub5",
              "images": [
                "sg-11134201-8262z-mjgjyaduroqub5",
                "sg-11134201-82624-mjgjyax4cy69b6",
                "sg-11134201-8260c-mjgjyc81fhmp3b",
                "sg-11134201-8260t-mjgjyduej8jpde",
                "sg-11134201-82627-mjgjyf8n46bqec",
                "sg-11134201-825zk-mjgjygqdyneu3f",
                "sg-11134201-8260i-mjgjyhrygk5h1d",
                "sg-11134201-8262u-mjgjyj27sz5x92",
                "sg-11134201-8260z-mjgjyjwasvepe2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365959,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 55470000000,
              "price_min": 55470000000,
              "price_max": 55470000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Black Gray",
                    "Orange",
                    "Army Green",
                    "StarLight"
                  ],
                  "images": [
                    "sg-11134201-8262u-mjgjyj27sz5x92",
                    "sg-11134201-8260z-mjgjyjwasvepe2",
                    "sg-11134201-8260n-mjgjykj6tyww3f",
                    "sg-11134201-8262b-mjgjyle0eebl06"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "QuickFit 22mm",
                    "QuickFit 26mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 55470000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 425431394854,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 55470000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47104649635,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262z-mjgjyaduroqub5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1676,\"model_id\":425431394854,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262z-mjgjyaduroqub5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1676,\"model_id\":425431394854,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47104649635",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56404639051,
              "shopid": 1542929270,
              "name": "BERNY Quick Release 20m Full Titanium Wat Bands with Titanium Clasp  Bracelet for BERNY T2566MS/T2576MS Wat Replace",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-8261c-mjgjv7uu5a0z15",
              "images": [
                "sg-11134201-8261c-mjgjv7uu5a0z15",
                "sg-11134201-82614-mjgjv8k5um1077",
                "sg-11134201-825zy-mjgjv93k7abnc9",
                "sg-11134201-825zm-mjgjva43ec5f89",
                "sg-11134201-8260q-mjgjvaqivta824",
                "sg-11134201-8260v-mjgjvbdndq11d8",
                "sg-11134201-82623-mjgjvbxzg0zpc4",
                "sg-11134201-82601-mjgjvcjeddl085",
                "sg-11134201-82614-mjgjvdghdc7789"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365809,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 209800000000,
              "price_min": 209800000000,
              "price_max": 209800000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Titanium-strap"
                  ],
                  "images": [
                    "sg-11134201-8261c-mjgjv7uu5a0z15"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 209800000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 345431406024,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 209800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56404639051,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261c-mjgjv7uu5a0z15\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1069,\"model_id\":345431406024,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261c-mjgjv7uu5a0z15\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1069,\"model_id\":345431406024,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56404639051",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51954629750,
              "shopid": 1542929270,
              "name": "GLENAW Design New Men's Wat Graffiti Art Stainless amond Steel Luminous Waterproof Meanical Wat Men's Clock GL8722",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232
              ],
              "image": "sg-11134201-8260i-mjgjw9psrvgn35",
              "images": [
                "sg-11134201-8260i-mjgjw9psrvgn35",
                "sg-11134201-825zs-mjgjwac0rnk4db",
                "sg-11134201-8261o-mjgjwaqt4xl041",
                "sg-11134201-82622-mjgjwbjupo1y61",
                "sg-11134201-825zn-mjgjwc6bq0hs1c",
                "sg-11134201-82609-mjgjwcmr0agz96",
                "sg-11134201-825zw-mjgjwd9f708xdc",
                "sg-11134201-8262v-mjgjwdpmmznm33",
                "sg-11134201-8262u-mjgjwe5efm6e00"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365856,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 1429720000000,
              "price_min": 1429720000000,
              "price_max": 1429720000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Gold",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134201-8262v-mjgjwdpmmznm33",
                    "sg-11134201-8262u-mjgjwe5efm6e00"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1429720000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390431402038,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1429720000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51954629750,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260i-mjgjw9psrvgn35\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1362,\"model_id\":390431402038,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260i-mjgjw9psrvgn35\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1362,\"model_id\":390431402038,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51954629750",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51704634580,
              "shopid": 1435403675,
              "name": "Jam Tangan Pintar WATCH 4 PRO SUIT - Bluetooth Calling, Wireless Charging, Tahan Air, Baterai 7-14 Hari, Layar Bundar Besar, 7 Strap Silikon, Kotak Hadiah - Hitam, Perak, 28mm |TY80OJMG|",
              "label_ids": [
                844931064601283,
                1718093079,
                700005490,
                700005523,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134275-8260b-mjgie70lrxmu8e",
              "images": [
                "sg-11134275-8260b-mjgie70lrxmu8e",
                "sg-11134275-8260b-mjgie70lrxmu8e",
                "sg-11134275-82601-mjgie6z1cqv8ba",
                "sg-11134275-8260d-mjgie72utf5z95",
                "sg-11134275-8262j-mjgie6yo7dhj5c",
                "sg-11134275-8260r-mjgie71mc3r6dd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365843,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 30201600000,
              "price_min": 30201600000,
              "price_max": 30201600000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Hitam",
                    "Silver"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Serang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 30201600000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 355431401727,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 30201600000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ctagd4j6zr",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51704634580,
            "shopid": 1435403675,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134275-8260b-mjgie70lrxmu8e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005490,700005523,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1381,\"model_id\":355431401727,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134275-8260b-mjgie70lrxmu8e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005490,700005523,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1381,\"model_id\":355431401727,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51704634580",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51554629685,
              "shopid": 1542929270,
              "name": "QuickFit 26mm 22mm Two Tone Nylon Strap For Garmin Fenix E 8 7X 7 6 6X/Epix Pro Gen 2 51mm 47mm/Tactix Wat Band Accessories",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-825zz-mjgjvp4lz01s51",
              "images": [
                "sg-11134201-825zz-mjgjvp4lz01s51",
                "sg-11134201-82603-mjgjvr6g6l1ecb",
                "sg-11134201-8262o-mjgjvs6aitj733",
                "sg-11134201-8262u-mjgjvssz7sp190",
                "sg-11134201-82625-mjgjvtr5z4010b",
                "sg-11134201-8261v-mjgjvuncwhdv0c",
                "sg-11134201-825zt-mjgjvvvsf8cm23",
                "sg-11134201-82620-mjgjvxdpcvltd7",
                "sg-11134201-8261x-mjgjvy8cbvgidc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365841,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 42360000000,
              "price_min": 42360000000,
              "price_max": 42360000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Dark Gray",
                    "Blue Grey",
                    "Army green",
                    "Black",
                    "Rainbow color",
                    "Yellowish-white"
                  ],
                  "images": [
                    "sg-11134201-82620-mjgjvxdpcvltd7",
                    "sg-11134201-8261x-mjgjvy8cbvgidc",
                    "sg-11134201-8260d-mjgjvz4pyuiu84",
                    "sg-11134201-82615-mjgjw015ilts86",
                    "sg-11134201-8262f-mjgjw1brnr479d",
                    "sg-11134201-82613-mjgjw23ggqv716"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "26mm-Fenix 3",
                    "26mm-Fenix 8 51mm",
                    "22mm-instinct",
                    "22mm-Epix Pro 47mm",
                    "22mm-Fenix 5 5lus",
                    "22mm-Fenix 7 7Pro",
                    "Quick fit 22mm",
                    "22mm-Fenix 6 6Pro",
                    "26mm-Epix Pro 51mm",
                    "26mm-Descent Mk1",
                    "26mm-Fenix5X 5X Plus",
                    "26mm-Fenix 7X 7X Pro",
                    "26mm-Fenix 6X 6X PRO",
                    "Quick fit 26mm",
                    "22mm-Descent G1",
                    "22mm-Fenix 8 47mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 42360000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 350431398185,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 42360000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51554629685,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zz-mjgjvp4lz01s51\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1392,\"model_id\":350431398185,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zz-mjgjvp4lz01s51\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1392,\"model_id\":350431398185,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51554629685",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42728006268,
              "shopid": 1542929270,
              "name": "22mm 26mm Stainless Steel Wat Strap For Garmin Fenix 7 7X 6 6X Pro 5 5X Plus Quick Fit Metal Bracelet Forerunner 935 945 Band",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079
              ],
              "image": "sg-11134201-8262m-mjgjuwlrjrb97c",
              "images": [
                "sg-11134201-8262m-mjgjuwlrjrb97c",
                "sg-11134201-82608-mjgjuwx6hog58a",
                "sg-11134201-825zz-mjgjux6c8hs304",
                "sg-11134201-8261c-mjgjuxehkr9cd6",
                "sg-11134201-825zp-mjgjuxnlkd1f03",
                "sg-11134201-8261n-mjgjuxwxbjeqc2",
                "sg-11134201-8262q-mjgjuy5xycchd6",
                "sg-11134201-8262f-mjgjuygmmxab3b",
                "sg-11134201-825zm-mjgjuytlq5mp21"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365792,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 31320000000,
              "price_min": 31320000000,
              "price_max": 31320000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "style 2 black",
                    "package 2",
                    "package 3",
                    "package 4",
                    "style 1 black",
                    "package 1",
                    "style 1 silver",
                    "style 2 silver"
                  ],
                  "images": [
                    "sg-11134201-82611-mjgjv0cctkaoae",
                    "sg-11134201-8262f-mjgjuygmmxab3b",
                    "sg-11134201-825zm-mjgjuytlq5mp21",
                    "sg-11134201-8261w-mjgjuz5qccg777",
                    "sg-11134201-82630-mjgjuzip02yv3e",
                    "sg-11134201-82608-mjgjuzs9ko3pba",
                    "sg-11134201-8260m-mjgjv04gc45ic5",
                    "sg-11134201-82608-mjgjv0rtko3rc6"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "22mm",
                    "26mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 31320000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 370431397510,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 31320000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42728006268,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262m-mjgjuwlrjrb97c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":399,\"model_id\":370431397510,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262m-mjgjuwlrjrb97c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":399,\"model_id\":370431397510,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42728006268",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54654634595,
              "shopid": 1542929270,
              "name": "Wat Strap For Apple Wat With Leopard Pattern Soft Silicone Quick Release Durable Breathable Sport Smartwat Band Men Women",
              "label_ids": [
                844931064601283,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608499232
              ],
              "image": "sg-11134201-8262r-mjgjsse8mtqdbc",
              "images": [
                "sg-11134201-8262r-mjgjsse8mtqdbc",
                "sg-11134201-8262i-mjgjssptmgw3d1",
                "sg-11134201-8261n-mjgjst64dszmca",
                "sg-11134201-8262t-mjgjstps0sg47a",
                "sg-11134201-82625-mjgjsu88i9dw79",
                "sg-11134201-8261x-mjgjsus6ivwme5",
                "sg-11134201-825zp-mjgjsvnis3r6a7",
                "sg-11134201-82622-mjgjsw3gjqbn5b",
                "sg-11134201-8260h-mjgjswcsrpxd70"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365696,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 23040000000,
              "price_min": 23040000000,
              "price_max": 23040000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Milk Tea Coffee",
                    "Black Green",
                    "PInk Gray",
                    "Red Black",
                    "White Black",
                    "Black Red",
                    "Starlight Black",
                    "Gray Orange",
                    "Milk Tea Black",
                    "Starlight Milk Tea",
                    "Gray Black",
                    "Blue Black"
                  ],
                  "images": [
                    "sg-11134201-82622-mjgjsw3gjqbn5b",
                    "sg-11134201-8260h-mjgjswcsrpxd70",
                    "sg-11134201-825zr-mjgjswkg4flv15",
                    "sg-11134201-8262o-mjgjswu7zncza1",
                    "sg-11134201-82620-mjgjsx23hxqdc5",
                    "sg-11134201-8261p-mjgjsx9qdu6f98",
                    "sg-11134201-8261i-mjgjsxhwdxqc83",
                    "sg-11134201-82631-mjgjsxu1o1s449",
                    "sg-11134201-82631-mjgjsy2s1ds4b4",
                    "sg-11134201-825zs-mjgjsyc7f5dv9f",
                    "sg-11134201-8260r-mjgjsym65mo21c",
                    "sg-11134201-82626-mjgjsyuptekld1"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 23040000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 297332884989,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 23040000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54654634595,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262r-mjgjsse8mtqdbc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":401,\"model_id\":297332884989,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262r-mjgjsse8mtqdbc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":401,\"model_id\":297332884989,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54654634595",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52204639042,
              "shopid": 1542929270,
              "name": "20mm 22mm Camouflage Nylon Strap for Samsung Galaxy Wat 7 6 5 4 40/44mm 6Classic 5Pro Bracelet for Huawei GT5 4Pro 3 46mm Band",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079
              ],
              "image": "sg-11134201-8260j-mjgjta0fc935ba",
              "images": [
                "sg-11134201-8260j-mjgjta0fc935ba",
                "sg-11134201-82618-mjgjtahdl72f55",
                "sg-11134201-82606-mjgjtb9rr6de8d",
                "sg-11134201-82606-mjgjtbtb3ncx19",
                "sg-11134201-8262j-mjgjtcm6v4sga1",
                "sg-11134201-82618-mjgjtd8azuo27c",
                "sg-11134201-825zx-mjgjtdty483q70",
                "sg-11134201-8260k-mjgjtebtkjd3f0",
                "sg-11134201-82618-mjgjtf2mhvk39a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365724,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 34310000000,
              "price_min": 34310000000,
              "price_max": 34310000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "digit camouflage",
                    "black",
                    "green",
                    "Red",
                    "Yellow",
                    "GRAY",
                    "Orange",
                    "Blue",
                    "jungle camouflage",
                    "grey camouflage",
                    "desert camouflage"
                  ],
                  "images": [
                    "sg-11134201-8260k-mjgjtebtkjd3f0",
                    "sg-11134201-82618-mjgjtf2mhvk39a",
                    "sg-11134201-825zm-mjgjtfmbcema8f",
                    "sg-11134201-825zk-mjgjtg55u29x0a",
                    "sg-11134201-8260u-mjgjtgm74kjlf0",
                    "sg-11134201-8260p-mjgjth3tc0sn90",
                    "sg-11134201-82615-mjgjti0dojye91",
                    "sg-11134201-8262k-mjgjtik8dqmb31",
                    "sg-11134201-82621-mjgjtj1jqneo3f",
                    "sg-11134201-82620-mjgjtjg2pekk67",
                    "sg-11134201-825zx-mjgjtjwyc6wz34"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "S-180mm",
                    "L-210mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 34310000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390431391635,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 34310000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52204639042,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260j-mjgjta0fc935ba\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":400,\"model_id\":390431391635,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260j-mjgjta0fc935ba\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":400,\"model_id\":390431391635,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52204639042",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55754639055,
              "shopid": 1542929270,
              "name": "Steel Wat Strap 18mm 20mm 22mm Wat Band Fitbit Strap/Stainless Wat Metal Strap Quick Release Replacement For Samsung Fossi",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232
              ],
              "image": "sg-11134201-8260g-mjgjqjnu3uo40f",
              "images": [
                "sg-11134201-8260g-mjgjqjnu3uo40f",
                "sg-11134201-8261i-mjgjqkkl4jd1e3",
                "sg-11134201-8261g-mjgjql06iubm26",
                "sg-11134201-8261o-mjgjqlnipgxy86",
                "sg-11134201-8261l-mjgjqm4fqww604",
                "sg-11134201-8261r-mjgjqmq7s6ptd9",
                "sg-11134201-82612-mjgjqnhiqiv6dd",
                "sg-11134201-82610-mjgjqnyi1e6aff",
                "sg-11134201-8260q-mjgjqo9t9vd1f2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365591,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 27870000000,
              "price_min": 27870000000,
              "price_max": 27870000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "SLIVER",
                    "BLACK",
                    "ROSE GOLD",
                    "GOLD"
                  ],
                  "images": [
                    "sg-11134201-82610-mjgjqnyi1e6aff",
                    "sg-11134201-8260q-mjgjqo9t9vd1f2",
                    "sg-11134201-82612-mjgjqonkrnk6f6",
                    "sg-11134201-82624-mjgjqpdnzbi8bf"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "18mm",
                    "20mm",
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 27870000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 395431387818,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 27870000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55754639055,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260g-mjgjqjnu3uo40f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":406,\"model_id\":395431387818,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260g-mjgjqjnu3uo40f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":406,\"model_id\":395431387818,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55754639055",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50254634464,
              "shopid": 1542929270,
              "name": "Nylon loop For Samsung Galaxy Wat 6 5 Pro/4/classic/gear s3 frontier/active Sport Bracelet Huawei wat gt2 3 22mm 20mm Strap",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079
              ],
              "image": "sg-11134201-8260e-mjgjovu1ldds92",
              "images": [
                "sg-11134201-8260e-mjgjovu1ldds92",
                "sg-11134201-8260n-mjgjowdsmk9215",
                "sg-11134201-82614-mjgjownz7f9d1f",
                "sg-11134201-8261s-mjgjoxae10qofc",
                "sg-11134201-8260h-mjgjoy46sum81e",
                "sg-11134201-8260f-mjgjoyvyneo0c0",
                "sg-11134201-8261l-mjgjozhuz8jnb4",
                "sg-11134201-8260k-mjgjozugomiu09",
                "sg-11134201-82609-mjgjp09uqwase4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365516,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 36380000000,
              "price_min": 36380000000,
              "price_max": 36380000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Dark blue",
                    "Black",
                    "Sky blue",
                    "Military green",
                    "Foggy gray",
                    "Light gray",
                    "Orange",
                    "Brown",
                    "Red"
                  ],
                  "images": [
                    "sg-11134201-8260k-mjgjozugomiu09",
                    "sg-11134201-82609-mjgjp09uqwase4",
                    "sg-11134201-8261r-mjgjp0pz82yu5e",
                    "sg-11134201-82607-mjgjp1b48nbaab",
                    "sg-11134201-8261b-mjgjp1so56h0e6",
                    "sg-11134201-825zv-mjgjp28t8u844d",
                    "sg-11134201-82611-mjgjp2nqbzt2e1",
                    "sg-11134201-82605-mjgjp37l9ngj49",
                    "sg-11134201-8261w-mjgjp3qj1dz8ab"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "22mm",
                    "20mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 36380000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 395431373832,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 36380000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50254634464,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260e-mjgjovu1ldds92\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":409,\"model_id\":395431373832,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260e-mjgjovu1ldds92\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":409,\"model_id\":395431373832,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50254634464",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26094057385,
              "shopid": 54860703,
              "name": "Garmin Forerunner 970 Black 2025 | Second Like New | Jam Tangan Smartwatch",
              "label_ids": [
                1400066568,
                700000489,
                1049116,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "id-11134207-82252-mj5l95xjtzi9ac",
              "images": [
                "id-11134207-82252-mj5l95xjtzi9ac",
                "id-11134207-8224v-mj5l95xn6scg25",
                "id-11134207-8224r-mj5l95xjve2p67",
                "id-11134207-8224y-mj5l95xqb5s644",
                "id-11134207-8224y-mj5l95xk6mmd7b",
                "id-11134207-8224q-mj5l95xolcsi31"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365596,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 0,
              "cb_option": 0,
              "item_status": "new",
              "price": 1000000000000,
              "price_min": 1000000000000,
              "price_max": 1000000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Kediri",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1000000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 360431387960,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1000000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Sapamao Project",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26094057385,
            "shopid": 54860703,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj5l95xjtzi9ac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,700000489,1049116,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":403,\"model_id\":360431387960,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj5l95xjtzi9ac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,700000489,1049116,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":403,\"model_id\":360431387960,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26094057385",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53804629529,
              "shopid": 1542929270,
              "name": "Garmin QuickFit Milanese Loop Band for 20mm 22mm 26mm Wat Strap Metal Wristband bracelet for Fenix 7X Pro Fenix 5/6/8 Fenix 3",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-82625-mjgjo1tfdziee1",
              "images": [
                "sg-11134201-82625-mjgjo1tfdziee1",
                "sg-11134201-82604-mjgjo29k969y60",
                "sg-11134201-82610-mjgjo2o15hc3c4",
                "sg-11134201-8261b-mjgjo2wxyl1e19",
                "sg-11134201-8262z-mjgjo3fmk83lc3",
                "sg-11134201-8261e-mjgjo3u732tca1",
                "sg-11134201-82613-mjgjo418v0g4d6",
                "sg-11134201-82611-mjgjo4knhkav03",
                "sg-11134201-8260b-mjgjo4zvi2gzd4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365474,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 43050000000,
              "price_min": 43050000000,
              "price_max": 43050000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Taro Purple",
                    "Blue Orange Stripe",
                    "Starlight Silver",
                    "Silver",
                    "Black Red Stripe",
                    "Black",
                    "Orange Light Green",
                    "Blue Light Gold"
                  ],
                  "images": [
                    "sg-11134201-82611-mjgjo4knhkav03",
                    "sg-11134201-8260b-mjgjo4zvi2gzd4",
                    "sg-11134201-82608-mjgjo5om93ia58",
                    "sg-11134201-82614-mjgjo64v3ls119",
                    "sg-11134201-825zo-mjgjo6hn8um9fc",
                    "sg-11134201-82633-mjgjo6yqkcuf3f",
                    "sg-11134201-8262n-mjgjo75rznd1ed",
                    "sg-11134201-8260q-mjgjo7p7cw040d"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "20mm",
                    "26mm",
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 43050000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 272332886981,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 43050000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53804629529,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82625-mjgjo1tfdziee1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":411,\"model_id\":272332886981,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82625-mjgjo1tfdziee1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":411,\"model_id\":272332886981,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53804629529",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51704640028,
              "shopid": 1542929270,
              "name": "POEDAGAR Fashion Luxury Men Wat Top Original Waterproof Luminous Date Week Man Wristwat Stainless Steel Quartz Men's Wates",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-82625-mjgjncqn3caoa0",
              "images": [
                "sg-11134201-82625-mjgjncqn3caoa0",
                "sg-11134201-8261l-mjgjnefr5beu06",
                "sg-11134201-825zm-mjgjnf9gkcg14b",
                "sg-11134201-8260b-mjgjnghe2878e7",
                "sg-11134201-825zy-mjgjngy1qi9z58",
                "sg-11134201-8260t-mjgjnh9qz9c52f",
                "sg-11134201-8262p-mjgjnhkh80zl30",
                "sg-11134201-8262o-mjgjni7bnj7lff",
                "sg-11134201-8260d-mjgjnjlz3oxs21"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365452,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 800210000000,
              "price_min": 800210000000,
              "price_max": 800210000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "698 Gold Green",
                    "698 Gold White",
                    "698 Blue Blue",
                    "698 Gold Grey",
                    "698 Gold Black",
                    "698 Gold Blue",
                    "698 Silver White",
                    "698 Gold Gold",
                    "698 Black Black",
                    "698 Silver Black",
                    "698 Silver Blue"
                  ],
                  "images": [
                    "sg-11134201-8262o-mjgjni7bnj7lff",
                    "sg-11134201-8260d-mjgjnjlz3oxs21",
                    "sg-11134201-825zy-mjgjnktbompw57",
                    "sg-11134201-82630-mjgjnlkinncybc",
                    "sg-11134201-82610-mjgjnmarn5s794",
                    "sg-11134201-82625-mjgjncqn3caoa0",
                    "sg-11134201-8261u-mjgjnn0rkvlsff",
                    "sg-11134201-825zq-mjgjno4a19fpa8",
                    "sg-11134201-8261f-mjgjnould3ie08",
                    "sg-11134201-82634-mjgjnpi04flzf0",
                    "sg-11134201-825zs-mjgjnq7vezura0"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 800210000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 410431385638,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 800210000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51704640028,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82625-mjgjncqn3caoa0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":412,\"model_id\":410431385638,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82625-mjgjncqn3caoa0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":412,\"model_id\":410431385638,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51704640028",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51654639055,
              "shopid": 1542929270,
              "name": "22mm Stainless Steel Band For Huawei Wat GT6 Pro GT5 GT4 GT3 GT2 GT 46mm Strap Metal Bracelet for Huawei Wat 5/4/4pro/3/3pro",
              "label_ids": [
                844931064601283,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608499232
              ],
              "image": "sg-11134201-8262p-mjgjn3kmsoaq27",
              "images": [
                "sg-11134201-8262p-mjgjn3kmsoaq27",
                "sg-11134201-82617-mjgjn3tf8hz49b",
                "sg-11134201-8262z-mjgjn41blouab5",
                "sg-11134201-82603-mjgjn46q2j9hc8",
                "sg-11134201-8260g-mjgjn4f2o2dhce",
                "sg-11134201-82623-mjgjn4nojy841c",
                "sg-11134201-8260e-mjgjn4ul98g162",
                "sg-11134201-8262f-mjgjn50f241wd2",
                "sg-11134201-8262i-mjgjn5a19p1c9f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365425,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 33620000000,
              "price_min": 33620000000,
              "price_max": 33620000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "sliver",
                    "black",
                    "gray"
                  ],
                  "images": [
                    "sg-11134201-8262f-mjgjn50f241wd2",
                    "sg-11134201-8262i-mjgjn5a19p1c9f",
                    "sg-11134201-82609-mjgjn5i8hds62b"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 33620000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 307332878578,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 33620000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51654639055,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262p-mjgjn3kmsoaq27\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":413,\"model_id\":307332878578,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262p-mjgjn3kmsoaq27\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":413,\"model_id\":307332878578,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51654639055",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49454654493,
              "shopid": 1542929270,
              "name": "39mm men's wat VK63 movement quartz ronograph sapphire glass rubber strap luxury business men's waterproof wristwat 10Bar",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232
              ],
              "image": "sg-11134201-8260p-mjgjofbe35ds61",
              "images": [
                "sg-11134201-8260p-mjgjofbe35ds61",
                "sg-11134201-825zs-mjgjog7pp1c087",
                "sg-11134201-8261s-mjgjogv2w5532c",
                "sg-11134201-8260k-mjgjohku0d1e48",
                "sg-11134201-82608-mjgjoi7ypc754f",
                "sg-11134201-825zl-mjgjoivvhmo552",
                "sg-11134201-8262d-mjgjojgctipvb8",
                "sg-11134201-825zr-mjgjojyvesqod3",
                "sg-11134201-82602-mjgjokddilts7b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365497,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 359760000000,
              "price_min": 359760000000,
              "price_max": 359760000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "OUMASHI- 2",
                    "NO LOGO- 2",
                    "OUMASHI- 1",
                    "NO LOGO- 1",
                    "OUMASHI- 6",
                    "NO LOGO- 6",
                    "OUMASHI- 5",
                    "NO LOGO- 5",
                    "OUMASHI- 4",
                    "NO LOGO- 4",
                    "OUMASHI- 3",
                    "NO LOGO- 3"
                  ],
                  "images": [
                    "sg-11134201-825zr-mjgjojyvesqod3",
                    "sg-11134201-82602-mjgjokddilts7b",
                    "sg-11134201-8261w-mjgjokkm4cu8b9",
                    "sg-11134201-82615-mjgjol2c2nlw5a",
                    "sg-11134201-8260z-mjgjolk90avad5",
                    "sg-11134201-8262u-mjgjom07frif80",
                    "sg-11134201-8262j-mjgjomh4h7gi32",
                    "sg-11134201-82608-mjgjomxrby0x5c",
                    "sg-11134201-82609-mjgjonl16akja3",
                    "sg-11134201-8262c-mjgjonx2fojp51",
                    "sg-11134201-8262o-mjgjood5uxvoc8",
                    "sg-11134201-82614-mjgjoot0dxqb89"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "VK63 movement"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 359760000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390431381981,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 359760000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49454654493,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260p-mjgjofbe35ds61\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":410,\"model_id\":390431381981,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260p-mjgjofbe35ds61\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":410,\"model_id\":390431381981,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49454654493",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44654654560,
              "shopid": 1542929270,
              "name": "BERNY Automatic ver Men Wat 200M Waterproof Miyota 8215 Sappire AR Coated Silicone Sports Swim Wristwat Men's ver Wat",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079
              ],
              "image": "sg-11134201-825zr-mjgjll8vgn4288",
              "images": [
                "sg-11134201-825zr-mjgjll8vgn4288",
                "sg-11134201-8261r-mjgjlm5t8dmu47",
                "sg-11134201-8260l-mjgjlmtz3wufd7",
                "sg-11134201-825zz-mjgjlnk9i1a9a1",
                "sg-11134201-82619-mjgjlofyd1qd1d",
                "sg-11134201-8262b-mjgjlp7q65mr51",
                "sg-11134201-82616-mjgjlpxonta9f8",
                "sg-11134201-82626-mjgjlqq6uio0fe",
                "sg-11134201-8261k-mjgjls6n3toj78"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365377,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 1040790000000,
              "price_min": 1040790000000,
              "price_max": 1040790000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "AM539MS-YE",
                    "AM539MS-C",
                    "AM539MS-B",
                    "AM539MS-MGN",
                    "AM539MS-GRN",
                    "AM539M-MGN",
                    "AM539M-GRN",
                    "AM539MS-A",
                    "AM539M-YE",
                    "AM539M-A",
                    "AM539M-B",
                    "AM539M-C"
                  ],
                  "images": [
                    "sg-11134201-82626-mjgjlqq6uio0fe",
                    "sg-11134201-8261k-mjgjls6n3toj78",
                    "sg-11134201-8260u-mjgjlt5sh14z3a",
                    "sg-11134201-82607-mjgjlu3fonibe8",
                    "sg-11134201-825zo-mjgjlvqj0c1x3a",
                    "sg-11134201-82603-mjgjlx02lo90f7",
                    "sg-11134201-82613-mjgjlyoltloidd",
                    "sg-11134201-8262d-mjgjlzmnfi0we0",
                    "sg-11134201-82620-mjgjm19qy5tw2f",
                    "sg-11134201-825zv-mjgjm21fvbpj8b",
                    "sg-11134201-8262y-mjgjm38ds5j627",
                    "sg-11134201-8260c-mjgjm4a6v01z1a"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1040790000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 370431371732,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1040790000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44654654560,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zr-mjgjll8vgn4288\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":415,\"model_id\":370431371732,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zr-mjgjll8vgn4288\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":415,\"model_id\":370431371732,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44654654560",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29344032311,
              "shopid": 1542929270,
              "name": "For Colmi V69 Smart Wat Band 24mm Elastic Nylon Loop Replacement Correa Wristband For Colmi V69 Strap Bracelet Accessories",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-8261j-mjgjmrldtssjc9",
              "images": [
                "sg-11134201-8261j-mjgjmrldtssjc9",
                "sg-11134201-825zp-mjgjmrw00ft060",
                "sg-11134201-825zr-mjgjms8wg74117",
                "sg-11134201-8260t-mjgjmsihvoqudc",
                "sg-11134201-8262y-mjgjmssistts09",
                "sg-11134201-82630-mjgjmt2apg5d7b",
                "sg-11134201-82617-mjgjmtdwjzsz22",
                "sg-11134201-825zw-mjgjmtm96xhfad",
                "sg-11134201-8260z-mjgjmttmy3gk31"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365413,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 25110000000,
              "price_min": 25110000000,
              "price_max": 25110000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "K",
                    "L",
                    "J",
                    "I",
                    "H",
                    "G",
                    "F",
                    "E",
                    "D",
                    "C",
                    "B",
                    "A"
                  ],
                  "images": [
                    "sg-11134201-8260z-mjgjmttmy3gk31",
                    "sg-11134201-82623-mjgjmw9905c7c1",
                    "sg-11134201-825zw-mjgjmtm96xhfad",
                    "sg-11134201-82611-mjgjmu1n4zk5f8",
                    "sg-11134201-82623-mjgjmubwn5l3af",
                    "sg-11134201-8261p-mjgjmukovyf574",
                    "sg-11134201-8262s-mjgjmutj04xzc5",
                    "sg-11134201-8261o-mjgjmv38j5s506",
                    "sg-11134201-82625-mjgjmvb1mbcxe4",
                    "sg-11134201-8260f-mjgjmviakr2bcc",
                    "sg-11134201-82606-mjgjmvqd6osi3d",
                    "sg-11134201-8262b-mjgjmw1czk0009"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "24mm Universal",
                    "For Colmi V69"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 25110000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 167376017634,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 25110000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 29344032311,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261j-mjgjmrldtssjc9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":414,\"model_id\":167376017634,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261j-mjgjmrldtssjc9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":414,\"model_id\":167376017634,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29344032311",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45254659129,
              "shopid": 1418333174,
              "name": "redmi watch 5 fullset",
              "label_ids": [
                844931064601283,
                700000499,
                1059156,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079
              ],
              "image": "id-11134207-8224x-mjg9ke9iz66c0f",
              "images": [
                "id-11134207-8224x-mjg9ke9iz66c0f",
                "id-11134207-82252-mjg9ke9ixrlw04",
                "id-11134207-8224w-mjg9ke9j0kqsed",
                "id-11134207-8224q-mjg9ke9j1zb8c8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365260,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Redmi",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 77500000000,
              "price_min": 77500000000,
              "price_max": 77500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Klaten",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 77500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 325431354952,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 77500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DaZ Aksesoris",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45254659129,
            "shopid": 1418333174,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjg9ke9iz66c0f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700000499,1059156,822059908662278,825465608494624,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":420,\"model_id\":325431354952,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjg9ke9iz66c0f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700000499,1059156,822059908662278,825465608494624,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":420,\"model_id\":325431354952,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45254659129",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57654634367,
              "shopid": 1542929270,
              "name": "2pcs Strap For Samsung Galaxy Wat 5 Pro 4 3 Classic Active 2 Gear Nylon Alpine Loop Bracelet Huawei Wat GT 2 3 Band 20 22mm",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-8261v-mjgjh7er3d3a95",
              "images": [
                "sg-11134201-8261v-mjgjh7er3d3a95",
                "sg-11134201-82623-mjgjh7vfqrd1c6",
                "sg-11134201-8261l-mjgjh8a4k4jp22",
                "sg-11134201-82605-mjgjh8tdyepz58",
                "sg-11134201-8260y-mjgjh9d4d4hw31",
                "sg-11134201-8262w-mjgjh9xif400a1",
                "sg-11134201-8260e-mjgjhaaxp8g302",
                "sg-11134201-8261l-mjgjhamhfz0h6a",
                "sg-11134201-825zs-mjgjhb34udja3d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365153,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 24190000000,
              "price_min": 24190000000,
              "price_max": 24190000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Black and Orange",
                    "Green and Beige",
                    "Yellow and Blue"
                  ],
                  "images": [
                    "sg-11134201-8261l-mjgjhamhfz0h6a",
                    "sg-11134201-825zs-mjgjhb34udja3d",
                    "sg-11134201-825zv-mjgjhbm5rw1t3d"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "20mm",
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 24190000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 415431353314,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 24190000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57654634367,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261v-mjgjh7er3d3a95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":423,\"model_id\":415431353314,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261v-mjgjh7er3d3a95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":423,\"model_id\":415431353314,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57654634367",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52204638970,
              "shopid": 1542929270,
              "name": "20 22mm Garmin Easy Fit Nylon Strap For Forerunner 255/265/965 Wristband For Active /Vivoactive 4 Bracelet Venu Universal Band",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-8262a-mjgjflynxblz8b",
              "images": [
                "sg-11134201-8262a-mjgjflynxblz8b",
                "sg-11134201-8262j-mjgjfmj9e3up1f",
                "sg-11134201-82610-mjgjfn01v5s413",
                "sg-11134201-8261z-mjgjfnby7k7b6b",
                "sg-11134201-82603-mjgjfnmeutqbf2",
                "sg-11134201-8262t-mjgjfnyuxxxc75",
                "sg-11134201-8261u-mjgjfod0yayp7d",
                "sg-11134201-82635-mjgjfp4aqi2q83",
                "sg-11134201-82603-mjgjfq48iayub5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768365080,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 32930000000,
              "price_min": 32930000000,
              "price_max": 32930000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "black",
                    "Camo green",
                    "Camo gray",
                    "Camo Red",
                    "army green"
                  ],
                  "images": [
                    "sg-11134201-82635-mjgjfp4aqi2q83",
                    "sg-11134201-82603-mjgjfq48iayub5",
                    "sg-11134201-8262a-mjgjflynxblz8b",
                    "sg-11134201-8261w-mjgjfqoqz0n8a8",
                    "sg-11134201-8260l-mjgjfrltnp4wa5"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "20mm",
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 32930000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 425431349893,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 32930000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52204638970,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262a-mjgjflynxblz8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":424,\"model_id\":425431349893,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262a-mjgjflynxblz8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":424,\"model_id\":425431349893,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52204638970",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49604658917,
              "shopid": 1542929270,
              "name": "NEW Marine Silicone Strap for Samsung Galaxy Wat 7 Ultra 47mm Bracelet Sport Two-tone Watband",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-8262y-mjgjdeqra612b8",
              "images": [
                "sg-11134201-8262y-mjgjdeqra612b8",
                "sg-11134201-825zq-mjgjdf2uq9ds23",
                "sg-11134201-82613-mjgjdfg5zpc159",
                "sg-11134201-8260w-mjgjdg4e3e2t9d",
                "sg-11134201-8261m-mjgjdgg6qays22",
                "sg-11134201-8261k-mjgjdh0ch3ifd3",
                "sg-11134201-8260g-mjgjdhmbrmyt03",
                "sg-11134201-82610-mjgjdigf5jb710",
                "sg-11134201-8261e-mjgjdj078nib60"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768364985,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 30630000000,
              "price_min": 30630000000,
              "price_max": 30630000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Black Red",
                    "Black Orange",
                    "Orange Black",
                    "White Black",
                    "Lime Gray",
                    "Starlight Orange",
                    "Spacegray Orange",
                    "Gray Black",
                    "Armygreen Black",
                    "Black Gray"
                  ],
                  "images": [
                    "sg-11134201-82610-mjgjdigf5jb710",
                    "sg-11134201-8261e-mjgjdj078nib60",
                    "sg-11134201-82610-mjgjdjwt179d83",
                    "sg-11134201-8262z-mjgjdkhih9fl82",
                    "sg-11134201-82616-mjgjdla3sao528",
                    "sg-11134201-82625-mjgjdm8dqsjp3a",
                    "sg-11134201-82629-mjgjdn5jij2ecd",
                    "sg-11134201-82604-mjgjdoadknb5e4",
                    "sg-11134201-82613-mjgjdp5qhqtf95",
                    "sg-11134201-8262q-mjgjdq38pkhudb"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "Galaxy Watch 7 Ultra"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 30630000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 335431339654,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 30630000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49604658917,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262y-mjgjdeqra612b8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":425,\"model_id\":335431339654,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262y-mjgjdeqra612b8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":425,\"model_id\":335431339654,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49604658917",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54254634109,
              "shopid": 1690895025,
              "name": "Smart Watch Men 143inch Large Screen Bluetooth Call Music Player Sport Fitness Tracker Health Monitor Smartwatch",
              "label_ids": [
                844931064601283,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-8260q-mjgio22z51508f",
              "images": [
                "sg-11134201-8260q-mjgio22z51508f",
                "sg-11134201-8261r-mjgio2ldmtj40e",
                "sg-11134201-825zx-mjgio34vaw3qef",
                "sg-11134201-825zl-mjgio3p7d72805",
                "sg-11134201-82607-mjgio452a8li2a",
                "sg-11134201-82627-mjgio4lr63uu3b",
                "sg-11134201-8261c-mjgio57holj66d",
                "sg-11134201-8260u-mjgio5q2qdc3ab",
                "sg-11134201-8261k-mjgio686rr4122"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363795,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 123425800000,
              "price_min": 123425800000,
              "price_max": 123425800000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Silver",
                    "Orange",
                    "Gray",
                    "Silver Steel",
                    "Silver Milan",
                    "Black Steel",
                    "Black Milan",
                    "black"
                  ],
                  "images": [
                    "sg-11134201-8260u-mjgio5q2qdc3ab",
                    "sg-11134201-8261k-mjgio686rr4122",
                    "sg-11134201-8260y-mjgio6o52ygw49",
                    "sg-11134201-8260a-mjgio7d3myo309",
                    "sg-11134201-8262t-mjgio7rr629s9a",
                    "sg-11134201-8261a-mjgio8aqf4sn90",
                    "sg-11134201-82620-mjgio8sbrmyoea",
                    "sg-11134201-82633-mjgio94v7ll174"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 123425800000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 188798790750,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 123425800000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UrbanSkena",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54254634109,
            "shopid": 1690895025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260q-mjgio22z51508f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":434,\"model_id\":188798790750,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260q-mjgio22z51508f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":434,\"model_id\":188798790750,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54254634109",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47704658593,
              "shopid": 1542929270,
              "name": "26 22 20mm Watband For Garmin Fenix 6 6X Pro 5 5X Plus 3HR STAINLESS STEEL Band Fenix6 Fenix5 Wat Quick Release Wrist Strap",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232
              ],
              "image": "sg-11134201-8262z-mjgimjxjlds0c3",
              "images": [
                "sg-11134201-8262z-mjgimjxjlds0c3",
                "sg-11134201-825zm-mjgimkj9d9tx6b",
                "sg-11134201-8261t-mjgimlbu0dtw9d",
                "sg-11134201-8261h-mjgimm256lmr85",
                "sg-11134201-82615-mjgimmvk3rwm61",
                "sg-11134201-825zx-mjgimnrt962ta4",
                "sg-11134201-825zl-mjgimomp8q9t2b",
                "sg-11134201-8261c-mjgimp7dfu9wfc",
                "sg-11134201-8261m-mjgimprfy03qf5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363724,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 60070000000,
              "price_min": 60070000000,
              "price_max": 60070000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "black",
                    "Rose Gold",
                    "silver",
                    "Gold"
                  ],
                  "images": [
                    "sg-11134201-8261c-mjgimp7dfu9wfc",
                    "sg-11134201-8261m-mjgimprfy03qf5",
                    "sg-11134201-8261n-mjgimq80qdqbf7",
                    "sg-11134201-8260a-mjgimqumb11g1c"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "26mm Fenix 6X Pro",
                    "26mm Fenix 5X 3HR",
                    "22mm(Fenix 5)",
                    "20mm(Fenix 5S)",
                    "22mm Fenix 6 Pro",
                    "20mm Fenix 6S Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 60070000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 380431258134,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 60070000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47704658593,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262z-mjgimjxjlds0c3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":438,\"model_id\":380431258134,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262z-mjgimjxjlds0c3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":438,\"model_id\":380431258134,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47704658593",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42378006029,
              "shopid": 1690895025,
              "name": "Muslim Smart Watch 201 Square Smart Watch for Men Health Monitoring Islamic Quran Watch Prayer Bluetooth 53 Call Smartwatches",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-8260k-mjgin2tz50cm5b",
              "images": [
                "sg-11134201-8260k-mjgin2tz50cm5b",
                "sg-11134201-82625-mjgin3cdqyvaae",
                "sg-11134201-8260g-mjgin4753bwn9b",
                "sg-11134201-82603-mjgin4ol68zr96",
                "sg-11134201-82622-mjgin58xs6bnc4",
                "sg-11134201-825zp-mjgin5u82dc13a",
                "sg-11134201-8262g-mjgin6hirmdfa7",
                "sg-11134201-825zs-mjgin7gr515355",
                "sg-11134201-8262a-mjgin840scuefb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363748,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 80597500000,
              "price_min": 80597500000,
              "price_max": 80597500000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Sdwatch",
                    "Black",
                    "Black22Szstrap",
                    "Black22Milan"
                  ],
                  "images": [
                    "sg-11134201-8262a-mjgin840scuefb",
                    "sg-11134201-8260k-mjgin2tz50cm5b",
                    "sg-11134201-8262a-mjgin8nyark5ef",
                    "sg-11134201-8262h-mjgin98bgef696"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 80597500000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 445431253999,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 80597500000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UrbanSkena",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42378006029,
            "shopid": 1690895025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260k-mjgin2tz50cm5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":437,\"model_id\":445431253999,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260k-mjgin2tz50cm5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":437,\"model_id\":445431253999,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42378006029",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25597898873,
              "shopid": 1690895025,
              "name": "Smart Watch Amolde LED Flashlight Barometer Altitude Compass Bluetooth Call Men Outdoor Sport Fitness Tracker Smartwatch",
              "label_ids": [
                844931064601283,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-8260f-mjging6eq68464",
              "images": [
                "sg-11134201-8260f-mjging6eq68464",
                "sg-11134201-8261t-mjgingy1p3pc87",
                "sg-11134201-8261q-mjginhhhc35t14",
                "sg-11134201-82616-mjginhyrn47651",
                "sg-11134201-82632-mjginidejp4z63",
                "sg-11134201-8260h-mjginiz4eb5vc1",
                "sg-11134201-825zw-mjginjg7zoxt2f",
                "sg-11134201-8261q-mjginjv7yvpiac",
                "sg-11134201-8260h-mjgink9nxfk45d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363762,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 134604500000,
              "price_min": 134604500000,
              "price_max": 134604500000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "black",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134201-8261q-mjginjv7yvpiac",
                    "sg-11134201-8260h-mjgink9nxfk45d"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 134604500000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 410431254551,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 134604500000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UrbanSkena",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 25597898873,
            "shopid": 1690895025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260f-mjging6eq68464\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":435,\"model_id\":410431254551,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260f-mjging6eq68464\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":435,\"model_id\":410431254551,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25597898873",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55304624570,
              "shopid": 1542929270,
              "name": "New Classic luxury Leather wristWat Strap Easy fit quick Link Bracelet Belt 22MM For Garmin Fenix 5 Smart Wat band wristband",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079
              ],
              "image": "sg-11134201-82609-mjgil6p96lmt7a",
              "images": [
                "sg-11134201-82609-mjgil6p96lmt7a",
                "sg-11134201-825zm-mjgil8dgjif67e",
                "sg-11134201-8261u-mjgil9gqgbgg2a",
                "sg-11134201-8262f-mjgila7njyfa29",
                "sg-11134201-8261e-mjgilaklqu4l1b",
                "sg-11134201-8260w-mjgilbadyfie6a",
                "sg-11134201-8261x-mjgilbv30hkx5b",
                "sg-11134201-825zs-mjgilcb8b4lec0",
                "sg-11134201-8261s-mjgildg1pd6t12"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363661,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 60530000000,
              "price_min": 60530000000,
              "price_max": 60530000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "black",
                    "light brown",
                    "Brown"
                  ],
                  "images": [
                    "sg-11134201-825zs-mjgilcb8b4lec0",
                    "sg-11134201-8261s-mjgildg1pd6t12",
                    "sg-11134201-82615-mjgilechakn793"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "For Fenix 5 6 Plus"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 60530000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 405431261102,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 60530000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55304624570,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82609-mjgil6p96lmt7a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":442,\"model_id\":405431261102,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82609-mjgil6p96lmt7a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":442,\"model_id\":405431261102,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55304624570",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54904629145,
              "shopid": 1542929270,
              "name": "PAGANI DESIGN 2026 New Men's Wates Top Luxury Quartz Wat For Men Auto Date Speed ronograph AR Sapphire Mirror Wrist wat",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079
              ],
              "image": "sg-11134201-8260z-mjgim413rqx096",
              "images": [
                "sg-11134201-8260z-mjgim413rqx096",
                "sg-11134201-8262v-mjgim4o0uq6f47",
                "sg-11134201-82609-mjgim58oi9dx8a",
                "sg-11134201-8261l-mjgim627g45h7d",
                "sg-11134201-825zq-mjgim6h1exvq6d",
                "sg-11134201-8262h-mjgim6uuxrlz0e",
                "sg-11134201-8261e-mjgim73umux219",
                "sg-11134201-82634-mjgim7mz6yo2f6",
                "sg-11134201-82602-mjgim7x7j18iba"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363705,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 2148700000000,
              "price_min": 2148700000000,
              "price_max": 2148700000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Blue",
                    "Silver Gold",
                    "Red V5",
                    "Gold",
                    "Sky Blue",
                    "Silver White",
                    "Ice Blue",
                    "White J",
                    "Black V3",
                    "Black-500 Scale",
                    "Brown",
                    "Deep Blue",
                    "White",
                    "Black Red",
                    "Black"
                  ],
                  "images": [
                    "sg-11134201-82634-mjgim7mz6yo2f6",
                    "sg-11134201-82602-mjgim7x7j18iba",
                    "sg-11134201-8260v-mjgim8d149vpc1",
                    "sg-11134201-82605-mjgim8t5h8uedb",
                    "sg-11134201-8262w-mjgim997vzeo78",
                    "sg-11134201-8261g-mjgim9ntw9acff",
                    "sg-11134201-82612-mjgim9wafpc619",
                    "sg-11134201-825zk-mjgima4ztx4x54",
                    "sg-11134201-82610-mjgimad1qkn457",
                    "sg-11134201-8262e-mjgimao6rr40e2",
                    "sg-11134201-8261g-mjgimb10fqis4e",
                    "sg-11134201-825zu-mjgimbiozf9j0b",
                    "sg-11134201-8262d-mjgimbuippmsf1",
                    "sg-11134201-8260w-mjgimc3zcdtsaf",
                    "sg-11134201-8261c-mjgimcdgzmdef5"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 2148700000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 385431266279,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2148700000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54904629145,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260z-mjgim413rqx096\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":439,\"model_id\":385431266279,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260z-mjgim413rqx096\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":439,\"model_id\":385431266279,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54904629145",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54204629077,
              "shopid": 1690895025,
              "name": "Men Smart Watch AMOLED TK27 ECG Health Monitoring Outdoors Flashlight Bluetooth Calling Sports Fitness Tracker Smartwatch",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-8262y-mjgim1qka4920f",
              "images": [
                "sg-11134201-8262y-mjgim1qka4920f",
                "sg-11134201-8262f-mjgim1ztds030d",
                "sg-11134201-82610-mjgim2go8gzm82",
                "sg-11134201-8260l-mjgim2vb99ms71",
                "sg-11134201-8260i-mjgim3h8k9ad15",
                "sg-11134201-8262b-mjgim3ouicxwa5",
                "sg-11134201-8261i-mjgim42jwdmp44",
                "sg-11134201-825zr-mjgim4ambaip69",
                "sg-11134201-82632-mjgim4hwcyyqb8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363697,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 157218700000,
              "price_min": 157218700000,
              "price_max": 157218700000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Brown Leather",
                    "Blue",
                    "Black Steel",
                    "Nylon Black",
                    "black",
                    "Beige",
                    "Red",
                    "Black Leather"
                  ],
                  "images": [
                    "sg-11134201-825zr-mjgim4ambaip69",
                    "sg-11134201-82632-mjgim4hwcyyqb8",
                    "sg-11134201-8262e-mjgim4ywhc7bfb",
                    "sg-11134201-8262y-mjgim1qka4920f",
                    "sg-11134201-8261r-mjgim55zqnet20",
                    "sg-11134201-82617-mjgim5d9bimce4",
                    "sg-11134201-82624-mjgim5k9f3ep3c",
                    "sg-11134201-8262g-mjgim5rky5flad"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 157218700000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 320431261752,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 157218700000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UrbanSkena",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54204629077,
            "shopid": 1690895025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262y-mjgim1qka4920f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":440,\"model_id\":320431261752,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262y-mjgim1qka4920f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":440,\"model_id\":320431261752,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54204629077",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53304629139,
              "shopid": 1690895025,
              "name": "smart watch for health monitoring, Bluetooth call watch, sports heart rate and blood oxygen, Huaqiang",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-82605-mjgils2so2rq8d",
              "images": [
                "sg-11134201-82605-mjgils2so2rq8d",
                "sg-11134201-8262v-mjgilsdbhyio90",
                "sg-11134201-8262s-mjgilsnrlgxu5f",
                "sg-11134201-8262g-mjgilszwbx1i08",
                "sg-11134201-82603-mjgiltax5cljac",
                "sg-11134201-8261w-mjgiltlg4t1cf7",
                "sg-11134201-8261i-mjgiltvqkq9x8b",
                "sg-11134201-8261g-mjgilu4fdx53f4",
                "sg-11134201-82634-mjgiludjuc5ca5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363683,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 41198400000,
              "price_min": 41198400000,
              "price_max": 41198400000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Imperial Gold",
                    "imperial concubine",
                    "knight black",
                    "galaxy gray"
                  ],
                  "images": [
                    "sg-11134201-8261g-mjgilu4fdx53f4",
                    "sg-11134201-82634-mjgiludjuc5ca5",
                    "sg-11134201-8262y-mjgilukvyi9x6b",
                    "sg-11134201-8261p-mjgilutsf0g5d9"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 41198400000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 282332812543,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 41198400000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UrbanSkena",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53304629139,
            "shopid": 1690895025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82605-mjgils2so2rq8d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":441,\"model_id\":282332812543,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82605-mjgils2so2rq8d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":441,\"model_id\":282332812543,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53304629139",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52254638680,
              "shopid": 1542929270,
              "name": "Quick Fit 22mm 26mm Titanium Strap for Garmin Wat Fenix E 8 AMOLED 7X 7 Pro 6X 6 Watband Bracelet for Garmin tinct 3 45mm",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079
              ],
              "image": "sg-11134201-8261d-mjgikp31b2tde2",
              "images": [
                "sg-11134201-8261d-mjgikp31b2tde2",
                "sg-11134201-8260v-mjgikpppc9hgdb",
                "sg-11134201-8262d-mjgikqjc0yro0a",
                "sg-11134201-8260s-mjgikruacetg90",
                "sg-11134201-82634-mjgiktgg5hj47c",
                "sg-11134201-82630-mjgiku55cbus3d",
                "sg-11134201-82610-mjgikunzsmiq8b",
                "sg-11134201-8261w-mjgikvjonmyuab",
                "sg-11134201-8261t-mjgikw7izfnm2a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363641,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 58690000000,
              "price_min": 58690000000,
              "price_max": 58690000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "black orange",
                    "black gold",
                    "titanium orange",
                    "black",
                    "titanium",
                    "silver"
                  ],
                  "images": [
                    "sg-11134201-8261w-mjgikvjonmyuab",
                    "sg-11134201-8261t-mjgikw7izfnm2a",
                    "sg-11134201-8261s-mjgikx18a8zo43",
                    "sg-11134201-8262f-mjgikxj9v3ep65",
                    "sg-11134201-82616-mjgiky9zwhl20e",
                    "sg-11134201-825zl-mjgikysnixaf28"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 58690000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 310431845941,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 58690000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52254638680,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261d-mjgikp31b2tde2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":443,\"model_id\":310431845941,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261d-mjgikp31b2tde2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":443,\"model_id\":310431845941,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52254638680",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51904624562,
              "shopid": 1542929270,
              "name": "Stainless Steel Wat Bands for Garmin Fenix 3/5/5X/5S Easy Quick tall Fit Link Replacement Smart Wat Strap 20mm 22mm 26mm",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-8262q-mjgik5fj78xx35",
              "images": [
                "sg-11134201-8262q-mjgik5fj78xx35",
                "sg-11134201-8262d-mjgik5xdoef8e5",
                "sg-11134201-8260e-mjgik6kjf9c544",
                "sg-11134201-8261l-mjgik7bbzyfbf9",
                "sg-11134201-82630-mjgik844zr432b",
                "sg-11134201-8261p-mjgik8s7h4hyff",
                "sg-11134201-82614-mjgik9g1dfcz43",
                "sg-11134201-8260f-mjgik9xp6gw5a2",
                "sg-11134201-8260p-mjgikab7w7b7fa"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363609,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 110210000000,
              "price_min": 110210000000,
              "price_max": 110210000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Black",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134201-8260f-mjgik9xp6gw5a2",
                    "sg-11134201-8260p-mjgikab7w7b7fa"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "26mm Fenix 6X Pro",
                    "20mm",
                    "22mm",
                    "26mm",
                    "20mm(Fenix 5S)",
                    " 20mm Fenix 6S Pro",
                    "22mm(Fenix 5)",
                    "22mm Fenix 6 Pro",
                    "26mm Fenix 5X 3HR"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 110210000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 340431249476,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 110210000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51904624562,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262q-mjgik5fj78xx35\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":444,\"model_id\":340431249476,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262q-mjgik5fj78xx35\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":444,\"model_id\":340431249476,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51904624562",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40028030775,
              "shopid": 1690895025,
              "name": "Smart Watch Full Press Screen Heart Rate Monitor Blood Pressure Blood Oxygen Sleep Monitor Pedometer Bracelet Watches",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-8262r-mjgik1jd29zb5c",
              "images": [
                "sg-11134201-8262r-mjgik1jd29zb5c",
                "sg-11134201-825zz-mjgik1qjd3wl90",
                "sg-11134201-8262j-mjgik281ct8k3d",
                "sg-11134201-8261e-mjgik2vf515023",
                "sg-11134201-82608-mjgik35no2yred",
                "sg-11134201-8262w-mjgik3im3fnre0",
                "sg-11134201-82624-mjggaf9i0poj15",
                "sg-11134201-825zz-mjggafd459mr50",
                "sg-11134201-825zw-mjgik4hnrabma1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363602,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 100713300000,
              "price_min": 100713300000,
              "price_max": 100713300000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Red"
                  ],
                  "images": [
                    "sg-11134201-8262w-mjgik3im3fnre0"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 100713300000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 405431255916,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 100713300000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UrbanSkena",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40028030775,
            "shopid": 1690895025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262r-mjgik1jd29zb5c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":445,\"model_id\":405431255916,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262r-mjgik1jd29zb5c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":445,\"model_id\":405431255916,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40028030775",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55904633894,
              "shopid": 1690895025,
              "name": "ChiBear 1000mAh Military Outdoor Smart Watch Men Sports Fitness Compass 3ATM Waterproof Bluetooth Call Smartwatch Woman 2025 New",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-8261z-mjgigw7fmmtd34",
              "images": [
                "sg-11134201-8261z-mjgigw7fmmtd34",
                "sg-11134201-8262y-mjgigxctxrswa2",
                "sg-11134201-8260f-mjgigy2ymtc322",
                "sg-11134201-8262p-mjgigyvonrpg65",
                "sg-11134201-82623-mjgigzl0r8jrfc",
                "sg-11134201-8260a-mjgih0wc6ltz28",
                "sg-11134201-8262j-mjgih1kdni11ac",
                "sg-11134201-825zl-mjgih27uzi1283",
                "sg-11134201-8261h-mjgih2t2krur9e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363473,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 88527400000,
              "price_min": 88527400000,
              "price_max": 88527400000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Brown silicone",
                    "Camouflage silicone",
                    "Black mesh strap",
                    "Black steel strap",
                    "Black steel 68",
                    "Black leather strap",
                    "Silver mesh strap",
                    "Silver steel strap",
                    "Silver steel 68",
                    "Brown leather strap",
                    "Black silicone",
                    "Orange silicone"
                  ],
                  "images": [
                    "sg-11134201-8261z-mjgigw7fmmtd34",
                    "sg-11134201-8261h-mjgih2t2krur9e",
                    "sg-11134201-8261o-mjgih3vgklxh6d",
                    "sg-11134201-82601-mjgih4imqvi886",
                    "sg-11134201-8261x-mjgih5711wjnbb",
                    "sg-11134201-82630-mjgih5w1ws921f",
                    "sg-11134201-82607-mjgih7auibcz87",
                    "sg-11134201-8260w-mjgih8otue4l20",
                    "sg-11134201-825zu-mjgiha2bjk7ab5",
                    "sg-11134201-8262q-mjgihbh4ugp38d",
                    "sg-11134201-8262k-mjgihc0vssuba3",
                    "sg-11134201-8261k-mjgihcyatedf17"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "1000mAh Battery"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 88527400000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435431242335,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 88527400000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UrbanSkena",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55904633894,
            "shopid": 1690895025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261z-mjgigw7fmmtd34\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":452,\"model_id\":435431242335,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261z-mjgigw7fmmtd34\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":452,\"model_id\":435431242335,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55904633894",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48104649072,
              "shopid": 1690895025,
              "name": "Speaker Support For TF Cards Ideal For Running And Sports",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699
              ],
              "image": "sg-11134201-825zy-mjgij2z8c6itb7",
              "images": [
                "sg-11134201-825zy-mjgij2z8c6itb7",
                "sg-11134201-8260u-mjgij38indvl17",
                "sg-11134201-825zm-mjgij3mnajggac",
                "sg-11134201-8261i-mjgij3y2gxkw3e",
                "sg-11134201-8262z-mjgij4bggqv681",
                "sg-11134201-8260e-mjgij4ox2o7bbf",
                "sg-11134201-82625-mjgij54zelmq1f",
                "sg-11134201-8262a-mjgij5egnqwx11",
                "sg-11134201-8260s-mjgij5krjv9cac"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363556,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 85761800000,
              "price_min": 85761800000,
              "price_max": 85761800000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Blue"
                  ],
                  "images": [
                    "sg-11134201-825zy-mjgij2z8c6itb7"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 85761800000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 395431250191,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 85761800000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UrbanSkena",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48104649072,
            "shopid": 1690895025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zy-mjgij2z8c6itb7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":447,\"model_id\":395431250191,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zy-mjgij2z8c6itb7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":447,\"model_id\":395431250191,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48104649072",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47804644599,
              "shopid": 1542929270,
              "name": "QuickFit Silicone Wat Band For Garmin Fenix 8 PRO 8x 8 E 7 7X/Forerunner 970/Epix Pro/Enduro 3 Tactix 8 26mm 22mm Sports Strap",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-825zr-mjgih9v3buv860",
              "images": [
                "sg-11134201-825zr-mjgih9v3buv860",
                "sg-11134201-82635-mjgihawk737rc4",
                "sg-11134201-8260j-mjgihcdt0lxec4",
                "sg-11134201-8262x-mjgihdj8hvy9f7",
                "sg-11134201-8262u-mjgiheo4fh1e36",
                "sg-11134201-8260q-mjgihfmqofsze1",
                "sg-11134201-8262s-mjgihgs9iio303",
                "sg-11134201-8260u-mjgihhnhh9mp51",
                "sg-11134201-8261v-mjgihiok6ltt9d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363508,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 27870000000,
              "price_min": 27870000000,
              "price_max": 27870000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "b-Black Yellow",
                    "b-Army Green Black",
                    "b-White Black",
                    "b-Black Red",
                    "b-Black Gray",
                    "b-Yellow Black",
                    "b-Carbon Black",
                    "b-Red Black",
                    "b-Gray Orange",
                    "b-Green Black",
                    "b-Starlight Orange",
                    "b-Light Green Black",
                    "a-Starlight Orange",
                    "a-Green Black",
                    "a-Red Black",
                    "a- Army Green Black",
                    "a-Carbon Gray Orange",
                    "a-Black Gray",
                    "a-Black Red",
                    "a-Orange Black",
                    "a-Blue Black",
                    "a-White Blue",
                    "Black",
                    "Rock Green",
                    "Orange",
                    "Midnight Blue",
                    "Yellow",
                    "Green"
                  ],
                  "images": [
                    "sg-11134201-8260u-mjgihhnhh9mp51",
                    "sg-11134201-8261v-mjgihiok6ltt9d",
                    "sg-11134201-8261m-mjgihk8cgm4l3d",
                    "sg-11134201-8262f-mjgihlc59a0z82",
                    "sg-11134201-8261i-mjgihmd5jklh0f",
                    "sg-11134201-8260b-mjgihnn63zer2a",
                    "sg-11134201-8260o-mjgihorkog7a35",
                    "sg-11134201-8260o-mjgihpnuopa825",
                    "sg-11134201-8262z-mjgihqid68zm13",
                    "sg-11134201-8262u-mjgihrhli96ree",
                    "sg-11134201-82625-mjgihtjgav40b4",
                    "sg-11134201-8260k-mjgihuzn1fk507",
                    "sg-11134201-8261p-mjgihvnumtc656",
                    "sg-11134201-82619-mjgihwbx9rev85",
                    "sg-11134201-82620-mjgihwwowiyr05",
                    "sg-11134201-8261h-mjgihxkrp6gzf2",
                    "sg-11134201-8262y-mjgihy0mccg7e3",
                    "sg-11134201-8261a-mjgihyogpjpf9c",
                    "sg-11134201-825zn-mjgihz7lnqpv09",
                    "sg-11134201-8262v-mjgihzoqnnd006",
                    "sg-11134201-8260s-mjgii04lf2mc33",
                    "sg-11134201-8262t-mjgii0maqups8c",
                    "sg-11134201-8262m-mjgii12h3i85a0",
                    "sg-11134201-82608-mjgii1nzhvcxd0",
                    "sg-11134201-82632-mjgii2jnowzpa8",
                    "sg-11134201-8260o-mjgii36t1q84d7",
                    "sg-11134201-8260u-mjgii3lb6zgm3c",
                    "sg-11134201-8261g-mjgii451kao06d"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "1Pcs QuickFit 26mm",
                    "1Pcs QuickFit 22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 27870000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 297332799494,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 27870000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47804644599,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zr-mjgih9v3buv860\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":448,\"model_id\":297332799494,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zr-mjgih9v3buv860\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":448,\"model_id\":297332799494,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47804644599",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44954658677,
              "shopid": 1690895025,
              "name": "LIGE New GPS Tracker Smart Watch Men 143 AMOLED Screen 5ATM Waterproof Watches Bluetooth Call Outdoor Sports Smartwatch 2025",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-82627-mjgihjxa5uklca",
              "images": [
                "sg-11134201-82627-mjgihjxa5uklca",
                "sg-11134201-82615-mjgihktmfm6824",
                "sg-11134201-82632-mjgihlgc0wea92",
                "sg-11134201-82633-mjgihm1hjq4j6d",
                "sg-11134201-82616-mjgihmj0edj928",
                "sg-11134201-8262s-mjgihn0tl69y13",
                "sg-11134201-8260u-mjgihnjadvr4f0",
                "sg-11134201-82613-mjgihnsxymm91c",
                "sg-11134201-8261l-mjgiho3pewav95"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363489,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 187927700000,
              "price_min": 187927700000,
              "price_max": 187927700000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "mesh belt black",
                    "mesh belt silver",
                    "black",
                    "grey",
                    "steel strip black",
                    "steel strip silver"
                  ],
                  "images": [
                    "sg-11134201-82627-mjgihjxa5uklca",
                    "sg-11134201-8261l-mjgiho3pewav95",
                    "sg-11134201-82635-mjgihocks45hd7",
                    "sg-11134201-8262c-mjgihomjpm9y16",
                    "sg-11134201-82621-mjgihoymdj417c",
                    "sg-11134201-825zm-mjgihp84ho1xd2"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 187927700000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 330431242789,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 187927700000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UrbanSkena",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44954658677,
            "shopid": 1690895025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82627-mjgihjxa5uklca\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":451,\"model_id\":330431242789,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82627-mjgihjxa5uklca\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":451,\"model_id\":330431242789,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44954658677",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52004638529,
              "shopid": 1542929270,
              "name": "2025 High Quality Men's Automatic Wat with Stylish Sports Silicone Strap  Waterproof Meanical Wates for Active Lifestyles",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-8262f-mjgie3d7naip47",
              "images": [
                "sg-11134201-8262f-mjgie3d7naip47",
                "sg-11134201-8260j-mjgie40lxtdud6",
                "sg-11134201-82624-mjgie4vgk4jq32",
                "sg-11134201-8260d-mjgie5qya1hga4",
                "sg-11134201-8260x-mjgie6eyax38b1",
                "sg-11134201-8262p-mjgie7bejym82a",
                "sg-11134201-8261b-mjgie8nehjpi4f",
                "sg-11134201-8260w-mjgie95q7ls2c3",
                "sg-11134201-8262j-mjgie9xtyhvr4d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363335,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 521680000000,
              "price_min": 521680000000,
              "price_max": 521680000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "WHITE",
                    "Blue",
                    "Rose",
                    "Silver",
                    "White carbon fiber",
                    "Black carbon fiber"
                  ],
                  "images": [
                    "sg-11134201-8260w-mjgie95q7ls2c3",
                    "sg-11134201-8262j-mjgie9xtyhvr4d",
                    "sg-11134201-8260a-mjgieaf9vr4074",
                    "sg-11134201-8261b-mjgieauaslxfb7",
                    "sg-11134201-8262o-mjgiecioh1539c",
                    "sg-11134201-8260h-mjgieepvxwxyfb"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 521680000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 420431228807,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 521680000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52004638529,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262f-mjgie3d7naip47\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":454,\"model_id\":420431228807,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262f-mjgie3d7naip47\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":454,\"model_id\":420431228807,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52004638529",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40628010728,
              "shopid": 1690895025,
              "name": "LIGE New Sport Women Smart Watch 183 HD Voice Calling Fitness Tracker Heart Rate Blood Pressure Men Smartwatch For iOS Android",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-8260u-mjgieljx7e2p8c",
              "images": [
                "sg-11134201-8260u-mjgieljx7e2p8c",
                "sg-11134201-8260h-mjgiemkeiz2e09",
                "sg-11134201-82603-mjgiengo2ex1d1",
                "sg-11134201-825zw-mjgienrzcc8z0a",
                "sg-11134201-82621-mjgieo2uji0z24",
                "sg-11134201-8261g-mjgieofqs5c2db",
                "sg-11134201-8261r-mjgieot2sbnn65",
                "sg-11134201-82603-mjgiep34okxz36",
                "sg-11134201-825zm-mjgiepap2jgldb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363352,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 72218500000,
              "price_min": 72218500000,
              "price_max": 72218500000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Green",
                    "Pink-1",
                    "Mesh Silver",
                    "Mesh Black",
                    "Gray",
                    "Black-1",
                    "Purple",
                    "Pink-2",
                    "Steel Black",
                    "Mesh Pink",
                    "Black-2",
                    "Steel Silver"
                  ],
                  "images": [
                    "sg-11134201-825zm-mjgiepap2jgldb",
                    "sg-11134201-8261r-mjgiephd42rm7f",
                    "sg-11134201-8260f-mjgiepnikwlh37",
                    "sg-11134201-825zl-mjgiepvm7d391a",
                    "sg-11134201-8261m-mjgieq20khz89a",
                    "sg-11134201-8262n-mjgieq8zvzeuba",
                    "sg-11134201-8260u-mjgieljx7e2p8c",
                    "sg-11134201-82623-mjgieqh6cxs6c2",
                    "sg-11134201-825zt-mjgier0umebr30",
                    "sg-11134201-8260b-mjgier7jad531f",
                    "sg-11134201-8261a-mjgierudd88y8c",
                    "sg-11134201-82611-mjgies3979c3d7"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "HD Call Smart Watch"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 72218500000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 385431235963,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 72218500000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UrbanSkena",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40628010728,
            "shopid": 1690895025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjgieljx7e2p8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":453,\"model_id\":385431235963,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjgieljx7e2p8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":453,\"model_id\":385431235963,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40628010728",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57704628976,
              "shopid": 1690895025,
              "name": "Smart Watch Full Press Screen Heart Rate Monitor Blood Pressure Blood Oxygen Sleep Monitor Pedometer Bracelet Watches",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-8262s-mjgic9wea0oyb0",
              "images": [
                "sg-11134201-8262s-mjgic9wea0oyb0",
                "sg-11134201-82608-mjgicakvnz0g0e",
                "sg-11134201-8260j-mjgicb0ami9uea",
                "sg-11134201-8260z-mjgicbh96oshdb",
                "sg-11134201-82634-mjgicbyxoyyr43",
                "sg-11134201-82614-mjgiccj29kw6c7",
                "sg-11134201-8261n-mjgicctqve9zfa",
                "sg-11134201-8261u-mjfbfs89ghz625",
                "sg-11134201-8262p-mjgicdw9e32fe7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363240,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 104280800000,
              "price_min": 104280800000,
              "price_max": 104280800000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Red"
                  ],
                  "images": [
                    "sg-11134201-8262s-mjgic9wea0oyb0"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 104280800000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 410431222302,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 104280800000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UrbanSkena",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57704628976,
            "shopid": 1690895025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262s-mjgic9wea0oyb0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":457,\"model_id\":410431222302,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262s-mjgic9wea0oyb0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":457,\"model_id\":410431222302,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57704628976",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57104624419,
              "shopid": 1690895025,
              "name": "G50 smartwatch 157 splay flashlight blood sugar heart rate blood pressure blood oxygen Bluetooth call smartwatch",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-8262z-mjgibx9w39q8d1",
              "images": [
                "sg-11134201-8262z-mjgibx9w39q8d1",
                "sg-11134201-825zu-mjgibxsfcdtxce",
                "sg-11134201-8262t-mjgibyft7ev691",
                "sg-11134201-8261t-mjgibz2czhmo3a",
                "sg-11134201-8262u-mjgibzmq9c78ba",
                "sg-11134201-8260b-mjgic0dtafwh15",
                "sg-11134201-8261e-mjgic15mtedhf6",
                "sg-11134201-8262k-mjgic1lia29s78",
                "sg-11134201-82600-mjgic22eytjaf4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363226,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 75765300000,
              "price_min": 75765300000,
              "price_max": 75765300000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Same as picture"
                  ],
                  "images": [
                    "sg-11134201-8262k-mjgic1lia29s78"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 75765300000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 315431798500,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 75765300000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UrbanSkena",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57104624419,
            "shopid": 1690895025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262z-mjgibx9w39q8d1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":458,\"model_id\":315431798500,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262z-mjgibx9w39q8d1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":458,\"model_id\":315431798500,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57104624419",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44554649513,
              "shopid": 1542929270,
              "name": "Silicone Strap For Amazfit Active Edge (A2212) Sport Smart Wat Soft Bracelet WristBand Case Accessories Huami ActiveEdge",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-8260q-mjgidbh1alfk04",
              "images": [
                "sg-11134201-8260q-mjgidbh1alfk04",
                "sg-11134201-8261f-mjgidc3b4ft2f9",
                "sg-11134201-82628-mjgidcp7280582",
                "sg-11134201-825zv-mjgidd6wnu2r07",
                "sg-11134201-8260k-mjgiddptj7ya0e",
                "sg-11134201-8261f-mjgide904d8n9b",
                "sg-11134201-8262b-mjgiderc4avb96",
                "sg-11134201-8262e-mjgidf6jfh8g90",
                "sg-11134201-82603-mjgidfmjyu4n55"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363292,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 22810000000,
              "price_min": 22810000000,
              "price_max": 22810000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Light Gray",
                    "Dark Purple",
                    "Dark Blue",
                    "Pink",
                    "Green",
                    "Red",
                    "black",
                    "White"
                  ],
                  "images": [
                    "sg-11134201-8262e-mjgidf6jfh8g90",
                    "sg-11134201-82603-mjgidfmjyu4n55",
                    "sg-11134201-8262k-mjgidg1k0sg430",
                    "sg-11134201-8260x-mjgidgdrojk652",
                    "sg-11134201-82631-mjgidgpxs2dg49",
                    "sg-11134201-82618-mjgidh85ww7552",
                    "sg-11134201-8260o-mjgidhlf85c76f",
                    "sg-11134201-8261n-mjgidi1q6juo28"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 22810000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 345431223508,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 22810000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44554649513,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260q-mjgidbh1alfk04\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":456,\"model_id\":345431223508,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260q-mjgidbh1alfk04\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":456,\"model_id\":345431223508,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44554649513",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55104624318,
              "shopid": 1690895025,
              "name": "2025 New Fashion Smartwatch Health Monitor Sports Mode Bluetooth Call Fitness IP67 Waterproof Smart Watches For Men Women",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-825zr-mjgib0tuf7yf42",
              "images": [
                "sg-11134201-825zr-mjgib0tuf7yf42",
                "sg-11134201-82617-mjgib1n0px5216",
                "sg-11134201-82619-mjgib2phzqx19b",
                "sg-11134201-82632-mjgib3hc3oqo32",
                "sg-11134201-82614-mjgib4e40q2u2f",
                "sg-11134201-82627-mjgib5bji803a3",
                "sg-11134201-82600-mjgib6e4wwe8b9",
                "sg-11134201-8262s-mjgib7s6cs8y73",
                "sg-11134201-82616-mjgib8h9v85eff"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363196,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 72882400000,
              "price_min": 72882400000,
              "price_max": 72882400000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black Steel",
                    "Sliver Steel",
                    "Gold Steel",
                    "Gold Mesh",
                    "Black Mesh",
                    "Black Silicone",
                    "Sliver Mesh",
                    "Gray Silicone",
                    "Pink Silicone"
                  ],
                  "images": [
                    "sg-11134201-825zr-mjgib0tuf7yf42",
                    "sg-11134201-82616-mjgib8h9v85eff",
                    "sg-11134201-82622-mjgib9mkwbuo2a",
                    "sg-11134201-8262k-mjgibayeicxv90",
                    "sg-11134201-825zn-mjgibbt2ja4ne6",
                    "sg-11134201-8262m-mjgibd0bx2wz80",
                    "sg-11134201-8262a-mjgibdpdsft1bc",
                    "sg-11134201-8262o-mjgibehgagw020",
                    "sg-11134201-82603-mjgibf92k2kl3a"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 72882400000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435431212749,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 72882400000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UrbanSkena",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55104624318,
            "shopid": 1690895025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zr-mjgib0tuf7yf42\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":461,\"model_id\":435431212749,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zr-mjgib0tuf7yf42\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":461,\"model_id\":435431212749,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55104624318",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51304628934,
              "shopid": 1690895025,
              "name": "ECG PPG Health Smart Watch Women Men Blue Tooth Call Body Temperature SOS Sports Fitness Waterproof Smartwatch Weather Stopwatch",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-8261f-mjgi9o1zkjr46e",
              "images": [
                "sg-11134201-8261f-mjgi9o1zkjr46e",
                "sg-11134201-82615-mjgi9ob72kn801",
                "sg-11134201-82613-mjgi9oo1mtja7e",
                "sg-11134201-8260h-mjgi9p209p8h4e",
                "sg-11134201-8262u-mjgi9pk60uf46f",
                "sg-11134201-8262y-mjgi9pxtf85f51",
                "sg-11134201-825zq-mjgi9qb7ug3n79",
                "sg-11134201-8260e-mjgi9qn1jbwnb7",
                "sg-11134201-8262n-mjgi9qvngmbpab"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363117,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 173027500000,
              "price_min": 173027500000,
              "price_max": 173027500000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "BKBKS",
                    "SVGRS",
                    "RGPIS"
                  ],
                  "images": [
                    "sg-11134201-8262n-mjgi9qvngmbpab",
                    "sg-11134201-82632-mjgi9r6f6pz77c",
                    "sg-11134201-8261f-mjgi9o1zkjr46e"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 173027500000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 287332790996,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 173027500000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UrbanSkena",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51304628934,
            "shopid": 1690895025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261f-mjgi9o1zkjr46e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":463,\"model_id\":287332790996,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261f-mjgi9o1zkjr46e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":463,\"model_id\":287332790996,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51304628934",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44128020489,
              "shopid": 1690895025,
              "name": "MK100 Smart Watch Men Outdoor Sports GPS Positioning Flashlight Altitude  Air Pressure BT Calling Health Monitoring Smartwatch",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-8260q-mjgi8olznz0n27",
              "images": [
                "sg-11134201-8260q-mjgi8olznz0n27",
                "sg-11134201-825zn-mjgi8oy7wsn53b",
                "sg-11134201-8260f-mjgi8partm2v1f",
                "sg-11134201-8262i-mjgi8pnoj5s529",
                "sg-11134201-8260f-mjgi8q4epc7956",
                "sg-11134201-8262p-mjgi8qla2akk76",
                "sg-11134201-825zl-mjgi8r79o45i2a",
                "sg-11134201-825zp-mjgi8rlcljwjfe",
                "sg-11134201-8261w-mjgi8rxv57ggc5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363074,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 144053600000,
              "price_min": 144053600000,
              "price_max": 144053600000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Orange",
                    "Silver",
                    "Silver Steel",
                    "black",
                    "Black Steel"
                  ],
                  "images": [
                    "sg-11134201-825zp-mjgi8rlcljwjfe",
                    "sg-11134201-8261w-mjgi8rxv57ggc5",
                    "sg-11134201-82607-mjgi8sfpgs9280",
                    "sg-11134201-8262n-mjgi8t0snbwna5",
                    "sg-11134201-82619-mjgi8tiddczm4b"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 144053600000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 325431215147,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 144053600000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UrbanSkena",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44128020489,
            "shopid": 1690895025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260q-mjgi8olznz0n27\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":464,\"model_id\":325431215147,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260q-mjgi8olznz0n27\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":464,\"model_id\":325431215147,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44128020489",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52354624384,
              "shopid": 1542929270,
              "name": "22/26mm QuickFit Paraute Strap For Garmin Forerunner955/965/935/945 Band Nylon Elastic Magnetic Strap for Gramin Fenix7/7pro",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-825zy-mjgi5x15tczk88",
              "images": [
                "sg-11134201-825zy-mjgi5x15tczk88",
                "sg-11134201-8261s-mjgi5y0zc3k48f",
                "sg-11134201-82627-mjgi5z944nia0c",
                "sg-11134201-8261t-mjgi5zlrwhkz74",
                "sg-11134201-82627-mjgi602i8bur87",
                "sg-11134201-825zt-mjgi61t1sglj6b",
                "sg-11134201-8260c-mjgi62l1hb7o1e",
                "sg-11134201-8262b-mjgi62zaklj5f9",
                "sg-11134201-8261j-mjgi63p861ad79"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362951,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 91810000000,
              "price_min": 91810000000,
              "price_max": 91810000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "StyleB wine red",
                    "StyleB blue",
                    "StyleB black",
                    "StyleA Gray",
                    "StyleA meat pink",
                    "StyleA pine green"
                  ],
                  "images": [
                    "sg-11134201-8262b-mjgi62zaklj5f9",
                    "sg-11134201-8261j-mjgi63p861ad79",
                    "sg-11134201-8260k-mjgi656t8mbrc6",
                    "sg-11134201-8261j-mjgi65w1bbicff",
                    "sg-11134201-8260w-mjgi66ap728220",
                    "sg-11134201-8262k-mjgi670zs7ice5"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "22mm",
                    "26mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 91810000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 345431197755,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 91810000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52354624384,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zy-mjgi5x15tczk88\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":474,\"model_id\":345431197755,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zy-mjgi5x15tczk88\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":474,\"model_id\":345431197755,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52354624384",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49404644395,
              "shopid": 1542929270,
              "name": "22mm Easy Fit Nylon Sport Strap For For Xiaomi Wat S4 Sport /2 Pro / S3 S2 46MM / Mi S1 Active Bracelet Watband",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-82631-mjgi8k0hmk1vf8",
              "images": [
                "sg-11134201-82631-mjgi8k0hmk1vf8",
                "sg-11134201-8261y-mjgi8kvh5wck61",
                "sg-11134201-825zv-mjgi8lenoa2t98",
                "sg-11134201-825zw-mjgi8m1rl2px38",
                "sg-11134201-8261f-mjgi8mlu0gzm6c",
                "sg-11134201-8262q-mjgi8n1tf1tv31",
                "sg-11134201-825zo-mjgi8njshybpee",
                "sg-11134201-8261v-mjgi8nvn8t1f60",
                "sg-11134201-8260m-mjgi8oegokxz25"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363072,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 37530000000,
              "price_min": 37530000000,
              "price_max": 37530000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Black",
                    "Black ArmyGreen",
                    "Black Camouflage",
                    "Navy Blue",
                    "Orange",
                    "Black Orange",
                    "ArmyGreen"
                  ],
                  "images": [
                    "sg-11134201-8261v-mjgi8nvn8t1f60",
                    "sg-11134201-8260m-mjgi8oegokxz25",
                    "sg-11134201-825zu-mjgi8p6x3zly27",
                    "sg-11134201-825zo-mjgi8puk9bt323",
                    "sg-11134201-8262u-mjgi8qjglb7pa7",
                    "sg-11134201-8262m-mjgi8r8aqjnm5f",
                    "sg-11134201-8260l-mjgi8rq9z5l3e5"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "22MM"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 37530000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435431208645,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 37530000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49404644395,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82631-mjgi8k0hmk1vf8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":465,\"model_id\":435431208645,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82631-mjgi8k0hmk1vf8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":465,\"model_id\":435431208645,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49404644395",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48804644323,
              "shopid": 1542929270,
              "name": "Bezel Ring Styling Frame Case For Garmin Fenix 5 5 Plus 6 6X Pro Smart Wat Stainless Steel Cover Anti-scrat Protection Rings",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699
              ],
              "image": "sg-11134201-825zq-mjgi89sb9af847",
              "images": [
                "sg-11134201-825zq-mjgi89sb9af847",
                "sg-11134201-8262o-mjgi8a6rubcw60",
                "sg-11134201-8262l-mjgi8ajyjgg7fe",
                "sg-11134201-8262y-mjgi8at64ah38a",
                "sg-11134201-8262e-mjgi8b1pw8hzbd",
                "sg-11134201-8261m-mjgi8b99xlhc92",
                "sg-11134201-82623-mjgi8blyg4cg2a",
                "sg-11134201-825zs-mjgi8bte8dflc4",
                "sg-11134201-8262x-mjgi8c0n9kox82"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363052,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 34540000000,
              "price_min": 34540000000,
              "price_max": 34540000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "B",
                    "C",
                    "D",
                    "E",
                    "F",
                    "A"
                  ],
                  "images": [
                    "sg-11134201-825zs-mjgi8bte8dflc4",
                    "sg-11134201-8262x-mjgi8c0n9kox82",
                    "sg-11134201-8262m-mjgi8c5uh3wn20",
                    "sg-11134201-8260o-mjgi8cdount212",
                    "sg-11134201-82620-mjgi8cjjbf2ec8",
                    "sg-11134201-8262f-mjgi8cpi8cn59d"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "22mm Fenix 6 6Pro",
                    "22mm Fenix 5 5Plus",
                    "26mm Fenix 6X Pro",
                    "26mm For Fenix 6X"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 34540000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 400431210147,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 34540000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48804644323,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zq-mjgi89sb9af847\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":467,\"model_id\":400431210147,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zq-mjgi89sb9af847\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":467,\"model_id\":400431210147,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48804644323",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47454658563,
              "shopid": 1690895025,
              "name": "2025 New Smartwatch al to Answer Calls Calorie Tracking Heart Rate Blood Oxygen Monitoring Bluetooth SmartWatch men women Gift",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-8261x-mjgi6i49xyx32e",
              "images": [
                "sg-11134201-8261x-mjgi6i49xyx32e",
                "sg-11134201-8262i-mjgi6ivz6br71d",
                "sg-11134201-825zm-mjgi6jgfot1c24",
                "sg-11134201-8261u-mjgi6kff0ah094",
                "sg-11134201-8261h-mjgi6lfpb2ti43",
                "sg-11134201-8262k-mjgi6m07ggsnfd",
                "sg-11134201-8260b-mjgi6miqtvr4f8",
                "sg-11134201-82627-mjgi6n2ho1s3d1",
                "sg-11134201-8260m-mjgi6nm0jnyf38"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362982,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 61551400000,
              "price_min": 61551400000,
              "price_max": 61551400000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black",
                    "Gold steel",
                    "Silver steel",
                    "Black steel",
                    "Black leather",
                    "Brown Gold leather",
                    "Brown silver leather",
                    "Gold mesh",
                    "Silver mesh",
                    "Black mesh",
                    "Pink",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134201-82627-mjgi6n2ho1s3d1",
                    "sg-11134201-8260m-mjgi6nm0jnyf38",
                    "sg-11134201-8260d-mjgi6o5ntypy01",
                    "sg-11134201-82633-mjgi6oqug4cm94",
                    "sg-11134201-82603-mjgi6pbjz2tj0c",
                    "sg-11134201-8262o-mjgi6pu3t9fo8a",
                    "sg-11134201-8260q-mjgi6qsonnraab",
                    "sg-11134201-8261o-mjgi6rfgcu8731",
                    "sg-11134201-82627-mjgi6s892sxu2a",
                    "sg-11134201-8261d-mjgi6sre2cxw72",
                    "sg-11134201-8262m-mjgi6trmvq4kfe",
                    "sg-11134201-82600-mjgi6udj1xqd1d"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 61551400000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 292332785904,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 61551400000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UrbanSkena",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47454658563,
            "shopid": 1690895025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261x-mjgi6i49xyx32e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":472,\"model_id\":292332785904,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261x-mjgi6i49xyx32e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":472,\"model_id\":292332785904,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47454658563",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46454653984,
              "shopid": 1690895025,
              "name": "Smart Watch SK40 Bluetooth Calling 153inch Ultra Clear Large Screen Sports Fitness Tracker Health Monitor Men Smartwatch",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-8261r-mjgi8frucjk46f",
              "images": [
                "sg-11134201-8261r-mjgi8frucjk46f",
                "sg-11134201-82616-mjgi8fytcqv87d",
                "sg-11134201-82627-mjgi8g7wn2f7fd",
                "sg-11134201-8260f-mjgi8gfj68lh5a",
                "sg-11134201-8262u-mjgi8gowj092b4",
                "sg-11134201-82600-mjgi8gydv08z9c",
                "sg-11134201-8261j-mjgi8h6o2upz14",
                "sg-11134201-8262f-mjgi8hdhfdog4e",
                "sg-11134201-8260b-mjgi8hl140eb9f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768363058,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 120045300000,
              "price_min": 120045300000,
              "price_max": 120045300000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "black",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134201-8262f-mjgi8hdhfdog4e",
                    "sg-11134201-8260b-mjgi8hl140eb9f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 120045300000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 430431199693,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 120045300000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UrbanSkena",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46454653984,
            "shopid": 1690895025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261r-mjgi8frucjk46f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":466,\"model_id\":430431199693,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261r-mjgi8frucjk46f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":466,\"model_id\":430431199693,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46454653984",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49704653865,
              "shopid": 1542929270,
              "name": "Quick Fit Titanium Bracelet For Samsung Galaxy Wat 7 6 5 40mm 44mm Luxury No Gaps Band Classic 43 47mm 42 46mm 5Pro 45mm Strap",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-825zo-mjgi3f3mj30jd6",
              "images": [
                "sg-11134201-825zo-mjgi3f3mj30jd6",
                "sg-11134201-825zk-mjgi3fob9uyq5c",
                "sg-11134201-82619-mjgi3gb19a0yfd",
                "sg-11134201-82603-mjgi3gk9w1dy1a",
                "sg-11134201-82633-mjgi3h5dxfyc7e",
                "sg-11134201-8261n-mjgi3hr6o1l2a9",
                "sg-11134201-82612-mjgi3ie8a0aq0a",
                "sg-11134201-8262t-mjgi3ikwa51f03",
                "sg-11134201-8262a-mjgi3iql1rt1f7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362827,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 135280000000,
              "price_min": 135280000000,
              "price_max": 135280000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Black",
                    "Gray",
                    "Starlight",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134201-8262t-mjgi3ikwa51f03",
                    "sg-11134201-8262a-mjgi3iql1rt1f7",
                    "sg-11134201-825zv-mjgi3iwyh72921",
                    "sg-11134201-8260y-mjgi3j4si3uoc8"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 135280000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435431195179,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 135280000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49704653865,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zo-mjgi3f3mj30jd6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":477,\"model_id\":435431195179,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zo-mjgi3f3mj30jd6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":477,\"model_id\":435431195179,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49704653865",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49454644446,
              "shopid": 1542929270,
              "name": "2025 New Adventure Ready 42mm Men's Wat 8215 Movement 316L Steel Crystal Luminous Markers 100M Waterproof Timepiece wat for",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-82612-mjgi4ez8vw1zf2",
              "images": [
                "sg-11134201-82612-mjgi4ez8vw1zf2",
                "sg-11134201-8262k-mjgi4fb4iyo23c",
                "sg-11134201-8262q-mjgi4fieaupt40",
                "sg-11134201-8261f-mjgi4fs4ykg57e",
                "sg-11134201-82603-mjgi4fzrx8g7c2",
                "sg-11134201-8261s-mjgi4g70vo5c4f",
                "sg-11134201-8261q-mjgi4gdt69s207",
                "sg-11134201-8262m-mjgi4gkbh8g135",
                "sg-11134201-8261n-mjgi4gtvdxxi9e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362871,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 578490000000,
              "price_min": 578490000000,
              "price_max": 578490000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "grey"
                  ],
                  "images": [
                    "sg-11134201-8262m-mjgi4gkbh8g135"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 578490000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 272332781062,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 578490000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49454644446,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82612-mjgi4ez8vw1zf2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":476,\"model_id\":272332781062,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82612-mjgi4ez8vw1zf2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":476,\"model_id\":272332781062,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49454644446",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56704624266,
              "shopid": 1542929270,
              "name": "ADESDVIE AD2539 Quartz Wat Men ronograph Wat VK63 316L Stainless Steel 10Bar Waterproof Steel Strap BGW9 Super Luminous",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079
              ],
              "image": "sg-11134201-8261m-mjgi107zbmyp3f",
              "images": [
                "sg-11134201-8261m-mjgi107zbmyp3f",
                "sg-11134201-8261f-mjgi10kfssuffa",
                "sg-11134201-8261c-mjgi10zst5ae05",
                "sg-11134201-8262y-mjgi11gv1bly67",
                "sg-11134201-825zr-mjgi11zqz1fq1a",
                "sg-11134201-82632-mjgi12cc4rgj4b",
                "sg-11134201-8261m-mjgi12pdpw5j2c",
                "sg-11134201-8260n-mjgi130mkoowa2",
                "sg-11134201-8260t-mjgi13b78l4zfe"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362714,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 1563580000000,
              "price_min": 1563580000000,
              "price_max": 1563580000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "White",
                    "Blue",
                    "Black",
                    "Red"
                  ],
                  "images": [
                    "sg-11134201-8260n-mjgi130mkoowa2",
                    "sg-11134201-8260t-mjgi13b78l4zfe",
                    "sg-11134201-8262e-mjgi13luvabo43",
                    "sg-11134201-8260i-mjgi13xibf9e31"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1563580000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 420431172920,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1563580000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56704624266,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261m-mjgi107zbmyp3f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":481,\"model_id\":420431172920,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261m-mjgi107zbmyp3f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":481,\"model_id\":420431172920,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56704624266",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51954633802,
              "shopid": 1542929270,
              "name": "Quick Release Soft Suede Wat Strap for Seiko 18/20/22mm for Huawei Wat Gt3/Gt4 Bracelet 14/16mm Women Men Calfskin Wristband",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-82627-mjgi0nfahtz5ea",
              "images": [
                "sg-11134201-82627-mjgi0nfahtz5ea",
                "sg-11134201-8260t-mjgi0nvzrpc6fc",
                "sg-11134201-82602-mjgi0oawl2iq2a",
                "sg-11134201-8262i-mjgi0omo622pcb",
                "sg-11134201-8260s-mjgi0oyfhatce6",
                "sg-11134201-825zk-mjgi0pb75n9j16",
                "sg-11134201-82610-mjgi0pn14bgkac",
                "sg-11134201-8261k-mjgi0pvlr95249",
                "sg-11134201-8262c-mjgi0q2v7v28ee"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362699,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 33850000000,
              "price_min": 33850000000,
              "price_max": 33850000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Pink",
                    "light brown",
                    "Dark Brown",
                    "black",
                    "dark blue",
                    "Beige",
                    "Yellow Brown",
                    "Dark Grey",
                    "army green",
                    "Light Blue",
                    "Purple",
                    "Red",
                    "Light Grey"
                  ],
                  "images": [
                    "sg-11134201-8261k-mjgi0pvlr95249",
                    "sg-11134201-8262c-mjgi0q2v7v28ee",
                    "sg-11134201-82632-mjgi0qhvuxhf03",
                    "sg-11134201-8262p-mjgi0qs4cj5u9a",
                    "sg-11134201-8260d-mjgi0r1olxc675",
                    "sg-11134201-8262n-mjgi0ra2ymf803",
                    "sg-11134201-8261n-mjgi0rip5p8mf2",
                    "sg-11134201-825zu-mjgi0rtp00lheb",
                    "sg-11134201-8262d-mjgi0s2wqgw2a6",
                    "sg-11134201-82611-mjgi0sbhu9du04",
                    "sg-11134201-82621-mjgi0sjguyvae0",
                    "sg-11134201-8260m-mjgi0ssh54p0c4",
                    "sg-11134201-82607-mjgi0t0v7zt315"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "20mm",
                    "22mm",
                    "16mm",
                    "18mm",
                    "14mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 33850000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 420431177349,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 33850000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51954633802,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82627-mjgi0nfahtz5ea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":482,\"model_id\":420431177349,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82627-mjgi0nfahtz5ea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":482,\"model_id\":420431177349,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51954633802",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46904653733,
              "shopid": 1542929270,
              "name": "BERNY Automatic ve Wat for Men Super Luminous Original Design 20ATM Man Wristwat Sapphire Swim Sport Meanical Male Wat",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "sg-11134201-82618-mjgi1sk807wmf8",
              "images": [
                "sg-11134201-82618-mjgi1sk807wmf8",
                "sg-11134201-8261q-mjgi1t32jbpgc5",
                "sg-11134201-8260a-mjgi1thg2scm2e",
                "sg-11134201-8260y-mjgi1tu8ypz9fb",
                "sg-11134201-82624-mjgi1u5ew5xde3",
                "sg-11134201-8262n-mjgi1ufqrz0ic8",
                "sg-11134201-8261t-mjgi1unignb569",
                "sg-11134201-825zo-mjgi1uzd38quf7",
                "sg-11134201-82608-mjgi1vcnq7ls3a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362751,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 993180000000,
              "price_min": 993180000000,
              "price_max": 993180000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "AM339MS-A",
                    "AM339M-C",
                    "AM339M-GRN",
                    "AM339MS-GRN",
                    "AM339MS-C",
                    "AM339M-A"
                  ],
                  "images": [
                    "sg-11134201-825zo-mjgi1uzd38quf7",
                    "sg-11134201-82608-mjgi1vcnq7ls3a",
                    "sg-11134201-8260n-mjgi1vq1258n8f",
                    "sg-11134201-82635-mjgi1w34abd387",
                    "sg-11134201-82628-mjgi1wgg4veta1",
                    "sg-11134201-8260j-mjgi1wwq9oueb0"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 993180000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 380431182351,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 993180000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46904653733,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82618-mjgi1sk807wmf8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":479,\"model_id\":380431182351,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82618-mjgi1sk807wmf8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":479,\"model_id\":380431182351,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46904653733",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57654624186,
              "shopid": 1542929270,
              "name": "Back cover with battery For Garmin Fenix 5 GPS Wat housing case shell replacement repair part",
              "label_ids": [
                844931064601283,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-82601-mjghyn0anls38d",
              "images": [
                "sg-11134201-82601-mjghyn0anls38d",
                "sg-11134201-82619-mjghynbuscg479",
                "sg-11134201-825zt-mjghynwbc550cb",
                "sg-11134201-8262r-mjghyofl7a4mae",
                "sg-11134201-82625-mjghyos7c5xc56",
                "sg-11134201-8260c-mjghypi8k8hv9e",
                "sg-11134201-825zz-mjghypzjg8w707",
                "sg-11134201-8260p-mjghyq78lm9zb4",
                "sg-11134201-82615-mjghyqfvjdvra5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362603,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 104460000000,
              "price_min": 104460000000,
              "price_max": 104460000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Silver back cover",
                    "Black rear cover"
                  ],
                  "images": [
                    "sg-11134201-8260p-mjghyq78lm9zb4",
                    "sg-11134201-82615-mjghyqfvjdvra5"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "With battery",
                    "Without battery"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 104460000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 405431164193,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 104460000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57654624186,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82601-mjghyn0anls38d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":488,\"model_id\":405431164193,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82601-mjghyn0anls38d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":488,\"model_id\":405431164193,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57654624186",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56754624189,
              "shopid": 1542929270,
              "name": "Crazy Horse Leather band for Samsung Galaxy Wat 7/6/5/4/FE 18mm 20mm 22mm straps retro Bracelet for Huawei wat GT 5-4-3-pro",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-8262t-mjghy07g9rlya2",
              "images": [
                "sg-11134201-8262t-mjghy07g9rlya2",
                "sg-11134201-825zs-mjghy0n09jpjf1",
                "sg-11134201-8260n-mjghy1521eyq23",
                "sg-11134201-8261v-mjghy1kce5mo4e",
                "sg-11134201-8261u-mjghy20yp9tufd",
                "sg-11134201-8260v-mjghy2mfkuthca",
                "sg-11134201-8261u-mjghy3966pdt6d",
                "sg-11134201-825zu-mjghy3j6pssh74",
                "sg-11134201-8260f-mjghy3rnsv7rb2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362575,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 26260000000,
              "price_min": 26260000000,
              "price_max": 26260000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "01 black",
                    "07 green",
                    "04 gray",
                    "05 blue",
                    "06 red",
                    "03 brown",
                    "02 deep brown"
                  ],
                  "images": [
                    "sg-11134201-825zu-mjghy3j6pssh74",
                    "sg-11134201-8260f-mjghy3rnsv7rb2",
                    "sg-11134201-8260f-mjghy41qa70jdf",
                    "sg-11134201-8260v-mjghy49hm87942",
                    "sg-11134201-8260w-mjghy4h9ngg0b0",
                    "sg-11134201-8261l-mjghy4sr1vd0a5",
                    "sg-11134201-82633-mjghy5397x1ffa"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "20mm watch band",
                    "22mm watch band",
                    "18mm watch band"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 26260000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 425431168643,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 26260000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56754624189,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjghy07g9rlya2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":490,\"model_id\":425431168643,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjghy07g9rlya2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":490,\"model_id\":425431168643,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56754624189",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53204628817,
              "shopid": 1542929270,
              "name": "Metal Bezel For Garmin Fenix 8 47mm 51mm Smart Wat Bumper Cover For Garmin Fenix8 Shell Frame Protective Case Accessories",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-8262j-mjghzefy1xxi28",
              "images": [
                "sg-11134201-8262j-mjghzefy1xxi28",
                "sg-11134201-8260d-mjghzf169qfbed",
                "sg-11134201-82627-mjghzfo7x3pi71",
                "sg-11134201-8262a-mjghzguavzly8c",
                "sg-11134201-82606-mjghzhyotzbacf",
                "sg-11134201-825zw-mjghzijrfevbee",
                "sg-11134201-8260m-mjghzj0g5m9yed",
                "sg-11134201-8261i-mjghzjblp0jrc0",
                "sg-11134201-8261c-mjghzjk7gn46d0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362641,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 29250000000,
              "price_min": 29250000000,
              "price_max": 29250000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Black",
                    "Blue",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134201-8261i-mjghzjblp0jrc0",
                    "sg-11134201-8261c-mjghzjk7gn46d0",
                    "sg-11134201-825zo-mjghzju2rk029c"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "For Fenix 8 51mm",
                    "For Fenix 8 47mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 29250000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 315431770038,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 29250000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53204628817,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262j-mjghzefy1xxi28\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":484,\"model_id\":315431770038,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262j-mjghzefy1xxi28\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":484,\"model_id\":315431770038,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53204628817",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52404628870,
              "shopid": 1542929270,
              "name": "22mm 26mm Quickfit Nylon Wat Strap for Garmin Fenix 8pro Band for Garmin Epix Pro Gen 2 /Enduro 3/Descent Mk3i Woven Bracelet",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-8261d-mjghyy9iobuu7b",
              "images": [
                "sg-11134201-8261d-mjghyy9iobuu7b",
                "sg-11134201-8262a-mjghyz40krgg77",
                "sg-11134201-8262y-mjghz04tlqtj09",
                "sg-11134201-8262d-mjghz114qryc25",
                "sg-11134201-8262j-mjghz22vve2u3a",
                "sg-11134201-82605-mjghz2rqlqmc00",
                "sg-11134201-8262g-mjghz3jbz2tc98",
                "sg-11134201-8261l-mjghz3yq9s067b",
                "sg-11134201-8261n-mjghz4iiv5ky57"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362625,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 49490000000,
              "price_min": 49490000000,
              "price_max": 49490000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Gray",
                    "Army Green",
                    "StarLight",
                    "Black",
                    "Midnight Blue",
                    "Black Gray",
                    "Orange"
                  ],
                  "images": [
                    "sg-11134201-8261l-mjghz3yq9s067b",
                    "sg-11134201-8261n-mjghz4iiv5ky57",
                    "sg-11134201-8260v-mjghz506330ncd",
                    "sg-11134201-82602-mjghz5phh81wb3",
                    "sg-11134201-8261c-mjghz66h4ow75a",
                    "sg-11134201-82634-mjghz6x0c9ok25",
                    "sg-11134201-8261t-mjghz7hqoq2q08"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "QuickFit 22mm",
                    "QuickFit 26mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 49490000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 345431164724,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 49490000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52404628870,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261d-mjghyy9iobuu7b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":486,\"model_id\":345431164724,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261d-mjghyy9iobuu7b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":486,\"model_id\":345431164724,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52404628870",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51154633821,
              "shopid": 1542929270,
              "name": "22 26mm Ocean Strap For Garmin Fenix 7/7X/5/5 Plus/6/6 Pro Bracelet For Forerunner 965 Replacement Watband for tinct/Enduro",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-8262b-mjgi08wb8jk6c4",
              "images": [
                "sg-11134201-8262b-mjgi08wb8jk6c4",
                "sg-11134201-82614-mjgi09qy4tfo25",
                "sg-11134201-8260x-mjgi0agykphea3",
                "sg-11134201-8261v-mjgi0b369c7823",
                "sg-11134201-82627-mjgi0bou2wp1f5",
                "sg-11134201-8260e-mjgi0can1zb855",
                "sg-11134201-825zo-mjgi0cxbzdvrf1",
                "sg-11134201-82633-mjgi0dcwpt6pb6",
                "sg-11134201-81zuw-mik68jkbml8mf1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362683,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 43510000000,
              "price_min": 43510000000,
              "price_max": 43510000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Digital Camo",
                    "Camo Army Green",
                    "Camo Orange",
                    "Camo White",
                    "Black",
                    "Stone blue",
                    "White",
                    "Orange",
                    "Army green"
                  ],
                  "images": [
                    "sg-11134201-82633-mjgi0dcwpt6pb6",
                    "sg-11134201-81zuw-mik68jkbml8mf1",
                    "sg-11134201-81zur-mik68jsnvh8k83",
                    "sg-11134201-8262v-mjgi0el8kkchb6",
                    "sg-11134201-8261y-mjgi0ezi7k768a",
                    "sg-11134201-8262q-mjgi0fb0qr5w06",
                    "sg-11134201-8262b-mjgi0fj9il1g37",
                    "sg-11134201-8261e-mjgi0fyug2rncd",
                    "sg-11134201-8260b-mjgi0gd22137cd"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "Quick fit22mm",
                    "Quick fit26mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 43510000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 355431177029,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 43510000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51154633821,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262b-mjgi08wb8jk6c4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":483,\"model_id\":355431177029,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262b-mjgi08wb8jk6c4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":483,\"model_id\":355431177029,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51154633821",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46654653802,
              "shopid": 1542929270,
              "name": "OLEVS 6670 Meanical Fashion Wat Genuine Leather Watband Round-al Moon Phase Month splay",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232
              ],
              "image": "sg-11134201-82617-mjghyc74qc5faf",
              "images": [
                "sg-11134201-82617-mjghyc74qc5faf",
                "sg-11134201-8262c-mjghycp341l3c6",
                "sg-11134201-8261c-mjghyd8kjoqq21",
                "sg-11134201-82602-mjghydrq1gjl8a",
                "sg-11134201-82601-mjghye941vyfff",
                "sg-11134201-82620-mjghyeplivbbf1",
                "sg-11134201-82624-mjghyf6xqn0h07",
                "sg-11134201-82625-mjghyff67bief8",
                "sg-11134201-8260o-mjghyfp2k45f5c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362589,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 522370000000,
              "price_min": 522370000000,
              "price_max": 522370000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "D",
                    "C",
                    "B",
                    "A"
                  ],
                  "images": [
                    "sg-11134201-82625-mjghyff67bief8",
                    "sg-11134201-8260o-mjghyfp2k45f5c",
                    "sg-11134201-82611-mjghyfxljytga6",
                    "sg-11134201-825zx-mjghyg6ujda9e4"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 522370000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 370431170427,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 522370000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46654653802,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82617-mjghyc74qc5faf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":489,\"model_id\":370431170427,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82617-mjghyc74qc5faf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":489,\"model_id\":370431170427,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46654653802",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55954628785,
              "shopid": 1690895025,
              "name": "37V 500mAh Lipo Rechargeable Battery 582535 + JST 10mm 3Pin For MP3 GPS DVD Bluetooth Recorder Headset Smart Watch 582535",
              "label_ids": [
                844931064601283,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699
              ],
              "image": "sg-11134201-825zo-mjghwyntp5afaf",
              "images": [
                "sg-11134201-825zo-mjghwyntp5afaf",
                "sg-11134201-82632-mjghwyweoohw3f",
                "sg-11134201-8260w-mjghwzfewwsg07",
                "sg-11134201-8260q-mjghx0dgk64h17",
                "sg-11134201-8260j-mjghx0zmhjpid2",
                "sg-11134201-8262n-mjghx1iwbbpgaf",
                "sg-11134201-8261r-mjghx29oysch89",
                "sg-11134201-825zu-mjghx2ugfxmu23",
                "sg-11134201-8262r-mjghx3esmhvn8c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362527,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 27723700000,
              "price_min": 27723700000,
              "price_max": 27723700000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "1PCS",
                    "10PCS",
                    "2PCS",
                    "5PCS"
                  ],
                  "images": [
                    "sg-11134201-82632-mjghwyweoohw3f",
                    "sg-11134201-825zu-mjghx2ugfxmu23",
                    "sg-11134201-8262r-mjghx3esmhvn8c",
                    "sg-11134201-8260g-mjghx4eeqayr10"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 27723700000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 292332753858,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 27723700000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UrbanSkena",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55954628785,
            "shopid": 1690895025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zo-mjghwyntp5afaf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":492,\"model_id\":292332753858,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zo-mjghwyntp5afaf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":492,\"model_id\":292332753858,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55954628785",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47704644243,
              "shopid": 1542929270,
              "name": "Hemsut Garmin tinct Wat Band Quickfit Nylon Strap Woven Quickfit Loops For Fenix Forerunner Vivoactive 20mm 22mm 26mm",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-8260i-mjghwqvf5qf810",
              "images": [
                "sg-11134201-8260i-mjghwqvf5qf810",
                "sg-11134201-825zy-mjghwrmr8t1f5e",
                "sg-11134201-82611-mjghws6kcg0364",
                "sg-11134201-82602-mjghwsqtwt1i2d",
                "sg-11134201-8261c-mjghwta61gjrcd",
                "sg-11134201-8260r-mjghwtxuh5he5a",
                "sg-11134201-8261o-mjghwuo4k1dybc",
                "sg-11134201-8261k-mjghwvd9766825",
                "sg-11134201-8261m-mjghww16eww3eb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362520,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 106760000000,
              "price_min": 106760000000,
              "price_max": 106760000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "HGA125GRY",
                    "HGA125BLK",
                    "HGA125GRN",
                    "HGA125BLU",
                    "HGA125ORG"
                  ],
                  "images": [
                    "sg-11134201-8261k-mjghwvd9766825",
                    "sg-11134201-8261m-mjghww16eww3eb",
                    "sg-11134201-82621-mjghwws3fqptb5",
                    "sg-11134201-8262r-mjghwxlaxzidac",
                    "sg-11134201-8260h-mjghwyjxi6tjf2"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "S 165mm to 190mm",
                    "M 185mm to 210mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 106760000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 430431162351,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 106760000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47704644243,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260i-mjghwqvf5qf810\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":493,\"model_id\":430431162351,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260i-mjghwqvf5qf810\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":493,\"model_id\":430431162351,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47704644243",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46504644261,
              "shopid": 1542929270,
              "name": "26mm 22mm Quickfit Titanium Strap For Garmin Fenix 8/6/6X/6XPro/7/7X/5/5X/5XPlus Metal Release Wat Band For Forerunner 945 255",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-8260e-mjghwa77dbszef",
              "images": [
                "sg-11134201-8260e-mjghwa77dbszef",
                "sg-11134201-8260e-mjghwa77dbszef",
                "sg-11134201-8260a-mjghwb12ogli8b",
                "sg-11134201-825zw-mjghwbi03wn60c",
                "sg-11134201-8260k-mjghwc0q8but07",
                "sg-11134201-825zn-mjghwcljtbt0e1",
                "sg-11134201-82622-mjghwcvmj30i2d",
                "sg-11134201-8262s-mjghwd6sc9om06",
                "sg-11134201-82634-mjghwdhrtzid1f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362496,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 110900000000,
              "price_min": 110900000000,
              "price_max": 110900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "silver 02",
                    "Silver 03",
                    "Titanium color 02",
                    "Gray 03",
                    "Black 03",
                    "Black",
                    "Silver",
                    "Titanium gray 02",
                    "black 02"
                  ],
                  "images": [
                    "sg-11134201-8262s-mjghwd6sc9om06",
                    "sg-11134201-82634-mjghwdhrtzid1f",
                    "sg-11134201-82609-mjghwdt36oeca4",
                    "sg-11134201-8262f-mjghwe645c0754",
                    "sg-11134201-82619-mjghwenmvq4g81",
                    "sg-11134201-8262g-mjghwezwzz0gf2",
                    "sg-11134201-825zv-mjghwfbs91j8f0",
                    "sg-11134201-82631-mjghwfmdt91da0",
                    "sg-11134201-82627-mjghwfyi5kar2b"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 110900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 420431166425,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 110900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46504644261,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260e-mjghwa77dbszef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":494,\"model_id\":420431166425,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260e-mjghwa77dbszef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":494,\"model_id\":420431166425,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46504644261",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43478015610,
              "shopid": 1542929270,
              "name": "39mm black men's wat VK63 movement ronograph sapphire glass rubber strap business men's waterproof wristwat 10Bar",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079
              ],
              "image": "sg-11134201-825zu-mjghx6648g78bb",
              "images": [
                "sg-11134201-825zu-mjghx6648g78bb",
                "sg-11134201-8262z-mjghx6mpc2dce0",
                "sg-11134201-82613-mjghx75mtxc5f0",
                "sg-11134201-8260r-mjghx7qg2a6e4c",
                "sg-11134201-8262p-mjghx8daj6yu04",
                "sg-11134201-82625-mjghx8tce8078f",
                "sg-11134201-82610-mjghx9cgbw9052",
                "sg-11134201-8261h-mjghx9qafu2tf1",
                "sg-11134201-8261h-mjghxa57zw1yc1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362539,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 388050000000,
              "price_min": 388050000000,
              "price_max": 388050000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "OUMASHI- 4",
                    "NO LOGO- 3",
                    "OUMASHI- 3",
                    "NO LOGO- 2",
                    "NO LOGO- 4",
                    "OUMASHI- 2",
                    "NO LOGO- 1",
                    "OUMASHI- 1"
                  ],
                  "images": [
                    "sg-11134201-8261h-mjghx9qafu2tf1",
                    "sg-11134201-8261h-mjghxa57zw1yc1",
                    "sg-11134201-8262g-mjghxatibll2f3",
                    "sg-11134201-8261j-mjghxbf8u39ib3",
                    "sg-11134201-8260p-mjghxbvarz0lcd",
                    "sg-11134201-82604-mjghxchls002af",
                    "sg-11134201-8261y-mjghxd0niyv5b6",
                    "sg-11134201-82629-mjghxdez1cecdc"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "VK63 movement"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 388050000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 385431159200,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 388050000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43478015610,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zu-mjghx6648g78bb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":491,\"model_id\":385431159200,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zu-mjghx6648g78bb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":491,\"model_id\":385431159200,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43478015610",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54304638288,
              "shopid": 1542929270,
              "name": "For Garmin Fenix 7X 7 Pro 6 6X Pro 5X 5 Plus Sapphire Solar Wat Strap Bracelet Quick Release 26mm 22mm Silicone Band Wristband",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-82615-mjghsnd1zytj30",
              "images": [
                "sg-11134201-82615-mjghsnd1zytj30",
                "sg-11134201-825zx-mjghsnr96igydc",
                "sg-11134201-8260l-mjghso4d6osh1f",
                "sg-11134201-8260k-mjghsont258med",
                "sg-11134201-82633-mjghsphodblv2e",
                "sg-11134201-82621-mjghsptywz5z4e",
                "sg-11134201-8262p-mjghsqfyk8w496",
                "sg-11134201-82611-mjghsqnw95hf51",
                "sg-11134201-825zn-mjghsqzqx5hd9a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362333,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 27640000000,
              "price_min": 27640000000,
              "price_max": 27640000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Blue 1",
                    "Green 1",
                    "Red 1",
                    "Orange Black",
                    "Green Black",
                    "Black 1",
                    "Red Black",
                    "Pink",
                    "Midnight blue Black",
                    "Black Orange",
                    "Midnight blue 1",
                    "Yellow 1",
                    "Army green Black",
                    "Teal",
                    "Black Red",
                    "Black Grey",
                    "Purple 1",
                    "Sky blue 1",
                    "Gray 1",
                    "Duck Green 1",
                    "White 1",
                    "White Orange",
                    "Orange 1",
                    "Lake blue 1",
                    "Army green 1",
                    "White blue"
                  ],
                  "images": [
                    "sg-11134201-82611-mjghsqnw95hf51",
                    "sg-11134201-825zn-mjghsqzqx5hd9a",
                    "sg-11134201-825zl-mjghsrc0ly4i22",
                    "sg-11134201-82607-mjghsrqsmjgi16",
                    "sg-11134201-8261w-mjghsrz7n7d3d9",
                    "sg-11134201-82627-mjghss6ex5hg49",
                    "sg-11134201-81zww-mio2npmyczcz07",
                    "sg-11134201-82620-mjghssosk1dt73",
                    "sg-11134201-8261r-mjghst20w7wj26",
                    "sg-11134201-8262o-mjghstetff9i3e",
                    "sg-11134201-8260d-mjghstolexvlbb",
                    "sg-11134201-8262a-mjghstxicavaeb",
                    "sg-11134201-8261f-mjghsu92v1mo6a",
                    "sg-11134201-82606-mjghsun1t5vm61",
                    "sg-11134201-82629-mjghsv32mcqsdb",
                    "sg-11134201-825zq-mjghsvcy5lvmf1",
                    "sg-11134201-8262c-mjghsvpqm39c0b",
                    "sg-11134201-82625-mjghsw2uyy9s2c",
                    "sg-11134201-825zt-mjghswkxwwzpa0",
                    "sg-11134201-82616-mjghswvs25fod1",
                    "sg-11134201-825zl-mjghsx5unoxt95",
                    "sg-11134201-82631-mjghsxdcjr4556",
                    "sg-11134201-8261l-mjghsxpvrabk58",
                    "sg-11134201-8261e-mjghsxz2h7uv2b",
                    "sg-11134201-8260u-mjghsy7kw35t58",
                    "sg-11134201-8262l-mjghsyl538qoae"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "QuickFit 22mm",
                    "QuickFit 26mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 27640000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 325431142691,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 27640000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54304638288,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82615-mjghsnd1zytj30\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":502,\"model_id\":325431142691,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82615-mjghsnd1zytj30\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":502,\"model_id\":325431142691,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54304638288",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50154628822,
              "shopid": 1542929270,
              "name": "20mm 22mm Tropic Rubber Wat Band for Casio Seiko for New ving Quick Release Smart Wat Strap for  Samsung,Huawei,Huami",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-82631-mjghu7z53i8480",
              "images": [
                "sg-11134201-82631-mjghu7z53i8480",
                "sg-11134201-82633-mjghu8nnqepwe7",
                "sg-11134201-82602-mjghu8zc035we7",
                "sg-11134201-8260o-mjghu9qdcsg4fa",
                "sg-11134201-8262h-mjghuab344qt65",
                "sg-11134201-8261p-mjghubaajvgje3",
                "sg-11134201-8260c-mjghubny2dqb28",
                "sg-11134201-82605-mjghuc1jlc7692",
                "sg-11134201-8262e-mjghucbi65mt4f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362399,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 26030000000,
              "price_min": 26030000000,
              "price_max": 26030000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "black",
                    "Blue",
                    "Orange",
                    "green"
                  ],
                  "images": [
                    "sg-11134201-82605-mjghuc1jlc7692",
                    "sg-11134201-8262e-mjghucbi65mt4f",
                    "sg-11134201-8260q-mjghucoeq32836",
                    "sg-11134201-8261y-mjghud6bmdc104"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "20mm",
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 26030000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 370431150478,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 26030000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50154628822,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82631-mjghu7z53i8480\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1477,\"model_id\":370431150478,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82631-mjghu7z53i8480\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1477,\"model_id\":370431150478,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50154628822",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49154648821,
              "shopid": 1542929270,
              "name": "20mm 22mm Nylon Band For Samsung Galaxy Wat6 Classic 47mm For Tactical Strap For Huawei GT4 Pro 46mm For Huami/Xiaomi/ticwat",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699
              ],
              "image": "sg-11134201-8260u-mjghtt5yvfutea",
              "images": [
                "sg-11134201-8260u-mjghtt5yvfutea",
                "sg-11134201-825zs-mjghtu28q2o5fe",
                "sg-11134201-8262r-mjghtun10rgme4",
                "sg-11134201-8261a-mjghtvbc7bwj6c",
                "sg-11134201-8260f-mjghtvzk85xi1d",
                "sg-11134201-8262n-mjghtwpyptl365",
                "sg-11134201-82630-mjghtxegkmpw0a",
                "sg-11134201-8261w-mjghty78s8w69d",
                "sg-11134201-8262c-mjghtz6g3qblf2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362383,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 34770000000,
              "price_min": 34770000000,
              "price_max": 34770000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Orange",
                    "Blue",
                    "Black",
                    "AGr"
                  ],
                  "images": [
                    "sg-11134201-8261w-mjghty78s8w69d",
                    "sg-11134201-8262c-mjghtz6g3qblf2",
                    "sg-11134201-82615-mjghtzzx3coy38",
                    "sg-11134201-8262w-mjghu0v4a0aq6c"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 34770000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390431143612,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 34770000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49154648821,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjghtt5yvfutea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1540,\"model_id\":390431143612,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjghtt5yvfutea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1540,\"model_id\":390431143612,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49154648821",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40328005818,
              "shopid": 1542929270,
              "name": "22mm Silicone Soft Strap For Xiaomi Mi Wat Color 2 Sport Watband For Xiaomi Wat 2Pro S4 S3 S2 S1 Pro/Active Sports Correa",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-8261i-mjghtfzp0xs29f",
              "images": [
                "sg-11134201-8261i-mjghtfzp0xs29f",
                "sg-11134201-82622-mjghtgmuru9v0b",
                "sg-11134201-825zz-mjghth4cdgch5f",
                "sg-11134201-8260d-mjghthl21ddt53",
                "sg-11134201-8262o-mjghti2c9jpd65",
                "sg-11134201-82616-mjghtileek92f6",
                "sg-11134201-82604-mjghtj1gqj9ifc",
                "sg-11134201-82614-mjghtj9s8ow0c2",
                "sg-11134201-82621-mjghtjiim41t93"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362363,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 22810000000,
              "price_min": 22810000000,
              "price_max": 22810000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Teal green",
                    "Purple",
                    "Midnight blue",
                    "Black",
                    " Dark green",
                    "Grey",
                    "Orange",
                    "Red",
                    "Yellow",
                    "Pink sand",
                    "Wine red",
                    "White"
                  ],
                  "images": [
                    "sg-11134201-82614-mjghtj9s8ow0c2",
                    "sg-11134201-82621-mjghtjiim41t93",
                    "sg-11134201-82623-mjghtjrwcvt223",
                    "sg-11134201-8261i-mjghtjznq8e9bb",
                    "sg-11134201-8262y-mjghtka05r0id9",
                    "sg-11134201-8262e-mjghtkhrx6v431",
                    "sg-11134201-825zr-mjghtkr90t1fd0",
                    "sg-11134201-8260v-mjghtl25s5j62e",
                    "sg-11134201-81ztq-mico6lnzkbus0f",
                    "sg-11134201-8262c-mjghtlf97ax1db",
                    "sg-11134201-82630-mjghtln44h6tf3",
                    "sg-11134201-8261j-mjghtluxg3r7a6"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "Mi Watch Color Sport",
                    "Xiaomi S4 S3 S2 S1",
                    "Mi Watch Color",
                    "22MM Width Band",
                    "Xiaomi Watch 2 2Pro",
                    "Mi Watch Color 2"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 22810000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 420431143171,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 22810000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40328005818,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261i-mjghtfzp0xs29f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2082,\"model_id\":420431143171,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261i-mjghtfzp0xs29f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2082,\"model_id\":420431143171,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40328005818",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57204624079,
              "shopid": 1542929270,
              "name": "20/22/26mm Quick-release Nylon Strap for Garmin Fenix 8/Tactix 8/Quatix 8 Sports Wristband Garmin tinct 3/Forerunner 970 965",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699
              ],
              "image": "sg-11134201-8262e-mjghqnw9jj0i1f",
              "images": [
                "sg-11134201-8262e-mjghqnw9jj0i1f",
                "sg-11134201-825zs-mjghqoctcqv893",
                "sg-11134201-8261l-mjghqos3pkp0e6",
                "sg-11134201-82627-mjghqp7hawhwd6",
                "sg-11134201-82617-mjghqplgvhtsf3",
                "sg-11134201-8260i-mjghqq203oqoc4",
                "sg-11134201-82629-mjghqqn993pj0d",
                "sg-11134201-8260l-mjghqr0sil8hdf",
                "sg-11134201-82610-mjghqrhh0bnqcc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362236,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 33850000000,
              "price_min": 33850000000,
              "price_max": 33850000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Black",
                    "Blue",
                    "Dark grey",
                    "Dark blue",
                    "Powder",
                    "Wine red",
                    "Army green.",
                    "Green",
                    "Starlight",
                    "Pearl white",
                    "Orange",
                    "Purple",
                    "Pink "
                  ],
                  "images": [
                    "sg-11134201-8260l-mjghqr0sil8hdf",
                    "sg-11134201-82610-mjghqrhh0bnqcc",
                    "sg-11134201-8262m-mjghqrsw3v2eff",
                    "sg-11134201-8262d-mjghqsb0gft200",
                    "sg-11134201-8262r-mjghqsnfrjsy49",
                    "sg-11134201-8262n-mjghqt1qm1om2e",
                    "sg-11134201-8261v-mjghqtdxhpfnb3",
                    "sg-11134201-82612-mjghqtqwqk1w32",
                    "sg-11134201-8262g-mjghqu60xg5ica",
                    "sg-11134201-82634-mjghqufpmvwk24",
                    "sg-11134201-82631-mjghqury6znld5",
                    "sg-11134201-8260l-mjghqv56syki72",
                    "sg-11134201-8260b-mjghqvfzck5f1c"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "Quick release 26mm",
                    "Quick release 22mm",
                    "Quick release 20mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 33850000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 259143571138,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 33850000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57204624079,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262e-mjghqnw9jj0i1f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1019,\"model_id\":259143571138,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262e-mjghqnw9jj0i1f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1019,\"model_id\":259143571138,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57204624079",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48704658221,
              "shopid": 1542929270,
              "name": "20/22mm Nylon Strap For Amazfit Bip S/ Bip s lite/Bip 3/Straots Elastic Sport Wristbands for Amazfit Bip 3 pro/GTS 2/3/2E",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-8262h-mjghpz3wg7wiec",
              "images": [
                "sg-11134201-8262h-mjghpz3wg7wiec",
                "sg-11134201-825zu-mjghpzlyqcjlf2",
                "sg-11134201-8262l-mjghpzzrbi802a",
                "sg-11134201-8262x-mjghq0bgd6v8d4",
                "sg-11134201-825zw-mjghq0y94ao2c3",
                "sg-11134201-825zr-mjghq1bs9kht29",
                "sg-11134201-82627-mjghq1p21og4d3",
                "sg-11134201-8260a-mjghq28b3bied3",
                "sg-11134201-8261j-mjghq2l1r3ltac"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362200,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 22350000000,
              "price_min": 22350000000,
              "price_max": 22350000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "ethnic white",
                    "ethnic purple",
                    "colorful bar",
                    "black",
                    "green arrow",
                    "brown leopard"
                  ],
                  "images": [
                    "sg-11134201-8260a-mjghq28b3bied3",
                    "sg-11134201-8262h-mjghpz3wg7wiec",
                    "sg-11134201-8261j-mjghq2l1r3ltac",
                    "sg-11134201-8260f-mjghq2y2wtmq13",
                    "sg-11134201-82620-mjghq39z96h3f3",
                    "sg-11134201-8262t-mjghq43fi5mu7f"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "20mm",
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 22350000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 375431136221,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 22350000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48704658221,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262h-mjghpz3wg7wiec\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1568,\"model_id\":375431136221,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262h-mjghpz3wg7wiec\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1568,\"model_id\":375431136221,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48704658221",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47604658218,
              "shopid": 1542929270,
              "name": "Fenix8 Silicone Wat Band For Garmin Fenix E 8 7 7X 6 6X 5X Plus/Epix Pro 47mm 51mm/Enduro 3 QuickFit 22mm 26mm Strap Bracelets",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-82604-mjghp3k765fmac",
              "images": [
                "sg-11134201-82604-mjghp3k765fmac",
                "sg-11134201-8260g-mjghp3x5k3k4b7",
                "sg-11134201-82614-mjghp4cfemfb51",
                "sg-11134201-825zn-mjghp53682dd13",
                "sg-11134201-82608-mjghp5h566mf74",
                "sg-11134201-82618-mjghp5v029dy19",
                "sg-11134201-825zk-mjghp64ikef451",
                "sg-11134201-8260q-mjghp70y6xab22",
                "sg-11134201-8262s-mjghp7lka9s317"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362175,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 28330000000,
              "price_min": 28330000000,
              "price_max": 28330000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Starlight Orange",
                    "Coal Ash Black",
                    "Black Gray",
                    "Red Black",
                    "Orange Black",
                    "Army Green Black",
                    "Black Red",
                    "Mint Green Black",
                    "White Black",
                    "Black Orange",
                    "Dark Gray Orange",
                    "Black",
                    "White",
                    "Gray",
                    "Green",
                    "Lake blue",
                    "Orange",
                    "Midnight blue",
                    "Green Black"
                  ],
                  "images": [
                    "sg-11134201-8260q-mjghp70y6xab22",
                    "sg-11134201-8262s-mjghp7lka9s317",
                    "sg-11134201-82615-mjghp88os6irc5",
                    "sg-11134201-82604-mjghp8s9ymmcdc",
                    "sg-11134201-8262h-mjghp9ctimm9a3",
                    "sg-11134201-82606-mjghpa1owwe8d4",
                    "sg-11134201-8262i-mjghpb0c6ccgd4",
                    "sg-11134201-82632-mjghpc59bfggdd",
                    "sg-11134201-8262f-mjghpcz2wsudc4",
                    "sg-11134201-8261k-mjghpdn9ooox80",
                    "sg-11134201-82633-mjghpe8iahab86",
                    "sg-11134201-8260e-mjghpes82oe837",
                    "sg-11134201-82610-mjghpf40o9vm90",
                    "sg-11134201-82607-mjghpfhdca9xe2",
                    "sg-11134201-8262m-mjghpgpk09hj39",
                    "sg-11134201-825zn-mjghphfhpts5d6",
                    "sg-11134201-8260u-mjghpi3xkzy898",
                    "sg-11134201-825zy-mjghpj1pjzlz2e",
                    "sg-11134201-8260t-mjghpka8l79d8a"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "1PCS QuickFit 22mm",
                    "1PCS QuickFit 26mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 28330000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435431130689,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 28330000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47604658218,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82604-mjghp3k765fmac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1632,\"model_id\":435431130689,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82604-mjghp3k765fmac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1632,\"model_id\":435431130689,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47604658218",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46454653664,
              "shopid": 1721699676,
              "name": "Allthebest- Pemutus Sinyal Navigasi Gps Mini Pelacak Tipe USB Shield GPS",
              "label_ids": [
                844931064601283,
                1049112,
                1400005524,
                822059908662278,
                825465608497696,
                825465608499232
              ],
              "image": "id-11134201-8224o-mjgho4q6sl534c",
              "images": [
                "id-11134201-8224o-mjgho4q6sl534c",
                "id-11134201-8224u-mjgho5moj08w33",
                "id-11134201-8224v-mjgho7askh6o70",
                "id-11134201-8224x-mjgho9rfj94za9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768362135,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 37800000000,
              "price_min": 37800000000,
              "price_max": 37800000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjar",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 37800000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 345431119179,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 37800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "3w07b397pj",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46454653664,
            "shopid": 1721699676,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgho4q6sl534c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1400005524,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1713,\"model_id\":345431119179,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgho4q6sl534c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1400005524,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1713,\"model_id\":345431119179,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46454653664",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54204638091,
              "shopid": 237617358,
              "name": "HUAWEI WATCH GT 3 46mm FULLSET MULUSSS",
              "label_ids": [
                844931086908638,
                844931064601283,
                1049112,
                1049127,
                822059908662278,
                825465608493600,
                825465608499232,
                1718093079
              ],
              "image": "id-11134207-8224p-mjghg9qx9vcx6f",
              "images": [
                "id-11134207-8224p-mjghg9qx9vcx6f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361858,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 120000000000,
              "price_min": 120000000000,
              "price_max": 120000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 120000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 385431090616,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 120000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Roxz.shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54204638091,
            "shopid": 237617358,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjghg9qx9vcx6f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049112,1049127,822059908662278,825465608493600,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1221,\"model_id\":385431090616,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjghg9qx9vcx6f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049112,1049127,822059908662278,825465608493600,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1221,\"model_id\":385431090616,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54204638091",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46304653497,
              "shopid": 1542929270,
              "name": "PINDU New Original Design Competitive Horse Racing Wates NH35A Sapphire Stainless Steel Luminous Leather Meanical Wat Men",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-8262r-mjghign3xji958",
              "images": [
                "sg-11134201-8262r-mjghign3xji958",
                "sg-11134201-82607-mjghih42uepw6a",
                "sg-11134201-8262r-mjghihh7sao341",
                "sg-11134201-82631-mjghihxojzswe2",
                "sg-11134201-8262t-mjghii96cgedbf",
                "sg-11134201-825zq-mjghiisbx2wz7e",
                "sg-11134201-8261v-mjghij9yqx3671",
                "sg-11134201-8260n-mjghijkzkcn75e",
                "sg-11134201-8261x-mjghik1c4cg299"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361848,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 2773840000000,
              "price_min": 2773840000000,
              "price_max": 2773840000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Green black",
                    "Green gold",
                    "Green",
                    "Green brown"
                  ],
                  "images": [
                    "sg-11134201-8260n-mjghijkzkcn75e",
                    "sg-11134201-8261x-mjghik1c4cg299",
                    "sg-11134201-8261m-mjghikipb8cma7",
                    "sg-11134201-82606-mjghikzovxmua1"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 2773840000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 282332721049,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2773840000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46304653497,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262r-mjghign3xji958\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1724,\"model_id\":282332721049,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262r-mjghign3xji958\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1724,\"model_id\":282332721049,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46304653497",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45904653487,
              "shopid": 1542929270,
              "name": "Garmin Nylon 22 26mm Loop Strap 5Plus 6Pro 7 Easy Fit Wristband Belt Replaceable Wat Band Fenix7X/5X/5XPlus/6X/6XPro Bracelet",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-825zo-mjghi5240jrb16",
              "images": [
                "sg-11134201-825zo-mjghi5240jrb16",
                "sg-11134201-8262h-mjghi5cu2akk9c",
                "sg-11134201-8262f-mjghi5thdz404c",
                "sg-11134201-82625-mjghi68l84xw0a",
                "sg-11134201-8262x-mjghi6khuewx1a",
                "sg-11134201-8262a-mjghi6ul3shw57",
                "sg-11134201-82628-mjghi74gka2r49",
                "sg-11134201-82633-mjghi7fvgsnbaa",
                "sg-11134201-8260i-mjghi7t8agw38f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361831,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 55700000000,
              "price_min": 55700000000,
              "price_max": 55700000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Black brown",
                    "Black green",
                    "Black"
                  ],
                  "images": [
                    "sg-11134201-82633-mjghi7fvgsnbaa",
                    "sg-11134201-8260i-mjghi7t8agw38f",
                    "sg-11134201-82634-mjghi80am2gwca"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "Quick fit 26mm",
                    "Quick fit 22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 55700000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 400431088175,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 55700000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45904653487,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zo-mjghi5240jrb16\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1748,\"model_id\":400431088175,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zo-mjghi5240jrb16\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1748,\"model_id\":400431088175,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45904653487",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45654644098,
              "shopid": 1542929270,
              "name": "22mm 20mm Band for Samsung Galaxy Wat 6 5 4 40mm 44mm 6classic Active 2 Stainless Steel ain Bracelet for Huawei GT2/3 Strap",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-8261g-mjghis0dx5oh72",
              "images": [
                "sg-11134201-8261g-mjghis0dx5oh72",
                "sg-11134201-825zw-mjghisnt2jgm06",
                "sg-11134201-82601-mjghit8ctkapad",
                "sg-11134201-82631-mjghitsdoq9w72",
                "sg-11134201-82625-mjghiudb4qv573",
                "sg-11134201-8260t-mjghiv0c5n2e53",
                "sg-11134201-825zx-mjghivjfb7yd21",
                "sg-11134201-82600-mjghivwfylfp6a",
                "sg-11134201-8262g-mjghiwcnhdz7dc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361865,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 47880000000,
              "price_min": 47880000000,
              "price_max": 47880000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Silver",
                    "black",
                    "Gold",
                    "starlight",
                    "rose gold"
                  ],
                  "images": [
                    "sg-11134201-8261b-mjghixei1m2qd5",
                    "sg-11134201-82627-mjghiwtwunt107",
                    "sg-11134201-82635-mjghixyeji108b",
                    "sg-11134201-82600-mjghivwfylfp6a",
                    "sg-11134201-8262g-mjghiwcnhdz7dc"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "For GalaxyWatch 6",
                    "22mm",
                    "For Galaxy 4 Classic",
                    "For Galaxy 6 Classic",
                    "For Galaxy active 2",
                    "20mm",
                    "For GalaxyWatch 4",
                    "For GalaxyWatch5 Pro",
                    "For GalaxyWatch 5"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 47880000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 440431084518,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 47880000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45654644098,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261g-mjghis0dx5oh72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1760,\"model_id\":440431084518,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261g-mjghis0dx5oh72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1760,\"model_id\":440431084518,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45654644098",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28694027246,
              "shopid": 1594875075,
              "name": "Smartwatch Pengisi daya jam tangan pintar",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "id-11134207-8224o-mjf7uoihhzpjb8",
              "images": [
                "id-11134207-8224o-mjf7uoihhzpjb8",
                "id-11134207-8224x-mjf7uoihksuf3b",
                "id-11134207-8224v-mjgh32fhqfwkbc",
                "id-11134207-82252-mjf7uoihgl53c7",
                "id-11134207-8224p-mjf7uoihje9z91",
                "id-11134207-82250-mjgh32fhp1c4c4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361813,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 99999900000,
              "price_min": 99999900000,
              "price_max": 99999900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 96999900000,
                "strikethrough_price": 99999900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1333041579311104,
                "discount_text": null,
                "model_id": 198798779508,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1333041579311104,
                  "voucher_code": "0ICK6",
                  "voucher_discount": 3000000000,
                  "time_info": {
                    "start_time": 1768370640,
                    "end_time": 1776441600,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 99999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Watch specialty store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 28694027246,
            "shopid": 1594875075,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjf7uoihhzpjb8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2158,\"model_id\":198798779508,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjf7uoihhzpjb8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2158,\"model_id\":198798779508,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28694027246",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55004623997,
              "shopid": 1542929270,
              "name": "Original Wat LCD Screen For Garmin VENU 2 LCD splay Screen Repair Replacement Parts",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-8262k-mjghgrunnegzec",
              "images": [
                "sg-11134201-8262k-mjghgrunnegzec",
                "sg-11134201-8261o-mjghgs9xhxc102",
                "sg-11134201-82607-mjghgspuvgn838",
                "sg-11134201-82615-mjghgta6mj2d11",
                "sg-11134201-825zs-mjghgttnfnk4cb",
                "sg-11134201-8262n-mjghgubc6d5219",
                "sg-11134201-8260z-mjghguq5vegx6e",
                "sg-11134201-82620-mjghgv5po2kg65",
                "sg-11134201-825zk-mjghgvixds0338"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361769,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 219690000000,
              "price_min": 219690000000,
              "price_max": 219690000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Silver",
                    "black"
                  ],
                  "images": [
                    "sg-11134201-82620-mjghgv5po2kg65",
                    "sg-11134201-825zk-mjghgvixds0338"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 219690000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 340431081439,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 219690000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55004623997,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262k-mjghgrunnegzec\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1166,\"model_id\":340431081439,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262k-mjghgrunnegzec\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1166,\"model_id\":340431081439,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55004623997",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52204628560,
              "shopid": 1542929270,
              "name": "20mm 22mm Colorful Resin Band For Garmin Forerunner 970 570 745 965 245 255 265 645 Wat Strap Venu 2 3 SQ Vivoactive 6 5 4 3",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-8261o-mjghffwvzk76ea",
              "images": [
                "sg-11134201-8261o-mjghffwvzk76ea",
                "sg-11134201-825zt-mjghfgj638jm06",
                "sg-11134201-8260e-mjghfh4m13wi99",
                "sg-11134201-825zo-mjghfhmx0h6ocf",
                "sg-11134201-8261q-mjghfi4x3zlsd6",
                "sg-11134201-8261d-mjghfii0dips57",
                "sg-11134201-8260e-mjghfjfnqps4bf",
                "sg-11134201-8262p-mjghfjr3b4045b",
                "sg-11134201-82631-mjghfk91q4u861"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361708,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 27640000000,
              "price_min": 27640000000,
              "price_max": 27640000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Clear-Black",
                    "Colorful",
                    "Clear-Colorful",
                    "Clear"
                  ],
                  "images": [
                    "sg-11134201-8262p-mjghfjr3b4045b",
                    "sg-11134201-82631-mjghfk91q4u861",
                    "sg-11134201-8262f-mjghfkpwxk3m25",
                    "sg-11134201-825zt-mjghfl3a835u47"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "Forerunner55 158 165",
                    "Forerunner 645 245",
                    "20mm width band",
                    "22mm width band",
                    "Forerunner 970",
                    "Forerunner 570 47mm",
                    "Forerunner 265 255",
                    "Forerunner 745 965",
                    "Garmin Vivoactive 5",
                    "Garmin Vivoactive 4",
                    "Forerunner 570 42mm",
                    "Garmin Vivoactive 6",
                    "Garmin Venu 2 3",
                    "22mm Garmin Active",
                    "Garmin Vivoactive 3",
                    "Approach S70 42mm",
                    "Approach S70 47mm",
                    "Garmin Active 5 6",
                    "Garmin Venu SQ SQ2",
                    "Forerunner 265 Music",
                    "Forerunner 255 Music",
                    "Forerunner 245 Music",
                    "Forerunner 645 Music"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 27640000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 440431054991,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 27640000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52204628560,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261o-mjghffwvzk76ea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1343,\"model_id\":440431054991,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261o-mjghffwvzk76ea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1343,\"model_id\":440431054991,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52204628560",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51204628498,
              "shopid": 1542929270,
              "name": "22mm Luxury Stainless Steel Wat Band for Huawei Wat GT5/GT4 46MM Wat4/4Pro Men Business Strap for Amazfit Balance Bracelet",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-8260c-mjghf3luxe6e5b",
              "images": [
                "sg-11134201-8260c-mjghf3luxe6e5b",
                "sg-11134201-825zy-mjghf4h3tt6ue4",
                "sg-11134201-825zz-mjghf54gfw1t06",
                "sg-11134201-8261m-mjghf5dld7gge9",
                "sg-11134201-8260n-mjghf5sxvaita2",
                "sg-11134201-82613-mjghf6hqez9ibe",
                "sg-11134201-8260v-mjghf6vow74603",
                "sg-11134201-8260b-mjghf74l1ibq96",
                "sg-11134201-8261a-mjghf7cv553403"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361693,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 40290000000,
              "price_min": 40290000000,
              "price_max": 40290000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Titanium-Quick",
                    "Grey-Quick",
                    "Black-Quick",
                    "Silver-Quick",
                    "Titanium color",
                    "Grey",
                    "Black",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134201-8260b-mjghf74l1ibq96",
                    "sg-11134201-8261a-mjghf7cv553403",
                    "sg-11134201-82618-mjghf7joho1u45",
                    "sg-11134201-8262u-mjghf7pnwrur2d",
                    "sg-11134201-8260i-mjghf7wb7mdj7a",
                    "sg-11134201-825zu-mjghf84v2f4229",
                    "sg-11134201-82606-mjghf8ux6r5s23",
                    "sg-11134201-8260n-mjghf91qkooy91"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 40290000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 405431054633,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 40290000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51204628498,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260c-mjghf3luxe6e5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1417,\"model_id\":405431054633,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260c-mjghf3luxe6e5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1417,\"model_id\":405431054633,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51204628498",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56304633321,
              "shopid": 1542929270,
              "name": "Titanium Strap for Garmin Fenix 7X 6X Enduro 1/2 Magnetic 26mm 22mm Strap for Garmin Fenix 6/7 Pro tinct 2 Epix Series MARQ",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-8261w-mjghd50fgv0i59",
              "images": [
                "sg-11134201-8261w-mjghd50fgv0i59",
                "sg-11134201-82603-mjghd5l97ite96",
                "sg-11134201-8260h-mjghd63hf5s071",
                "sg-11134201-8261h-mjghd6lrw83mbb",
                "sg-11134201-82622-mjghd7a7rfuu9c",
                "sg-11134201-8260p-mjghd80z7eh395",
                "sg-11134201-8262j-mjghd8lg58ub9d",
                "sg-11134201-8262v-mjghd8wf1uknf6",
                "sg-11134201-825zw-mjghd97bp0xz0b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361600,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 140110000000,
              "price_min": 140110000000,
              "price_max": 140110000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "silver",
                    "titanium color",
                    "black"
                  ],
                  "images": [
                    "sg-11134201-8262v-mjghd8wf1uknf6",
                    "sg-11134201-825zw-mjghd97bp0xz0b",
                    "sg-11134201-82631-mjghd9itg1ds7e"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "United States",
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 140110000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 267332911860,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 140110000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56304633321,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261w-mjghd50fgv0i59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1080,\"model_id\":267332911860,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261w-mjghd50fgv0i59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1080,\"model_id\":267332911860,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56304633321",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52604633298,
              "shopid": 1542929270,
              "name": "Galaone Garmin tinct 2 Wat Strap 22mm Silicone Sport Replaceable Wristband For tinct 1/Esports/Solar Band Bracelet",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-8260n-mjghbs51hslf3f",
              "images": [
                "sg-11134201-8260n-mjghbs51hslf3f",
                "sg-11134201-82612-mjghbsqfemf597",
                "sg-11134201-8260r-mjghbtmf6xvq46",
                "sg-11134201-8262m-mjghbuam2zuu38",
                "sg-11134201-82600-mjghbuy147i993",
                "sg-11134201-82600-mjghbvlaq32d2f",
                "sg-11134201-8260m-mjghbwbf9jwm43",
                "sg-11134201-8260c-mjghbx1cfhtyc3",
                "sg-11134201-8261h-mjghbyj40npg29"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361553,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 25110000000,
              "price_min": 25110000000,
              "price_max": 25110000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "6",
                    "7",
                    "1",
                    "4",
                    "5",
                    "2",
                    "3",
                    "8",
                    "9"
                  ],
                  "images": [
                    "sg-11134201-82607-mjghc7cgw35wa2",
                    "sg-11134201-8261r-mjghc90t7chvda",
                    "sg-11134201-8260c-mjghbx1cfhtyc3",
                    "sg-11134201-8261h-mjghbyj40npg29",
                    "sg-11134201-8262i-mjghbzj6cum82b",
                    "sg-11134201-8262g-mjghc178zr459d",
                    "sg-11134201-8261x-mjghc2tcvyfb38",
                    "sg-11134201-8262y-mjghc4mn32tia9",
                    "sg-11134201-82626-mjghc5hc60hy03"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 25110000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 335431043751,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 25110000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52604633298,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260n-mjghbs51hslf3f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1314,\"model_id\":335431043751,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260n-mjghbs51hslf3f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1314,\"model_id\":335431043751,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52604633298",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57754637960,
              "shopid": 1542929270,
              "name": "New PINDU Wat Unique al Design Style Men Meanical Wat Summer Bea Fashion Wat Glowing Waterproof Resin silicone strap",
              "label_ids": [
                844931064601283,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-8260h-mjgh6v20txqf52",
              "images": [
                "sg-11134201-8260h-mjgh6v20txqf52",
                "sg-11134201-8261c-mjgh6vq02oec8a",
                "sg-11134201-8261a-mjgh6wqhv5s516",
                "sg-11134201-8260b-mjgh6xdyf2fa4f",
                "sg-11134201-82602-mjgh6y5xww7762",
                "sg-11134201-82630-mjgh6yyq1sec6a",
                "sg-11134201-82614-mjgh6zivmx3765",
                "sg-11134201-8260r-mjgh70ginh1g49",
                "sg-11134201-82602-mjgh70oidgqp97"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361310,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 3065710000000,
              "price_min": 3065710000000,
              "price_max": 3065710000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "SKY BLUE",
                    "Yellow",
                    "black",
                    "WHITE"
                  ],
                  "images": [
                    "sg-11134201-8260r-mjgh70ginh1g49",
                    "sg-11134201-82602-mjgh70oidgqp97",
                    "sg-11134201-82603-mjgh70vmlukkdf",
                    "sg-11134201-82612-mjgh71u5yww436"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 3065710000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 395431022656,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3065710000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57754637960,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260h-mjgh6v20txqf52\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":975,\"model_id\":395431022656,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260h-mjgh6v20txqf52\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":975,\"model_id\":395431022656,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57754637960",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55504637877,
              "shopid": 1542929270,
              "name": "Galaxy 46mm watband Replacement silicone strap For Samsung Gear S3 22mm sport wristband For Samsung Galaxy 46mm SM-R800 wat",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699
              ],
              "image": "sg-11134201-82620-mjgh8y7yqp6r6a",
              "images": [
                "sg-11134201-82620-mjgh8y7yqp6r6a",
                "sg-11134201-8260p-mjgh8ym1zdhi58",
                "sg-11134201-82634-mjgh8zbzkq2u62",
                "sg-11134201-8262q-mjgh8zxqodfma7",
                "sg-11134201-82616-mjgh90j5rapv18",
                "sg-11134201-8260i-mjgh915pjdhi63",
                "sg-11134201-8261y-mjgh91kiu9z67a",
                "sg-11134201-8262t-mjgh91u04wzmc7",
                "sg-11134201-8262k-mjgh923ch4apec"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361405,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 31780000000,
              "price_min": 31780000000,
              "price_max": 31780000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "black",
                    "Midnight blue"
                  ],
                  "images": [
                    "sg-11134201-8262t-mjgh91u04wzmc7",
                    "sg-11134201-8262k-mjgh923ch4apec"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "For Galaxy Watch46mm",
                    "Samsung Gear S3",
                    "Amazfit Stratos 2 3"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 31780000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 445431030988,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 31780000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55504637877,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82620-mjgh8y7yqp6r6a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1133,\"model_id\":445431030988,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82620-mjgh8y7yqp6r6a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1133,\"model_id\":445431030988,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55504637877",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43978010457,
              "shopid": 1542929270,
              "name": "20mm 22mm Metal Strap for Huawei Wat GT/2/3/4/GT5/GT6 Pro 46mm Stainless Steel Wristband for Samsung Galaxy Wat 5/6/7 Strap",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-825zw-mjgh7973abk0b3",
              "images": [
                "sg-11134201-825zw-mjgh7973abk0b3",
                "sg-11134201-8260u-mjgh79uywgzp57",
                "sg-11134201-8260n-mjgh7ank4p35b3",
                "sg-11134201-8261j-mjgh7bezlvyc78",
                "sg-11134201-82615-mjgh7c68x6o25b",
                "sg-11134201-82613-mjgh7crsriti71",
                "sg-11134201-8261r-mjgh7dhkxo1x61",
                "sg-11134201-82604-mjgh7dygyjnr6a",
                "sg-11134201-8261p-mjgh7ecyeio50b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361327,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 23730000000,
              "price_min": 23730000000,
              "price_max": 23730000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Black",
                    "Silver and tool",
                    "Silver",
                    "Black and tool"
                  ],
                  "images": [
                    "sg-11134201-82632-mjgh7evqa29s33",
                    "sg-11134201-82624-mjgh7fbc59mpeb",
                    "sg-11134201-82604-mjgh7dygyjnr6a",
                    "sg-11134201-8261p-mjgh7ecyeio50b"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "Self-test width 22mm",
                    "Amazfit GTR 47mm",
                    "Huawei GT2 42mm",
                    "Huawei watch 42mm",
                    "Huawei Watch 4 3 Pro",
                    "Huawei GT5 GT4 46mm",
                    "Huawei GT6 Pro 46mm",
                    "Huawei GT5 Pro 46mm",
                    "Galaxy 5 44mm 40mm",
                    "Galaxy 4 44mm 40mm",
                    "Galaxy 6Classic Band",
                    "Galaxy 4Classic Band",
                    "Active2 40mm or 44mm",
                    "Huawei GT3 Pro 43mm",
                    "Galaxy 6 44mm 40mm",
                    "Galaxy 7 44mm 40mm",
                    "Huawei GT2 GT3 46mm",
                    "Huawei watch 46mm",
                    "Huawei GT3 Pro 46mm",
                    "Huawei GT6 46mm",
                    "Self-test width 20mm",
                    "Watch 5 Pro 45mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 23730000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 310431604367,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 23730000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43978010457,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zw-mjgh7973abk0b3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1874,\"model_id\":310431604367,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zw-mjgh7973abk0b3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1874,\"model_id\":310431604367,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43978010457",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41078005665,
              "shopid": 1542929270,
              "name": "Fenix 7S /Fenix 5S Plus Wat Band 20mm tinct 2S Quick Fit Silicone Watband Strap for Garmin Fenix 6S Pro Straps Pink",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699
              ],
              "image": "sg-11134201-8261j-mjgh7mwy48w69e",
              "images": [
                "sg-11134201-8261j-mjgh7mwy48w69e",
                "sg-11134201-825zs-mjgh7nly1ddzd3",
                "sg-11134201-8260a-mjgh7o9xr0g344",
                "sg-11134201-82615-mjgh7owzy39h95",
                "sg-11134201-8261z-mjgh7phmjnk578",
                "sg-11134201-8261x-mjgh7q78wi6d17",
                "sg-11134201-8260t-mjgh7qyiddl3b1",
                "sg-11134201-8261t-mjgh7raotmo3ac",
                "sg-11134201-8261c-mjgh7rll42rq9f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361348,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 40060000000,
              "price_min": 40060000000,
              "price_max": 40060000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Beige",
                    "Dark Blue",
                    "Orange Red",
                    "Pink",
                    "Rose Pink",
                    "Gray",
                    "Amber Yellow",
                    "Lake Blue",
                    "Black",
                    "White",
                    "Army Green",
                    "Light Blue",
                    "Wine Red"
                  ],
                  "images": [
                    "sg-11134201-8261t-mjgh7raotmo3ac",
                    "sg-11134201-8261c-mjgh7rll42rq9f",
                    "sg-11134201-8262x-mjgh7s5te680c4",
                    "sg-11134201-82633-mjgh7sj9c7wi37",
                    "sg-11134201-8260l-mjgh7swk0mww33",
                    "sg-11134201-8262h-mjgh7tc9ju2v24",
                    "sg-11134201-82607-mjgh7tpcnqwy5e",
                    "sg-11134201-82621-mjgh7u1iemm836",
                    "sg-11134201-8260m-mjgh7udrpdkwd4",
                    "sg-11134201-8260j-mjgh7uppgcg2f0",
                    "sg-11134201-825zs-mjgh7v04jdon52",
                    "sg-11134201-8262f-mjgh7vdgmd4we9",
                    "sg-11134201-82628-mjgh7voxpl3506"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "instinct 2S",
                    "Fenix 6s 6spro",
                    "Fenix 7s",
                    "Fenix 5s 5splus"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 40060000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 262332894052,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 40060000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41078005665,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261j-mjgh7mwy48w69e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2036,\"model_id\":262332894052,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261j-mjgh7mwy48w69e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2036,\"model_id\":262332894052,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41078005665",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54704623802,
              "shopid": 1542929270,
              "name": "26mm 22mm Silicone Strap For Garmin Fenix 8 E 7 7X 6X Pro 5XPlus Epix Pro Gen 2 47mm 51mm/Enduro 3 QuickFit Watband Bracelet",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699
              ],
              "image": "sg-11134201-8260n-mjgh5y3urwn569",
              "images": [
                "sg-11134201-8260n-mjgh5y3urwn569",
                "sg-11134201-8261a-mjgh5yxs5fyde0",
                "sg-11134201-82629-mjgh5ze2pssn04",
                "sg-11134201-8260f-mjgh5zxuopaa3a",
                "sg-11134201-822z7-mi9uymk8ip6u27",
                "sg-11134201-8260c-mjgh6148uq6a58",
                "sg-11134201-82622-mjgh61whee4l46",
                "sg-11134201-8262f-mjgh62eaxvk5ce",
                "sg-11134201-8260n-mjgh62we2y9w8f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361278,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 39830000000,
              "price_min": 39830000000,
              "price_max": 39830000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "dark blue silver",
                    "starlight silver",
                    "starlight black",
                    "blue silver",
                    "spaceH silver",
                    "spaceH black",
                    "blue black",
                    "gray black",
                    "dark blue black",
                    "pink silver",
                    "white silver",
                    "yellow silver",
                    "orange silver",
                    "green silver",
                    "gray silver",
                    "black silver",
                    "black black",
                    "yellow black",
                    "white black",
                    "green black",
                    "orange black",
                    "pink black"
                  ],
                  "images": [
                    "sg-11134201-8262f-mjgh62eaxvk5ce",
                    "sg-11134201-8260n-mjgh62we2y9w8f",
                    "sg-11134201-8262a-mjgh63bt4ao102",
                    "sg-11134201-82632-mjgh63u73s3k9f",
                    "sg-11134201-82617-mjgh64es9ddybf",
                    "sg-11134201-8262a-mjgh654eqfpcd3",
                    "sg-11134201-8262i-mjgh6639lvk0e3",
                    "sg-11134201-82632-mjgh66fo21hd1d",
                    "sg-11134201-8262g-mjgh671do83m91",
                    "sg-11134201-8261j-mjgh67j7ss1va7",
                    "sg-11134201-8260i-mjgh6811yqkje7",
                    "sg-11134201-8262g-mjgh68krbj0k51",
                    "sg-11134201-8260c-mjgh6959pdz92e",
                    "sg-11134201-8260w-mjgh69jldgxs1e",
                    "sg-11134201-82626-mjgh6a7k6rd0e9",
                    "sg-11134201-825zy-mjgh6audwzd02e",
                    "sg-11134201-8260n-mjgh6bd6f1mt8a",
                    "sg-11134201-8260h-mjgh6bz1oy6909",
                    "sg-11134201-8262p-mjgh6cbv0ah036",
                    "sg-11134201-8261a-mjgh6cpca3glf5",
                    "sg-11134201-8262m-mjgh6d25k2rp4c",
                    "sg-11134201-8262c-mjgh6dgffi1309"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "QuickFit 26mm Width",
                    "For Fenix 8 47mm",
                    "For Fenix 8 51mm",
                    "QuickFit 22mm Width"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 39830000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 415431026678,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 39830000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54704623802,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260n-mjgh5y3urwn569\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1186,\"model_id\":415431026678,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260n-mjgh5y3urwn569\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1186,\"model_id\":415431026678,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54704623802",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53454637943,
              "shopid": 1542929270,
              "name": "20mm 22mm Magnetic Bracelet for Samsung Galaxy Wat 7/6/Classic/5/4/3 Braided Nylon Strap for Huawei Wat 4/3/GT 5 4 Band",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-825zx-mjgh3q1zjo5g0f",
              "images": [
                "sg-11134201-825zx-mjgh3q1zjo5g0f",
                "sg-11134201-825zx-mjgh3rigxpmq82",
                "sg-11134201-8261n-mjgh3ss7lc7b62",
                "sg-11134201-8260k-mjgh3tcpz5l20f",
                "sg-11134201-8261s-mjgh3u28peyv92",
                "sg-11134201-8261f-mjgh3v8zy03la1",
                "sg-11134201-8261j-mjgh3vrwi5fo83",
                "sg-11134201-8262z-mjgh3xb5tjb587",
                "sg-11134201-8260s-mjgh3zbruy9s56"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361172,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 35920000000,
              "price_min": 35920000000,
              "price_max": 35920000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Dark Blue",
                    "black",
                    "khaki",
                    "army green"
                  ],
                  "images": [
                    "sg-11134201-8262z-mjgh3xb5tjb587",
                    "sg-11134201-8260s-mjgh3zbruy9s56",
                    "sg-11134201-82604-mjgh41g4bithdf",
                    "sg-11134201-8260a-mjgh43k3z9xe0d"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "22mm",
                    "20mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 35920000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 330431004090,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 35920000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53454637943,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zx-mjgh3q1zjo5g0f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1260,\"model_id\":330431004090,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zx-mjgh3q1zjo5g0f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1260,\"model_id\":330431004090,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53454637943",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52704623877,
              "shopid": 1542929270,
              "name": "Quick Fit Nylon Strap for Samsung Galaxy 7/6/5/4 40 44mm No Gaps Bracelet for Wat 6 4 Classic 43 47mm 42 46mm 5 Pro 45mm Band",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-82606-mjgh5chb7ait2f",
              "images": [
                "sg-11134201-82606-mjgh5chb7ait2f",
                "sg-11134201-8261r-mjgh5cu5exvn82",
                "sg-11134201-82631-mjgh5d78ycjlec",
                "sg-11134201-82621-mjgh5dwuc2ysd3",
                "sg-11134201-8260o-mjgh5erolr0la8",
                "sg-11134201-82608-mjgh5fjr0xdt45",
                "sg-11134201-8260l-mjgh5gcndiww1f",
                "sg-11134201-8262l-mjgh5gn79af436",
                "sg-11134201-82614-mjgh5h369v5t63"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361249,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 39600000000,
              "price_min": 39600000000,
              "price_max": 39600000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Black S",
                    "Blue Star",
                    "Black Star",
                    "Grey S",
                    "Blue S",
                    "Grey B",
                    "Green S",
                    "Blue B",
                    "Green Star",
                    "Grey Star",
                    "Orange Star",
                    "HMcS",
                    "HMcB",
                    "DigitalMcS",
                    "DigitalMcB",
                    "Green B",
                    "Orange S",
                    "Orange B",
                    "Black B",
                    "DesertMcB",
                    "JungleMcB",
                    "DesertMcS",
                    "JungleMcS"
                  ],
                  "images": [
                    "sg-11134201-8260o-mjgh5jafaw3le7",
                    "sg-11134201-8262t-mjgh5o7uql8m7f",
                    "sg-11134201-82620-mjgh5kb25xqfaa",
                    "sg-11134201-8261i-mjgh5mf0gkjm51",
                    "sg-11134201-82623-mjgh5okql6v8da",
                    "sg-11134201-82618-mjgh5kt6scg7e2",
                    "sg-11134201-825zp-mjgh5js8kjk097",
                    "sg-11134201-82622-mjgh5nfjdp8n03",
                    "sg-11134201-8260o-mjgh5ldrcv7lb9",
                    "sg-11134201-82617-mjgh5lxs3thh9c",
                    "sg-11134201-8262d-mjgh5nsa9ybl6f",
                    "sg-11134201-8262l-mjgh5gn79af436",
                    "sg-11134201-82614-mjgh5h369v5t63",
                    "sg-11134201-82615-mjgh5hjv2u4kf9",
                    "sg-11134201-8260s-mjgh5i0diw3ma0",
                    "sg-11134201-8260h-mjgh5ipq1t6q70",
                    "sg-11134201-8262s-mjgh5mvcqosn84",
                    "sg-11134201-8260v-mjgh5n3txxc72b",
                    "sg-11134201-8262z-mjgh5ovk16o12b",
                    "sg-11134201-8260m-mjgh5p7aiubr48",
                    "sg-11134201-82614-mjgh5pqpnlz57f",
                    "sg-11134201-8262v-mjgh5q9yjockdd",
                    "sg-11134201-8261o-mjgh5qpa86bkea"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "China Mainland"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 39600000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 420431017382,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 39600000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52704623877,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82606-mjgh5chb7ait2f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1310,\"model_id\":420431017382,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82606-mjgh5chb7ait2f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1310,\"model_id\":420431017382,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52704623877",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46754653408,
              "shopid": 1542929270,
              "name": "Stainless Steel Strap For Redmi Wat 5 Active Lite Band Metal Bracelet Watband For Xiaomi Redmi Wat 5 Lite Men Women Correa",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-82616-mjgh4ax3brpjc1",
              "images": [
                "sg-11134201-82616-mjgh4ax3brpjc1",
                "sg-11134201-8261y-mjgh4bi1o3d321",
                "sg-11134201-82620-mjgh4c0lbapsa1",
                "sg-11134201-82603-mjgh4cki8mx0fa",
                "sg-11134201-8261d-mjgh4d3usnibaa",
                "sg-11134201-82630-mjgh4dn78jk549",
                "sg-11134201-825zz-mjgh4e51oagx58",
                "sg-11134201-8260s-mjgh4eewpbt1cd",
                "sg-11134201-8260y-mjgh4emf28slb4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361189,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 32930000000,
              "price_min": 32930000000,
              "price_max": 32930000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Titanium Color",
                    "Starlight",
                    "Silver black",
                    "Silver",
                    "Rose gold",
                    "Black ",
                    "Silver gold",
                    "Sliver rose gold",
                    "Gold"
                  ],
                  "images": [
                    "sg-11134201-8260s-mjgh4eewpbt1cd",
                    "sg-11134201-8260y-mjgh4emf28slb4",
                    "sg-11134201-8260e-mjgh4etvnzt2d5",
                    "sg-11134201-82633-mjgh4f6ssy6f0a",
                    "sg-11134201-825zn-mjgh4fjufj0ne5",
                    "sg-11134201-8262b-mjgh4frqk8w1d5",
                    "sg-11134201-8262c-mjgh4g6aups0a0",
                    "sg-11134201-8261d-mjgh4gi66n0ha7",
                    "sg-11134201-82601-mjgh4gw2h8nb4c"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "Redmi Watch 5 Lite",
                    "For strap width 22mm",
                    "Redmi Watch 5 Active"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 32930000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 350431009430,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 32930000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46754653408,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82616-mjgh4ax3brpjc1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1693,\"model_id\":350431009430,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82616-mjgh4ax3brpjc1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1693,\"model_id\":350431009430,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46754653408",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56154628378,
              "shopid": 1542929270,
              "name": "For Huawei Wat 4 3 Stainless Steel Watband 20mm 22mm Bracelet For Huawei GT 4 3 2 46mm 42mm/GT2 GT3 Pro/GT3 SE/GT2E Strap",
              "label_ids": [
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699
              ],
              "image": "sg-11134201-825zy-mjgh248za1aa84",
              "images": [
                "sg-11134201-825zy-mjgh248za1aa84",
                "sg-11134201-82609-mjgh24jm4jy8ee",
                "sg-11134201-82601-mjgh24wbjh1g73",
                "sg-11134201-8262n-mjgh256n41kx22",
                "sg-11134201-82628-mjgh25m1pxq808",
                "sg-11134201-8261s-mjgh25yhyps343",
                "sg-11134201-8260g-mjgh26k3hgcl4f",
                "sg-11134201-8260e-mjgh26s2w7i872",
                "sg-11134201-8260n-mjgh27223l6v29"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361084,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 47420000000,
              "price_min": 47420000000,
              "price_max": 47420000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "SZ-silve-black",
                    "SZ-black-black",
                    "SZ-silver-brown",
                    "gal3 bk-br",
                    "SZ-black-brown"
                  ],
                  "images": [
                    "sg-11134201-8261u-mjgh27bxzj0i17",
                    "sg-11134201-8260n-mjgh27223l6v29",
                    "sg-11134201-82628-mjgh27ktuyo021",
                    "sg-11134201-8262s-mjgh27x0qmfb08",
                    "sg-11134201-8260e-mjgh26s2w7i872"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "For GT3 SE",
                    "For GT 2E",
                    "20mm",
                    "For GT3 Pro 43mm",
                    "For GT 3 42mm",
                    "For GT 2 42mm",
                    "For Huawei Watch 3",
                    "For GT 4 46mm",
                    "For GT 3 46mm",
                    "For GT 2 46mm",
                    "For GT 2 Pro",
                    "22mm",
                    "For Huawei GT",
                    "For Huawei Watch 4",
                    "For GT3 Pro 46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 47420000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 277332670159,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 47420000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56154628378,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zy-mjgh248za1aa84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1092,\"model_id\":277332670159,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zy-mjgh248za1aa84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1092,\"model_id\":277332670159,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56154628378",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51754637878,
              "shopid": 695736045,
              "name": "Apple watch se gen 2",
              "label_ids": [
                844931064601283,
                844931086908638,
                700005490,
                700005495,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "id-11134207-8224s-mjgfl2n0p69ud1",
              "images": [
                "id-11134207-8224s-mjgfl2n0p69ud1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361112,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "IWATCH",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 190000000000,
              "price_min": 190000000000,
              "price_max": 190000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 190000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435431002470,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 190000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "febbyy029",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51754637878,
            "shopid": 695736045,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mjgfl2n0p69ud1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,700005490,700005495,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1377,\"model_id\":435431002470,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mjgfl2n0p69ud1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,700005490,700005495,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1377,\"model_id\":435431002470,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51754637878",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29294037141,
              "shopid": 1542929270,
              "name": "Quickfit 26mm 22mm Strap for Garmin Epix Pro 51mm 47mm Tactix 8 7 Pro Fenix 8 7 7X Enduro3 Genuine Leather Watband Accessories",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-82627-mjgh2iix4c8xbe",
              "images": [
                "sg-11134201-82627-mjgh2iix4c8xbe",
                "sg-11134201-82627-mjgh2iix4c8xbe",
                "sg-11134201-8260s-mjgh2jhx3shwd4",
                "sg-11134201-82616-mjgh2jvkkxs4d0",
                "sg-11134201-8260y-mjgh2kbsvs3n0b",
                "sg-11134201-8261c-mjgh2kq7ij2d4a",
                "sg-11134201-825zw-mjgh2l621khxe6",
                "sg-11134201-8262o-mjgh2lkjiux1d5",
                "sg-11134201-8260r-mjgh2lwy0gzq37"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768361102,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 35000000000,
              "price_min": 35000000000,
              "price_max": 35000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "BlackBlack",
                    "YellowBlack",
                    "BrownBlack"
                  ],
                  "images": [
                    "sg-11134201-8262o-mjgh2lkjiux1d5",
                    "sg-11134201-8260r-mjgh2lwy0gzq37",
                    "sg-11134201-8261c-mjgh2kq7ij2d4a"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Band Width",
                  "options": [
                    "26mm Fenix 7X 7X Pro",
                    "26mm",
                    "26mm Fenix 8 51mm",
                    "26mm Fenix 6X 6X Pro",
                    "26mm Enduro 3 2",
                    "22mm Fenix 7 7 Pro",
                    "22mm Fenix 8 47mm",
                    "22mm Fenix 6 6 Pro",
                    "22mm Epix Pro 47mm",
                    "26mm Tactix 7 7 Pro",
                    "22mm",
                    "26mm Epix Pro 51mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 35000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390431002404,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 35000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Martin Office",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 29294037141,
            "shopid": 1542929270,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82627-mjgh2iix4c8xbe\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2136,\"model_id\":390431002404,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82627-mjgh2iix4c8xbe\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2136,\"model_id\":390431002404,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29294037141",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40478005608,
              "shopid": 1383313024,
              "name": "Gpss Garmin Etrex 10 second normal Murah",
              "label_ids": [
                1400066568,
                844931064601283,
                844931086908638,
                700005490,
                700005495,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696
              ],
              "image": "id-11134207-8224y-mjggueb2641x0c",
              "images": [
                "id-11134207-8224y-mjggueb2641x0c",
                "id-11134207-8224t-mjggueb1cm4j27",
                "id-11134207-8224x-mjgguecz6yo2af",
                "id-11134207-8224t-mjggueaz4jr584"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768360849,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 160000000000,
              "price_min": 160000000000,
              "price_max": 160000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 160000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 375430980891,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 160000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "OnlineSurveypro15",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40478005608,
            "shopid": 1383313024,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjggueb2641x0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,844931086908638,700005490,700005495,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":2069,\"model_id\":375430980891,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjggueb2641x0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,844931086908638,700005490,700005495,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":2069,\"model_id\":375430980891,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40478005608",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46754643581,
              "shopid": 1583967244,
              "name": "100% Original Smartwatch Apple Watch Series 10 46mm With Sport Band/ iWatch Series 10 Jam Pintar Tahan retak dan tahan debu dengan level IP6X AMOLED HD Display Bluetooth Call Sports Fitness Tracker Smartwatch Pernah Dipakai Pria Wanita Smartwatch iPhone",
              "label_ids": [
                2023641,
                2068629,
                2018619,
                298938357,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                2098629
              ],
              "image": "id-11134207-8224t-mjgfzo36fj0m47",
              "images": [
                "id-11134207-8224t-mjgfzo36fj0m47",
                "id-11134207-8224p-mjgfzo39a2h346",
                "id-11134207-8224r-mjgfzo394g7b4c",
                "id-11134207-8224p-mjgfzo395urra0",
                "id-11134207-8224w-mjgfzo3979c777",
                "id-11134207-8224u-mjgfzo39bh1j91",
                "id-11134207-8224z-mjgfzo39foqv3d",
                "id-11134207-8224v-mjgg4w2id8ub9b",
                "id-11134207-8224z-mjgg4w2ibu9vc6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768359896,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 75350000000,
              "price_min": 75350000000,
              "price_max": 75350000000,
              "price_min_before_discount": 629900000000,
              "price_max_before_discount": 629900000000,
              "hidden_price_display": null,
              "price_before_discount": 629900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-88%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemw-mjgg5esv22gyaf.16000081768359557.mp4",
                  "thumb_url": "id-11110105-6vemw-mjgg5esv22gyaf_cover",
                  "duration": 40,
                  "version": 2,
                  "vid": "id-11110105-6vemw-mjgg5esv22gyaf",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemw-mjgg5esv22gyaf.16000081768359557.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemw-mjgg5esv22gyaf.16000081768359557.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemw-mjgg5esv22gyaf.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Series 10-Midnight",
                    "Series 10-Starlight",
                    "Series 10-White",
                    "Series 10-Pink",
                    "Series 10 42mm-Pink",
                    "Series 10-Midnight."
                  ],
                  "images": [
                    "id-11134207-8224z-mjgg4w2ilo8z2e",
                    "id-11134207-8224o-mjgg4w2in2tf7f",
                    "id-11134207-8224u-mjgg4w2iohdv56",
                    "id-11134207-82250-mjgg4w2ipvyb52",
                    "id-11134207-8224t-mjggc06rv5dt4e",
                    "id-11134207-8224z-mjgg4w2ilo8z2e"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 374234283262625,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp246RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227921218519040,
                "price": 74020000000,
                "strikethrough_price": 629900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1272267834540032,
                "discount_text": "-88%",
                "model_id": 355430871448,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1272267834540032,
                  "voucher_code": "E4U8ZZZZZ",
                  "voucher_discount": 1330000000,
                  "time_info": {
                    "start_time": 1762570560,
                    "end_time": 1769164380,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 629900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp246RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Maple Digital Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46754643581,
            "shopid": 1583967244,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjgfzo36fj0m47\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2068629,2018619,298938357,1428713,1718087960,844931086908638,844931064601283,1059152,1049122,1718093079,822059908662278,825465608499232,1119699,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":1694,\"model_id\":355430871448,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjgfzo36fj0m47\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2068629,2018619,298938357,1428713,1718087960,844931086908638,844931064601283,1059152,1049122,1718093079,822059908662278,825465608499232,1119699,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":1694,\"model_id\":355430871448,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46754643581",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55804632630,
              "shopid": 57065371,
              "name": "Samsung Galaxy smart watch 6 Clasic 47mm unit only",
              "label_ids": [
                844931086908638,
                700000503,
                1049116,
                822059908662278,
                825465608499232,
                1119699
              ],
              "image": "id-11134207-8224o-mjgfjks0bdabef",
              "images": [
                "id-11134207-8224o-mjgfjks0bdabef",
                "id-11134207-8224o-mjgfjksfot1ga5",
                "id-11134207-8224s-mjgfjkunr6dg1f",
                "id-11134207-82252-mjgfjkw9jhfr32",
                "id-11134207-8224u-mjgfjksh0kcl6a",
                "id-11134207-8224x-mjgfjksh1yx1cb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768358848,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Samsung",
              "cmt_count": 0,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "new",
              "price": 200000000000,
              "price_min": 200000000000,
              "price_max": 200000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Ngawi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 200000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 395430779599,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 200000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "anggapratama999",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55804632630,
            "shopid": 57065371,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjgfjks0bdabef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,700000503,1049116,822059908662278,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":563,\"model_id\":395430779599,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjgfjks0bdabef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,700000503,1049116,822059908662278,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":563,\"model_id\":395430779599,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55804632630",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29744037010,
              "shopid": 1615694320,
              "name": "HOT!!! For Renault Emulator For Sam-sung Universal Steering Lock Emulator Simulator ESL ELV with Lock Sound",
              "label_ids": [
                844931064601283,
                1059152,
                700005489,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699
              ],
              "image": "sg-11134201-8260t-mjgfoxo7focj48",
              "images": [
                "sg-11134201-8260t-mjgfoxo7focj48",
                "sg-11134201-8260f-mjgfoxzwit53d0",
                "sg-11134201-82614-mjgfoywq2vwl6e",
                "sg-11134201-82601-mjgfozlsdqmd60",
                "sg-11134201-825zm-mjgfozvj9vr9bc",
                "sg-11134201-8262o-mjgfp0abwwlj08",
                "sg-11134201-8261s-mjgfp0lq9ssl5f",
                "sg-11134201-8260x-mjgfp0unv1frd8",
                "sg-11134201-825zl-mjgfp144gcn5ea"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768358787,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 78785500000,
              "price_min": 78785500000,
              "price_max": 78785500000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "for RENAULIT"
                  ],
                  "images": [
                    "sg-11134201-8260x-mjgfp0unv1frd8"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 77785500000,
                "strikethrough_price": 78785500000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1330143046811648,
                "discount_text": null,
                "model_id": 430430786929,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1330143046811648,
                  "voucher_code": "DELLDELLA",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1768024980,
                    "end_time": 1774940580,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 78785500000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Della_x_shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 29744037010,
            "shopid": 1615694320,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260t-mjgfoxo7focj48\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005489,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":564,\"model_id\":430430786929,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260t-mjgfoxo7focj48\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005489,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":564,\"model_id\":430430786929,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29744037010",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48854647402,
              "shopid": 1723798333,
              "name": "Kospet Tank S1 Rugged Smartwatch Amoled SPO2 For Women",
              "label_ids": [
                844931064601283,
                1059152,
                1049122,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8260r-mjgefsq8ds7572",
              "images": [
                "sg-11134201-8260r-mjgefsq8ds7572",
                "sg-11134201-82623-mjgefszk969w5c",
                "sg-11134201-82635-mjgeft77etj533",
                "sg-11134201-82610-mjgefte4ffgm5c",
                "sg-11134201-8260m-mjgeftka7htt41",
                "sg-11134201-8262k-mjgeftqfvfnp76",
                "sg-11134201-82603-mjgeftwloy698e",
                "sg-11134201-8261n-mjgefu4y21vl94"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768356676,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 299900000000,
              "price_min": 299900000000,
              "price_max": 299900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "White"
                  ],
                  "images": [
                    "sg-11134201-82603-mjgeftwloy698e",
                    "sg-11134201-8261n-mjgefu4y21vl94"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 299900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 370430625485,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 299900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GaleriGadget",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48854647402,
            "shopid": 1723798333,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260r-mjgefsq8ds7572\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":581,\"model_id\":370430625485,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260r-mjgefsq8ds7572\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":581,\"model_id\":370430625485,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48854647402",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53754632141,
              "shopid": 1723798333,
              "name": "Kospet Tank M3 Ultra Bluetooth Calling Smartwatch GPS Amoled Waterproof SPO2 Jam Tangan Digital",
              "label_ids": [
                844931064601283,
                1059152,
                1049122,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-82619-mjgefbx3q1a9db",
              "images": [
                "sg-11134201-82619-mjgefbx3q1a9db",
                "sg-11134201-8261d-mjgefc6o28ld85",
                "sg-11134201-825zv-mjgefcfdhuyve3",
                "sg-11134201-8262g-mjgefcohrcat0c",
                "sg-11134201-8261t-mjgefcxtqwhvd3",
                "sg-11134201-8261k-mjgefd4aap6v8a",
                "sg-11134201-82632-mjgefdc15tz7e7",
                "sg-11134201-82608-mjgefdmt4emca7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768356654,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 349900000000,
              "price_min": 349900000000,
              "price_max": 349900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "WARNA",
                  "options": [
                    "BLACK",
                    "SILVER"
                  ],
                  "images": [
                    "sg-11134201-82632-mjgefdc15tz7e7",
                    "sg-11134201-82608-mjgefdmt4emca7"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 349900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 272332434445,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 349900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GaleriGadget",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53754632141,
            "shopid": 1723798333,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82619-mjgefbx3q1a9db\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":583,\"model_id\":272332434445,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82619-mjgefbx3q1a9db\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":583,\"model_id\":272332434445,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53754632141",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48554647417,
              "shopid": 1723798333,
              "name": "Kospet Pulse Casual Sporty Smartwatch GPS 1.96โ€ Amoled 180+ Sports Modes Strava Support",
              "label_ids": [
                844931064601283,
                1059152,
                1049122,
                822059908662278,
                825465608499232
              ],
              "image": "sg-11134201-8262q-mjgefkdxqkn70e",
              "images": [
                "sg-11134201-8262q-mjgefkdxqkn70e",
                "sg-11134201-825zr-mjgefkojm29w4d",
                "sg-11134201-82612-mjgefkyft72914",
                "sg-11134201-8260i-mjgefl8u5jiaf6",
                "sg-11134201-8260g-mjgeflhqkooy48",
                "sg-11134201-82625-mjgefloolq8351",
                "sg-11134201-82617-mjgeflvhr9xc3d",
                "sg-11134201-8261b-mjgefm299s79e5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768356665,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 199900000000,
              "price_min": 199900000000,
              "price_max": 199900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "WARNA",
                  "options": [
                    "GRAPHITE GREY",
                    "ICY SILVER"
                  ],
                  "images": [
                    "sg-11134201-82617-mjgeflvhr9xc3d",
                    "sg-11134201-8261b-mjgefm299s79e5"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 425430617443,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GaleriGadget",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48554647417,
            "shopid": 1723798333,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262q-mjgefkdxqkn70e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":582,\"model_id\":425430617443,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262q-mjgefkdxqkn70e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":582,\"model_id\":425430617443,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48554647417",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40177999686,
              "shopid": 919858849,
              "name": "Huawei band 9",
              "label_ids": [
                844931064601283,
                1049112,
                1059151,
                1718093079,
                822059908662278,
                825465608499232,
                1119699
              ],
              "image": "id-11134207-8224q-mjgd2dpp5laafd",
              "images": [
                "id-11134207-8224q-mjgd2dpp5laafd",
                "id-11134207-82250-mjgd2dqr8jk1a3",
                "id-11134207-82251-mjgd2dpo29dwa5",
                "id-11134207-8224y-mjgd2dt077y9fe",
                "id-11134207-8224q-mjgd2dpmf9j598",
                "id-11134207-8224x-mjgd2dpmgo3l7b",
                "id-11134207-82250-mjgd2dpmi2o1a5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768354581,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 25000000000,
              "price_min": 25000000000,
              "price_max": 25000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 25000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 315431070972,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 25000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Cuplis__",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40177999686,
            "shopid": 919858849,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjgd2dpp5laafd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":603,\"model_id\":315431070972,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjgd2dpp5laafd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":603,\"model_id\":315431070972,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40177999686",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49554656290,
              "shopid": 29809856,
              "name": "Apple Watch SE 44mm 2020 gps",
              "label_ids": [
                1059152,
                700005487,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079
              ],
              "image": "id-11134207-8224p-mjgcylj08hs3f2",
              "images": [
                "id-11134207-8224p-mjgcylj08hs3f2",
                "id-11134207-8224t-mjgcylike77qf7",
                "id-11134207-8224v-mjgcylj38nifd0",
                "id-11134207-8224x-mjgcyliu6rr8d4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768354344,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple Watch",
              "cmt_count": 0,
              "flag": 0,
              "cb_option": 0,
              "item_status": "new",
              "price": 160000000000,
              "price_min": 160000000000,
              "price_max": 160000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 160000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 395430459204,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 160000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "badCalyx",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49554656290,
            "shopid": 29809856,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjgcylj08hs3f2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,700005487,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":179,\"model_id\":395430459204,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjgcylj08hs3f2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,700005487,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":179,\"model_id\":395430459204,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49554656290",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46204642214,
              "shopid": 313289285,
              "name": "jam swatch, jam vintage, jam wanita, jam pria murah, bekas, second, bukan smartwatch, bukan casio",
              "label_ids": [
                844931086908638,
                844931064601283,
                1400066568,
                1059152,
                1049124,
                822059908662278,
                825465608493600,
                825465608494624,
                822120592861206,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                1718093079
              ],
              "image": "id-11134207-8224t-mjgcwovv1ngh59",
              "images": [
                "id-11134207-8224t-mjgcwovv1ngh59"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768354321,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Swatch.",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 30000000000,
              "price_min": 30000000000,
              "price_max": 30000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "jam",
                  "options": [
                    "stopwatch",
                    "denim"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 30000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 330430459106,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 30000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Brodiee.market",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46204642214,
            "shopid": 313289285,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjgcwovv1ngh59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1400066568,1059152,1049124,822059908662278,825465608493600,825465608494624,822120592861206,825465608499232,825465608497696,2048660,2048661,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":605,\"model_id\":330430459106,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjgcwovv1ngh59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1400066568,1059152,1049124,822059908662278,825465608493600,825465608494624,822120592861206,825465608499232,825465608497696,2048660,2048661,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":605,\"model_id\":330430459106,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46204642214",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50404626585,
              "shopid": 1636998644,
              "name": "Huawei Watch Fit 4 Pro",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608493600,
                1119699
              ],
              "image": "id-11134207-8224r-mjgcf8rp9gcmca",
              "images": [
                "id-11134207-8224r-mjgcf8rp9gcmca",
                "id-11134207-8224s-mjgcf8rpaux1f4",
                "id-11134207-8224r-mjgcf8rpc9hha6",
                "id-11134207-8224y-mjgcf8rpdo1x19",
                "id-11134207-82251-mjgcf8rpf2md46",
                "id-11134207-82250-mjgcf8rpgh6tc2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768353671,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 230000000000,
              "price_min": 230000000000,
              "price_max": 230000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 230000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 425430427554,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 230000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Leonscake",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50404626585,
            "shopid": 1636998644,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjgcf8rp9gcmca\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608493600,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":625,\"model_id\":425430427554,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjgcf8rp9gcmca\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608493600,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":625,\"model_id\":425430427554,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50404626585",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50454635555,
              "shopid": 768348160,
              "name": "KARTU HALO GPS TRACKER PAKET 1 TAHUN",
              "label_ids": [
                2068629,
                2018619,
                298938357,
                844931064601283,
                844931086908638,
                1049116,
                1049117,
                822059908662278,
                825465608499232,
                825465608493600,
                825465608494624,
                1718093079,
                1119699,
                2098629
              ],
              "image": "id-11134207-8224x-mjg9i216mf4052",
              "images": [
                "id-11134207-8224x-mjg9i216mf4052",
                "id-11134207-8224p-mjg9i216ntog3a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768348470,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 22500000000,
              "price_min": 22500000000,
              "price_max": 22500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp75RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 22500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 395430239631,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 22500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp75RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "surabayaย seller",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50454635555,
            "shopid": 768348160,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjg9i216mf4052\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2068629,2018619,298938357,844931064601283,844931086908638,1049116,1049117,822059908662278,825465608499232,825465608493600,825465608494624,1718093079,1119699,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":662,\"model_id\":395430239631,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjg9i216mf4052\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2068629,2018619,298938357,844931064601283,844931086908638,1049116,1049117,822059908662278,825465608499232,825465608493600,825465608494624,1718093079,1119699,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":662,\"model_id\":395430239631,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50454635555",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57004621326,
              "shopid": 977661595,
              "name": "samsung galaxy fit 3 second mulus",
              "label_ids": [
                844931086908638,
                844931064601283,
                1049116,
                700005519,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                1119699
              ],
              "image": "id-11134207-8224t-mjg8w468mark70",
              "images": [
                "id-11134207-8224t-mjg8w468mark70",
                "id-11134207-8224w-mjg8w464bsap08",
                "id-11134207-8224x-mjg8w45ngyytbb",
                "id-11134207-8224s-mjg8w45xhyx12d",
                "id-11134207-8224q-mjg8w46daux2d1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768347441,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Samsung",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 55000000000,
              "price_min": 55000000000,
              "price_max": 55000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Malang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 55000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 415430213254,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 55000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Bakoelย Malang",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57004621326,
            "shopid": 977661595,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjg8w468mark70\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049116,700005519,1718093079,822059908662278,825465608494624,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":667,\"model_id\":415430213254,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjg8w468mark70\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049116,700005519,1718093079,822059908662278,825465608494624,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":667,\"model_id\":415430213254,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57004621326",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47454650771,
              "shopid": 385129155,
              "name": "SMARTWATCH PEJE REVO",
              "label_ids": [
                2023641,
                844931064601283,
                1059150,
                700005498,
                1718093079,
                822059908662278,
                825465608499232,
                2048660,
                2048661,
                825465608494624,
                1119699
              ],
              "image": "id-11134207-8224q-mjg7n226wg77d7",
              "images": [
                "id-11134207-8224q-mjg7n226wg77d7",
                "id-11134207-8224s-mjg7n226xurnd6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768345485,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "PEJE",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 74750000000,
              "price_min": 74750000000,
              "price_max": 74750000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "WARNA",
                  "options": [
                    "BIRU",
                    "HITAM"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Medan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 74550000000,
                "strikethrough_price": 74750000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1292691635978240,
                "discount_text": null,
                "model_id": 435430169570,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1292691635978240,
                  "voucher_code": "LIMCFGF3B",
                  "voucher_discount": 200000000,
                  "time_info": {
                    "start_time": 1763560138,
                    "end_time": 1769435160,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 35000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 74750000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Limcollectionmedan",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47454650771,
            "shopid": 385129155,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjg7n226wg77d7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,844931064601283,1059150,700005498,1718093079,822059908662278,825465608499232,2048660,2048661,825465608494624,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":679,\"model_id\":435430169570,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjg7n226wg77d7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,844931064601283,1059150,700005498,1718093079,822059908662278,825465608499232,2048660,2048661,825465608494624,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":679,\"model_id\":435430169570,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47454650771",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44904639647,
              "shopid": 1567084017,
              "name": "Smartwatch Aolon GTR - Panggilan Bluetooth, Layar Sentuh 1.39 Inci, Tahan Air",
              "label_ids": [
                2143597,
                2143613,
                844931086908638,
                844931064601283,
                2103651,
                700005490,
                700005495,
                822059908662278,
                825465608499232,
                1119699
              ],
              "image": "id-11134207-8224s-mjfme9d0kkcg82",
              "images": [
                "id-11134207-8224s-mjfme9d0kkcg82",
                "id-11134207-8224q-mjfme9d0lyww44"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768337240,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 20000000000,
              "price_min": 20000000000,
              "price_max": 20000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "colour",
                  "options": [
                    "black",
                    "Hitam"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 20000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 395430016270,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 20000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Shop new",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44904639647,
            "shopid": 1567084017,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mjfme9d0kkcg82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2143597,2143613,844931086908638,844931064601283,2103651,700005490,700005495,822059908662278,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":723,\"model_id\":395430016270,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mjfme9d0kkcg82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2143597,2143613,844931086908638,844931064601283,2103651,700005490,700005495,822059908662278,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":723,\"model_id\":395430016270,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44904639647",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42227998734,
              "shopid": 77799993,
              "name": "Apple Watch SE Gen 3 iBox Midnight",
              "label_ids": [
                1400066568,
                2018619,
                1428713,
                1718087960,
                844931064601283,
                1049112,
                700000501,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1718093079,
                298463379,
                1119699,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224y-mjg0b4xzywhy1d",
              "images": [
                "id-11134207-8224y-mjg0b4xzywhy1d",
                "id-11134207-82252-mjg0b4xnitc4a5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768333119,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 410000000000,
              "price_min": 410000000000,
              "price_max": 410000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Sukabumi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 410000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 365429930109,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 410000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "7JanuariStore",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42227998734,
            "shopid": 77799993,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjg0b4xzywhy1d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,1428713,1718087960,844931064601283,1049112,700000501,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,298463379,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":730,\"model_id\":365429930109,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjg0b4xzywhy1d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,1428713,1718087960,844931064601283,1049112,700000501,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,298463379,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":730,\"model_id\":365429930109,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42227998734",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55554614715,
              "shopid": 1720936191,
              "name": "XEROCHA NEW GPS TRACKER OBD CY01 ORIGINAL/GPS MOBIL DAN MOTOR",
              "label_ids": [
                844931064601283,
                1049116,
                1049117,
                822059908662278,
                825465608497696,
                825465608499232
              ],
              "image": "id-11134201-82252-mjfzsog4rrie08",
              "images": [
                "id-11134201-82252-mjfzsog4rrie08",
                "id-11134201-8224u-mjfzsq7ciscl92",
                "id-11134201-8224w-mjfzss0nkt8ge3",
                "id-11134201-8224w-mjfzst3bk5j745",
                "id-11134201-8224x-mjfzsuw48miqd5",
                "id-11134201-8224v-mjfzsvxlnithf1",
                "id-11134201-8224o-mjfzswzs00041c",
                "id-11134201-8224s-mjfzsytbd7us1a",
                "id-11134201-8224x-mjfzsztv6p6tc5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768332074,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 38166600000,
              "price_min": 38166600000,
              "price_max": 38166600000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "warna Acak",
                    "hitam"
                  ],
                  "images": [
                    "id-11134201-8224x-mjfzt2b7cxky2d",
                    "id-11134201-8224t-mjfzt44oqgw78f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 38066300000,
                "strikethrough_price": 38166600000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1332399523119104,
                "discount_text": null,
                "model_id": 365429892840,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1332399523119104,
                  "voucher_code": "XEROXERO",
                  "voucher_discount": 100300000,
                  "time_info": {
                    "start_time": 1768293720,
                    "end_time": 1776099540,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 38166600000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "XEROCHA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55554614715,
            "shopid": 1720936191,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjfzsog4rrie08\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049117,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":731,\"model_id\":365429892840,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjfzsog4rrie08\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049117,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":731,\"model_id\":365429892840,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55554614715",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56354620203,
              "shopid": 355570056,
              "name": "Samsung Galaxy Watch 8 40mm โ€“ Black (SEIN)",
              "label_ids": [
                844931064601283,
                1049136,
                1049112,
                822059908662278,
                825465608497696,
                825465608493600,
                825465608499232,
                1718093079,
                1119699
              ],
              "image": "id-11134207-8224x-mjfyfu17bpc292",
              "images": [
                "id-11134207-8224x-mjfyfu17bpc292",
                "id-11134207-82250-mjfyfu17d3wi95",
                "id-11134207-8224z-mjfyfu17eigy5f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768331460,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Samsung",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 350000000000,
              "price_min": 350000000000,
              "price_max": 350000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Depok",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 350000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435429873139,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 350000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Tari-Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56354620203,
            "shopid": 355570056,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjfyfu17bpc292\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049136,1049112,822059908662278,825465608497696,825465608493600,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":734,\"model_id\":435429873139,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjfyfu17bpc292\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049136,1049112,822059908662278,825465608497696,825465608493600,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":734,\"model_id\":435429873139,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56354620203",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45154638995,
              "shopid": 1136167890,
              "name": "HUAWEI WATCH FIT 4 Pro | Sapphire Glass & Titanium | Pro-Level Outdoor Sports | ECG | 10-Day Battery Life",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1049141,
                700005513,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608493600,
                825465608494624
              ],
              "image": "id-11134207-8224u-mjfx77gaioslb5",
              "images": [
                "id-11134207-8224u-mjfx77gaioslb5",
                "id-11134207-8224s-mjfx9hy7kf0h4b",
                "id-11134207-82252-mjfxaw0565ty87",
                "id-11134207-8224o-mjfxb3qfqozkd4",
                "id-11134207-8224r-mjfxbbrqxmv423",
                "id-11134207-8224t-mjfxbjm9zldwb3",
                "id-11134207-8224t-mjfxc1kn2dj91a",
                "id-11134207-82252-mjfxcbjikv0kf4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768328048,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 299900000000,
              "price_min": 299900000000,
              "price_max": 299900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bantul",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 299400000000,
                "strikethrough_price": 299900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1332467588808704,
                "discount_text": null,
                "model_id": 297331962187,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1332467588808704,
                  "voucher_code": "DEVAZKAL",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1768301723,
                    "end_time": 1769943180,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 299900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Adaby Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45154638995,
            "shopid": 1136167890,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjfx77gaioslb5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1049141,700005513,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624],\"matched_keywords\":[\"\"],\"merge_rank\":738,\"model_id\":297331962187,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjfx77gaioslb5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1049141,700005513,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624],\"matched_keywords\":[\"\"],\"merge_rank\":738,\"model_id\":297331962187,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45154638995",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46604634260,
              "shopid": 319802020,
              "name": "F0S$IL SMARTWACH GEN 5E (PRELOVED) Belum pernah dipakai",
              "label_ids": [
                844931086908638,
                1049142,
                1049143,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696
              ],
              "image": "id-11134207-8224r-mjfwg9s25yio21",
              "images": [
                "id-11134207-8224r-mjfwg9s25yio21",
                "id-11134207-82251-mjfwg9s2lero1a",
                "id-11134207-8224r-mjfwg9rz1l36ee",
                "id-11134207-8224s-mjfwg9rz4e87a2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768327216,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Fossil",
              "cmt_count": 0,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "new",
              "price": 180000000000,
              "price_min": 180000000000,
              "price_max": 180000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Pekanbaru",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 180000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 282331943463,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 180000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Raya_Store31",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46604634260,
            "shopid": 319802020,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjfwg9s25yio21\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,1049142,1049143,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":740,\"model_id\":282331943463,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjfwg9s25yio21\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,1049142,1049143,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":740,\"model_id\":282331943463,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46604634260",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57354618456,
              "shopid": 46889567,
              "name": "Garmin instinct 1 Solar",
              "label_ids": [
                1000167,
                2018619,
                2023641,
                700190019,
                844931086908638,
                844931064601283,
                1049112,
                700005494,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                1119699,
                1718093079,
                1718596,
                2213765
              ],
              "image": "id-11134207-8224w-mjfu4c8zxvd06b",
              "images": [
                "id-11134207-8224w-mjfu4c8zxvd06b",
                "id-11134207-8224y-mjfu4c9vb7y82e",
                "id-11134207-82251-mjfu4caklfya89",
                "id-11134207-82250-mjfu4c933nd223"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768322757,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 215000000000,
              "price_min": 215000000000,
              "price_max": 215000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Cimahi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 215000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 395429574606,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 215000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "missile LEVEL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57354618456,
            "shopid": 46889567,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjfu4c8zxvd06b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,2023641,700190019,844931086908638,844931064601283,1049112,700005494,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,1119699,1718093079,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":765,\"model_id\":395429574606,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjfu4c8zxvd06b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,2023641,700190019,844931086908638,844931064601283,1049112,700005494,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,1119699,1718093079,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":765,\"model_id\":395429574606,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57354618456",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47504638209,
              "shopid": 155105317,
              "name": "GARMIN FORERUNNER 55",
              "label_ids": [
                1000167,
                700190019,
                1428713,
                1718087960,
                844931064601283,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1718596,
                1119699,
                2213765
              ],
              "image": "id-11134207-8224r-mjft8xkpspa990",
              "images": [
                "id-11134207-8224r-mjft8xkpspa990",
                "id-11134207-8224t-mjft8xksq1vp57"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768321269,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 110000000000,
              "price_min": 110000000000,
              "price_max": 110000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 110000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 350429493653,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 110000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "maulana_yogi25",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47504638209,
            "shopid": 155105317,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjft8xkpspa990\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,700190019,1428713,1718087960,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1718596,1119699,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":772,\"model_id\":350429493653,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjft8xkpspa990\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,700190019,1428713,1718087960,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1718596,1119699,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":772,\"model_id\":350429493653,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47504638209",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50004604104,
              "shopid": 1725009913,
              "name": "Apple Watch Series 5 - Second",
              "label_ids": [
                844931064601283,
                1059152,
                700005489,
                822059908662278,
                825465608499232,
                1718596,
                2213765
              ],
              "image": "id-11134207-8224o-mjft37z8elfqa0",
              "images": [
                "id-11134207-8224o-mjft37z8elfqa0",
                "id-11134207-8224v-mjft37z7mi2s25",
                "id-11134207-82250-mjft37z2wjcx13",
                "id-11134207-82251-mjft37z3hlvm1c",
                "id-11134207-82250-mjft37z3g7b6ed"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768321012,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple Watch",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 175000000000,
              "price_min": 175000000000,
              "price_max": 175000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 175000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 410429495003,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 175000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "qkghm_vtbn",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50004604104,
            "shopid": 1725009913,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjft37z8elfqa0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005489,822059908662278,825465608499232,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":773,\"model_id\":410429495003,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjft37z8elfqa0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005489,822059908662278,825465608499232,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":773,\"model_id\":410429495003,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50004604104",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52304608636,
              "shopid": 202435500,
              "name": "Smartwatch amazfit bip 3 pro gps",
              "label_ids": [
                1400066568,
                844931064601283,
                700005490,
                1049137,
                822059908662278,
                825465608499232,
                1718093079,
                1718596,
                2213765,
                1119699
              ],
              "image": "id-11134207-8224w-mjft4q75gjk246",
              "images": [
                "id-11134207-8224w-mjft4q75gjk246",
                "id-11134207-8224x-mjft4q71eghs42",
                "id-11134207-8224z-mjft4q76phqdd1",
                "id-11134207-8224t-mjft4q71h9mo22",
                "id-11134207-8224t-mjft4q8phn2823",
                "id-11134207-8224s-mjft4q8oh4au78"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768320928,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Amazfit",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 45800000000,
              "price_min": 45800000000,
              "price_max": 45800000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Serang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 45800000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 420429483868,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 45800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "e-Gadget Pro",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52304608636,
            "shopid": 202435500,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjft4q75gjk246\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,700005490,1049137,822059908662278,825465608499232,1718093079,1718596,2213765,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":775,\"model_id\":420429483868,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjft4q75gjk246\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,700005490,1049137,822059908662278,825465608499232,1718093079,1718596,2213765,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":775,\"model_id\":420429483868,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52304608636",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53004612843,
              "shopid": 6971655,
              "name": "Iwatch Apple Watch SE Gen 2 IBOX",
              "label_ids": [
                844931064601283,
                1049124,
                1059152,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                2213765
              ],
              "image": "id-11134207-8224q-mjfpctsrppfnd7",
              "images": [
                "id-11134207-8224q-mjfpctsrppfnd7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768314672,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple Watch",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 320000000000,
              "price_min": 320000000000,
              "price_max": 320000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 320000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 355429156891,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 320000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "itsmewk",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53004612843,
            "shopid": 6971655,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjfpctsrppfnd7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049124,1059152,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":804,\"model_id\":355429156891,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjfpctsrppfnd7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049124,1059152,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":804,\"model_id\":355429156891,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53004612843",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56154612646,
              "shopid": 1219785103,
              "name": "C5S Smart Bracelet Color Screen Sports Pedometer Heart Rate Blood Oxygen Blood Pressure Sleep Health Monitoring Bracelet",
              "label_ids": [
                844931086908638,
                1049120,
                700005490,
                1718093079,
                822059908662278,
                825465608499232,
                1718596,
                2213765,
                1119699
              ],
              "image": "sg-11134201-8262d-mjfov5jo9ddz8b",
              "images": [
                "sg-11134201-8262d-mjfov5jo9ddz8b",
                "sg-11134201-825zt-mjfov9t2jgg15a",
                "sg-11134201-8260t-mjfov7dcp8n649",
                "sg-11134201-82628-mjfovagfw83l70",
                "sg-11134201-82614-mjfovb61tmgz77",
                "sg-11134201-82623-mjfov64yjkeaf8",
                "sg-11134201-82629-mjfov6qinqite4",
                "sg-11134201-8262f-mjfov8q7j9xf7f",
                "sg-11134201-82626-mjfovcap1yww2d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768313683,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "new",
              "price": 32257800000,
              "price_min": 32257800000,
              "price_max": 32257800000,
              "price_min_before_discount": 53762900000,
              "price_max_before_discount": 53762900000,
              "hidden_price_display": null,
              "price_before_discount": 53762900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-40%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black",
                    "Sky Blue",
                    "Pink",
                    "Dark blue",
                    "Red"
                  ],
                  "images": [
                    "sg-11134201-8262d-mjfov5jo9ddz8b",
                    "sg-11134201-82623-mjfov64yjkeaf8",
                    "sg-11134201-82629-mjfov6qinqite4",
                    "sg-11134201-8260t-mjfov7dcp8n649",
                    "sg-11134201-8262f-mjfov8q7j9xf7f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 401394431705343,
                "bundle_deal_label": "Pilih 2, diskon 10%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 802788855054336,
                "price": 32257800000,
                "strikethrough_price": 53762900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-40%",
                "model_id": 330429092277,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 53762900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "alpin510",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56154612646,
            "shopid": 1219785103,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262d-mjfov5jo9ddz8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,1049120,700005490,1718093079,822059908662278,825465608499232,1718596,2213765,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":809,\"model_id\":330429092277,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262d-mjfov5jo9ddz8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,1049120,700005490,1718093079,822059908662278,825465608499232,1718596,2213765,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":809,\"model_id\":330429092277,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56154612646",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49504622846,
              "shopid": 1088185358,
              "name": "Olike Lumi R1 Smartwatch Curved HD Display Bluetooth Call IP68",
              "label_ids": [
                2018619,
                700700063,
                2023641,
                844931064601283,
                844931086908638,
                1400005551,
                700000538,
                822059908662278,
                825465608497696,
                2048660,
                2048661,
                825465608499232,
                1718596,
                2213765,
                700765096
              ],
              "image": "id-11134207-82252-mjfniotgr8jr8d",
              "images": [
                "id-11134207-82252-mjfniotgr8jr8d",
                "id-11134207-8224t-mjfniot2xzidc1",
                "id-11134207-8224x-mjfniotg6610c1",
                "id-11134207-8224x-mjfniotgsn4776",
                "id-11134207-82252-mjfgssq5g4jm19",
                "id-11134207-8224v-mjfniosvzyf7e3",
                "id-11134207-8224p-mjfniotgu1on05",
                "id-11134207-8224z-mjfniot2ij9hbd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768311604,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Olike",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 35200000000,
              "price_min": 35200000000,
              "price_max": 35200000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Space Grey"
                  ],
                  "images": [
                    "id-11134207-8224y-mjfniotgwutj79"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Pangkal Pinang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 35050000000,
                "strikethrough_price": 35200000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1328027155054592,
                "discount_text": null,
                "model_id": 360428954951,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1328027155054592,
                  "voucher_code": "ORIGSIMA",
                  "voucher_discount": 150000000,
                  "time_info": {
                    "start_time": 1767772740,
                    "end_time": 1769849940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 17500000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 35200000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "PARTSHOP ORIGINALLINE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49504622846,
            "shopid": 1088185358,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjfniotgr8jr8d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700700063,2023641,844931064601283,844931086908638,1400005551,700000538,822059908662278,825465608497696,2048660,2048661,825465608499232,1718596,2213765,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":815,\"model_id\":360428954951,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjfniotgr8jr8d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700700063,2023641,844931064601283,844931086908638,1400005551,700000538,822059908662278,825465608497696,2048660,2048661,825465608499232,1718596,2213765,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":815,\"model_id\":360428954951,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49504622846",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48104636820,
              "shopid": 24160882,
              "name": "[Preloved] Apple Watch Ultra 2 49MM Titanium Blue Ocean Band Second ORIGINAL",
              "label_ids": [
                1400066568,
                844931064601283,
                700005509,
                1049138,
                822059908662278,
                825465608499232,
                1718596,
                2213765,
                1119699
              ],
              "image": "id-11134207-8224y-mjfmsbv7jqiqc0",
              "images": [
                "id-11134207-8224y-mjfmsbv7jqiqc0",
                "id-11134207-8224s-mjfmsg7k1bepbb",
                "id-11134207-8224t-mjfmsg8464g1f5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768310535,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple Watch",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 900000000000,
              "price_min": 900000000000,
              "price_max": 900000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 900000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 365428921020,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 900000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "VAULTED",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48104636820,
            "shopid": 24160882,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjfmsbv7jqiqc0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,700005509,1049138,822059908662278,825465608499232,1718596,2213765,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":818,\"model_id\":365428921020,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjfmsbv7jqiqc0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,700005509,1049138,822059908662278,825465608499232,1718596,2213765,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":818,\"model_id\":365428921020,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48104636820",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49554631156,
              "shopid": 37744937,
              "name": "VIVAN Smart Watch VWX1 Titanium Grey GPS TRACK",
              "label_ids": [
                1000167,
                2018619,
                844931086908638,
                844931064601283,
                1059150,
                700005498,
                822059908662278,
                2048660,
                2048661,
                825465608493600,
                825465608494624,
                825465608499232,
                1119699,
                1718596,
                2213765,
                700765096
              ],
              "image": "id-11134207-8224x-mjfiwa45j75v3e",
              "images": [
                "id-11134207-8224x-mjfiwa45j75v3e",
                "id-11134207-82250-mjfiwa45m0ar2f",
                "id-11134207-8224u-mjfiwa45klqbe3",
                "id-11134207-8224p-mjfiwa45nev7b9",
                "id-11134207-8224x-mjfiwa45otfneb",
                "id-11134207-8224y-mjfiwa45q8034e",
                "id-11134207-8224x-mjfiwa45rmkj15"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768305624,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Vivan",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 99600000000,
              "price_min": 99600000000,
              "price_max": 99600000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Medan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 99100000000,
                "strikethrough_price": 99600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1286883155263488,
                "discount_text": null,
                "model_id": 325428551216,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1286883155263488,
                  "voucher_code": "ALEX9HJNR",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1762867715,
                    "end_time": 1768742760,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 99600000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Alexandrechristie",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49554631156,
            "shopid": 37744937,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjfiwa45j75v3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931086908638,844931064601283,1059150,700005498,822059908662278,2048660,2048661,825465608493600,825465608494624,825465608499232,1119699,1718596,2213765,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":803,\"model_id\":325428551216,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjfiwa45j75v3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931086908638,844931064601283,1059150,700005498,822059908662278,2048660,2048661,825465608493600,825465608494624,825465608499232,1119699,1718596,2213765,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":803,\"model_id\":325428551216,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49554631156",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52154615708,
              "shopid": 385129155,
              "name": "VIVAN Smart Watch VWX1 Titanium Grey GPS TRACK",
              "label_ids": [
                2023641,
                844931064601283,
                1059150,
                700005498,
                1718093079,
                822059908662278,
                825465608499232,
                2048660,
                2048661,
                825465608494624,
                1718596,
                2213765,
                700765096
              ],
              "image": "id-11134207-8224u-mjfiwa45klqbe3",
              "images": [
                "id-11134207-8224u-mjfiwa45klqbe3",
                "id-11134207-8224x-mjfiwa45j75v3e",
                "id-11134207-82250-mjfiwa45m0ar2f",
                "id-11134207-8224p-mjfiwa45nev7b9",
                "id-11134207-8224x-mjfiwa45otfneb",
                "id-11134207-8224y-mjfiwa45q8034e",
                "id-11134207-8224x-mjfiwa45rmkj15"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768305513,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Vivan",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 82550000000,
              "price_min": 82550000000,
              "price_max": 82550000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Medan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 82350000000,
                "strikethrough_price": 82550000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1292691635978240,
                "discount_text": null,
                "model_id": 287331242463,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1292691635978240,
                  "voucher_code": "LIMCFGF3B",
                  "voucher_discount": 200000000,
                  "time_info": {
                    "start_time": 1763560138,
                    "end_time": 1769435160,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 35000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 82550000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Limcollectionmedan",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52154615708,
            "shopid": 385129155,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjfiwa45klqbe3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,844931064601283,1059150,700005498,1718093079,822059908662278,825465608499232,2048660,2048661,825465608494624,1718596,2213765,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":692,\"model_id\":287331242463,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjfiwa45klqbe3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,844931064601283,1059150,700005498,1718093079,822059908662278,825465608499232,2048660,2048661,825465608494624,1718596,2213765,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":692,\"model_id\":287331242463,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52154615708",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51554601614,
              "shopid": 1320354112,
              "name": "GPS Garmin Etrex H Bekas Lengkap",
              "label_ids": [
                844931064601283,
                700005490,
                700005495,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079,
                1119699,
                1718596,
                2213765
              ],
              "image": "id-11134207-8224x-mjfjwbv4w7wh81",
              "images": [
                "id-11134207-8224x-mjfjwbv4w7wh81",
                "id-11134207-8224w-mjfjwbvdzi8536",
                "id-11134207-82250-mjfjwbvdwp399d",
                "id-11134207-8224s-mjfjwbva8npfdc",
                "id-11134207-82251-mjfjwbve0wsl8f",
                "id-11134207-8224u-mjfjwbvdy3npb8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768305510,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 235000000000,
              "price_min": 235000000000,
              "price_max": 235000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 235000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 267331460417,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 235000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CVย ABIZARย SURVEY",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51554601614,
            "shopid": 1320354112,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjfjwbv4w7wh81\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,700005495,822059908662278,825465608497696,825465608499232,1718093079,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":473,\"model_id\":267331460417,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjfjwbv4w7wh81\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,700005495,822059908662278,825465608497696,825465608499232,1718093079,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":473,\"model_id\":267331460417,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51554601614",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57654606273,
              "shopid": 1690111895,
              "name": "StrapStainlessAmazfitT-Rex3 tali jam metal steel huami trex 3 t rex 3",
              "label_ids": [
                844931064601283,
                1428713,
                1718087960,
                1049112,
                1059151,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                298463379,
                1718596,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7rbke-m6dmoubikqug21",
              "images": [
                "id-11134207-7rbke-m6dmoubikqug21",
                "id-11134207-7rbk6-m6dmoubijca059",
                "id-11134207-7rbk4-m6dmoubim5ew20",
                "id-11134207-7rbk5-m6dmoubinjzc62"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768305463,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 31633200000,
              "price_min": 31633200000,
              "price_max": 31633200000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Silver"
                  ],
                  "images": [
                    "id-11134207-7rbkb-m6dmoubiqd4870",
                    "id-11134207-7rbk2-m6dmoubirrooee"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 31633200000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 370428543423,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 31633200000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Calista Tech",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57654606273,
            "shopid": 1690111895,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbke-m6dmoubikqug21\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1428713,1718087960,1049112,1059151,1718093079,822059908662278,825465608497696,825465608499232,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":840,\"model_id\":370428543423,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbke-m6dmoubikqug21\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1428713,1718087960,1049112,1059151,1718093079,822059908662278,825465608497696,825465608499232,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":840,\"model_id\":370428543423,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57654606273",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57204611050,
              "shopid": 372006663,
              "name": "iWatch Series 4 44mm BH100% Stainless Steel Silver Fullset Mulus",
              "label_ids": [
                2018619,
                844931064601283,
                298463379,
                1049141,
                1049156,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                2048660,
                2048661,
                1718596,
                2213765,
                700765096,
                1119699,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82252-mjfjwgqxsx6v64",
              "images": [
                "id-11134207-82252-mjfjwgqxsx6v64",
                "id-11134207-8224s-mjfjwgr2n3lwde",
                "id-11134207-8224s-mjfjwgqtqu4m2f",
                "id-11134207-8224q-mjfjwgr2lp1g8a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768305399,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 227900000000,
              "price_min": 227900000000,
              "price_max": 227900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Sleman",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 227900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 360428532427,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 227900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Timeseries",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57204611050,
            "shopid": 372006663,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjfjwgqxsx6v64\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1049141,1049156,1718093079,822059908662278,825465608494624,825465608499232,2048660,2048661,1718596,2213765,700765096,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":459,\"model_id\":360428532427,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjfjwgqxsx6v64\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1049141,1049156,1718093079,822059908662278,825465608494624,825465608499232,2048660,2048661,1718596,2213765,700765096,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":459,\"model_id\":360428532427,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57204611050",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55254606182,
              "shopid": 220255938,
              "name": "APPLE WATCH SERI 7 45MM",
              "label_ids": [
                844931064601283,
                1400066568,
                1059152,
                700005489,
                1718093079,
                822059908662278,
                825465608492064,
                825465608493600,
                825465608499232,
                1718596,
                2213765,
                1119699
              ],
              "image": "id-11134207-8224u-mjfjlquf6a6f95",
              "images": [
                "id-11134207-8224u-mjfjlquf6a6f95",
                "id-11134207-8224t-mjfjlqu4hekmef",
                "id-11134207-82251-mjfjlqwdg2yoc2",
                "id-11134207-8224x-mjfjlqy13ta9a9",
                "id-11134207-82252-mjfjlqu4r8jr6e",
                "id-11134207-8224o-mjfjlqu4u1on8f",
                "id-11134207-8224y-mjfjlqu4vg9343"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768305373,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 140000000000,
              "price_min": 140000000000,
              "price_max": 140000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 140000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 360428541843,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 140000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EXOTIC_MULTYCOLOUR",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55254606182,
            "shopid": 220255938,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjfjlquf6a6f95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1059152,700005489,1718093079,822059908662278,825465608492064,825465608493600,825465608499232,1718596,2213765,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":845,\"model_id\":360428541843,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjfjlquf6a6f95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1059152,700005489,1718093079,822059908662278,825465608492064,825465608493600,825465608499232,1718596,2213765,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":845,\"model_id\":360428541843,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55254606182",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50754615799,
              "shopid": 1690111895,
              "name": "Strap Stainless Huawei Watch D2 tali jam tangan smartwatch",
              "label_ids": [
                844931064601283,
                1718087960,
                1428713,
                1059151,
                1049112,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298463379,
                1718596,
                2213765,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7rbk6-m76oy4uoz31wd3",
              "images": [
                "id-11134207-7rbk6-m76oy4uoz31wd3",
                "id-11134207-7rbk3-m76f3f24es81a0",
                "id-11134207-7rbk7-m76oy4sh2brd9b",
                "id-11134207-7rbk8-m76oy4sh2bku67",
                "id-11134207-7rbke-m76oy4sh2bu46a",
                "id-11134207-7rbk7-m76oy4sh3qek29"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768305461,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 22179600000,
              "price_min": 22179600000,
              "price_max": 22179600000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Silver",
                    "Hitam"
                  ],
                  "images": [
                    "id-11134207-7rbkd-m76oy4sh7y3w83",
                    "id-11134207-7rbke-m76oy4sh6jjgb9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 22179600000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390428538369,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 22179600000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Calista Tech",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50754615799,
            "shopid": 1690111895,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk6-m76oy4uoz31wd3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718087960,1428713,1059151,1049112,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":842,\"model_id\":390428538369,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk6-m76oy4uoz31wd3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718087960,1428713,1059151,1049112,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":842,\"model_id\":390428538369,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50754615799",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49954621711,
              "shopid": 1690111895,
              "name": "Strap Stainless Redmi Watch 3 Tali Jam Steel Xiaomi Mi Lite Wristband",
              "label_ids": [
                844931064601283,
                1718087960,
                1428713,
                1059151,
                1049112,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                298463379,
                1718596,
                2213765,
                298468389,
                1718088045
              ],
              "image": "id-11134201-7qul5-lh3p0m2wv7ua03",
              "images": [
                "id-11134201-7qul5-lh3p0m2wv7ua03",
                "id-11134201-7qukz-lh3p0m36utng63",
                "id-11134201-7qul6-lh3p0m5or65664",
                "id-11134201-7qukx-lh3p0m9klgvf12"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768305462,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 21943200000,
              "price_min": 21943200000,
              "price_max": 21943200000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Silver"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 21943200000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 405428538407,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 21943200000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Calista Tech",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49954621711,
            "shopid": 1690111895,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul5-lh3p0m2wv7ua03\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718087960,1428713,1059151,1049112,1718093079,822059908662278,825465608497696,825465608499232,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":841,\"model_id\":405428538407,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul5-lh3p0m2wv7ua03\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718087960,1428713,1059151,1049112,1718093079,822059908662278,825465608497696,825465608499232,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":841,\"model_id\":405428538407,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49954621711",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43828001683,
              "shopid": 1690111895,
              "name": "Strap Silicone Suunto Spartan ULTRA silikon tali rubber karet",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                1059151,
                1049112,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298463379,
                1718596,
                2213765,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7r98s-lqognhxb302m1c",
              "images": [
                "id-11134207-7r98s-lqognhxb302m1c",
                "id-11134207-7r991-lqognhxb4en298",
                "id-11134207-7r98x-lqognhxb5t7i20",
                "id-11134207-7r98q-lqognhxb77ryb2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768305461,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 30906000000,
              "price_min": 30906000000,
              "price_max": 30906000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Biru"
                  ],
                  "images": [
                    "id-11134207-7rasg-m0sux2pgzw2472",
                    "id-11134207-7rasc-m0sux2ph1amkc4"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 30906000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 375428533364,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 30906000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Calista Tech",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43828001683,
            "shopid": 1690111895,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98s-lqognhxb302m1c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1059151,1049112,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":843,\"model_id\":375428533364,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98s-lqognhxb302m1c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1059151,1049112,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":843,\"model_id\":375428533364,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43828001683",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49954626003,
              "shopid": 722750817,
              "name": "GPS Garmin 64s bekas komplit Murah",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                1718596,
                2213765
              ],
              "image": "id-11134207-8224x-mjfjc6vi0mis54",
              "images": [
                "id-11134207-8224x-mjfjc6vi0mis54",
                "id-11134207-8224o-mjfjc6vmcjk20a",
                "id-11134207-8224q-mjfjc6wqxe6a36",
                "id-11134207-8224s-mjfjc6vn1ts08f",
                "id-11134207-8224r-mjfjc6vn38cg08",
                "id-11134207-8224z-mjfjc6vn4mww83"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768304564,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 490000000000,
              "price_min": 490000000000,
              "price_max": 490000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 490000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 177375865902,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 490000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "FIKRY SURVEY",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49954626003,
            "shopid": 722750817,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjfjc6vi0mis54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":849,\"model_id\":177375865902,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjfjc6vi0mis54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":849,\"model_id\":177375865902,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49954626003",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44554626064,
              "shopid": 1427950315,
              "name": "Smartwatch Aolon GTR 3",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059156,
                700005579,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                1718596,
                2213765
              ],
              "image": "id-11134207-8224w-mjfics3eq29wd8",
              "images": [
                "id-11134207-8224w-mjfics3eq29wd8",
                "id-11134207-8224y-mjfics0bk6bob0",
                "id-11134207-82252-mjfics25p2wyfe",
                "id-11134207-8224r-mjfics07uqdj06"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768302921,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Aolon",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 32000000000,
              "price_min": 32000000000,
              "price_max": 32000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Blora",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 32000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 355428368779,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 32000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KyoOs",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44554626064,
            "shopid": 1427950315,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjfics3eq29wd8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059156,700005579,1718093079,822059908662278,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":854,\"model_id\":355428368779,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjfics3eq29wd8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059156,700005579,1718093079,822059908662278,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":854,\"model_id\":355428368779,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44554626064",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54854610531,
              "shopid": 958183516,
              "name": "Infinix Smart 10 Plus ram 8/128Fullset mulus",
              "label_ids": [
                2018619,
                844931064601283,
                298463379,
                1049112,
                700000515,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224t-mjfidvp0t98i8e",
              "images": [
                "id-11134207-8224t-mjfidvp0t98i8e",
                "id-11134207-8224y-mjfidvpg83k3a0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768302843,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Infinix",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 130000000000,
              "price_min": 130000000000,
              "price_max": 130000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Hot 40i",
                  "options": [
                    "Fulset",
                    "Hp & cas",
                    "Hp only"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Karawang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 130000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 310428942945,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 130000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "NauraPonsel1",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54854610531,
            "shopid": 958183516,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjfidvp0t98i8e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1049112,700000515,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":855,\"model_id\":310428942945,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjfidvp0t98i8e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1049112,700000515,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":855,\"model_id\":310428942945,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54854610531",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57154600984,
              "shopid": 1683202782,
              "name": "Coros pace 3 normal mulus",
              "label_ids": [
                1400066568,
                844931064601283,
                1049130,
                700005503,
                822059908662278,
                825465608499232,
                1718093079,
                1119699,
                1718596,
                2213765
              ],
              "image": "id-11134207-8224v-mjfi5gi9yhvna1",
              "images": [
                "id-11134207-8224v-mjfi5gi9yhvna1",
                "id-11134207-8224x-mjfi5gie677k64",
                "id-11134207-8224q-mjfi5gi7az9e45",
                "id-11134207-8224u-mjfi5ghv4q2u60",
                "id-11134207-82252-mjfi5gi9x3b71c",
                "id-11134207-8224p-mjfi5gi7dsea4c",
                "id-11134207-82250-mjfi5gm0kl4wa3",
                "id-11134207-8224u-mjfi5gi55q121f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768302660,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "COROS",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 280000000000,
              "price_min": 280000000000,
              "price_max": 280000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Balikpapan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 280000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 218798585900,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 280000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "penytri",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57154600984,
            "shopid": 1683202782,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mjfi5gi9yhvna1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1049130,700005503,822059908662278,825465608499232,1718093079,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":858,\"model_id\":218798585900,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mjfi5gi9yhvna1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1049130,700005503,822059908662278,825465608499232,1718093079,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":858,\"model_id\":218798585900,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57154600984",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53404600897,
              "shopid": 26887717,
              "name": "Redmi Watch 5 Active - GARANSI RESMI",
              "label_ids": [
                1000167,
                1012865,
                1013217,
                2023641,
                2018619,
                298938357,
                298888358,
                1428713,
                1718087960,
                298463379,
                844931064601283,
                700005509,
                1049138,
                822059908662278,
                825465608497696,
                825465608492064,
                825465608499232,
                1718093079,
                1119699,
                1718596,
                2213765,
                2098629,
                2098628,
                298468389,
                298938368,
                1718088045
              ],
              "image": "sg-11134201-8262m-mjfidbkr4mx357",
              "images": [
                "sg-11134201-8262m-mjfidbkr4mx357",
                "sg-11134201-8260g-mjfidbl8rjly26",
                "sg-11134201-8261a-mjfidbmnkf0k62",
                "sg-11134201-8262f-mjfidbo0htky23",
                "sg-11134201-8261s-mjfidbobp05ge0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768302750,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Xiaomi",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 52900000000,
              "price_min": 52900000000,
              "price_max": 52900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "WARNA",
                  "options": [
                    "BLACK",
                    "SILVER"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp87RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 52700000000,
                "strikethrough_price": 52900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1330324609449984,
                "discount_text": null,
                "model_id": 430428351372,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1330324609449984,
                  "voucher_code": "HAPE899",
                  "voucher_discount": 200000000,
                  "time_info": {
                    "start_time": 1768046820,
                    "end_time": 1774962420,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 52900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp87RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Hapeworld",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53404600897,
            "shopid": 26887717,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262m-mjfidbkr4mx357\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1012865,1013217,2023641,2018619,298938357,298888358,1428713,1718087960,298463379,844931064601283,700005509,1049138,822059908662278,825465608497696,825465608492064,825465608499232,1718093079,1119699,1718596,2213765,2098629,2098628,298468389,298938368,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":857,\"model_id\":430428351372,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262m-mjfidbkr4mx357\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1012865,1013217,2023641,2018619,298938357,298888358,1428713,1718087960,298463379,844931064601283,700005509,1049138,822059908662278,825465608497696,825465608492064,825465608499232,1718093079,1119699,1718596,2213765,2098629,2098628,298468389,298938368,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":857,\"model_id\":430428351372,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53404600897",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41028001329,
              "shopid": 1285362927,
              "name": "Xiaomi Redmi Watch 5 Lite",
              "label_ids": [
                2023641,
                2068629,
                2018619,
                298938357,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                700005509,
                700000498,
                1718093079,
                822059908662278,
                825465608497696,
                2048660,
                2048661,
                825465608494624,
                825465608499232,
                1119699,
                1718596,
                2213765,
                700765096,
                298468389,
                1718088045,
                2098628,
                2098629,
                298938368
              ],
              "image": "sg-11134201-8262k-mjfi6qsk4pvo35",
              "images": [
                "sg-11134201-8262k-mjfi6qsk4pvo35",
                "sg-11134201-82611-mjfi6qttcq2u01",
                "sg-11134201-8262x-mjfi6quvmqrr29",
                "sg-11134201-8260q-mjfi6qvw6vb8de",
                "sg-11134201-8260i-mjfi6qwwa878e7",
                "sg-11134201-825zn-mjfi6qxsxvyb85",
                "sg-11134201-8261e-mjfi6qzh5a8353"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768302443,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Xiaomi",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 81900000000,
              "price_min": 81900000000,
              "price_max": 81900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "WARNA",
                  "options": [
                    "BLACK",
                    "GOLD"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Banjarbaru",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp272RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 81700000000,
                "strikethrough_price": 81900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1330704411934720,
                "discount_text": null,
                "model_id": 435428345707,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1330704411934720,
                  "voucher_code": "HAPERMIHJ",
                  "voucher_discount": 200000000,
                  "time_info": {
                    "start_time": 1768091618,
                    "end_time": 1773793860,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 81900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp272RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Hapeworldย Banjarbaru",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41028001329,
            "shopid": 1285362927,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262k-mjfi6qsk4pvo35\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2068629,2018619,298938357,1428713,1718087960,844931064601283,298463379,700005509,700000498,1718093079,822059908662278,825465608497696,2048660,2048661,825465608494624,825465608499232,1119699,1718596,2213765,700765096,298468389,1718088045,2098628,2098629,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":859,\"model_id\":435428345707,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262k-mjfi6qsk4pvo35\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2068629,2018619,298938357,1428713,1718087960,844931064601283,298463379,700005509,700000498,1718093079,822059908662278,825465608497696,2048660,2048661,825465608494624,825465608499232,1119699,1718596,2213765,700765096,298468389,1718088045,2098628,2098629,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":859,\"model_id\":435428345707,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41028001329",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55854600010,
              "shopid": 1671553148,
              "name": "Icom MA-510TR AIS Transponder Dengan GPS Receiver",
              "label_ids": [
                844931064601283,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1718596,
                2213765
              ],
              "image": "id-11134207-8224y-mjffw5yom7lua0",
              "images": [
                "id-11134207-8224y-mjffw5yom7lua0",
                "id-11134207-8224v-mjffw5z31xq862",
                "id-11134207-8224v-mjffw5z33caoc4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768298867,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "ICOM",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 1000450000000,
              "price_min": 1000450000000,
              "price_max": 1000450000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1000450000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 297330963678,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1000450000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "King Marine Service",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55854600010,
            "shopid": 1671553148,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjffw5yom7lua0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":866,\"model_id\":297330963678,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjffw5yom7lua0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":866,\"model_id\":297330963678,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55854600010",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55804589599,
              "shopid": 1632555156,
              "name": "(NEW ORI)Smart Watch SAMSUNG Galaxy Watch 8 [44mm] HD AMOLED Waterproof GPS NFC Max Multifunctiona Pemantauan detak jantung oksigen darah Smartwatch pria wanita Bluetooth call Pengingat pemberitahuan wireless charging Waterproof Jam Tangan",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1049112,
                1059151,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                1718596,
                2213765
              ],
              "image": "id-11134207-8224q-mjff5z4mqx39f9",
              "images": [
                "id-11134207-8224q-mjff5z4mqx39f9",
                "id-11134207-8224x-mjff5z4mwjcweb",
                "id-11134207-8224x-mjff5z4mxxxc1e",
                "id-11134207-8224u-mjff5z4n96gw20",
                "id-11134207-8224p-mjff5z4n4yrk30",
                "id-11134207-8224r-mjff5z4mzchsa3",
                "id-11134207-8224y-mjff5z4n0r2812",
                "id-11134207-8224u-mjff5z4n6dc0f3",
                "id-11134207-8224o-mjff5z4n25mo4f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768298820,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 168800000000,
              "price_min": 168800000000,
              "price_max": 168800000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven4-mjffsxzcuwhy09.16000081768298438.mp4",
                  "thumb_url": "id-11110105-6ven4-mjffsxzcuwhy09_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6ven4-mjffsxzcuwhy09",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven4-mjffsxzcuwhy09.16000081768298438.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-mjffsxzcuwhy09.16000081768298438.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-mjffsxzcuwhy09.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "black",
                    "white",
                    "black."
                  ],
                  "images": [
                    "id-11134207-8224v-mjffwburphj9b7",
                    "id-11134207-8224p-mjffwbuvdiwy3f",
                    "id-11134207-8224u-mjffwbuvexhe9d"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 166800000000,
                "strikethrough_price": 168800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1322940797304880,
                "discount_text": null,
                "model_id": 320428069751,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1322940797304880,
                  "voucher_code": "GITBZ1996",
                  "voucher_discount": 2000000000,
                  "time_info": {
                    "start_time": 1767166080,
                    "end_time": 1775205360,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 60800000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 168800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "3C Smart watch Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55804589599,
            "shopid": 1632555156,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjff5z4mqx39f9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,1049112,1059151,1718093079,822059908662278,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":867,\"model_id\":320428069751,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjff5z4mqx39f9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,1049112,1059151,1718093079,822059908662278,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":867,\"model_id\":320428069751,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55804589599",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54954584910,
              "shopid": 6899812,
              "name": "huawei smart watch GT5 brand new",
              "label_ids": [
                1400066568,
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1718596,
                2213765
              ],
              "image": "id-11134207-8224u-mjffo93nnzt2fd",
              "images": [
                "id-11134207-8224u-mjffo93nnzt2fd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768298319,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 200000000000,
              "price_min": 200000000000,
              "price_max": 200000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 200000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 405428028116,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 200000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "TY Furniture",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54954584910,
            "shopid": 6899812,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjffo93nnzt2fd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":870,\"model_id\":405428028116,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjffo93nnzt2fd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":870,\"model_id\":405428028116,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54954584910",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51054594150,
              "shopid": 22524188,
              "name": "Redmi Watch 5 Lite - Tahan Air 5ATM, 150+ Mode Olahraga, Baterai Tahan 18 Hari",
              "label_ids": [
                2143597,
                1049116,
                700005542,
                47,
                2023641,
                2018619,
                2068629,
                298938357,
                2143613,
                2103651,
                298463379,
                1428713,
                1718087960,
                844931064601283,
                822059908662278,
                825465608497696,
                2048660,
                2048661,
                825465608499232,
                1718093079,
                1119699,
                1718596,
                2213765,
                700765096,
                2098629,
                2098628,
                298938368,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224q-mjfey9nx93pc0b",
              "images": [
                "id-11134207-8224q-mjfey9nx93pc0b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768297311,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Xiaomi",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 72000000000,
              "price_min": 72000000000,
              "price_max": 72000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "black"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Ponorogo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp240RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 72000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 345427933959,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 72000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp240RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ArtoMoro Cellular ",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51054594150,
            "shopid": 22524188,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjfey9nx93pc0b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2143597,1049116,700005542,47,2023641,2018619,2068629,298938357,2143613,2103651,298463379,1428713,1718087960,844931064601283,822059908662278,825465608497696,2048660,2048661,825465608499232,1718093079,1119699,1718596,2213765,700765096,2098629,2098628,298938368,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":873,\"model_id\":345427933959,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjfey9nx93pc0b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2143597,1049116,700005542,47,2023641,2018619,2068629,298938357,2143613,2103651,298463379,1428713,1718087960,844931064601283,822059908662278,825465608497696,2048660,2048661,825465608499232,1718093079,1119699,1718596,2213765,700765096,2098629,2098628,298938368,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":873,\"model_id\":345427933959,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51054594150",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56854589098,
              "shopid": 610802470,
              "name": "IMOO Z7 pink, blue, white, spesial edisi spiderman",
              "label_ids": [
                1718093079,
                1049127,
                1049112,
                822059908662278,
                825465608493600,
                825465608499232,
                1119699,
                1718596,
                2213765
              ],
              "image": "id-11134207-82252-mjfepbryhe6a0c",
              "images": [
                "id-11134207-82252-mjfepbryhe6a0c",
                "id-11134207-82250-mjfepbs3a6127e",
                "id-11134207-8224p-mjfepbryk7b625",
                "id-11134207-8224s-mjfepbt8u4u8ae",
                "id-11134207-8224t-mjfepbtp12ip76"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768297018,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Imoo",
              "cmt_count": 0,
              "flag": 0,
              "cb_option": 0,
              "item_status": "new",
              "price": 280000000000,
              "price_min": 280000000000,
              "price_max": 280000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "BLUE",
                  "options": [
                    "BLUE"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "PINK",
                  "options": [
                    "PINK",
                    "WHITE"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 280000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 365427916868,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 280000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "IMOO & Olike",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56854589098,
            "shopid": 610802470,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjfepbryhe6a0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718093079,1049127,1049112,822059908662278,825465608493600,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":874,\"model_id\":365427916868,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjfepbryhe6a0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718093079,1049127,1049112,822059908662278,825465608493600,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":874,\"model_id\":365427916868,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56854589098",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55554589188,
              "shopid": 1690111895,
              "name": "Strap Stainless A Quick Fit Garmin Approach S60 S62 S70 47mm MARQ EPIX Gen 2 Pro 47mm Steel Tali Jam",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                1049112,
                1059151,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298463379,
                1718596,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134201-7qul7-lh4xko7cg4f338",
              "images": [
                "id-11134201-7qul7-lh4xko7cg4f338",
                "id-11134201-7qul9-lh4xko7cepun84",
                "id-11134201-7qukw-lh4xkob8919s7d",
                "id-11134201-7qul3-lh4xkod666pe8f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768296978,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 28724400000,
              "price_min": 28724400000,
              "price_max": 28724400000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "A , Hitam"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 28724400000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 385427911287,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 28724400000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Calista Tech",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55554589188,
            "shopid": 1690111895,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul7-lh4xko7cg4f338\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":875,\"model_id\":385427911287,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul7-lh4xko7cg4f338\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":875,\"model_id\":385427911287,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55554589188",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51604593968,
              "shopid": 1690111895,
              "name": "Strap Stainless A Quick Fit Garmin Forerunner 935XT 935 945 955 965 Steel Tali Jam",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                1049112,
                1059151,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298463379,
                1718596,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134201-7qul7-lh4xko7cg4f338",
              "images": [
                "id-11134201-7qul7-lh4xko7cg4f338",
                "id-11134201-7qul9-lh4xko7cepun84",
                "id-11134201-7qukw-lh4xkob8919s7d",
                "id-11134201-7qul3-lh4xkod666pe8f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768296977,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 28724400000,
              "price_min": 28724400000,
              "price_max": 28724400000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "A , Hitam"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 28724400000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 420427920684,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 28724400000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Calista Tech",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51604593968,
            "shopid": 1690111895,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul7-lh4xko7cg4f338\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":876,\"model_id\":420427920684,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul7-lh4xko7cg4f338\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":876,\"model_id\":420427920684,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51604593968",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48404609106,
              "shopid": 1690111895,
              "name": "Strap Silicone Suunto 5 silicon tali jam tangan karet rubber wristband",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                1059151,
                1049112,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                298463379,
                1718596,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7qul6-lhh8kqaonpfjb2",
              "images": [
                "id-11134207-7qul6-lhh8kqaonpfjb2",
                "id-11134207-7qul6-lhh8kqaokwan47",
                "id-11134207-7qul6-lhh8kqaomav359",
                "id-11134207-7qul5-lhh8kqaop3zzeb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768296976,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 27633600000,
              "price_min": 27633600000,
              "price_max": 27633600000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Kuning",
                    "Hitam",
                    "Putih"
                  ],
                  "images": [
                    "id-11134207-7rasi-m1m2e83t177a64",
                    "id-11134207-7rasc-m1m2e83sye2e32",
                    "id-11134207-7rasm-m1m2e83szsmu1c"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 27633600000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 405427920910,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 27633600000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Calista Tech",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48404609106,
            "shopid": 1690111895,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul6-lhh8kqaonpfjb2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1059151,1049112,1718093079,822059908662278,825465608497696,825465608499232,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":877,\"model_id\":405427920910,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul6-lhh8kqaonpfjb2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1059151,1049112,1718093079,822059908662278,825465608497696,825465608499232,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":877,\"model_id\":405427920910,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48404609106",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57154593878,
              "shopid": 1690111895,
              "name": "Strap Silicone Suunto M Series Silikon M 1 2 4 5 Quest Silicon Tali Karet Rubber",
              "label_ids": [
                844931064601283,
                1049112,
                1059151,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1428713,
                1718087960,
                1119699,
                298463379,
                1718596,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7qul4-lhh56bk5dutwc1",
              "images": [
                "id-11134207-7qul4-lhh56bk5dutwc1",
                "id-11134207-7qukx-lhh56bk5cg9g12",
                "id-11134207-7qul4-lhh56bk5f9ecea",
                "id-11134207-7qukz-lhh56bk5gnys37"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768296409,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 35632800000,
              "price_min": 35632800000,
              "price_max": 35632800000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Abu Abu",
                    "Biru"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 35632800000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 282330834292,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 35632800000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Calista Tech",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57154593878,
            "shopid": 1690111895,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul4-lhh56bk5dutwc1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1428713,1718087960,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":888,\"model_id\":282330834292,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul4-lhh56bk5dutwc1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1428713,1718087960,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":888,\"model_id\":282330834292,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57154593878",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56654589081,
              "shopid": 1690111895,
              "name": "Strap Stainless Garmin Lily tali jam tangan steel smartwatch",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                1049112,
                1059151,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298463379,
                1718596,
                2213765,
                298468389,
                1718088045
              ],
              "image": "id-11134201-7qul3-lgzw0l3w54fnce",
              "images": [
                "id-11134201-7qul3-lgzw0l3w54fnce",
                "id-11134201-7qukz-lgzw0l78098050",
                "id-11134201-7qul1-lgzw0l8ly84wfb",
                "id-11134201-7qul8-lgzw0l0aaevu98"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768296500,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 33587000000,
              "price_min": 33587000000,
              "price_max": 33587000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Lily , Hitam",
                    "Lily , Silver"
                  ],
                  "images": [
                    "id-11134207-7rasf-m3oxbdfcfukwde",
                    "id-11134207-7rasb-m3oxbdfch95c64"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 33587000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390427859984,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 33587000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Calista Tech",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56654589081,
            "shopid": 1690111895,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul3-lgzw0l3w54fnce\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":883,\"model_id\":390427859984,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul3-lgzw0l3w54fnce\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":883,\"model_id\":390427859984,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56654589081",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47504609016,
              "shopid": 1690111895,
              "name": "StrapStainlessAmazfitT-Rex2 tali jam metal steel huami trex 2 t rex 2",
              "label_ids": [
                1049112,
                1059151,
                844931064601283,
                1718087960,
                1428713,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298463379,
                1718596,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7qul3-lhurion1ym3fe9",
              "images": [
                "id-11134207-7qul3-lhurion1ym3fe9",
                "id-11134207-7qul3-lhurion1x7iz8e",
                "id-11134207-7qul0-lhurion200nvf3",
                "id-11134207-7qukw-lhurion21f8b1b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768296444,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 32724000000,
              "price_min": 32724000000,
              "price_max": 32724000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Rose Gold",
                    "Silver",
                    "Hitam"
                  ],
                  "images": [
                    "id-11134207-7rbk6-m6wmgejcaf56fc",
                    "id-11134207-7rbkb-m6wmgejc7m0aeb",
                    "id-11134207-7rbk3-m6wmgejc90kq09"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 32724000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 370427863709,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 32724000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Calista Tech",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47504609016,
            "shopid": 1690111895,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul3-lhurion1ym3fe9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049112,1059151,844931064601283,1718087960,1428713,822059908662278,825465608499232,825465608497696,1718093079,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":886,\"model_id\":370427863709,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul3-lhurion1ym3fe9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049112,1059151,844931064601283,1718087960,1428713,822059908662278,825465608499232,825465608497696,1718093079,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":886,\"model_id\":370427863709,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47504609016",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44954618571,
              "shopid": 1690111895,
              "name": "Strap Stainless Fitbit Tipe R tali jam steel versa 4 3 sense 2 1 smartwatch",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                1059151,
                1049112,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298463379,
                1718596,
                2213765,
                298468389,
                1718088045
              ],
              "image": "id-11134207-7qul4-lhytopy57r6cd3",
              "images": [
                "id-11134207-7qul4-lhytopy57r6cd3",
                "id-11134207-7qul6-lhytopy56clw8a",
                "id-11134207-7qul1-lhytopy595qsa4",
                "id-11134207-7qula-lhytopy5akb8c2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768296500,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 24361200000,
              "price_min": 24361200000,
              "price_max": 24361200000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Tipe R , Silver",
                    "Tipe R , Hitam"
                  ],
                  "images": [
                    "id-11134207-7rasl-m17wswciwaw506",
                    "id-11134207-7rask-m17wswciuwbpfa"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 24361200000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 380427869933,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 24361200000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Calista Tech",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44954618571,
            "shopid": 1690111895,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul4-lhytopy57r6cd3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1059151,1049112,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":884,\"model_id\":380427869933,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul4-lhytopy57r6cd3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1059151,1049112,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":884,\"model_id\":380427869933,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44954618571",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44654604497,
              "shopid": 1690111895,
              "name": "Strap Stainless Mi Watch Lite 2 tali jam steel xiaomi redmi metal",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                1049112,
                1059151,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298463379,
                1718596,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134207-7qul4-lhvemwbvl0xg1c",
              "images": [
                "id-11134207-7qul4-lhvemwbvl0xg1c",
                "id-11134207-7qula-lhvemwbvmfhw15",
                "id-11134207-7qula-lhvemwbvnu2cca"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768296411,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "new",
              "price": 20588800000,
              "price_min": 20588800000,
              "price_max": 20588800000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Silver"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 20588800000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 297330843110,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 20588800000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Calista Tech",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44654604497,
            "shopid": 1690111895,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul4-lhvemwbvl0xg1c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":887,\"model_id\":297330843110,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul4-lhvemwbvl0xg1c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":887,\"model_id\":297330843110,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44654604497",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48104613670,
              "shopid": 288075780,
              "name": "Smartwatch Huawei Fit 4",
              "label_ids": [
                844931064601283,
                844931086908638,
                1049148,
                1049145,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                1718596,
                2213765
              ],
              "image": "id-11134207-8224q-mjfe4f4oitxe73",
              "images": [
                "id-11134207-8224q-mjfe4f4oitxe73"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768295869,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 135000000000,
              "price_min": 135000000000,
              "price_max": 135000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bandar Lampung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 135000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 262331030978,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 135000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "mrbeads",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48104613670,
            "shopid": 288075780,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjfe4f4oitxe73\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049148,1049145,1718093079,822059908662278,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":892,\"model_id\":262331030978,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjfe4f4oitxe73\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049148,1049145,1718093079,822059908662278,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":892,\"model_id\":262331030978,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48104613670",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48254618216,
              "shopid": 1659072746,
              "name": "[Penukaran Poin Anggota]CityJungle Smartwatch Strap warna krim 22mm-GPSSE/GPSScout1/NeoGPS/APEX 1/X3",
              "label_ids": [
                2018618,
                298888358,
                298938357,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                1049120,
                1718093079,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                1718596,
                2213765,
                700765096,
                2213652,
                1718088045,
                298468389,
                2098628,
                298938368,
                2098629
              ],
              "image": "id-11134207-8224y-mj895475ryf848",
              "images": [
                "id-11134207-8224y-mj895475ryf848",
                "id-11134207-8224z-mj895475p5ac00",
                "id-11134207-8224p-mj895475qjusfe"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768295080,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "CITYJUNGLE",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "new",
              "price": 266000000000,
              "price_min": 266000000000,
              "price_max": 266000000000,
              "price_min_before_discount": 280000000000,
              "price_max_before_discount": 280000000000,
              "hidden_price_display": null,
              "price_before_discount": 280000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-5%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "1",
                  "options": [
                    "warna krim"
                  ],
                  "images": [
                    "id-11134207-8224y-mj895475ryf848"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp423RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 773880025776128,
                "price": 254000000000,
                "strikethrough_price": 280000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1299792132456448,
                "discount_text": "-5%",
                "model_id": 440427716978,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1299792132456448,
                  "voucher_code": "CITYQD120",
                  "voucher_discount": 12000000000,
                  "time_info": {
                    "start_time": 1764406560,
                    "end_time": 1772470740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 280000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp423RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CITYJUNGLE Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48254618216,
            "shopid": 1659072746,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mj895475ryf848\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298888358,298938357,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,1049120,1718093079,822059908662278,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,1119699,1718596,2213765,700765096,2213652,1718088045,298468389,2098628,298938368,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":899,\"model_id\":440427716978,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mj895475ryf848\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298888358,298938357,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,1049120,1718093079,822059908662278,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,1119699,1718596,2213765,700765096,2213652,1718088045,298468389,2098628,298938368,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":899,\"model_id\":440427716978,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48254618216",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54554587626,
              "shopid": 1639314000,
              "name": "[READY STOK]Huawei band 10 smartband baru garansi resmi",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                700005489,
                822059908662278,
                825465608499232,
                825465608497696,
                1718596,
                2213765
              ],
              "image": "sg-11134201-8261d-mjfbq2vdoefbac",
              "images": [
                "sg-11134201-8261d-mjfbq2vdoefbac",
                "sg-11134201-8262u-mjfbq34wne9v62",
                "sg-11134201-82604-mjfbq3d5p24hfd",
                "sg-11134201-8260o-mjfbq3mo5u6fb9",
                "sg-11134201-8260h-mjfbq3u6y5tt0e",
                "sg-11134201-82613-mjfbq42u2y9z9f",
                "sg-11134201-8262m-mjfbq4c3km4je7",
                "sg-11134201-8261r-mjfbq4khvzt2f4",
                "sg-11134201-82616-mjfbq4w4edj8aa"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768291579,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 21000000000,
              "price_min": 21000000000,
              "price_max": 21000000000,
              "price_min_before_discount": 42000000000,
              "price_max_before_discount": 42000000000,
              "hidden_price_display": null,
              "price_before_discount": 42000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Blackmate alumunium",
                    "White alumunium",
                    "Green alumunium",
                    "Purple alumunium",
                    "Blue alumunium",
                    "Black polymer",
                    "Pink polymer"
                  ],
                  "images": [
                    "sg-11134201-8261r-mjfbq4khvzt2f4",
                    "sg-11134201-82616-mjfbq4w4edj8aa",
                    "sg-11134201-825zr-mjfbq555w2yr88",
                    "sg-11134201-8261b-mjfbq5ed49vpb4",
                    "sg-11134201-82611-mjfbq5naxzid1d",
                    "sg-11134201-8260r-mjfbq5uhvaisc5",
                    "sg-11134201-825zm-mjfbq639ltz7b9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 415257642414095,
                "bundle_deal_label": "Pilih 2, diskon Rp5.000"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 830510343962624,
                "price": 21000000000,
                "strikethrough_price": 42000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 390427321510,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 42000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "lionstarshop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54554587626,
            "shopid": 1639314000,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261d-mjfbq2vdoefbac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,700005489,822059908662278,825465608499232,825465608497696,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":675,\"model_id\":390427321510,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261d-mjfbq2vdoefbac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,700005489,822059908662278,825465608499232,825465608497696,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":675,\"model_id\":390427321510,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54554587626",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55454569876,
              "shopid": 1607976290,
              "name": "Garmin GPSMAP 86s โ€“ GPS Navigasi Handheld Original Garansi Resmi TAM 2 Tahun GPS MAP 86s 86 s",
              "label_ids": [
                2018619,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                700005495,
                1718093079,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                1119699,
                1718596,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224y-mjf2pdcb8xs401",
              "images": [
                "id-11134207-8224y-mjf2pdcb8xs401",
                "id-11134207-8224s-mjf2pdcb4q2scf",
                "id-11134207-8224u-mjf2pdcb7j7o8b",
                "id-11134207-8224q-mjf2pdcbacckca",
                "id-11134207-8224t-mjf2pdcb64n8a4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768280375,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 725060000000,
              "price_min": 725060000000,
              "price_max": 725060000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venb-mjf4t8jr06io7a.16000081768279957.mp4",
                  "thumb_url": "id-11110105-6venb-mjf4t8jr06io7a_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6venb-mjf4t8jr06io7a",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venb-mjf4t8jr06io7a.16000081768279957.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mjf4t8jr06io7a.16000081768279957.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mjf4t8jr06io7a.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 725060000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 410426348459,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 725060000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RICOM - Radio Komunikasi & GPS",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55454569876,
            "shopid": 1607976290,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjf2pdcb8xs401\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,1119699,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":562,\"model_id\":410426348459,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjf2pdcb8xs401\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,1119699,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":562,\"model_id\":410426348459,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55454569876",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57554564406,
              "shopid": 884876226,
              "name": "(FREE ANTIGORES) Huawei Watch Fit 3 NFC Grey Second Like New Garansi Panjang",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                298463379,
                1049112,
                700000535,
                822059908662278,
                825465608499232,
                1718093079,
                1400066568,
                1119699,
                1718596,
                2213765,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224t-mjf138c8tl3a31",
              "images": [
                "id-11134207-8224t-mjf138c8tl3a31",
                "id-11134207-8224p-mjf138c8pddy7f",
                "id-11134207-82250-mjf138c8z7d28e",
                "id-11134207-8224w-mjf138c8we86d3",
                "id-11134207-8224p-mjf138c8qrye4d",
                "id-11134207-8224x-mjf138c8s6iu1d",
                "id-11134207-8224s-mjf138c8uznqb9",
                "id-11134207-82252-mjf138c8xssmbe",
                "id-11134207-8224t-mjf138c90lxi7c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768274871,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 119000000000,
              "price_min": 119000000000,
              "price_max": 119000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Kuningan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 119000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 380426001930,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 119000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "zee_smartstore",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57554564406,
            "shopid": 884876226,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjf138c8tl3a31\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049112,700000535,822059908662278,825465608499232,1718093079,1400066568,1119699,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":495,\"model_id\":380426001930,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjf138c8tl3a31\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049112,700000535,822059908662278,825465608499232,1718093079,1400066568,1119699,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":495,\"model_id\":380426001930,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57554564406",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45104586928,
              "shopid": 538235194,
              "name": "GPS Garmin inreach explorer plus terbaru/GARMINย inReachย Explorer +",
              "label_ids": [
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                700005495,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                2213765,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224r-mjeq4iv02txj31",
              "images": [
                "id-11134207-8224r-mjeq4iv02txj31",
                "id-11134207-8224u-mjeq4iuzey9sc3",
                "id-11134207-8224z-mjeq4iuzc54wfe",
                "id-11134207-8224z-mjeq4iuzdjpc80",
                "id-11134207-8224z-mjeq4ixswhdu98",
                "id-11134207-8224r-mjeq4j15e32cef",
                "id-11134207-8224q-mjeq4ixsxvya42"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768255583,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 600000000000,
              "price_min": 600000000000,
              "price_max": 600000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6venc-mjewanisz1tse6.16000091768265649.mp4",
                  "thumb_url": "id-11110107-6venc-mjewanisz1tse6_cover",
                  "duration": 19,
                  "version": 2,
                  "vid": "id-11110107-6venc-mjewanisz1tse6",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6venc-mjewanisz1tse6.16000091768265649.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venc-mjewanisz1tse6.16000091768265649.mp4",
                      "width": 270,
                      "height": 482
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venc-mjewanisz1tse6.default.mp4",
                    "width": 358,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 600000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435425209964,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 600000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Surveying Store Indonesia",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45104586928,
            "shopid": 538235194,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjeq4iv02txj31\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":148,\"model_id\":435425209964,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjeq4iv02txj31\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":148,\"model_id\":435425209964,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45104586928",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49354577068,
              "shopid": 22519421,
              "name": "NEW GPS Garmin Montana 710 Pengganti Garmin Montana 700",
              "label_ids": [
                1400066568,
                2023641,
                2068629,
                2018619,
                298938357,
                700025282,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                700005495,
                1718093079,
                822059908662278,
                840955085144628,
                825465608497696,
                840990690654214,
                825465608494624,
                822120592861206,
                2048661,
                2048660,
                825465608499232,
                827380695406658,
                1718596,
                2213765,
                700765096,
                1119699,
                298488495,
                298938368,
                298468389,
                2098629,
                1718088045,
                2098628
              ],
              "image": "id-11134207-8224p-mjee63v6f1ms57",
              "images": [
                "id-11134207-8224p-mjee63v6f1ms57",
                "id-11134207-8224z-mjee63v6gg78df",
                "id-11134207-8224z-mjef1pcbyknad0",
                "id-11134207-8224x-mjef1pcnicqtd8",
                "id-11134207-8224q-mjef1pcngy6dc7",
                "id-11134207-82252-mjef1pcm8001e8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768236786,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1500000000000,
              "price_min": 1500000000000,
              "price_max": 1500000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6vemw-mjef26826nt368.16000071768236653.mp4",
                  "thumb_url": "id-11110107-6vemw-mjef26826nt368_cover",
                  "duration": 46,
                  "version": 2,
                  "vid": "id-11110107-6vemw-mjef26826nt368",
                  "formats": [
                    {
                      "format": 1600007,
                      "defn": "V640P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6vemw-mjef26826nt368.16000071768236653.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vemw-mjef26826nt368.16000071768236653.mp4",
                      "width": 640,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vemw-mjef26826nt368.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp5JT X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1500000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 370424371927,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1500000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp5JT x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DEALER ALAT SURVEY INDONESIA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49354577068,
            "shopid": 22519421,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjee63v6f1ms57\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2023641,2068629,2018619,298938357,700025282,1428713,1718087960,844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,840955085144628,825465608497696,840990690654214,825465608494624,822120592861206,2048661,2048660,825465608499232,827380695406658,1718596,2213765,700765096,1119699,298488495,298938368,298468389,2098629,1718088045,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":776,\"model_id\":370424371927,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjee63v6f1ms57\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2023641,2068629,2018619,298938357,700025282,1428713,1718087960,844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,840955085144628,825465608497696,840990690654214,825465608494624,822120592861206,2048661,2048660,825465608499232,827380695406658,1718596,2213765,700765096,1119699,298488495,298938368,298468389,2098629,1718088045,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":776,\"model_id\":370424371927,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49354577068",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 58154536396,
              "shopid": 1550488284,
              "name": "Smartwatch JETE LUXE Jam Tangan 1.85\" AMOLED Screen Display ChatGPT NFC AI System Bluetooth Call IP68 Waterproof Tahan Air 100+ Sport Mode Heart Rate Sleep Monitoring Jam Pria Wanita",
              "label_ids": [
                2018619,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                700005509,
                700000498,
                822059908662278,
                2048661,
                825465608499232,
                825465608497696,
                2048660,
                1718093079,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                299033478
              ],
              "image": "id-11134207-8224v-mje3ldgy4ooy49",
              "images": [
                "id-11134207-8224v-mje3ldgy4ooy49",
                "id-11134207-8224z-mje3ldgurvuo76",
                "id-11134207-82251-mje3ldh2xgjr7a",
                "id-11134207-8224s-mje3ldhouvpc42",
                "id-11134207-8224p-mje3ldhxsjra34",
                "id-11134207-8224p-mje3ldk5s3yecc",
                "id-11134207-8224z-mje3ldk67k788d",
                "id-11134207-8224x-mje3ldkft3wmf0",
                "id-11134207-82250-mje3ldl1mbcz22"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768218208,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "JETE",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 89920000000,
              "price_min": 89920000000,
              "price_max": 89920000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Gold"
                  ],
                  "images": [
                    "id-11134207-8224w-mje42lnlpmo37c",
                    "id-11134207-8224w-mje42ohob9c0bd"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarbaru",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 89920000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 370423068158,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 89920000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Vanilla_rumahsoftcase",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 58154536396,
            "shopid": 1550488284,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mje3ldgy4ooy49\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,700005509,700000498,822059908662278,2048661,825465608499232,825465608497696,2048660,1718093079,1119699,1718596,2213765,700765096,298488495,299033478],\"matched_keywords\":[\"\"],\"merge_rank\":567,\"model_id\":370423068158,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mje3ldgy4ooy49\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,700005509,700000498,822059908662278,2048661,825465608499232,825465608497696,2048660,1718093079,1119699,1718596,2213765,700765096,298488495,299033478],\"matched_keywords\":[\"\"],\"merge_rank\":567,\"model_id\":370423068158,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_58154536396",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54004504855,
              "shopid": 1691275497,
              "name": "Ms Watch - MirrorSpace Watch Series Ultra Pro with Dynamic Island AMOLED 450mAh",
              "label_ids": [
                844931064601283,
                1049112,
                700000501,
                822059908662278,
                825465608499232,
                1119699,
                1718596,
                2213765,
                298488495,
                2103625,
                1718093079
              ],
              "image": "id-11134207-8224z-mjdy7k99nbphfd",
              "images": [
                "id-11134207-8224z-mjdy7k99nbphfd",
                "id-11134207-82251-mje0nquxnfnobf",
                "id-11134207-8224w-mje0nqvpl69uad",
                "id-11134207-8224y-mje0nqvrp0xw57",
                "id-11134207-8224p-mje0nqvrnmdg48",
                "id-11134207-8224r-mje0nqwqcd8g32",
                "id-11134207-8224w-mje0nquobpxf9f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768212768,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 43000000000,
              "price_min": 43000000000,
              "price_max": 43000000000,
              "price_min_before_discount": 130000000000,
              "price_max_before_discount": 130000000000,
              "hidden_price_display": null,
              "price_before_discount": 130000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-67%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venc-mje0ocvr68lfba.16000031768212466.mp4",
                  "thumb_url": "id-11110105-6venc-mje0ocvr68lfba_cover",
                  "duration": 21,
                  "version": 2,
                  "vid": "id-11110105-6venc-mje0ocvr68lfba",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venc-mje0ocvr68lfba.16000031768212466.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venc-mje0ocvr68lfba.16000031768212466.mp4",
                      "width": 640,
                      "height": 480
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venc-mje0ocvr68lfba.default.mp4",
                    "width": 640,
                    "height": 480
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "type",
                  "options": [
                    "S9",
                    "S10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "WARNA",
                  "options": [
                    "SPACE GREY",
                    "Putih"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 829648464822272,
                "price": 41500000000,
                "strikethrough_price": 130000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1331676920561664,
                "discount_text": "-67%",
                "model_id": 365422518792,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1331676920561664,
                  "voucher_code": "ZX2PKL",
                  "voucher_discount": 1500000000,
                  "time_info": {
                    "start_time": 1768207500,
                    "end_time": 1776246780,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 130000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MirrorSpaces",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54004504855,
            "shopid": 1691275497,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjdy7k99nbphfd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700000501,822059908662278,825465608499232,1119699,1718596,2213765,298488495,2103625,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":138,\"model_id\":365422518792,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjdy7k99nbphfd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700000501,822059908662278,825465608499232,1119699,1718596,2213765,298488495,2103625,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":138,\"model_id\":365422518792,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54004504855",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48254533307,
              "shopid": 1691275497,
              "name": "Ms Watch - MirrorSpace Watch 10 with Dynamic Island AMOLED 46mm",
              "label_ids": [
                844931064601283,
                700000501,
                1049112,
                822059908662278,
                825465608499232,
                1119699,
                1718596,
                2213765,
                298488495,
                2103625,
                1718093079
              ],
              "image": "id-11134207-8224y-mjdy7k99aolh51",
              "images": [
                "id-11134207-8224y-mjdy7k99aolh51",
                "id-11134207-8224y-mjdy7k99c35x48",
                "id-11134207-8224y-mjdy7k99dhqd97",
                "id-11134207-82252-mjdy7k99j40544",
                "id-11134207-82250-mjdy7k99ewat6e",
                "id-11134207-8224v-mjdy7k99kikle7",
                "id-11134207-8224y-mjdy7k99gav966",
                "id-11134207-8224u-mjdy7k99hpfp02"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768209955,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 56000000000,
              "price_min": 56000000000,
              "price_max": 56000000000,
              "price_min_before_discount": 190000000000,
              "price_max_before_discount": 190000000000,
              "hidden_price_display": null,
              "price_before_discount": 190000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-71%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvf-mjdywde13ojpd2.16000101768209490.mp4",
                  "thumb_url": "id-11110105-6vdvf-mjdywde13ojpd2_cover",
                  "duration": 20,
                  "version": 2,
                  "vid": "id-11110105-6vdvf-mjdywde13ojpd2",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvf-mjdywde13ojpd2.16000101768209490.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvf-mjdywde13ojpd2.16000101768209490.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvf-mjdywde13ojpd2.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "UKURAN",
                  "options": [
                    "46MM"
                  ],
                  "images": [
                    "id-11134207-8224y-mjdy7k99lx5143"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "WARNA",
                  "options": [
                    "HITAM",
                    "PUTIH",
                    "PINK"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 829648464822272,
                "price": 54500000000,
                "strikethrough_price": 190000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1331676920561664,
                "discount_text": "-71%",
                "model_id": 350422186128,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1331676920561664,
                  "voucher_code": "ZX2PKL",
                  "voucher_discount": 1500000000,
                  "time_info": {
                    "start_time": 1768207500,
                    "end_time": 1776246780,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 190000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MirrorSpaces",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48254533307,
            "shopid": 1691275497,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjdy7k99aolh51\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700000501,1049112,822059908662278,825465608499232,1119699,1718596,2213765,298488495,2103625,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":137,\"model_id\":350422186128,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjdy7k99aolh51\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700000501,1049112,822059908662278,825465608499232,1119699,1718596,2213765,298488495,2103625,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":137,\"model_id\":350422186128,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48254533307",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44427934784,
              "shopid": 1216583028,
              "name": "TIMEVER NEW GPS mni  jam Tangan Smartwatch GPS Strava Tahan Air 1ATM Jam Tangan Pintar Outdoor & Olahraga smart watch",
              "label_ids": [
                844931086908638,
                844931064601283,
                2018618,
                2068629,
                2018619,
                700700063,
                2153644,
                298938357,
                700005490,
                1049120,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1718087960,
                1428713,
                1718596,
                2213765,
                2213652,
                1015914,
                700190087,
                298488495,
                2103625
              ],
              "image": "id-11134207-8224q-mjdvohjy65mt7c",
              "images": [
                "id-11134207-8224q-mjdvohjy65mt7c",
                "id-11134207-8224p-mj2wc5tjo5c274",
                "id-11134207-8224o-mj2wc5tu7eo32f",
                "id-11134207-8224s-mj2wc5tjmqrmbd",
                "id-11134207-82252-mj2wc5topclc90",
                "id-11134207-8224p-mj2wc5trxxqcc2",
                "id-11134207-8224u-mj2wc5tony0w6f",
                "id-11134207-8224v-mj2wc5tw1fd1a2",
                "id-11134207-8224s-mj2wc5tw2txhe0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768204688,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "TIMEVER",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 42900000000,
              "price_min": 42900000000,
              "price_max": 42900000000,
              "price_min_before_discount": 96000000000,
              "price_max_before_discount": 96000000000,
              "hidden_price_display": null,
              "price_before_discount": 96000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-55%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "hitam",
                    "pink",
                    "hitam+hitam belt",
                    "hitam+Brown belt"
                  ],
                  "images": [
                    "id-11134207-82252-mjdvohjqvhfna0",
                    "id-11134207-82250-mjdvohjqww03a2",
                    "id-11134207-8224r-mjdvohjqzp4zb3",
                    "id-11134207-82250-mjdvohjqyakj69"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 412910174351877,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp143RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227583065341953,
                "price": 42900000000,
                "strikethrough_price": 96000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-55%",
                "model_id": 355421568998,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 96000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp143RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Timever Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44427934784,
            "shopid": 1216583028,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjdvohjy65mt7c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,2018618,2068629,2018619,700700063,2153644,298938357,700005490,1049120,822059908662278,825465608497696,825465608494624,825465608499232,1718087960,1428713,1718596,2213765,2213652,1015914,700190087,298488495,2103625],\"matched_keywords\":[\"\"],\"merge_rank\":240,\"model_id\":355421568998,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjdvohjy65mt7c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,2018618,2068629,2018619,700700063,2153644,298938357,700005490,1049120,822059908662278,825465608497696,825465608494624,825465608499232,1718087960,1428713,1718596,2213765,2213652,1015914,700190087,298488495,2103625],\"matched_keywords\":[\"\"],\"merge_rank\":240,\"model_id\":355421568998,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44427934784",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50104515572,
              "shopid": 1631362272,
              "name": "GPS Geodetik EFIX F6 Vision IMU - RTK GNSS Receiver",
              "label_ids": [
                844931086908638,
                844931064601283,
                298463379,
                1718093079,
                700005495,
                700005490,
                822059908662278,
                825465608494624,
                825465608497696,
                822120592861206,
                825465608499232,
                2048661,
                2048660,
                825465608493600,
                1718596,
                2213765,
                700765096,
                298488495,
                2103625,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224x-mjdv68u1mosg19",
              "images": [
                "id-11134207-8224x-mjdv68u1mosg19",
                "id-11134207-8224u-mjdv68u1la8015",
                "id-11134207-8224q-mjdv68u1jvnk48",
                "id-11134207-8224z-mjdv68u1ih34a9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768204266,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "EFIX",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 11600000000000,
              "price_min": 11600000000000,
              "price_max": 11600000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 11600000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 410421523244,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 11600000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Afandi Survey DI",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50104515572,
            "shopid": 1631362272,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjdv68u1mosg19\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1718093079,700005495,700005490,822059908662278,825465608494624,825465608497696,822120592861206,825465608499232,2048661,2048660,825465608493600,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":868,\"model_id\":410421523244,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjdv68u1mosg19\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1718093079,700005495,700005490,822059908662278,825465608494624,825465608497696,822120592861206,825465608499232,2048661,2048660,825465608493600,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":868,\"model_id\":410421523244,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50104515572",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56454497452,
              "shopid": 12524552,
              "name": "Garmin Venu X1, Segel Box, Original",
              "label_ids": [
                2018619,
                700025282,
                700005574,
                700005575,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                2213765,
                298488495,
                2098621
              ],
              "image": "id-11134207-8224z-mjdqy0p9i22o16",
              "images": [
                "id-11134207-8224z-mjdqy0p9i22o16",
                "id-11134207-8224w-mjdqy0p7e7esfb",
                "id-11134207-8224z-mjdqy0pa34li2b",
                "id-11134207-8224w-mjdqy0pa1q129e",
                "id-11134207-8224z-mjdqy0pao7455f",
                "id-11134207-8224y-mjdqy0tpv85ceb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768196268,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1100000000000,
              "price_min": 1100000000000,
              "price_max": 1100000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Palu",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1100000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 310421233922,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1100000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Pulsa gokil",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56454497452,
            "shopid": 12524552,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjdqy0p9i22o16\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700025282,700005574,700005575,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,2213765,298488495,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":648,\"model_id\":310421233922,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjdqy0p9i22o16\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700025282,700005574,700005575,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,2213765,298488495,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":648,\"model_id\":310421233922,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56454497452",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52704479700,
              "shopid": 47037002,
              "name": "smartwatch Samsung gear s3 classic minus",
              "label_ids": [
                844931064601283,
                2018619,
                1059156,
                700005499,
                822059908662278,
                825465608493600,
                825465608499232,
                825465608497696,
                298463379,
                1718093079,
                1119699,
                1718596,
                2213765,
                298488495,
                299033477,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82250-mjdlpxp4laf902",
              "images": [
                "id-11134207-82250-mjdlpxp4laf902",
                "id-11134207-8224v-mjdlpxouivwla8",
                "id-11134207-8224r-mjdlpxowv5z548"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768187692,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 45000000000,
              "price_min": 45000000000,
              "price_max": 45000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 45000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 415419977984,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 45000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Qodir_rif",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52704479700,
            "shopid": 47037002,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mjdlpxp4laf902\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,2018619,1059156,700005499,822059908662278,825465608493600,825465608499232,825465608497696,298463379,1718093079,1119699,1718596,2213765,298488495,299033477,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":600,\"model_id\":415419977984,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mjdlpxp4laf902\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,2018619,1059156,700005499,822059908662278,825465608493600,825465608499232,825465608497696,298463379,1718093079,1119699,1718596,2213765,298488495,299033477,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":600,\"model_id\":415419977984,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52704479700",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48454498846,
              "shopid": 37744937,
              "name": "VIVAN VWF18 Smartwatch Waterproof",
              "label_ids": [
                1000167,
                2018619,
                844931064601283,
                844931086908638,
                1059150,
                700005498,
                822059908662278,
                2048661,
                825465608493600,
                825465608494624,
                825465608499232,
                2048660,
                1718596,
                2213765,
                700765096,
                298488495,
                299033478
              ],
              "image": "id-11134207-8224p-mjdjw8m07myvb8",
              "images": [
                "id-11134207-8224p-mjdjw8m07myvb8",
                "id-11134207-8224p-mjdjw8lg71mv38",
                "id-11134207-8224p-mjdjw8ly56v628",
                "id-11134207-8224p-mjdjw8lxzklg26",
                "id-11134207-8224v-mjdjw8m068e9f2",
                "id-11134207-8224z-mjdjw8lwi70m4f",
                "id-11134207-82252-mjdjw8lyvvnk94"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768184336,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Vivan",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 55500000000,
              "price_min": 55500000000,
              "price_max": 55500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "hitam",
                    "silver"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Medan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 55000000000,
                "strikethrough_price": 55500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1286883155263488,
                "discount_text": null,
                "model_id": 302326107502,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1286883155263488,
                  "voucher_code": "ALEX9HJNR",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1762867715,
                    "end_time": 1768742760,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 55500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Alexandrechristie",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48454498846,
            "shopid": 37744937,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjdjw8m07myvb8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,844931086908638,1059150,700005498,822059908662278,2048661,825465608493600,825465608494624,825465608499232,2048660,1718596,2213765,700765096,298488495,299033478],\"matched_keywords\":[\"\"],\"merge_rank\":568,\"model_id\":302326107502,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjdjw8m07myvb8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,844931086908638,1059150,700005498,822059908662278,2048661,825465608493600,825465608494624,825465608499232,2048660,1718596,2213765,700765096,298488495,299033478],\"matched_keywords\":[\"\"],\"merge_rank\":568,\"model_id\":302326107502,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48454498846",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57404463571,
              "shopid": 89304769,
              "name": "AMAZFIT CHEETAH SQUARE",
              "label_ids": [
                844931064601283,
                844931086908638,
                298463379,
                1059151,
                1049112,
                822059908662278,
                825465608492064,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1718596,
                2213765,
                298488495,
                2103625,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224p-mjdebcjsaubl07",
              "images": [
                "id-11134207-8224p-mjdebcjsaubl07"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768175428,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Amazfit",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 500000000000,
              "price_min": 500000000000,
              "price_max": 500000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 500000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 320419386780,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 500000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GG store bekasi",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57404463571,
            "shopid": 89304769,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjdebcjsaubl07\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1059151,1049112,822059908662278,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,1718093079,1119699,1718596,2213765,298488495,2103625,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":255,\"model_id\":320419386780,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjdebcjsaubl07\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1059151,1049112,822059908662278,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,1718093079,1119699,1718596,2213765,298488495,2103625,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":255,\"model_id\":320419386780,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57404463571",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53704460858,
              "shopid": 21845807,
              "name": "Huawei GT 4 46mm Green Fullset Second Mulus Normal",
              "label_ids": [
                1400066568,
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                1718093079,
                1718596,
                2213765,
                1119699,
                298488495,
                299033477
              ],
              "image": "id-11134207-8224y-mjdovvfhcnpd96",
              "images": [
                "id-11134207-8224y-mjdovvfhcnpd96",
                "id-11134207-82250-mjdovvf80xzbcf",
                "id-11134207-82251-mjdovvfi7k7846",
                "id-11134207-8224o-mjdovvfhe29tbc",
                "id-11134207-8224t-mjdovv2g2rk591",
                "id-11134207-82251-mjdovv2r4a9sc1",
                "id-11134207-8224s-mjdpuzlbl15117",
                "id-11134207-8224q-mjfesl3vh8g690"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768136079,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 175000000000,
              "price_min": 175000000000,
              "price_max": 175000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6vdv9-mjdpszxnfsaud0.16000081768194186.mp4",
                  "thumb_url": "id-11110107-6vdv9-mjdpszxnfsaud0_cover",
                  "duration": 39,
                  "version": 2,
                  "vid": "id-11110107-6vdv9-mjdpszxnfsaud0",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6vdv9-mjdpszxnfsaud0.16000081768194186.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdv9-mjdpszxnfsaud0.16000081768194186.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdv9-mjdpszxnfsaud0.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 175000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 385418330806,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 175000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "AnyWish",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53704460858,
            "shopid": 21845807,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjdovvfhcnpd96\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079,1718596,2213765,1119699,298488495,299033477],\"matched_keywords\":[\"\"],\"merge_rank\":224,\"model_id\":385418330806,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjdovvfhcnpd96\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079,1718596,2213765,1119699,298488495,299033477],\"matched_keywords\":[\"\"],\"merge_rank\":224,\"model_id\":385418330806,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53704460858",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53204465605,
              "shopid": 898289671,
              "name": "Jam Smartwatch Bluetooth i8 Ultra 42mm Layar 1.9 Inci dengan TWS Earphone Charger Wireless 2 Tali Silikon Fitur Kesehatan Denyut Jantung Kalkulator Notif medsos custom walpaper Monitor - Hitam, Jam Ultra 1 Tali Saja",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1049145,
                700000557,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1718596,
                2213765,
                299033478,
                298488495,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8260n-mjcqm88a7ugze7",
              "images": [
                "sg-11134201-8260n-mjcqm88a7ugze7",
                "sg-11134201-82632-mjcqm8f2l98m2d",
                "sg-11134201-8260r-mjcqm8miq3uod2",
                "sg-11134201-82601-mjcqm8thgh6o83",
                "sg-11134201-8260a-mjcqm900mfif2a",
                "sg-11134201-82615-mjcqm9cfun7r54"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768135016,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 30000000000,
              "price_min": 30000000000,
              "price_max": 30000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Lampung Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 28500000000,
                "strikethrough_price": 30000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1331060516732928,
                "discount_text": null,
                "model_id": 186355289047,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1331060516732928,
                  "voucher_code": "PUSASAFSV",
                  "voucher_discount": 1500000000,
                  "time_info": {
                    "start_time": 1768134540,
                    "end_time": 1774963740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 16740000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 30000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "pusatgrosirkekinian",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53204465605,
            "shopid": 898289671,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260n-mjcqm88a7ugze7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,298463379,1049145,700000557,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,2213765,299033478,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":694,\"model_id\":186355289047,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260n-mjcqm88a7ugze7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,298463379,1049145,700000557,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,2213765,299033478,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":694,\"model_id\":186355289047,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53204465605",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44654464244,
              "shopid": 337275633,
              "name": "Coros Pace 4 White",
              "label_ids": [
                844931064601283,
                1400066568,
                1059156,
                1049118,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                1718596,
                2213765,
                2103625,
                298488495
              ],
              "image": "id-11134207-8224t-mjcgh5v0hpmt9f",
              "images": [
                "id-11134207-8224t-mjcgh5v0hpmt9f",
                "id-11134207-8224r-mjcgh5v0gb2d8c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768118150,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "COROS",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 420000000000,
              "price_min": 420000000000,
              "price_max": 420000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tegal",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 420000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 440417458369,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 420000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ARย Storeย 31",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44654464244,
            "shopid": 337275633,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjcgh5v0hpmt9f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1059156,1049118,1718093079,822059908662278,825465608499232,1119699,1718596,2213765,2103625,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":343,\"model_id\":440417458369,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjcgh5v0hpmt9f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1059156,1049118,1718093079,822059908662278,825465608499232,1119699,1718596,2213765,2103625,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":343,\"model_id\":440417458369,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44654464244",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50054443496,
              "shopid": 70885987,
              "name": "PRELOVED!! Samsung Galaxy Fit3 Smartwatch",
              "label_ids": [
                1000167,
                2018619,
                844931064601283,
                1049116,
                700000489,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                825465608494624,
                1119699,
                1718596,
                2213765,
                700765096,
                2103625,
                298488495
              ],
              "image": "id-11134207-8224q-mjcchce001l35f",
              "images": [
                "id-11134207-8224q-mjcchce001l35f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768111434,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Samsung",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 35000000000,
              "price_min": 35000000000,
              "price_max": 35000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Kediri",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 35000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 375417245804,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 35000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Miruuuuy.19",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50054443496,
            "shopid": 70885987,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjcchce001l35f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,1049116,700000489,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608494624,1119699,1718596,2213765,700765096,2103625,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":370,\"model_id\":375417245804,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjcchce001l35f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,1049116,700000489,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608494624,1119699,1718596,2213765,700765096,2103625,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":370,\"model_id\":375417245804,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50054443496",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40177927794,
              "shopid": 53244201,
              "name": "Smartwatch Samsung Galaxy Fit 3 Black",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                1718596,
                2213765,
                299033477,
                298488495
              ],
              "image": "id-11134207-82252-mjc6k99suznpf5",
              "images": [
                "id-11134207-82252-mjc6k99suznpf5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768101592,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Samsung",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 70000000000,
              "price_min": 70000000000,
              "price_max": 70000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 70000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 340416958165,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 70000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Mons Store & Farm",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40177927794,
            "shopid": 53244201,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjc6k99suznpf5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,1119699,1718596,2213765,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":129,\"model_id\":340416958165,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjc6k99suznpf5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,1119699,1718596,2213765,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":129,\"model_id\":340416958165,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40177927794",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52304451306,
              "shopid": 1704575114,
              "name": "Termurah Gps Garmin Etrex 10 Bekas",
              "label_ids": [
                1400066568,
                844931064601283,
                700005490,
                700005495,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1718093079,
                1119699,
                1718596,
                2213765,
                299033478,
                298488495
              ],
              "image": "id-11134207-8224p-mjc3dj1r8cg088",
              "images": [
                "id-11134207-8224p-mjc3dj1r8cg088",
                "id-11134207-8224w-mjc3dj1r9r0g4a",
                "id-11134207-82252-mjc3dj1rb5kw6d",
                "id-11134207-8224o-mjc3dj1rck5cf8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768096623,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 195000000000,
              "price_min": 195000000000,
              "price_max": 195000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 195000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 320416809416,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 195000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ajibsurveying97",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52304451306,
            "shopid": 1704575114,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjc3dj1r8cg088\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,700005490,700005495,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,1718596,2213765,299033478,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":808,\"model_id\":320416809416,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjc3dj1r8cg088\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,700005490,700005495,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,1718596,2213765,299033478,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":808,\"model_id\":320416809416,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52304451306",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45054456452,
              "shopid": 538235194,
              "name": "GPS Garmin Montana 760i Original Pengganti Montana 750i",
              "label_ids": [
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                700005495,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1718596,
                1119699,
                2213765,
                298488495,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224t-mjb5s69dx9mt61",
              "images": [
                "id-11134207-8224t-mjb5s69dx9mt61",
                "id-11134207-8224z-mjb5s6d2tjwgd2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768039538,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2300000000000,
              "price_min": 2300000000000,
              "price_max": 2300000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 2300000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 340415259310,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2300000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Surveying Store Indonesia",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45054456452,
            "shopid": 538235194,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjb5s69dx9mt61\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,700005490,700005495,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1718596,1119699,2213765,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":690,\"model_id\":340415259310,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjb5s69dx9mt61\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,700005490,700005495,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1718596,1119699,2213765,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":690,\"model_id\":340415259310,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45054456452",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56554436244,
              "shopid": 1093377887,
              "name": "[garansi 3 bulan] JAM TANGAN PINTAR SMARTWATCH 10.000 mAh OLIKE META S2 ANTI AIR SYNC WIT STRAVA",
              "label_ids": [
                2018619,
                2023641,
                700700063,
                844931064601283,
                298463379,
                700005509,
                1049138,
                1718093079,
                822059908662278,
                2048660,
                2048661,
                825465608499232,
                825465608497696,
                298888358,
                298938357,
                1718596,
                2213765,
                700765096,
                1119699,
                2103625,
                298488495,
                298468389,
                2098628,
                298938368,
                2098629,
                1718088045
              ],
              "image": "id-11134207-8224r-mjb3nzxbcow6f5",
              "images": [
                "id-11134207-8224r-mjb3nzxbcow6f5",
                "id-11134207-8224s-mjb3nzxha77m28",
                "id-11134207-8224x-mjb3nzxodukjee",
                "id-11134207-8224t-mjb3nzxc1z4568",
                "id-11134207-82251-mjb3nzxj1ero60",
                "id-11134207-82251-mjb3nzxyyigw08",
                "id-11134207-8224t-mjb3nzzroumf28",
                "id-11134207-8224y-mjb3o01ug6ptcd",
                "id-11134207-8224w-mjb3o0227pqdfc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768039136,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 29900600000,
              "price_min": 29900600000,
              "price_max": 29900600000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6vdvl-mjb5i8ulvpjae3.16000101768038985.mp4",
                  "thumb_url": "id-11110107-6vdvl-mjb5i8ulvpjae3_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110107-6vdvl-mjb5i8ulvpjae3",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6vdvl-mjb5i8ulvpjae3.16000101768038985.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvl-mjb5i8ulvpjae3.16000101768038985.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvl-mjb5i8ulvpjae3.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "META S2",
                  "options": [
                    "Black",
                    "Silver"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp49RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 29750600000,
                "strikethrough_price": 29900600000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1323801468616724,
                "discount_text": null,
                "model_id": 355415241860,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1323801468616724,
                  "voucher_code": "RUMAYE1CS",
                  "voucher_discount": 150000000,
                  "time_info": {
                    "start_time": 1767268680,
                    "end_time": 1769860560,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 25000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 29900600000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp49RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "rumahsoftcase_ID",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56554436244,
            "shopid": 1093377887,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjb3nzxbcow6f5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,700700063,844931064601283,298463379,700005509,1049138,1718093079,822059908662278,2048660,2048661,825465608499232,825465608497696,298888358,298938357,1718596,2213765,700765096,1119699,2103625,298488495,298468389,2098628,298938368,2098629,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":256,\"model_id\":355415241860,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjb3nzxbcow6f5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,700700063,844931064601283,298463379,700005509,1049138,1718093079,822059908662278,2048660,2048661,825465608499232,825465608497696,298888358,298938357,1718596,2213765,700765096,1119699,2103625,298488495,298468389,2098628,298938368,2098629,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":256,\"model_id\":355415241860,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56554436244",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50354436073,
              "shopid": 1631362272,
              "name": "Jual Gps Garmin Gpsmap 76csx bekas kondis normal new",
              "label_ids": [
                844931086908638,
                844931064601283,
                298463379,
                1400066568,
                700005490,
                700005495,
                1718093079,
                822059908662278,
                825465608493600,
                840990690654214,
                2048661,
                2048660,
                825465608494624,
                840955085144628,
                822120592861206,
                825465608499232,
                825465608497696,
                1718596,
                2213765,
                700765096,
                2103625,
                298488495,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82252-mjb46qywxpmu41",
              "images": [
                "id-11134207-82252-mjb46qywxpmu41",
                "id-11134207-8224o-mjb46qywuwhyd2",
                "id-11134207-8224u-mjb46qywwb2e2f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768037804,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 290000000000,
              "price_min": 290000000000,
              "price_max": 290000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 290000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 325415138610,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 290000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Afandi Survey DI",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50354436073,
            "shopid": 1631362272,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjb46qywxpmu41\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1400066568,700005490,700005495,1718093079,822059908662278,825465608493600,840990690654214,2048661,2048660,825465608494624,840955085144628,822120592861206,825465608499232,825465608497696,1718596,2213765,700765096,2103625,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":257,\"model_id\":325415138610,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjb46qywxpmu41\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1400066568,700005490,700005495,1718093079,822059908662278,825465608493600,840990690654214,2048661,2048660,825465608494624,840955085144628,822120592861206,825465608499232,825465608497696,1718596,2213765,700765096,2103625,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":257,\"model_id\":325415138610,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50354436073",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46004445630,
              "shopid": 333504610,
              "name": "Apple watch / Iwacth SE GEN 2 40MM starlight",
              "label_ids": [
                844931064601283,
                700000539,
                700000514,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1718093079,
                1400066568,
                1119699,
                1718596,
                2213765,
                299033477,
                298488495
              ],
              "image": "id-11134207-8224u-mjayh7bgh53853",
              "images": [
                "id-11134207-8224u-mjayh7bgh53853",
                "id-11134207-8224w-mjayh7bgfqis8d",
                "id-11134207-82252-mjayh7bgijno81"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768031643,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple Watch",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 187500000000,
              "price_min": 187500000000,
              "price_max": 187500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Lombok Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 187500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 405414702162,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 187500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Callmezn",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46004445630,
            "shopid": 333504610,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjayh7bgh53853\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700000539,700000514,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1400066568,1119699,1718596,2213765,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":428,\"model_id\":405414702162,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjayh7bgh53853\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700000539,700000514,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1400066568,1119699,1718596,2213765,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":428,\"model_id\":405414702162,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46004445630",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55754408505,
              "shopid": 122221577,
              "name": "SMARTWATCH DIGITEC FITRACK PRIA ORGINAL Free Tali Rantai",
              "label_ids": [
                700700063,
                2018619,
                844931064601283,
                298463379,
                1059152,
                700005489,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                2048660,
                2048661,
                825465608493600,
                1119699,
                1718596,
                2213765,
                700765096,
                299033478,
                298488495,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224r-mjaoywzm5yiob6",
              "images": [
                "id-11134207-8224r-mjaoywzm5yiob6",
                "id-11134207-8224z-mjaoywzh8yyt7e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768016220,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "DIGITEC",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 95000000000,
              "price_min": 95000000000,
              "price_max": 95000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6vdva-mjaqtjsef8qrf6.16000091768014289.mp4",
                  "thumb_url": "id-11110107-6vdva-mjaqtjsef8qrf6_cover",
                  "duration": 30,
                  "version": 2,
                  "vid": "id-11110107-6vdva-mjaqtjsef8qrf6",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6vdva-mjaqtjsef8qrf6.16000091768014289.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdva-mjaqtjsef8qrf6.16000091768014289.mp4",
                      "width": 270,
                      "height": 482
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdva-mjaqtjsef8qrf6.default.mp4",
                    "width": 358,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 95000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 435413865996,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 95000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "liga_arloji_official",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55754408505,
            "shopid": 122221577,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjaoywzm5yiob6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,844931064601283,298463379,1059152,700005489,1718093079,822059908662278,825465608494624,825465608499232,2048660,2048661,825465608493600,1119699,1718596,2213765,700765096,299033478,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":646,\"model_id\":435413865996,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjaoywzm5yiob6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,844931064601283,298463379,1059152,700005489,1718093079,822059908662278,825465608494624,825465608499232,2048660,2048661,825465608493600,1119699,1718596,2213765,700765096,299033478,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":646,\"model_id\":435413865996,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55754408505",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50704407773,
              "shopid": 155233574,
              "name": "XIAOMI REDMI WATCH 5-BLACK",
              "label_ids": [
                844931064601283,
                1059156,
                700000521,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                1718596,
                2213765,
                299033477,
                298488495
              ],
              "image": "id-11134207-82251-mjaovio27pqee4",
              "images": [
                "id-11134207-82251-mjaovio27pqee4",
                "id-11134207-8224y-mjaovio24wlc2d",
                "id-11134207-82252-mjaovio26b5s45"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1768011343,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Redmi",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 95000000000,
              "price_min": 95000000000,
              "price_max": 95000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6vemx-mjaox6cgrlzb18.16000091768011129.mp4",
                  "thumb_url": "id-11110107-6vemx-mjaox6cgrlzb18_cover",
                  "duration": 25,
                  "version": 2,
                  "vid": "id-11110107-6vemx-mjaox6cgrlzb18",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6vemx-mjaox6cgrlzb18.16000091768011129.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vemx-mjaox6cgrlzb18.16000091768011129.mp4",
                      "width": 270,
                      "height": 330
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vemx-mjaox6cgrlzb18.default.mp4",
                    "width": 288,
                    "height": 352
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Cilacap",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 95000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 325413615135,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 95000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Bapis Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50704407773,
            "shopid": 155233574,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mjaovio27pqee4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700000521,1718093079,822059908662278,825465608497696,825465608499232,1119699,1718596,2213765,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":29,\"model_id\":325413615135,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mjaovio27pqee4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700000521,1718093079,822059908662278,825465608497696,825465608499232,1119699,1718596,2213765,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":29,\"model_id\":325413615135,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50704407773",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54854384266,
              "shopid": 1234858520,
              "name": "Apple Watch SE IBOX",
              "label_ids": [
                844931064601283,
                1049148,
                1049145,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1718596,
                2213765,
                1119699,
                299033477,
                298488495
              ],
              "image": "id-11134207-8224x-mj9x391cssn70b",
              "images": [
                "id-11134207-8224x-mj9x391cssn70b",
                "id-11134207-8224z-mj9x250bin0g3d",
                "id-11134207-82252-mj9x250dcnpd4c",
                "id-11134207-8224t-mj9x250ufwg639",
                "id-11134207-8224v-mj9x250sq3gida",
                "id-11134207-8224p-mj9x250soow234",
                "id-11134207-82251-mj9x2517e8zlb2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767964421,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple Watch",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 200000000000,
              "price_min": 200000000000,
              "price_max": 200000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bandar Lampung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 200000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 330412288099,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 200000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "3i1v4u",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54854384266,
            "shopid": 1234858520,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mj9x391cssn70b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049148,1049145,1718093079,822059908662278,825465608499232,825465608497696,1718596,2213765,1119699,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":825,\"model_id\":330412288099,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mj9x391cssn70b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049148,1049145,1718093079,822059908662278,825465608499232,825465608497696,1718596,2213765,1119699,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":825,\"model_id\":330412288099,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54854384266",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44077891451,
              "shopid": 44686230,
              "name": "Garmin fenix 8 amoled sapphire",
              "label_ids": [
                2023641,
                844931064601283,
                1059156,
                700000491,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                1718596,
                2213765,
                1119699,
                299033477,
                298488495
              ],
              "image": "id-11134207-82252-mj9v76rtab5y1e",
              "images": [
                "id-11134207-82252-mj9v76rtab5y1e",
                "id-11134207-8224t-mj9v76hqx72833",
                "id-11134207-8224q-mj9v76iphq84a2",
                "id-11134207-8224r-mj9v76ikxds08c",
                "id-11134207-8224u-mj9v76k3jwucbb",
                "id-11134207-8224u-mj9v76i67tol7a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767961171,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1590000000000,
              "price_min": 1590000000000,
              "price_max": 1590000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Salatiga",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1590000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390412153638,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1590000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Candibaru_new",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44077891451,
            "shopid": 44686230,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj9v76rtab5y1e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,844931064601283,1059156,700000491,1718093079,822059908662278,825465608494624,825465608499232,1718596,2213765,1119699,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":678,\"model_id\":390412153638,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj9v76rtab5y1e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,844931064601283,1059156,700000491,1718093079,822059908662278,825465608494624,825465608499232,1718596,2213765,1119699,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":678,\"model_id\":390412153638,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44077891451",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43027883179,
              "shopid": 867661354,
              "name": "Terbaru Jam Smartwatch Digitec FITRACK Original Garansi Resmi 1 Tahun - Built in GPS",
              "label_ids": [
                2018619,
                2023641,
                2068629,
                298938357,
                844931064601283,
                298463379,
                1059152,
                700005489,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                2213765,
                2103625,
                298488495,
                298468389,
                298938368
              ],
              "image": "id-11134207-82252-mj9cdhmhdwqpee",
              "images": [
                "id-11134207-82252-mj9cdhmhdwqpee",
                "id-11134207-8224s-mj9cdhmhfbb570"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767930242,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "DIGITEC",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 79900000000,
              "price_min": 79900000000,
              "price_max": 79900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6vemx-mj9cec5y08aucf.16000091767929507.mp4",
                  "thumb_url": "id-11110107-6vemx-mj9cec5y08aucf_cover",
                  "duration": 30,
                  "version": 2,
                  "vid": "id-11110107-6vemx-mj9cec5y08aucf",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6vemx-mj9cec5y08aucf.16000091767929507.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vemx-mj9cec5y08aucf.16000091767929507.mp4",
                      "width": 270,
                      "height": 482
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vemx-mj9cec5y08aucf.default.mp4",
                    "width": 358,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp265RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 79750000000,
                "strikethrough_price": 79900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1324374134374416,
                "discount_text": null,
                "model_id": 390409948976,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1324374134374416,
                  "voucher_code": "ORIGS3YYT",
                  "voucher_discount": 150000000,
                  "time_info": {
                    "start_time": 1767336983,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 79900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp265RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Origro",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43027883179,
            "shopid": 867661354,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj9cdhmhdwqpee\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,2068629,298938357,844931064601283,298463379,1059152,700005489,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,2103625,298488495,298468389,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":657,\"model_id\":390409948976,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj9cdhmhdwqpee\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,2068629,298938357,844931064601283,298463379,1059152,700005489,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,2103625,298488495,298468389,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":657,\"model_id\":390409948976,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43027883179",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52254371122,
              "shopid": 1556951683,
              "name": "SMARTWATCH DIGITEC ULTIMA",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059150,
                700005498,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608493600,
                825465608494624,
                1718093079,
                1119699,
                1718596,
                2213765,
                2103625,
                298488495
              ],
              "image": "id-11134207-8224p-mj99lqmb5s0495",
              "images": [
                "id-11134207-8224p-mj99lqmb5s0495",
                "id-11134207-8224t-mj99lqmjbcoy16",
                "id-11134207-82252-mj99lqmlktms88"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767924938,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "DIGITEC",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 101200000000,
              "price_min": 101200000000,
              "price_max": 101200000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Abu",
                    "Hitam",
                    "Biru"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Medan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 101200000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 355409594872,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 101200000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Puppymiiloo",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52254371122,
            "shopid": 1556951683,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mj99lqmb5s0495\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059150,700005498,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1718093079,1119699,1718596,2213765,2103625,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":226,\"model_id\":355409594872,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mj99lqmb5s0495\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059150,700005498,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1718093079,1119699,1718596,2213765,2103625,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":226,\"model_id\":355409594872,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52254371122",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43027867369,
              "shopid": 1116200785,
              "name": "Garmin Forerunner 570  47mm - Turquoise",
              "label_ids": [
                844931086908638,
                1049112,
                700005494,
                822059908662278,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                1718596,
                2213765,
                299033477,
                298488495
              ],
              "image": "id-11134207-82252-mj95li2kf5zb81",
              "images": [
                "id-11134207-82252-mj95li2kf5zb81"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767918131,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "normal",
              "price": 700000000000,
              "price_min": 700000000000,
              "price_max": 700000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Cimahi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 700000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 395409265525,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 700000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "radix-sply",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43027867369,
            "shopid": 1116200785,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj95li2kf5zb81\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,1049112,700005494,822059908662278,825465608494624,825465608499232,1718093079,1119699,1718596,2213765,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":693,\"model_id\":395409265525,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj95li2kf5zb81\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,1049112,700005494,822059908662278,825465608494624,825465608499232,1718093079,1119699,1718596,2213765,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":693,\"model_id\":395409265525,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43027867369",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53254332409,
              "shopid": 88702207,
              "name": "Garmin Forerunner 35 Second Original",
              "label_ids": [
                1000167,
                2018619,
                844931064601283,
                1400066568,
                298463379,
                700005499,
                1059156,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                2213765,
                298488495,
                2098621,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82250-mj8607c5aux308",
              "images": [
                "id-11134207-82250-mj8607c5aux308",
                "id-11134207-82252-mj8607bjammd41",
                "id-11134207-8224v-mj8607bohg5ffc",
                "id-11134207-8224s-mj8607blbo5e14",
                "id-11134207-8224r-mj8607bkutc72b",
                "id-11134207-8224u-mj8607blsiyu19",
                "id-11134207-82252-mj8607brhlvoaf",
                "id-11134207-8224r-mj8607blpptyf7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767860229,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 140000000000,
              "price_min": 140000000000,
              "price_max": 140000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 140000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 292318486586,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 140000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "gbike",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53254332409,
            "shopid": 88702207,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mj8607c5aux308\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,1400066568,298463379,700005499,1059156,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,298488495,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":396,\"model_id\":292318486586,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mj8607c5aux308\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,1400066568,298463379,700005499,1059156,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,298488495,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":396,\"model_id\":292318486586,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53254332409",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52904306850,
              "shopid": 16387650,
              "name": "Garmin Fenix 8 Solar Saphier 51mm",
              "label_ids": [
                2018619,
                844931064601283,
                844931086908638,
                1400066568,
                700005506,
                1049135,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                298463379,
                1718093079,
                1119699,
                1718596,
                2213765,
                298488495,
                299033477,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224t-mjcayhomzfnke9",
              "images": [
                "id-11134207-8224t-mjcayhomzfnke9",
                "id-11134207-8224t-miwaio65fgu8f7",
                "id-11134207-82252-miwaio6h4v7mef",
                "id-11134207-82252-miwaio66ptky9f",
                "id-11134207-8224w-miwaio6ckiro39",
                "id-11134207-82252-miwaio95e685a8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767829142,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1700000000000,
              "price_min": 1700000000000,
              "price_max": 1700000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Makassar",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1700000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 375404620460,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1700000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Titoni",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52904306850,
            "shopid": 16387650,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjcayhomzfnke9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1400066568,700005506,1049135,822059908662278,825465608493600,825465608494624,825465608499232,298463379,1718093079,1119699,1718596,2213765,298488495,299033477,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":666,\"model_id\":375404620460,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjcayhomzfnke9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1400066568,700005506,1049135,822059908662278,825465608493600,825465608494624,825465608499232,298463379,1718093079,1119699,1718596,2213765,298488495,299033477,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":666,\"model_id\":375404620460,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52904306850",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 58104274336,
              "shopid": 1367410104,
              "name": "SmartWatch X10 pro max Wanita tahan air Jam Pintar bluetooth olahraga Smart Watch Gps peta NFC Smartwatch HD touchscreen Jam Tangan Pintar Bisa telpon bisa dan wallpaper IOS Android pria Digital Jam Tangan Monitor Detak Jantung",
              "label_ids": [
                2018619,
                844931064601283,
                844931086908638,
                1049112,
                700005486,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1718596,
                2213765,
                298488495,
                2103625,
                1400285055
              ],
              "image": "sg-11134201-82623-mj73wua9tmh3f5",
              "images": [
                "sg-11134201-82623-mj73wua9tmh3f5",
                "sg-11134201-8262h-mj73wufw661191",
                "sg-11134201-82621-mj73wumarqbp03",
                "sg-11134201-8260c-mj73wutd3dhcdb",
                "sg-11134201-8262a-mj73wuyug5xf2b",
                "sg-11134201-8261r-mj73wv67i03r51",
                "sg-11134201-8260e-mj73wvecc07448",
                "sg-11134201-82617-mj73wvpxio765d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767794166,
              "sold": 9,
              "historical_sold": 9,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 27450000000,
              "price_min": 27450000000,
              "price_max": 27450000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black",
                    "White",
                    "Pink",
                    "Blue",
                    "Black+2strap",
                    "White+2strap",
                    "Pink+2strap"
                  ],
                  "images": [
                    "sg-11134201-82617-mj73wvpxio765d",
                    "sg-11134201-8261d-mj73wvvq2lmr1b",
                    "sg-11134201-8262a-mj73ww1fb4sg45",
                    "sg-11134201-8262d-mj73ww8u49ogd1",
                    "sg-11134201-8260f-mj73wwf7ffnn93",
                    "sg-11134201-8262g-mj73wwomt79ief",
                    "sg-11134201-8261a-mj73wwuq92pv5e"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 27440000000,
                "strikethrough_price": 27450000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1301861090344960,
                "discount_text": null,
                "model_id": 350403743016,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1301861090344960,
                  "voucher_code": "RAEIJJKS8",
                  "voucher_discount": 10000000,
                  "time_info": {
                    "start_time": 1764653160,
                    "end_time": 1772260440,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 1000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 27450000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 9,
                "rounded_local_monthly_sold_count": 9,
                "local_monthly_sold_count_text": "9",
                "rounded_display_sold_count": 9,
                "display_sold_count_text": "9"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HOTOT_Sport",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 58104274336,
            "shopid": 1367410104,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82623-mj73wua9tmh3f5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1049112,700005486,1718093079,822059908662278,825465608499232,825465608497696,1718596,2213765,298488495,2103625,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":207,\"model_id\":350403743016,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82623-mj73wua9tmh3f5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1049112,700005486,1718093079,822059908662278,825465608499232,825465608497696,1718596,2213765,298488495,2103625,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":207,\"model_id\":350403743016,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_58104274336",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46804313805,
              "shopid": 1367410104,
              "name": "Watch 10 Smartwatch fullScreen 2.3-inch IP68 Waterproof Bisa Telponan Dan Ganti Wallpapper Monitor Detak Jantung Tekanan Darah Smart Watch",
              "label_ids": [
                2018619,
                844931086908638,
                844931064601283,
                1718093079,
                700005486,
                1049112,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                2213765,
                298488495,
                2103625,
                700810080
              ],
              "image": "sg-11134201-825zl-mj73ycjfbhfmdf",
              "images": [
                "sg-11134201-825zl-mj73ycjfbhfmdf",
                "sg-11134201-82632-mj73yd7o76ddad",
                "sg-11134201-8260i-mj73yduuq685fe",
                "sg-11134201-8261v-mj73yej3yjuu21",
                "sg-11134201-8261k-mj73yeqz5k3m48",
                "sg-11134201-8262o-mj73yf5rbta8ff",
                "sg-11134201-8260r-mj73yfelpvcz72",
                "sg-11134201-8261z-mj73yfwzs7i81a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767794239,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 27450000000,
              "price_min": 27450000000,
              "price_max": 27450000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black",
                    "Pink",
                    "White",
                    "Blue",
                    "Putih"
                  ],
                  "images": [
                    "sg-11134201-82626-mj73yg9tlrlse4",
                    "sg-11134201-82617-mj73yggap88z1b",
                    "sg-11134201-8261s-mj73ygnq90cidc",
                    "sg-11134201-8261r-mj73yh0nclqeef",
                    "sg-11134201-8260a-mj73yh819dz66a"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 27440000000,
                "strikethrough_price": 27450000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1301861090344960,
                "discount_text": null,
                "model_id": 335403755232,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1301861090344960,
                  "voucher_code": "RAEIJJKS8",
                  "voucher_discount": 10000000,
                  "time_info": {
                    "start_time": 1764653160,
                    "end_time": 1772260440,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 1000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 27450000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HOTOT_Sport",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46804313805,
            "shopid": 1367410104,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zl-mj73ycjfbhfmdf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,1718093079,700005486,1049112,822059908662278,825465608499232,825465608497696,1119699,1718596,2213765,298488495,2103625,700810080],\"matched_keywords\":[\"\"],\"merge_rank\":737,\"model_id\":335403755232,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zl-mj73ycjfbhfmdf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,1718093079,700005486,1049112,822059908662278,825465608499232,825465608497696,1119699,1718596,2213765,298488495,2103625,700810080],\"matched_keywords\":[\"\"],\"merge_rank\":737,\"model_id\":335403755232,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46804313805",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44804313772,
              "shopid": 1367410104,
              "name": "Curve 3 Smartwatch Original 12.7mm 22g Ultra-thin and lightweight | 240 hours battery life | IP68 Waterproof Tahan air | Smartwatch Pria Wanita Smart Watch Fit Aolon Official Store",
              "label_ids": [
                2018619,
                844931064601283,
                844931086908638,
                700005486,
                1049112,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                1718596,
                2213765,
                298488495,
                2103625,
                700810080,
                1400285055
              ],
              "image": "sg-11134201-82614-mj73vcydrg90fd",
              "images": [
                "sg-11134201-82614-mj73vcydrg90fd",
                "sg-11134201-8260u-mj73vdcddhq848",
                "sg-11134201-8260u-mj73vdnhgwzo87",
                "sg-11134201-8261x-mj73ve1myz29a0",
                "sg-11134201-825zl-mj73vechl2bl15",
                "sg-11134201-8262n-mj73velutm9x54",
                "sg-11134201-8260x-mj73vev50irp14",
                "sg-11134201-8261h-mj73vf37gu8593"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767794108,
              "sold": 9,
              "historical_sold": 9,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 27450000000,
              "price_min": 27450000000,
              "price_max": 27450000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black [2025 New]",
                    "Silver",
                    "Gold",
                    "Black Add Metal",
                    "Black Metal Film",
                    "Black Add Milan",
                    "Black Add Film",
                    "Black Add Leather",
                    "Black Add Megnet",
                    "Black Nylon GYGN",
                    "Black Nylon OGGN",
                    "Black Nylon REDYW",
                    "Silver Black Silicon",
                    "Silver Silicon Film",
                    "Silver Add Metal",
                    "Silver Add Milan",
                    "Silver Add Megnet",
                    "Silver Add Film",
                    "Silver Nylon GYGN",
                    "Silver Nylon OGGN",
                    "Silver Nylon REDYW",
                    "Gold Add Metal",
                    "Gold Add Megnet",
                    "Gold Black Silicon",
                    "Gold Add Film",
                    "Gold Nylon GYGN",
                    "Gold Nylon OGGN",
                    "Gold Nylon REDYW",
                    "CURVE 2 Silver",
                    "CURVE 2 Silver Milan",
                    "CURVE 2 Gold",
                    "[New Upgrade]"
                  ],
                  "images": [
                    "sg-11134201-82602-mj73vfbl8jy8c7",
                    "sg-11134201-8261d-mj73vfmidwjq33",
                    "sg-11134201-8261j-mj73vfxjtt6o93",
                    "sg-11134201-8262h-mj73vg5f7vuu0c",
                    "sg-11134201-82613-mj73vge6q1hf36",
                    "sg-11134201-8260b-mj73vgnjsw0360",
                    "sg-11134201-82632-mj73vgv6sykh0e",
                    "sg-11134201-8262e-mj73vh3tuxvka5",
                    "sg-11134201-8260u-mj73vhbevdhiff",
                    "sg-11134201-82622-mj73vhipi60z01",
                    "sg-11134201-825zu-mj73vht66u4m1a",
                    "sg-11134201-82615-mj73vi3mpuddb6",
                    "sg-11134201-8260w-mj73vidqzsao92",
                    "sg-11134201-82605-mj73vimsu4ud8d",
                    "sg-11134201-82617-mj73viu14nb914",
                    "sg-11134201-82622-mj73vj2c4jk33d",
                    "sg-11134201-82600-mj73vj9r0hkw5f",
                    "sg-11134201-8262g-mj73vjim9ekg24",
                    "sg-11134201-82607-mj73vjrz9j454c",
                    "sg-11134201-82602-mj73vk4ia1hj65",
                    "sg-11134201-8261n-mj73vkedp4huff",
                    "sg-11134201-82617-mj73vkngxzwh89",
                    "sg-11134201-8262j-mj73vkugvyfafc",
                    "sg-11134201-82630-mj73vl7563gldf",
                    "sg-11134201-8260e-mj73vli4usjk83",
                    "sg-11134201-8260u-mj73vlsmxxxh03",
                    "sg-11134201-825zl-mj73vm2gkgea4b",
                    "sg-11134201-825zp-mj73vmdwafba97",
                    "sg-11134201-825zq-mj73vmnwl3b6d5",
                    "sg-11134201-82603-mj73vmwzacch8e",
                    "sg-11134201-8262r-mj73vn8rdog24a",
                    "sg-11134201-8261d-mj73vni84kci5f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 27440000000,
                "strikethrough_price": 27450000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1301861090344960,
                "discount_text": null,
                "model_id": 390403747567,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1301861090344960,
                  "voucher_code": "RAEIJJKS8",
                  "voucher_discount": 10000000,
                  "time_info": {
                    "start_time": 1764653160,
                    "end_time": 1772260440,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 1000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 27450000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 9,
                "rounded_local_monthly_sold_count": 9,
                "local_monthly_sold_count_text": "9",
                "rounded_display_sold_count": 9,
                "display_sold_count_text": "9"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HOTOT_Sport",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44804313772,
            "shopid": 1367410104,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82614-mj73vcydrg90fd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,700005486,1049112,1718093079,822059908662278,825465608497696,825465608499232,1119699,1718596,2213765,298488495,2103625,700810080,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":208,\"model_id\":390403747567,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82614-mj73vcydrg90fd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,700005486,1049112,1718093079,822059908662278,825465608497696,825465608499232,1119699,1718596,2213765,298488495,2103625,700810080,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":208,\"model_id\":390403747567,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44804313772",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55254275838,
              "shopid": 644077619,
              "name": "jam smartwatch Coros vertix 2 sapphire only",
              "label_ids": [
                2018619,
                844931064601283,
                298463379,
                1049112,
                700005512,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                2048660,
                2048661,
                1718093079,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                2103625,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224t-mj6scsu8mh38d3",
              "images": [
                "id-11134207-8224t-mj6scsu8mh38d3",
                "id-11134207-8224p-mj6scsu8i9dw58",
                "id-11134207-8224o-mj6scsu8jnycb3",
                "id-11134207-82251-mj6scsu8l2isc5",
                "id-11134207-8224p-mj6scsu8nvno40",
                "id-11134207-8224p-mj6scsu8pa84eb",
                "id-11134207-8224p-mj6scsu8qosk59",
                "id-11134207-8224w-mj6scsu8s3d077",
                "id-11134207-8224q-mj6t8owqt05c71"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767776876,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "COROS",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 650000000000,
              "price_min": 650000000000,
              "price_max": 650000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6vdve-mj6t9jnl6hok4f.16000091767776262.mp4",
                  "thumb_url": "id-11110107-6vdve-mj6t9jnl6hok4f_cover",
                  "duration": 21,
                  "version": 2,
                  "vid": "id-11110107-6vdve-mj6t9jnl6hok4f",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6vdve-mj6t9jnl6hok4f.16000091767776262.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdve-mj6t9jnl6hok4f.16000091767776262.mp4",
                      "width": 270,
                      "height": 330
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdve-mj6t9jnl6hok4f.default.mp4",
                    "width": 288,
                    "height": 352
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 650000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 259138249427,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 650000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Araya0519",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55254275838,
            "shopid": 644077619,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mj6scsu8mh38d3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1049112,700005512,822059908662278,825465608493600,825465608494624,825465608499232,2048660,2048661,1718093079,1119699,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":786,\"model_id\":259138249427,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mj6scsu8mh38d3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1049112,700005512,822059908662278,825465608493600,825465608494624,825465608499232,2048660,2048661,1718093079,1119699,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":786,\"model_id\":259138249427,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55254275838",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46554225430,
              "shopid": 192472371,
              "name": "garmin fenix 7X sapphire dual power fullset",
              "label_ids": [
                2018619,
                844931064601283,
                1059156,
                700000491,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                1119699,
                1718596,
                2213765,
                298488495,
                299033478,
                298933384
              ],
              "image": "id-11134207-8224z-mj5joqpae6tff2",
              "images": [
                "id-11134207-8224z-mj5joqpae6tff2",
                "id-11134207-8224t-mj5joqpbrcp2ed",
                "id-11134207-8224q-mj5joqpknm687c",
                "id-11134207-8224t-mj5joqpkp0qoe5",
                "id-11134207-8224o-mj5joqpkqfb464",
                "id-11134207-8224v-mj5joqpkrtvk08",
                "id-11134207-8224w-mj5joqpkt8g08e",
                "id-11134207-8224r-mj5joqpkun0ga7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767699762,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 780000000000,
              "price_min": 780000000000,
              "price_max": 780000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Salatiga",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 780000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 440398363942,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 780000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "tephh's",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46554225430,
            "shopid": 192472371,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mj5joqpae6tff2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1059156,700000491,1718093079,822059908662278,825465608494624,825465608499232,1119699,1718596,2213765,298488495,299033478,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":372,\"model_id\":440398363942,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mj5joqpae6tff2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1059156,700000491,1718093079,822059908662278,825465608494624,825465608499232,1119699,1718596,2213765,298488495,299033478,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":372,\"model_id\":440398363942,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46554225430",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54954192460,
              "shopid": 1102849498,
              "name": "Smartwatch JETE VOLT 2X PRO 1.43 Inch AMOLED Screen Display Jam Tangan AI Running 5 ATM Waterproof Watch 4GB Smart Watch With GPS Sport Flashlight Mode Heart Rate Jam Tangan Pria Wanita",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                1012729,
                2018618,
                2018619,
                2153644,
                298463379,
                1049117,
                1049116,
                822059908662278,
                825465608499232,
                834403089593352,
                825465608497696,
                825465608492064,
                825465608494624,
                1718093079,
                1119699,
                1718596,
                2213765,
                298488495,
                2213652,
                2103625,
                2143647,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224z-mjf4zplte1hh7c",
              "images": [
                "id-11134207-8224z-mjf4zplte1hh7c",
                "sg-11134201-8261c-mj5e83yw5hj4cb",
                "sg-11134201-82600-mj5e845wk9ae17",
                "sg-11134201-825zw-mj5e84e8krgi2e",
                "sg-11134201-82607-mj5e84nqx8na0b",
                "sg-11134201-8262d-mj5e84v9sf0g64",
                "sg-11134201-8260e-mj5e853kldkyca",
                "sg-11134201-8262h-mj5e85h2zvgh61",
                "sg-11134201-82631-mj5e85v48wsidc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767690441,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "JETE",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 155890000000,
              "price_min": 155890000000,
              "price_max": 155890000000,
              "price_min_before_discount": 279990000000,
              "price_max_before_discount": 279990000000,
              "hidden_price_display": null,
              "price_before_discount": 279990000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-44%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 824414367694848,
                "price": 153890000000,
                "strikethrough_price": 279990000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1327348507361280,
                "discount_text": "-44%",
                "model_id": 302313329431,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1327348507361280,
                  "voucher_code": "DORADIS4",
                  "voucher_discount": 2000000000,
                  "time_info": {
                    "start_time": 1767691860,
                    "end_time": 1774974660,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 30000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 279990000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Doran Authorized Store Yogyakarta",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54954192460,
            "shopid": 1102849498,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjf4zplte1hh7c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1012729,2018618,2018619,2153644,298463379,1049117,1049116,822059908662278,825465608499232,834403089593352,825465608497696,825465608492064,825465608494624,1718093079,1119699,1718596,2213765,298488495,2213652,2103625,2143647,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":891,\"model_id\":302313329431,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjf4zplte1hh7c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1012729,2018618,2018619,2153644,298463379,1049117,1049116,822059908662278,825465608499232,834403089593352,825465608497696,825465608492064,825465608494624,1718093079,1119699,1718596,2213765,298488495,2213652,2103625,2143647,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":891,\"model_id\":302313329431,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54954192460",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51654181914,
              "shopid": 644077619,
              "name": "jam smartwatch Coros pace 2",
              "label_ids": [
                1400066568,
                2018619,
                844931064601283,
                298463379,
                1049112,
                700005512,
                1718093079,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                2048660,
                2048661,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                2103625,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82251-mj5856jwz9qe7d",
              "images": [
                "id-11134207-82251-mj5856jwz9qe7d",
                "id-11134207-82251-mj5856jx22vaf5",
                "id-11134207-8224x-mj5856jx0oau71",
                "id-11134207-82250-mj5856jx4w06cc",
                "id-11134207-8224s-mj5856jwxv5ydb",
                "id-11134207-8224s-mj5856jx3hfq26",
                "id-11134207-8224s-mj5856jx6akmd6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767684718,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "COROS",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 270000000000,
              "price_min": 270000000000,
              "price_max": 270000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6venf-mj5auukwdngm45.16000091767684775.mp4",
                  "thumb_url": "id-11110107-6venf-mj5auukwdngm45_cover",
                  "duration": 13,
                  "version": 2,
                  "vid": "id-11110107-6venf-mj5auukwdngm45",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6venf-mj5auukwdngm45.16000091767684775.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venf-mj5auukwdngm45.16000091767684775.mp4",
                      "width": 270,
                      "height": 482
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venf-mj5auukwdngm45.default.mp4",
                    "width": 358,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 270000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 355397147614,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 270000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Araya0519",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51654181914,
            "shopid": 644077619,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj5856jwz9qe7d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,298463379,1049112,700005512,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,2048660,2048661,1119699,1718596,2213765,700765096,298488495,2103625,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":787,\"model_id\":355397147614,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj5856jwz9qe7d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,298463379,1049112,700005512,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,2048660,2048661,1119699,1718596,2213765,700765096,298488495,2103625,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":787,\"model_id\":355397147614,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51654181914",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50154185606,
              "shopid": 999577,
              "name": "Apple Watch SE Gen 2 40mm Black Midnight GPS",
              "label_ids": [
                844931064601283,
                844931086908638,
                298463379,
                2018619,
                1059152,
                1059154,
                822059908662278,
                825465608493600,
                822120592861206,
                834403089593352,
                825465608494624,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                827380695406658,
                825465608499232,
                1718093079,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                2103625,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224x-mj58bjao0u11c4",
              "images": [
                "id-11134207-8224x-mj58bjao0u11c4",
                "id-11134207-8224y-mj58bjao28lh7c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767681659,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple Watch",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 319900000000,
              "price_min": 319900000000,
              "price_max": 319900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 319900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 410396817211,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 319900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "lologrosir",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50154185606,
            "shopid": 999577,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mj58bjao0u11c4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,2018619,1059152,1059154,822059908662278,825465608493600,822120592861206,834403089593352,825465608494624,825465608497696,840990690654214,2048660,2048661,840955085144628,827380695406658,825465608499232,1718093079,1119699,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":498,\"model_id\":410396817211,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mj58bjao0u11c4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,2018619,1059152,1059154,822059908662278,825465608493600,822120592861206,834403089593352,825465608494624,825465608497696,840990690654214,2048660,2048661,840955085144628,827380695406658,825465608499232,1718093079,1119699,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":498,\"model_id\":410396817211,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50154185606",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55304179133,
              "shopid": 204825196,
              "name": "Peje Smartwatch ZW10 Silver Original",
              "label_ids": [
                2018619,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608493600,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                2103625,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224w-mj57mz8s9a8359",
              "images": [
                "id-11134207-8224w-mj57mz8s9a8359",
                "id-11134207-82250-mj57mz8s52is98"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767679492,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "PEJE",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 45000000000,
              "price_min": 45000000000,
              "price_max": 45000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 45000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 365396594227,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 45000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "mayaulfahh",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55304179133,
            "shopid": 204825196,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mj57mz8s9a8359\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608493600,825465608499232,825465608497696,2048660,2048661,1119699,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":376,\"model_id\":365396594227,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mj57mz8s9a8359\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608493600,825465608499232,825465608497696,2048660,2048661,1119699,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":376,\"model_id\":365396594227,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55304179133",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44754200183,
              "shopid": 204825196,
              "name": "Xiaomi Redmi Watch 5 Lite White Original",
              "label_ids": [
                2018619,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1059154,
                1059152,
                822059908662278,
                2048661,
                825465608493600,
                825465608499232,
                825465608497696,
                2048660,
                1718093079,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                2103625,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224o-mj56v9nd6r5yc2",
              "images": [
                "id-11134207-8224o-mj56v9nd6r5yc2",
                "id-11134207-8224p-mj56v9nmtpfnfb",
                "id-11134207-82251-mj56v9n1hcskc1",
                "id-11134207-82251-mj56v9nwupdv1f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767678204,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Xiaomi",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 69000000000,
              "price_min": 69000000000,
              "price_max": 69000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 69000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 395396510441,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 69000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "mayaulfahh",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44754200183,
            "shopid": 204825196,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mj56v9nd6r5yc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1059154,1059152,822059908662278,2048661,825465608493600,825465608499232,825465608497696,2048660,1718093079,1119699,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":798,\"model_id\":395396510441,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mj56v9nd6r5yc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1059154,1059152,822059908662278,2048661,825465608493600,825465608499232,825465608497696,2048660,1718093079,1119699,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":798,\"model_id\":395396510441,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44754200183",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50304177372,
              "shopid": 1413055138,
              "name": "Apple Watch ultra 49mm 100% asli set lengkap dengan garansi internasional-Fungsi panggilan - pengingat pesan - pemantauan tubuh",
              "label_ids": [
                2018619,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                1119699,
                1718596,
                2213765,
                298488495,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82252-mj51r25513b56f",
              "images": [
                "id-11134207-82252-mj51r25513b56f",
                "id-11134207-82250-mj51r254ya69f2",
                "id-11134207-8224x-mj51r254zoqpe4",
                "id-11134207-8224r-mj51r254wvlt66"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767669668,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 55000000000,
              "price_min": 55000000000,
              "price_max": 55000000000,
              "price_min_before_discount": 68000000000,
              "price_max_before_discount": 68000000000,
              "hidden_price_display": null,
              "price_before_discount": 68000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-19%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Model",
                  "options": [
                    "49mm Oranye"
                  ],
                  "images": [
                    "id-11134207-8224u-mj51r2552hvl54"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227928957005824,
                "price": 55000000000,
                "strikethrough_price": 68000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-19%",
                "model_id": 267312524885,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 68000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "iBOX Mall Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50304177372,
            "shopid": 1413055138,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj51r25513b56f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1059152,1049122,822059908662278,825465608499232,1119699,1718596,2213765,298488495,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":592,\"model_id\":267312524885,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj51r25513b56f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1059152,1049122,822059908662278,825465608499232,1119699,1718596,2213765,298488495,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":592,\"model_id\":267312524885,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50304177372",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47054183551,
              "shopid": 1413055138,
              "name": "iwatch apple Watch Ultra 1 ultra 2 2022 2023 LikeNew 100% original",
              "label_ids": [
                2018619,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1718093079,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                1119699,
                1718596,
                2213765,
                298488495,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224w-mj51r255kr9ccc",
              "images": [
                "id-11134207-8224w-mj51r255kr9ccc",
                "id-11134207-8224q-mj4zulxc7rpe3d",
                "id-11134207-8224u-mj4zulxcakuac9",
                "id-11134207-8224y-mj4zulxc969u66"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767669534,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 55000000000,
              "price_min": 55000000000,
              "price_max": 55000000000,
              "price_min_before_discount": 68000000000,
              "price_max_before_discount": 68000000000,
              "hidden_price_display": null,
              "price_before_discount": 68000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-19%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Model",
                  "options": [
                    "49mm Oranye"
                  ],
                  "images": [
                    "id-11134207-8224o-mj51r254vh1d4f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227928957005824,
                "price": 55000000000,
                "strikethrough_price": 68000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-19%",
                "model_id": 360395957935,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 68000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "iBOX Mall Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47054183551,
            "shopid": 1413055138,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mj51r255kr9ccc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,1059152,1049122,822059908662278,825465608499232,1119699,1718596,2213765,298488495,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":593,\"model_id\":360395957935,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mj51r255kr9ccc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,1059152,1049122,822059908662278,825465608499232,1119699,1718596,2213765,298488495,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":593,\"model_id\":360395957935,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47054183551",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55454176284,
              "shopid": 40512799,
              "name": "jam tangan amazfit active 2",
              "label_ids": [
                1000167,
                2018619,
                844931064601283,
                298463379,
                1059152,
                1049124,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                1119699,
                1718596,
                2213765,
                298488495,
                2103625,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82251-mj4ys5ki991h95",
              "images": [
                "id-11134207-82251-mj4ys5ki991h95",
                "id-11134207-8224y-mj4ys5jqjxtsc7",
                "id-11134207-8224v-mj4ys5kj9rt3c1",
                "id-11134207-8224p-mj4ys5kfpy4i6c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767664554,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Amazfit",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 200000000000,
              "price_min": 200000000000,
              "price_max": 200000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 200000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 262312319382,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 200000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HMadhy",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55454176284,
            "shopid": 40512799,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj4ys5ki991h95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,298463379,1059152,1049124,1718093079,822059908662278,825465608494624,825465608499232,1119699,1718596,2213765,298488495,2103625,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":805,\"model_id\":262312319382,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj4ys5ki991h95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,298463379,1059152,1049124,1718093079,822059908662278,825465608494624,825465608499232,1119699,1718596,2213765,298488495,2103625,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":805,\"model_id\":262312319382,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55454176284",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47154190219,
              "shopid": 1660662643,
              "name": "GPS Garmin 64s second murah",
              "label_ids": [
                844931086908638,
                844931064601283,
                1400066568,
                1428713,
                1718087960,
                700005490,
                700005495,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                1718596,
                2213765,
                298488495,
                299033478
              ],
              "image": "id-11134207-82251-mj4nuq3h8sn767",
              "images": [
                "id-11134207-82251-mj4nuq3h8sn767",
                "id-11134207-8224r-mj4nuq3ha77n77",
                "id-11134207-82252-mj4nuq3hbls362"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767646539,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 360000000000,
              "price_min": 360000000000,
              "price_max": 360000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6vdvh-mjghbs7fkiyp3a.16000071768361534.mp4",
                  "thumb_url": "id-11110107-6vdvh-mjghbs7fkiyp3a_cover",
                  "duration": 17,
                  "version": 2,
                  "vid": "id-11110107-6vdvh-mjghbs7fkiyp3a",
                  "formats": [
                    {
                      "format": 1600007,
                      "defn": "V640P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6vdvh-mjghbs7fkiyp3a.16000071768361534.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvh-mjghbs7fkiyp3a.16000071768361534.mp4",
                      "width": 640,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvh-mjghbs7fkiyp3a.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 360000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 370395211177,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 360000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Geonavigator11",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47154190219,
            "shopid": 1660662643,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj4nuq3h8sn767\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1400066568,1428713,1718087960,700005490,700005495,1718093079,822059908662278,825465608499232,1119699,1718596,2213765,298488495,299033478],\"matched_keywords\":[\"\"],\"merge_rank\":607,\"model_id\":370395211177,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj4nuq3h8sn767\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1400066568,1428713,1718087960,700005490,700005495,1718093079,822059908662278,825465608499232,1119699,1718596,2213765,298488495,299033478],\"matched_keywords\":[\"\"],\"merge_rank\":607,\"model_id\":370395211177,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47154190219",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56204159572,
              "shopid": 1660662643,
              "name": "Gps Garmin 66s Bekas Lengkap Original",
              "label_ids": [
                844931086908638,
                844931064601283,
                1400066568,
                1428713,
                1718087960,
                700005495,
                700005490,
                822059908662278,
                825465608499232,
                1718093079,
                1119699,
                1718596,
                2213765,
                298488495,
                299033478
              ],
              "image": "id-11134207-8224y-mj4l5qvv9jwnb9",
              "images": [
                "id-11134207-8224y-mj4l5qvv9jwnb9",
                "id-11134207-8224w-mj4l5qvvayh331",
                "id-11134207-8224w-mj4l5qvvcd1jbf",
                "id-11134207-8224x-mj4lglvojaiu21",
                "id-11134207-8224o-mj4lglvoyqrn41"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767642204,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 560000000000,
              "price_min": 560000000000,
              "price_max": 560000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 560000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 340395130157,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 560000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Geonavigator11",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56204159572,
            "shopid": 1660662643,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mj4l5qvv9jwnb9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1400066568,1428713,1718087960,700005495,700005490,822059908662278,825465608499232,1718093079,1119699,1718596,2213765,298488495,299033478],\"matched_keywords\":[\"\"],\"merge_rank\":608,\"model_id\":340395130157,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mj4l5qvv9jwnb9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1400066568,1428713,1718087960,700005495,700005490,822059908662278,825465608499232,1718093079,1119699,1718596,2213765,298488495,299033478],\"matched_keywords\":[\"\"],\"merge_rank\":608,\"model_id\":340395130157,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56204159572",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46904163155,
              "shopid": 192472371,
              "name": "garmin forerunner 570 fullset",
              "label_ids": [
                2018619,
                844931064601283,
                1059156,
                700000491,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                1119699,
                1718596,
                2213765,
                298488495,
                299033477
              ],
              "image": "id-11134207-82250-mj42uvxnnv2a15",
              "images": [
                "id-11134207-82250-mj42uvxnnv2a15",
                "id-11134207-8224z-mj42uvxnp9mqe3",
                "id-11134207-8224z-mj42uvxnqo765d",
                "id-11134207-8224w-mj42uvxns2rm08",
                "id-11134207-8224o-mj42uvxnthc208",
                "id-11134207-8224q-mj42uvxnuvwic0",
                "id-11134207-8224p-mj42uvyg59mt32",
                "id-11134207-8224u-mj42uvyg6o7910",
                "id-11134207-8224v-mj42uvyg82rp25"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767613160,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 720000000000,
              "price_min": 720000000000,
              "price_max": 720000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Salatiga",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 720000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 307311257821,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 720000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "tephh's",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46904163155,
            "shopid": 192472371,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mj42uvxnnv2a15\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1059156,700000491,1718093079,822059908662278,825465608494624,825465608499232,1119699,1718596,2213765,298488495,299033477],\"matched_keywords\":[\"\"],\"merge_rank\":373,\"model_id\":307311257821,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mj42uvxnnv2a15\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1059156,700000491,1718093079,822059908662278,825465608494624,825465608499232,1119699,1718596,2213765,298488495,299033477],\"matched_keywords\":[\"\"],\"merge_rank\":373,\"model_id\":307311257821,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46904163155",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48904166675,
              "shopid": 1349665689,
              "name": "WISELION Z138 Smartwatch 1.39 inch Layar HD Bluetooth Calls 123 Sport Mode Fitness Tracker Waterproof Health Monitoring Wallpaperย Kustom Long Battery Jamย Tanganย Pintar",
              "label_ids": [
                2068629,
                2018618,
                700700063,
                298938357,
                2153644,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059151,
                1049112,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                1718596,
                2213765,
                2213652,
                298488495,
                1015914,
                700190087,
                298468389,
                2098628,
                2098629,
                1718088045,
                298938368
              ],
              "image": "id-11134207-8224w-mj3ytnedjy1275",
              "images": [
                "id-11134207-8224w-mj3ytnedjy1275",
                "id-11134207-82252-mj3ytne5jzlxaf",
                "id-11134207-8224v-mj3ytne5edc5fe",
                "id-11134207-8224t-mj3ytne5h6h189",
                "id-11134207-82251-mj3ytne5msqt59",
                "id-11134207-82252-mj3ytne5frwl7e",
                "id-11134207-8224q-mj3ytne5il1hd1",
                "id-11134207-8224p-mj3ytne5o7b99e",
                "id-11134207-82252-mj3ytne5le6de5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767606749,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "WISELION",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 21999900000,
              "price_min": 21999900000,
              "price_max": 21999900000,
              "price_min_before_discount": 99999900000,
              "price_max_before_discount": 99999900000,
              "hidden_price_display": null,
              "price_before_discount": 99999900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-78%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemz-mj40g83tk6pv9f.16000101767606748.mp4",
                  "thumb_url": "id-11110105-6vemz-mj40g83tk6pv9f_cover",
                  "duration": 32,
                  "version": 2,
                  "vid": "id-11110105-6vemz-mj40g83tk6pv9f",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemz-mj40g83tk6pv9f.16000101767606748.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemz-mj40g83tk6pv9f.16000101767606748.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemz-mj40g83tk6pv9f.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Emas sampanye"
                  ],
                  "images": [
                    "id-11134207-8224y-mj3ytne5plvpd9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp73RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 731627622301696,
                "price": 21999900000,
                "strikethrough_price": 99999900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-78%",
                "model_id": 310394352773,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 99999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp73RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Wiselion Indonesia ",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48904166675,
            "shopid": 1349665689,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mj3ytnedjy1275\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2068629,2018618,700700063,298938357,2153644,1428713,1718087960,844931064601283,844931086908638,298463379,1059151,1049112,1718093079,822059908662278,825465608497696,825465608499232,1119699,1718596,2213765,2213652,298488495,1015914,700190087,298468389,2098628,2098629,1718088045,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":820,\"model_id\":310394352773,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mj3ytnedjy1275\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2068629,2018618,700700063,298938357,2153644,1428713,1718087960,844931064601283,844931086908638,298463379,1059151,1049112,1718093079,822059908662278,825465608497696,825465608499232,1119699,1718596,2213765,2213652,298488495,1015914,700190087,298468389,2098628,2098629,1718088045,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":820,\"model_id\":310394352773,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48904166675",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56454155470,
              "shopid": 590871202,
              "name": "Apple Watch SE 2 40mm inter second",
              "label_ids": [
                2018619,
                1718087960,
                1428713,
                844931064601283,
                700005509,
                1049138,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                2213765,
                2098621,
                1718093079,
                298488495,
                298933384
              ],
              "image": "id-11134207-8224t-mj3zhlh6cd8jd5",
              "images": [
                "id-11134207-8224t-mj3zhlh6cd8jd5",
                "id-11134207-8224o-mj3zhlh6drsz37",
                "id-11134207-8224s-mj3zhlh6f6df21",
                "id-11134207-8224u-mj3zhlh6gkxvf0",
                "id-11134207-82252-mj3zhlh6hzibe5",
                "id-11134207-8224x-mj3zhlh6je2r78",
                "id-11134207-8224p-mj3zhlhhp4hy27",
                "id-11134207-8224s-mj3zhlhhqj2e70"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767605937,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple Watch",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 185000000000,
              "price_min": 185000000000,
              "price_max": 185000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 185000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 310394284010,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 185000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Nst Corporation",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56454155470,
            "shopid": 590871202,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mj3zhlh6cd8jd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,700005509,1049138,822059908662278,825465608499232,825465608497696,1119699,1718596,2213765,2098621,1718093079,298488495,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":652,\"model_id\":310394284010,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mj3zhlh6cd8jd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,700005509,1049138,822059908662278,825465608499232,825465608497696,1119699,1718596,2213765,2098621,1718093079,298488495,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":652,\"model_id\":310394284010,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56454155470",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41177745495,
              "shopid": 409991250,
              "name": "Garmin edge 810 matot / (untuk part)",
              "label_ids": [
                2018619,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608493600,
                825465608499232,
                1718093079,
                1119699,
                1718596,
                2213765,
                2103625,
                298488495,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224t-mj3b4wdiir5z8f",
              "images": [
                "id-11134207-8224t-mj3b4wdiir5z8f",
                "id-11134207-8224v-mj3b4wdik5qfd5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767564968,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 30000000000,
              "price_min": 30000000000,
              "price_max": 30000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 30000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 302309610999,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 30000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Sahabat Toko18",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41177745495,
            "shopid": 409991250,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mj3b4wdiir5z8f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1059152,1059154,822059908662278,825465608493600,825465608499232,1718093079,1119699,1718596,2213765,2103625,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":771,\"model_id\":302309610999,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mj3b4wdiir5z8f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1059152,1059154,822059908662278,825465608493600,825465608499232,1718093079,1119699,1718596,2213765,2103625,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":771,\"model_id\":302309610999,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41177745495",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52504120014,
              "shopid": 409991250,
              "name": "layar lcd Garmin 60csx",
              "label_ids": [
                2018619,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608493600,
                1119699,
                1718596,
                2213765,
                2103625,
                298488495,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224r-mj3b4wdf0c1w16",
              "images": [
                "id-11134207-8224r-mj3b4wdf0c1w16",
                "id-11134207-8224u-mj3b4we5gp37e3",
                "id-11134207-8224s-mj3b4wdihclj43"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767564524,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 35000000000,
              "price_min": 35000000000,
              "price_max": 35000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 35000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 320391292900,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 35000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Sahabat Toko18",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52504120014,
            "shopid": 409991250,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mj3b4wdf0c1w16\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608493600,1119699,1718596,2213765,2103625,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":770,\"model_id\":320391292900,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mj3b4wdf0c1w16\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608493600,1119699,1718596,2213765,2103625,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":770,\"model_id\":320391292900,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52504120014",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51954079713,
              "shopid": 130071787,
              "name": "Original Apple Sport Loop Band Strap Watch 41mm 45mm Tali Jam",
              "label_ids": [
                2018619,
                2068629,
                2023641,
                1400095067,
                1400285005,
                298938357,
                1400066568,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                700005489,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                825465608493600,
                825465608494624,
                1718093079,
                1119699,
                1718596,
                700765096,
                298488495,
                2103625,
                2213765,
                2098629,
                298468389,
                1718088045,
                2098628,
                298938368
              ],
              "image": "id-11134207-82250-mj1yd6mvkt8ia8",
              "images": [
                "id-11134207-82250-mj1yd6mvkt8ia8",
                "id-11134207-8224v-mj1yd6mvglj4dd",
                "id-11134207-8224s-mj1yd6mvi03k69",
                "id-11134207-8224r-mj1yd6mvkt8gc9",
                "id-11134207-82250-mj1yd6mvm7swd2",
                "id-11134207-8224x-mj1yd6mvnmdce7",
                "id-11134207-8224x-mj1yd6mvp0xsf0",
                "id-11134207-8224w-mj1yd6mvqfi8bc",
                "id-11134207-8224t-mj1yd6mvru2o8c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767483939,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 21900000000,
              "price_min": 21900000000,
              "price_max": 21900000000,
              "price_min_before_discount": 84900000000,
              "price_max_before_discount": 84900000000,
              "hidden_price_display": null,
              "price_before_discount": 84900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-74%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "41mm S/M Storm Blue",
                    "41mm M/L Storm Blue",
                    "45mm S/M Storm Blue",
                    "45mm M/L Storm Blue",
                    "41mm S/M Starlight",
                    "41mm M/L Starlight",
                    "45mm S/M Starlight",
                    "45mm M/L Starlight",
                    "41mm S/M Black",
                    "41mm M/L Black",
                    "45mm S/M Black",
                    "45mm M/L Black",
                    "41mm S/M Clay",
                    "41mm M/L Clay",
                    "45mm S/M Clay",
                    "45mm M/L Clay",
                    "41mm S/M Pink",
                    "41mm M/L Pink",
                    "45mm S/M Pink",
                    "45mm M/L Pink",
                    "41mm S/M Red",
                    "41mm M/L Red",
                    "45mm S/M Red",
                    "45mm M/L Red",
                    "45mm Loop Starlight",
                    "45mm Loop WinterBlue",
                    "45mm Loop Cypress",
                    "45mm Loop Light Pink"
                  ],
                  "images": [
                    "id-11134207-8224p-mj1z6tx9ciys06",
                    "id-11134207-8224z-mj1z6tx9b4ec6b",
                    "id-11134207-82251-mj1z6tx99ptw5f",
                    "id-11134207-8224x-mj1z6tx98b9g85",
                    "id-11134207-8224u-mj1z6tx96wp09b",
                    "id-11134207-8224s-mj1z6tx95i4ke7",
                    "id-11134207-82250-mj1z6tx943k4f5",
                    "id-11134207-8224y-mj1z6tx9qkn779",
                    "id-11134207-8224v-mj1z6tx9dxj897",
                    "id-11134207-8224w-mj1z46gkxgxx6a",
                    "id-11134207-8224x-mj1z46gkw2dha6",
                    "id-11134207-8224y-mj1z46gkunt179",
                    "id-11134207-8224z-mj1z46gkt98l51",
                    "id-11134207-82252-mj1z46gkruo5e1",
                    "id-11134207-8224v-mj1z46gkqg3pae",
                    "id-11134207-8224u-mj1z46gkp1j949",
                    "id-11134207-8224w-mj1z46gknmytcb",
                    "id-11134207-82252-mj1z46gkm8ed6c",
                    "id-11134207-8224o-mj1z46gkkttx53",
                    "id-11134207-8224v-mj1z46gc6tqa92",
                    "id-11134207-8224x-mj1za12modfn31",
                    "id-11134207-8224s-mj1z6tx9gqo4b2",
                    "id-11134207-8224o-mj1z6tx9fc3oa3",
                    "id-11134207-8224t-mj1yd6mvru2o8c",
                    "id-11134207-8224v-mj1yd6mvglj4dd",
                    "id-11134207-8224x-mj1yd6mvp0xsf0",
                    "id-11134207-8224r-mj1yd6mvkt8gc9",
                    "id-11134207-8224p-mj1yd6mvt8n4c7"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp73RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 823581051781120,
                "price": 21900000000,
                "strikethrough_price": 84900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-74%",
                "model_id": 435387775782,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 84900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp73RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "jap.id",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51954079713,
            "shopid": 130071787,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mj1yd6mvkt8ia8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2068629,2023641,1400095067,1400285005,298938357,1400066568,844931086908638,844931064601283,298463379,1059152,700005489,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,825465608494624,1718093079,1119699,1718596,700765096,298488495,2103625,2213765,2098629,298468389,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":191,\"model_id\":435387775782,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mj1yd6mvkt8ia8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2068629,2023641,1400095067,1400285005,298938357,1400066568,844931086908638,844931064601283,298463379,1059152,700005489,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,825465608494624,1718093079,1119699,1718596,700765096,298488495,2103625,2213765,2098629,298468389,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":191,\"model_id\":435387775782,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51954079713",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47654090172,
              "shopid": 35612410,
              "name": "Samsung Galaxy Fit3 Gray / New / Segel",
              "label_ids": [
                2018619,
                844931064601283,
                844931086908638,
                1049112,
                1049127,
                822059908662278,
                825465608492064,
                825465608499232,
                1718093079,
                1119699,
                1718596,
                299033477,
                298488495,
                2213765,
                298933384
              ],
              "image": "id-11134207-8224x-mj0zyxbb0nwhad",
              "images": [
                "id-11134207-8224x-mj0zyxbb0nwhad",
                "id-11134207-8224v-mj0zz9trxw5ja9",
                "id-11134207-8224z-mj0zz9tpbs3o00",
                "id-11134207-8224t-mj0zz9uc1amf89",
                "id-11134207-8224u-mj0zz9v7d8n4de"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767424687,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Samsung",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 62000000000,
              "price_min": 62000000000,
              "price_max": 62000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 62000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 335385731631,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 62000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "alaisyah11",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47654090172,
            "shopid": 35612410,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mj0zyxbb0nwhad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1049112,1049127,822059908662278,825465608492064,825465608499232,1718093079,1119699,1718596,299033477,298488495,2213765,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":791,\"model_id\":335385731631,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mj0zyxbb0nwhad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1049112,1049127,822059908662278,825465608492064,825465608499232,1718093079,1119699,1718596,299033477,298488495,2213765,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":791,\"model_id\":335385731631,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47654090172",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41977710940,
              "shopid": 1460524924,
              "name": "Oppo Watch X Gen 1 superlikenew Mei 2026 resmi second seken bekas",
              "label_ids": [
                844931086908638,
                844931064601283,
                1049116,
                1049117,
                1718093079,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                1119699,
                1718596,
                700765096,
                2103625,
                298488495,
                2213765,
                1400066568
              ],
              "image": "id-11134207-82252-mj06h1hewc8xf1",
              "images": [
                "id-11134207-82252-mj06h1hewc8xf1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767374882,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Oppo",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 202500000000,
              "price_min": 202500000000,
              "price_max": 202500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 202500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 365384381635,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 202500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GadgetTechno",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41977710940,
            "shopid": 1460524924,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj06h1hewc8xf1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049116,1049117,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,2048660,2048661,1119699,1718596,700765096,2103625,298488495,2213765,1400066568],\"matched_keywords\":[\"\"],\"merge_rank\":792,\"model_id\":365384381635,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj06h1hewc8xf1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049116,1049117,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,2048660,2048661,1119699,1718596,700765096,2103625,298488495,2213765,1400066568],\"matched_keywords\":[\"\"],\"merge_rank\":792,\"model_id\":365384381635,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41977710940",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57954033277,
              "shopid": 43857941,
              "name": "Huawei GT5",
              "label_ids": [
                1000167,
                844931086908638,
                844931064601283,
                298463379,
                1718093079,
                1119699,
                1718596,
                298488495,
                2213765,
                1400285055,
                2103625,
                700005490,
                700005495,
                822059908662278,
                825465608492064,
                825465608499232,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224u-mizmf9909q1165",
              "images": [
                "id-11134207-8224u-mizmf9909q1165",
                "id-11134207-8224q-mizmf990b4lh5f",
                "id-11134207-8224o-mizmf990cj5xf5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767341710,
              "sold": 6,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 220000000000,
              "price_min": 220000000000,
              "price_max": 220000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Biru jeams",
                    "Coklat"
                  ],
                  "images": [
                    "id-11134207-82252-mizmf990dxqd5e",
                    "id-11134207-8224z-mizmf990fcat88"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 220000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 302305549659,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 220000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 6,
                "local_monthly_sold_count_text": "6",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CantikMenarik",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57954033277,
            "shopid": 43857941,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mizmf9909q1165\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931086908638,844931064601283,298463379,1718093079,1119699,1718596,298488495,2213765,1400285055,2103625,700005490,700005495,822059908662278,825465608492064,825465608499232,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":202,\"model_id\":302305549659,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mizmf9909q1165\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931086908638,844931064601283,298463379,1718093079,1119699,1718596,298488495,2213765,1400285055,2103625,700005490,700005495,822059908662278,825465608492064,825465608499232,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":202,\"model_id\":302305549659,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57954033277",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43927698656,
              "shopid": 1592612908,
              "name": "Apple Watch iWatch Ultra 2 Titanium 49mm Fullset Original like new",
              "label_ids": [
                844931086908638,
                844931064601283,
                700005490,
                700005510,
                822059908662278,
                825465608499232,
                825465608493600,
                825465608494624,
                1718093079,
                1119699,
                1718596,
                298488495,
                2213765,
                298933384,
                2098621
              ],
              "image": "id-11134207-8224z-mizfx4fwxfcxf1",
              "images": [
                "id-11134207-8224z-mizfx4fwxfcxf1",
                "id-11134207-8224q-mizfx4f4snwl85",
                "id-11134207-8224x-mizfx4f2x8n5a8",
                "id-11134207-8224x-mizfx4f52hvm04",
                "id-11134207-8224w-mizfx4f53wg2ed",
                "id-11134207-8224z-mizfx4f55b0i20",
                "id-11134207-8224o-mizfx4f56pky01"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767330119,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 815000000000,
              "price_min": 815000000000,
              "price_max": 815000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 815000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 350382488131,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 815000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SecondMariel",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43927698656,
            "shopid": 1592612908,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mizfx4fwxfcxf1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,700005490,700005510,822059908662278,825465608499232,825465608493600,825465608494624,1718093079,1119699,1718596,298488495,2213765,298933384,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":204,\"model_id\":350382488131,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mizfx4fwxfcxf1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,700005490,700005510,822059908662278,825465608499232,825465608493600,825465608494624,1718093079,1119699,1718596,298488495,2213765,298933384,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":204,\"model_id\":350382488131,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43927698656",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40477691852,
              "shopid": 251163251,
              "name": "GPS Geodetik Hi-Target V700s Rover Only | GNSS SLAM RTK",
              "label_ids": [
                2018619,
                1718087960,
                1428713,
                844931064601283,
                298463379,
                700005495,
                700005490,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1718596,
                299033478,
                298488495,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82251-miy8parkd1c111",
              "images": [
                "id-11134207-82251-miy8parkd1c111",
                "id-11134207-82251-miyay8421p8j9f",
                "id-11134207-82252-miyay84dvbb46d",
                "id-11134207-8224s-miy8parkfugx55",
                "id-11134207-8224t-miy8parkbmrl63"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767261318,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Hi-Target",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 10250000000000,
              "price_min": 10250000000000,
              "price_max": 10250000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 10250000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 425380949578,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 10250000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GEMILANG SURVEY",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40477691852,
            "shopid": 251163251,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-miy8parkd1c111\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,298463379,700005495,700005490,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,1718596,299033478,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":524,\"model_id\":425380949578,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-miy8parkd1c111\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,298463379,700005495,700005490,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,1718596,299033478,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":524,\"model_id\":425380949578,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40477691852",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55004003386,
              "shopid": 251163251,
              "name": "GPS Geodetik Hi-Target V30+Plus Base Station RTK GNSS Receiver",
              "label_ids": [
                2018619,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                700005490,
                700005495,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                299033478,
                298488495,
                2213765,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224q-miy8badshv5z65",
              "images": [
                "id-11134207-8224q-miy8badshv5z65",
                "id-11134207-82251-miy8badsdngn3c",
                "id-11134207-8224r-miy8badsj9qf72",
                "id-11134207-8224y-miy8badskoav09",
                "id-11134207-8224o-miuyira4rxtyd5",
                "id-11134207-8224w-miy8badsgglj8c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767257292,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Hi-Target",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5500000000000,
              "price_min": 5500000000000,
              "price_max": 5500000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 5500000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 320380811755,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5500000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GEMILANG SURVEY",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55004003386,
            "shopid": 251163251,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-miy8badshv5z65\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,700005490,700005495,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,299033478,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":523,\"model_id\":320380811755,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-miy8badshv5z65\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,700005490,700005495,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,299033478,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":523,\"model_id\":320380811755,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55004003386",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53104008030,
              "shopid": 107164849,
              "name": "PRELOVED Jam tangan wanita jam tangan pintar huawei band 7",
              "label_ids": [
                844931064601283,
                1718093079,
                1049112,
                700000505,
                822059908662278,
                825465608499232,
                1119699,
                1718596,
                298488495,
                2213765,
                2098621
              ],
              "image": "id-11134207-8224y-miy7nfwdotfrc9",
              "images": [
                "id-11134207-8224y-miy7nfwdotfrc9",
                "id-11134207-8224p-miy7nfwg5b7n69",
                "id-11134207-8224y-miy7o8r3d347da",
                "id-11134207-8224s-miy7o8r67mkl90",
                "id-11134207-8224p-miy7o8r0jy8207"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767255853,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 29000000000,
              "price_min": 29000000000,
              "price_max": 29000000000,
              "price_min_before_discount": 30000000000,
              "price_max_before_discount": 30000000000,
              "hidden_price_display": null,
              "price_before_discount": 30000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-3%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Ciamis",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 826224620929024,
                "price": 29000000000,
                "strikethrough_price": 30000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-3%",
                "model_id": 370380746548,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 30000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Preloved_Mpush",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53104008030,
            "shopid": 107164849,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-miy7nfwdotfrc9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1049112,700000505,822059908662278,825465608499232,1119699,1718596,298488495,2213765,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":190,\"model_id\":370380746548,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-miy7nfwdotfrc9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1049112,700000505,822059908662278,825465608499232,1119699,1718596,298488495,2213765,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":190,\"model_id\":370380746548,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53104008030",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50504011876,
              "shopid": 1563877591,
              "name": "H4inoT3ko  ST 7+earbud smartwatch waterproof",
              "label_ids": [
                844931064601283,
                844931086908638,
                1718093079,
                1059152,
                700005489,
                822059908662278,
                825465608497696,
                825465608493600,
                825465608494624,
                825465608499232,
                1119699,
                1718596,
                299033478,
                298488495,
                2213765
              ],
              "image": "id-11134207-82251-miy3kc371ceaa1",
              "images": [
                "id-11134207-82251-miy3kc371ceaa1",
                "id-11134207-8224p-miy3kc372qyq99"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767249245,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 80000000000,
              "price_min": 80000000000,
              "price_max": 80000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 80000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 405380523473,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 80000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Modeniatrendy.shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50504011876,
            "shopid": 1563877591,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-miy3kc371ceaa1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,1059152,700005489,822059908662278,825465608497696,825465608493600,825465608494624,825465608499232,1119699,1718596,299033478,298488495,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":691,\"model_id\":405380523473,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-miy3kc371ceaa1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,1059152,700005489,822059908662278,825465608497696,825465608493600,825465608494624,825465608499232,1119699,1718596,299033478,298488495,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":691,\"model_id\":405380523473,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50504011876",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49454031425,
              "shopid": 13504045,
              "name": "APPLE WATCH GEN 2 ORI !! BISA NEGO",
              "label_ids": [
                2018619,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1718093079,
                700005506,
                1049135,
                822059908662278,
                825465608499232,
                1119699,
                1718596,
                298488495,
                2213765,
                2098621,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224y-mixyetrjybydcf",
              "images": [
                "id-11134207-8224y-mixyetrjybydcf",
                "id-11134207-8224r-mixyetry9udc30",
                "id-11134207-82252-mixyetrxyltu6c",
                "id-11134207-8224t-mixyets0nj0kc6",
                "id-11134207-8224u-mixyetrnte6a39",
                "id-11134207-8224w-mixyetrnw7b6d3",
                "id-11134207-82252-mixyetrxx79e6a",
                "id-11134207-8224v-mixyetrnusqqfa",
                "id-11134207-8224x-mixyetrkqfb7b8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767240279,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple Watch",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 280000000000,
              "price_min": 280000000000,
              "price_max": 280000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6venf-mixyfh7o7x8h96.16000081767240136.mp4",
                  "thumb_url": "id-11110107-6venf-mixyfh7o7x8h96_cover",
                  "duration": 16,
                  "version": 2,
                  "vid": "id-11110107-6venf-mixyfh7o7x8h96",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6venf-mixyfh7o7x8h96.16000081767240136.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venf-mixyfh7o7x8h96.16000081767240136.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venf-mixyfh7o7x8h96.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Makassar",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 280000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 355380305062,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 280000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "preloved.kotamks",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49454031425,
            "shopid": 13504045,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mixyetrjybydcf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,700005506,1049135,822059908662278,825465608499232,1119699,1718596,298488495,2213765,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":220,\"model_id\":355380305062,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mixyetrjybydcf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,700005506,1049135,822059908662278,825465608499232,1119699,1718596,298488495,2213765,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":220,\"model_id\":355380305062,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49454031425",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44754025665,
              "shopid": 242759263,
              "name": "Xiaomi Smart Band 9 Active",
              "label_ids": [
                844931064601283,
                700005490,
                1049120,
                822059908662278,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                1718596,
                299033477,
                298488495,
                2213765
              ],
              "image": "id-11134207-8224w-mixm2317sgzqab",
              "images": [
                "id-11134207-8224w-mixm2317sgzqab"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767219910,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Xiaomi",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 40000000000,
              "price_min": 40000000000,
              "price_max": 40000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 40000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 340379865057,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 40000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Aksstore_tgr",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44754025665,
            "shopid": 242759263,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mixm2317sgzqab\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,1049120,822059908662278,825465608494624,825465608499232,1718093079,1119699,1718596,299033477,298488495,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":852,\"model_id\":340379865057,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mixm2317sgzqab\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,1049120,822059908662278,825465608494624,825465608499232,1718093079,1119699,1718596,299033477,298488495,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":852,\"model_id\":340379865057,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44754025665",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53753998375,
              "shopid": 884876226,
              "name": "(FREE ANTIGORES) Huawei Watch Fit 3 Good Condition Second Like New",
              "label_ids": [
                1400066568,
                2018619,
                2023641,
                844931064601283,
                298463379,
                1049112,
                700000535,
                1718093079,
                822059908662278,
                825465608499232,
                1718596,
                1119699,
                298488495,
                2213765,
                2098621,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224v-mix8udl8v8cj80",
              "images": [
                "id-11134207-8224v-mix8udl8v8cj80",
                "id-11134207-8224p-mix8udl8tts3cc",
                "id-11134207-8224w-mix8udl8y1hf6e",
                "id-11134207-8224z-mix8udl8wmwz59",
                "id-11134207-82251-mix8udl90umb09",
                "id-11134207-8224u-mix8udl8zg1v97",
                "id-11134207-8224o-mix8udl93nr7dc",
                "id-11134207-8224t-mix8udl9296rb9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767197562,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 124500000000,
              "price_min": 124500000000,
              "price_max": 124500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Kuningan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 124500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 345379484185,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 124500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "zee_smartstore",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53753998375,
            "shopid": 884876226,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mix8udl8v8cj80\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,2023641,844931064601283,298463379,1049112,700000535,1718093079,822059908662278,825465608499232,1718596,1119699,298488495,2213765,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":496,\"model_id\":345379484185,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mix8udl8v8cj80\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,2023641,844931064601283,298463379,1049112,700000535,1718093079,822059908662278,825465608499232,1718596,1119699,298488495,2213765,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":496,\"model_id\":345379484185,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53753998375",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28043908924,
              "shopid": 1102849498,
              "name": "Smartwatch JETE VOLT 2 AMOLED 1.6 Inch Screen Display Jam Tangan AI Running 5 ATM Waterproof Watch 4GB Smart Watch With GPS Sport Mode Heart Rate Jam Tangan Pria Wanita",
              "label_ids": [
                2018618,
                2018619,
                1012729,
                2153644,
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1049116,
                1049117,
                822059908662278,
                834403089593352,
                825465608497696,
                825465608492064,
                825465608494624,
                825465608499232,
                1718093079,
                1718596,
                1119699,
                298488495,
                2213652,
                2143647,
                2213765,
                2098621,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224z-mjf4zpltfg1x4b",
              "images": [
                "id-11134207-8224z-mjf4zpltfg1x4b",
                "sg-11134201-81zu7-mivddxos2e4nd8",
                "sg-11134201-81zuu-mivddxvs5xc2b7",
                "sg-11134201-81zuu-mivddy45gqo26a",
                "sg-11134201-81zvo-mivddyb7qxojb8",
                "sg-11134201-81zu5-mivddyk5rmkj75",
                "sg-11134201-81zwm-mivddyrvqgavd3",
                "sg-11134201-81ztk-mivddz12q7t340",
                "sg-11134201-81zvf-mivddz941ssg94"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767083687,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "JETE",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 155890000000,
              "price_min": 155890000000,
              "price_max": 155890000000,
              "price_min_before_discount": 279900000000,
              "price_max_before_discount": 279900000000,
              "hidden_price_display": null,
              "price_before_discount": 279900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-44%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 824381568253952,
                "price": 153890000000,
                "strikethrough_price": 279900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1327348507361280,
                "discount_text": "-44%",
                "model_id": 320373764916,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1327348507361280,
                  "voucher_code": "DORADIS4",
                  "voucher_discount": 2000000000,
                  "time_info": {
                    "start_time": 1767691860,
                    "end_time": 1774974660,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 30000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 279900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Doran Authorized Store Yogyakarta",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 28043908924,
            "shopid": 1102849498,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjf4zpltfg1x4b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2018619,1012729,2153644,1718087960,1428713,844931064601283,298463379,1049116,1049117,822059908662278,834403089593352,825465608497696,825465608492064,825465608494624,825465608499232,1718093079,1718596,1119699,298488495,2213652,2143647,2213765,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":890,\"model_id\":320373764916,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjf4zpltfg1x4b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2018619,1012729,2153644,1718087960,1428713,844931064601283,298463379,1049116,1049117,822059908662278,834403089593352,825465608497696,825465608492064,825465608494624,825465608499232,1718093079,1718596,1119699,298488495,2213652,2143647,2213765,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":890,\"model_id\":320373764916,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28043908924",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49053934464,
              "shopid": 9073097,
              "name": "fitbit versa 1 strap pink",
              "label_ids": [
                2018619,
                844931064601283,
                844931086908638,
                298463379,
                1049126,
                700000529,
                822059908662278,
                825465608499232,
                1718093079,
                1119699,
                1718596,
                298488495,
                2213765,
                299033477,
                2023641,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224x-miv10q0sw0sm47",
              "images": [
                "id-11134207-8224x-miv10q0sw0sm47",
                "id-11134207-8224x-miv10q0sxfd214"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767066170,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 40000000000,
              "price_min": 40000000000,
              "price_max": 40000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Buleleng",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 40000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 228228284973,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 40000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "abdhe17",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49053934464,
            "shopid": 9073097,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-miv10q0sw0sm47\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,1049126,700000529,822059908662278,825465608499232,1718093079,1119699,1718596,298488495,2213765,299033477,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":571,\"model_id\":228228284973,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-miv10q0sw0sm47\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,1049126,700000529,822059908662278,825465608499232,1718093079,1119699,1718596,298488495,2213765,299033477,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":571,\"model_id\":228228284973,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49053934464",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53503910434,
              "shopid": 69163627,
              "name": "smartwatch suunto 9  gps g1 second mulus",
              "label_ids": [
                844931086908638,
                298463379,
                2068629,
                298938357,
                2018619,
                700025282,
                1718093079,
                1059152,
                1049124,
                822059908662278,
                825465608499232,
                825465608497696,
                1718596,
                1119699,
                298488495,
                299033477,
                2213765,
                2098629,
                1718088045,
                2098628,
                298938368,
                298468389
              ],
              "image": "id-11134207-8224x-mittv5dzki69f1",
              "images": [
                "id-11134207-8224x-mittv5dzki69f1",
                "id-11134207-8224t-mittv5d45r0o14",
                "id-11134207-8224u-mittv5d475l467",
                "id-11134207-82250-mittv5d48k5k24",
                "id-11134207-8224v-mittv5dzj3ltb2",
                "id-11134207-82250-mjb6wuh28e837d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767024711,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 7,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 65536,
              "cb_option": 0,
              "item_status": "normal",
              "price": 217500000000,
              "price_min": 217500000000,
              "price_max": 217500000000,
              "price_min_before_discount": 219000000000,
              "price_max_before_discount": 219000000000,
              "hidden_price_display": null,
              "price_before_discount": 219000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-1%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6venc-miue3z7mghs7e2.16000091767024367.mp4",
                  "thumb_url": "id-11110107-6venc-miue3z7mghs7e2_cover",
                  "duration": 27,
                  "version": 2,
                  "vid": "id-11110107-6venc-miue3z7mghs7e2",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6venc-miue3z7mghs7e2.16000091767024367.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venc-miue3z7mghs7e2.16000091767024367.mp4",
                      "width": 270,
                      "height": 482
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venc-miue3z7mghs7e2.default.mp4",
                    "width": 358,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp725RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 803261561503744,
                "price": 217500000000,
                "strikethrough_price": 219000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-1%",
                "model_id": 244132335550,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 219000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp725RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "aivana",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53503910434,
            "shopid": 69163627,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mittv5dzki69f1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,298463379,2068629,298938357,2018619,700025282,1718093079,1059152,1049124,822059908662278,825465608499232,825465608497696,1718596,1119699,298488495,299033477,2213765,2098629,1718088045,2098628,298938368,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":836,\"model_id\":244132335550,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mittv5dzki69f1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,298463379,2068629,298938357,2018619,700025282,1718093079,1059152,1049124,822059908662278,825465608499232,825465608497696,1718596,1119699,298488495,299033477,2213765,2098629,1718088045,2098628,298938368,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":836,\"model_id\":244132335550,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53503910434",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49603891603,
              "shopid": 985959400,
              "name": "Xiaomi Redmi Watch 5 Lite | 1.96โ€ AMOLED DISPLAY | NEW SEALED ORI",
              "label_ids": [
                2018619,
                844931064601283,
                298463379,
                1049112,
                1049147,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                298488495,
                2213765,
                2098621,
                1400285055,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224p-mitjoq0ys2yp07",
              "images": [
                "id-11134207-8224p-mitjoq0ys2yp07"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766973360,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "Xiaomi",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 69000000000,
              "price_min": 69000000000,
              "price_max": 69000000000,
              "price_min_before_discount": 100000000000,
              "price_max_before_discount": 100000000000,
              "hidden_price_display": null,
              "price_before_discount": 100000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-31%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Light Gold"
                  ],
                  "images": [
                    "id-11134207-8224q-mitjrc39w8hu79",
                    "id-11134207-8224p-mitjrfrku5mo37"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 822166707306496,
                "price": 69000000000,
                "strikethrough_price": 100000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-31%",
                "model_id": 345367495334,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 100000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SKINSCARED.ID",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49603891603,
            "shopid": 985959400,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mitjoq0ys2yp07\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1049112,1049147,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,2213765,2098621,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":557,\"model_id\":345367495334,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mitjoq0ys2yp07\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1049112,1049147,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,2213765,2098621,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":557,\"model_id\":345367495334,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49603891603",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43177592422,
              "shopid": 1682094106,
              "name": "Tali Strap Magnetic Silicone Premium untuk lWatch 4 5 6 7 8 SE Ultra 45m Ukuran 38-49MM Pengait Strap Magnet UrvoiKuat - Maroon, 49MM Ultra",
              "label_ids": [
                844931064601283,
                700005490,
                700005495,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                2098621,
                1718093079,
                298488495,
                700810080,
                2213765
              ],
              "image": "sg-11134201-81zuc-mir177plansz2a",
              "images": [
                "sg-11134201-81zuc-mir177plansz2a",
                "sg-11134201-81zub-mir17837zrbceb",
                "sg-11134201-81zwp-mir178blyepseb",
                "sg-11134201-81zvu-mir178jh6woy77",
                "sg-11134201-81zte-mir178vg5f5y9e",
                "sg-11134201-81ztf-mir1791p1wjl61",
                "sg-11134201-81zwi-mir179f2f75w4c",
                "sg-11134201-81zwv-mir179s5nbpg1d",
                "sg-11134201-81zwt-mir179y11slj71"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766821056,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 31439000000,
              "price_min": 31439000000,
              "price_max": 31439000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Maroon",
                    "Biru Navy",
                    "Abu-Abu Muda",
                    "Abu-Abu Tua",
                    "Orange",
                    "Krem",
                    "Merah",
                    "Hijau",
                    "Hitam"
                  ],
                  "images": [
                    "sg-11134201-81zuc-mir177plansz2a",
                    "sg-11134201-81ztf-mir1791p1wjl61",
                    "sg-11134201-81zwi-mir179f2f75w4c",
                    "sg-11134201-81zwv-mir179s5nbpg1d",
                    "sg-11134201-81zwt-mir179y11slj71",
                    "sg-11134201-81zur-mir17a3ox7gge3",
                    "sg-11134201-81ztz-mir17a9z89a910",
                    "sg-11134201-81zu7-mir17akvy5ms66",
                    "sg-11134201-81zv1-mir17ar5ecjode"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ukuran",
                  "options": [
                    "42/44/45MM",
                    "38/40/41MM",
                    "49MM Ultra"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 31439000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 335362433480,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 31439000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "sxvtneqdji",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43177592422,
            "shopid": 1682094106,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zuc-mir177plansz2a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,700005495,822059908662278,825465608499232,825465608497696,1119699,1718596,2098621,1718093079,298488495,700810080,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":722,\"model_id\":335362433480,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zuc-mir177plansz2a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,700005495,822059908662278,825465608499232,825465608497696,1119699,1718596,2098621,1718093079,298488495,700810080,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":722,\"model_id\":335362433480,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43177592422",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51353782885,
              "shopid": 48378955,
              "name": "Oraimo x Tahilalats Smartwatch 5 Max OSW - 804. Large Screen  2,01\" Jam tangan Bluetooth With Al Dial 100+ Mode olahraga Sport Waterproof IP68. Warna Pink",
              "label_ids": [
                2018619,
                844931064601283,
                844931086908638,
                1059150,
                1049111,
                1718093079,
                822059908662278,
                825465608499232,
                825465608493600,
                1119699,
                1718596,
                298488495,
                299033477,
                2213765
              ],
              "image": "id-11134207-8224t-mipirqmxoyywb8",
              "images": [
                "id-11134207-8224t-mipirqmxoyywb8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766761457,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "ORAIMO",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 22000000000,
              "price_min": 22000000000,
              "price_max": 22000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Deli Serdang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 22000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 445360259979,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 22000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MiarlyCitra",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51353782885,
            "shopid": 48378955,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mipirqmxoyywb8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1059150,1049111,1718093079,822059908662278,825465608499232,825465608493600,1119699,1718596,298488495,299033477,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":542,\"model_id\":445360259979,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mipirqmxoyywb8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1059150,1049111,1718093079,822059908662278,825465608499232,825465608493600,1119699,1718596,298488495,299033477,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":542,\"model_id\":445360259979,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51353782885",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46053802795,
              "shopid": 48378955,
              "name": "Oraimo  x Tahilalats Smartwatch 5 Max . OSW -804. Large screen 2,01\". Jam tangan Bluetooth with Al Dial 100+ Mode olahraga Sport Waterproof IP 68. Warna Black",
              "label_ids": [
                2018619,
                844931064601283,
                844931086908638,
                1049111,
                1059150,
                822059908662278,
                825465608499232,
                825465608493600,
                1718093079,
                1119699,
                1718596,
                298488495,
                299033477,
                2213765
              ],
              "image": "id-11134207-82252-mipirqmxnkeg5b",
              "images": [
                "id-11134207-82252-mipirqmxnkeg5b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766761172,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "ORAIMO",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 22000000000,
              "price_min": 22000000000,
              "price_max": 22000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Deli Serdang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 22000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 385360256365,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 22000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MiarlyCitra",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46053802795,
            "shopid": 48378955,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mipirqmxnkeg5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1049111,1059150,822059908662278,825465608499232,825465608493600,1718093079,1119699,1718596,298488495,299033477,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":872,\"model_id\":385360256365,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mipirqmxnkeg5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1049111,1059150,822059908662278,825465608499232,825465608493600,1718093079,1119699,1718596,298488495,299033477,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":872,\"model_id\":385360256365,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46053802795",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43227578516,
              "shopid": 142474980,
              "name": "oraimo x Tahilalats Smartwatch Watch 6 Max OSW-8001N 1.83\"TFT Full Touch Screen Jam Tangan Bluetooth With AI",
              "label_ids": [
                700700063,
                2018619,
                844931064601283,
                298463379,
                700000543,
                1049116,
                1718093079,
                822059908662278,
                825465608492064,
                825465608499232,
                1718596,
                1119699,
                298488495,
                2213765,
                2098621,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224z-mipspau4y9dt95",
              "images": [
                "id-11134207-8224z-mipspau4y9dt95",
                "id-11134207-8224t-mipspau4zny9d4",
                "id-11134207-8224o-mipspau512ipa3",
                "id-11134207-8224x-mipt01n6sp3af8",
                "id-11134207-82251-mipspau52h3551",
                "id-11134207-82252-mipt01n573sy69",
                "id-11134207-8224u-mipspau4wutddd",
                "id-11134207-8224q-mipspau53vnl08"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766746812,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "ORAIMO",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 23880000000,
              "price_min": 23880000000,
              "price_max": 23880000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Probolinggo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 23880000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 445359580932,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 23880000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Asian Cellular",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43227578516,
            "shopid": 142474980,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mipspau4y9dt95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,844931064601283,298463379,700000543,1049116,1718093079,822059908662278,825465608492064,825465608499232,1718596,1119699,298488495,2213765,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":860,\"model_id\":445359580932,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mipspau4y9dt95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,844931064601283,298463379,700000543,1049116,1718093079,822059908662278,825465608492064,825465608499232,1718596,1119699,298488495,2213765,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":860,\"model_id\":445359580932,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43227578516",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40627578021,
              "shopid": 345303165,
              "name": "imoo smartwatch smartphone kids Z1",
              "label_ids": [
                2018619,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                700005490,
                700005495,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                298488495,
                299033477,
                2213765,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224z-mipp00ul50qv17",
              "images": [
                "id-11134207-8224z-mipp00ul50qv17",
                "id-11134207-8224v-mipp00ul6fbb7a",
                "id-11134207-8224s-mipp00ul0t1j92",
                "id-11134207-8224s-mipp00ul27lz69"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766741136,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "Imoo",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 73000000000,
              "price_min": 73000000000,
              "price_max": 73000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6vdvg-mippfma3lxj4ba.16000091766740735.mp4",
                  "thumb_url": "id-11110107-6vdvg-mippfma3lxj4ba_cover",
                  "duration": 23,
                  "version": 2,
                  "vid": "id-11110107-6vdvg-mippfma3lxj4ba",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6vdvg-mippfma3lxj4ba.16000091766740735.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvg-mippfma3lxj4ba.16000091766740735.mp4",
                      "width": 270,
                      "height": 480
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvg-mippfma3lxj4ba.default.mp4",
                    "width": 360,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 73000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 415359223770,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 73000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Malikashopjaktim",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40627578021,
            "shopid": 345303165,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mipp00ul50qv17\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,1718093079,700005490,700005495,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,299033477,2213765,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":70,\"model_id\":415359223770,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mipp00ul50qv17\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,1718093079,700005490,700005495,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,299033477,2213765,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":70,\"model_id\":415359223770,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40627578021",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56203665124,
              "shopid": 372006663,
              "name": "iWatch Series 4 40mm BH100% Stainless Steel Silver Fullset Mulus",
              "label_ids": [
                1400066568,
                2018619,
                844931064601283,
                298463379,
                1049141,
                1049156,
                822059908662278,
                825465608494624,
                825465608499232,
                2048660,
                2048661,
                1718093079,
                1119699,
                1718596,
                700765096,
                2098621,
                298488495,
                298933384,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224p-mio44bhfqps280",
              "images": [
                "id-11134207-8224p-mio44bhfqps280",
                "id-11134207-8224p-mio44bhoslj86c",
                "id-11134207-82252-mio44bhelzb83e",
                "id-11134207-8224z-mio44bho7j0he7",
                "id-11134207-8224w-mio44bhoveo445"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766644532,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 220000000000,
              "price_min": 220000000000,
              "price_max": 220000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Sleman",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 220000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 440349087162,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 220000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Timeseries",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56203665124,
            "shopid": 372006663,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mio44bhfqps280\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,298463379,1049141,1049156,822059908662278,825465608494624,825465608499232,2048660,2048661,1718093079,1119699,1718596,700765096,2098621,298488495,298933384,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":460,\"model_id\":440349087162,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mio44bhfqps280\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,298463379,1049141,1049156,822059908662278,825465608494624,825465608499232,2048660,2048661,1718093079,1119699,1718596,700765096,2098621,298488495,298933384,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":460,\"model_id\":440349087162,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56203665124",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57853567777,
              "shopid": 301061531,
              "name": "Smartwatch Hainoteko ST-7  Watch Buds Premium Waterproof AMOLED Jam Tangan pintar Pantau 24H Kesehatan dan Olahraga",
              "label_ids": [
                834230400556567,
                2018619,
                2023641,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                700005489,
                1718093079,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1119699,
                1718596,
                298488495,
                2098621,
                2213765,
                298933384,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224r-mimqqa7qwemb63",
              "images": [
                "id-11134207-8224r-mimqqa7qwemb63",
                "id-11134201-8224s-mimqpnhth43r34",
                "id-11134207-8224p-mimqqa7x2cchff",
                "id-11134207-8224r-mimqqa7x3qwx96",
                "id-11134207-8224u-mimqqa7x55hd51",
                "id-11134207-8224s-mimqqa7x6k1t48",
                "id-11134207-82252-mimqqa7x7ym9d0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766567007,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "HAINO TEKO",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 80000000000,
              "price_min": 80000000000,
              "price_max": 80000000000,
              "price_min_before_discount": 95000000000,
              "price_max_before_discount": 95000000000,
              "hidden_price_display": null,
              "price_before_discount": 95000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-16%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv9-mimr7hjmtr0o00.16000031766562127.mp4",
                  "thumb_url": "id-11110105-6vdv9-mimr7hjmtr0o00_cover",
                  "duration": 36,
                  "version": 2,
                  "vid": "id-11110105-6vdv9-mimr7hjmtr0o00",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv9-mimr7hjmtr0o00.16000031766562127.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv9-mimr7hjmtr0o00.16000031766562127.mp4",
                      "width": 480,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv9-mimr7hjmtr0o00.default.mp4",
                    "width": 480,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "WARNA",
                  "options": [
                    "BLACK",
                    "SILVER"
                  ],
                  "images": [
                    "id-11134207-8224x-mimqqa7x9d6p0e",
                    "id-11134207-8224y-mimqqa7xc6bl83"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 811587221389312,
                "price": 80000000000,
                "strikethrough_price": 95000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-16%",
                "model_id": 188792336912,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 95000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HainoTeko.Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57853567777,
            "shopid": 301061531,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mimqqa7qwemb63\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,2018619,2023641,844931086908638,844931064601283,298463379,1059152,700005489,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,1119699,1718596,298488495,2098621,2213765,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":587,\"model_id\":188792336912,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mimqqa7qwemb63\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,2018619,2023641,844931086908638,844931064601283,298463379,1059152,700005489,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,1119699,1718596,298488495,2098621,2213765,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":587,\"model_id\":188792336912,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57853567777",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47153578324,
              "shopid": 468975110,
              "name": "Smartwatch Hainoteko ST-7  Watch Buds Premium Waterproof AMOLED Jam Tangan Pantau 24H Kesehatan dan Olahraga",
              "label_ids": [
                834230400556567,
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                700005489,
                822059908662278,
                840990690654214,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1718596,
                298488495,
                2098621,
                2213765,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224u-mimm7067cnb8a9",
              "images": [
                "id-11134207-8224u-mimm7067cnb8a9",
                "id-11134207-8224u-mimm7067e1voaf",
                "id-11134207-8224y-mimm7067fgg436",
                "id-11134207-8224u-mimm7067gv0ke9",
                "id-11134207-8224z-mimm7067i9l06c",
                "id-11134207-8224y-mimm7067jo5g0b",
                "id-11134207-8224q-mimm7067l2pw04"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766557302,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "HAINO TEKO",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 85000000000,
              "price_min": 85000000000,
              "price_max": 85000000000,
              "price_min_before_discount": 95000000000,
              "price_max_before_discount": 95000000000,
              "hidden_price_display": null,
              "price_before_discount": 95000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-11%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvi-mimn1qonvax4ce.16000031766555147.mp4",
                  "thumb_url": "id-11110105-6vdvi-mimn1qonvax4ce_cover",
                  "duration": 36,
                  "version": 2,
                  "vid": "id-11110105-6vdvi-mimn1qonvax4ce",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvi-mimn1qonvax4ce.16000031766555147.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvi-mimn1qonvax4ce.16000031766555147.mp4",
                      "width": 480,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvi-mimn1qonvax4ce.default.mp4",
                    "width": 480,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "Silver",
                    "Hitam"
                  ],
                  "images": [
                    "id-11134207-8224v-mimm7067mhacd9",
                    "id-11134207-82250-mimm7067nvus83"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 811591944159232,
                "price": 85000000000,
                "strikethrough_price": 95000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-11%",
                "model_id": 390340997892,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 95000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CANDY STORE76 by ITC Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47153578324,
            "shopid": 468975110,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mimm7067cnb8a9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,700005489,822059908662278,840990690654214,840955085144628,825465608494624,825465608499232,825465608497696,1718093079,1119699,1718596,298488495,2098621,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":837,\"model_id\":390340997892,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mimm7067cnb8a9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,700005489,822059908662278,840990690654214,840955085144628,825465608494624,825465608499232,825465608497696,1718093079,1119699,1718596,298488495,2098621,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":837,\"model_id\":390340997892,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47153578324",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45253549049,
              "shopid": 1496740329,
              "name": "TIRG Jam Tangan GT5 PRO 2026 Original Smartwatch Hitam,Pelacakan Kesehatan Olahraga IP68 Waterproof",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                822059908662278,
                825465608493600,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1718596,
                1059152,
                1049122,
                298488495,
                299033477,
                2213765,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224v-mimbhl1m8f0h9c",
              "images": [
                "id-11134207-8224v-mimbhl1m8f0h9c",
                "id-11134207-8224r-mimbhl1iby8691",
                "id-11134207-8224s-mimbhl1iajnq0c",
                "id-11134207-8224s-mimbhl1idcsm08",
                "id-11134207-8224w-mimbhl1ierd206",
                "id-11134207-8224v-mimbhl1i953ae0",
                "id-11134207-8224z-mijmlrhztrm077",
                "id-11134207-82251-mijmlri0270o27",
                "id-11134207-8224r-mimbhl1ikdmu80"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766538685,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "TIRG KAIROZ",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 32900000000,
              "price_min": 32900000000,
              "price_max": 32900000000,
              "price_min_before_discount": 89000000000,
              "price_max_before_discount": 89000000000,
              "hidden_price_display": null,
              "price_before_discount": 89000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-63%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvf-mimcnnzz4sg0a7.16000081766537649.mp4",
                  "thumb_url": "id-11110105-6vdvf-mimcnnzz4sg0a7_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6vdvf-mimcnnzz4sg0a7",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvf-mimcnnzz4sg0a7.16000081766537649.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvf-mimcnnzz4sg0a7.16000081766537649.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvf-mimcnnzz4sg0a7.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Putih Silikon",
                    "Hitam Silikon",
                    "Putih Rantai",
                    "Hitam Rantai"
                  ],
                  "images": [
                    "id-11134207-8224s-mimd5kdhydxc68",
                    "id-11134207-8224r-mimd5kdhwzcw40",
                    "id-11134207-8224z-mimd5kdhvksge6",
                    "id-11134207-8224s-mimd5kdcapkz9e"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227149068124161,
                "price": 32900000000,
                "strikethrough_price": 89000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-63%",
                "model_id": 380339336236,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 89000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "TIRG Kairoz Watch Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45253549049,
            "shopid": 1496740329,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mimbhl1m8f0h9c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,822059908662278,825465608493600,825465608499232,825465608497696,1718093079,1119699,1718596,1059152,1049122,298488495,299033477,2213765,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":847,\"model_id\":380339336236,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mimbhl1m8f0h9c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,822059908662278,825465608493600,825465608499232,825465608497696,1718093079,1119699,1718596,1059152,1049122,298488495,299033477,2213765,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":847,\"model_id\":380339336236,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45253549049",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54253429187,
              "shopid": 1679174629,
              "name": "STRAP WATCH TALI JAM LEATHER KULIT RUBBER SAMSUNG GALAXY ACTIVE 1 2 - Black Red",
              "label_ids": [
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1049112,
                700005517,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                298488495,
                700700063,
                299033478,
                1428713,
                1718087960,
                2213765,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-81zwu-miju9qxt2hvm16",
              "images": [
                "sg-11134201-81zwu-miju9qxt2hvm16",
                "sg-11134201-81zvf-miju9reqm41u0b",
                "sg-11134201-81zvl-miju9s52dfycba",
                "sg-11134201-81zue-miju9sbmv401ef",
                "sg-11134201-81zvy-micjfj8vlqfa35",
                "sg-11134201-81zto-micjfk115a8707",
                "sg-11134201-81zuv-miju9tkbqz9e48",
                "sg-11134201-81zws-miju9u601hqe6d",
                "sg-11134201-81zve-miju9uo27d3ae1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766385663,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 21648000000,
              "price_min": 21648000000,
              "price_max": 21648000000,
              "price_min_before_discount": 22550000000,
              "price_max_before_discount": 22550000000,
              "hidden_price_display": null,
              "price_before_discount": 22550000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-4%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Full Black",
                    "Dark Brown",
                    "Brown",
                    "Black Red"
                  ],
                  "images": [
                    "sg-11134201-81zuv-miju9tkbqz9e48",
                    "sg-11134201-81zws-miju9u601hqe6d",
                    "sg-11134201-81zve-miju9uo27d3ae1",
                    "sg-11134201-81zwu-miju9qxt2hvm16"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 410241183527092,
                "bundle_deal_label": "Pilih 3, diskon 3%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bandung Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 820482828468224,
                "price": 21248000000,
                "strikethrough_price": 22550000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1314269383901184,
                "discount_text": "-4%",
                "model_id": 234629555496,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1314269383901184,
                  "voucher_code": "7V5ETYUIO",
                  "voucher_discount": 400000000,
                  "time_info": {
                    "start_time": 1766132880,
                    "end_time": 1771493280,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 100000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 22550000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Mentari Starr",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54253429187,
            "shopid": 1679174629,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwu-miju9qxt2hvm16\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1718093079,1049112,700005517,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,700700063,299033478,1428713,1718087960,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":686,\"model_id\":234629555496,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwu-miju9qxt2hvm16\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1718093079,1049112,700005517,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,700700063,299033478,1428713,1718087960,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":686,\"model_id\":234629555496,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54253429187",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53153437808,
              "shopid": 1679174629,
              "name": "paket lengkap tulltra ( bisa cod ) Smart +tws+2 strap+jam digital - NAVY, PAKET 7 BARANG",
              "label_ids": [
                844931064601283,
                844931086908638,
                298463379,
                1049112,
                700005517,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                298488495,
                700700063,
                299033478,
                1428713,
                1718087960,
                2213765,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-81ztq-miju66n3er5u95",
              "images": [
                "sg-11134201-81ztq-miju66n3er5u95"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766385492,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 29520000000,
              "price_min": 29520000000,
              "price_max": 29520000000,
              "price_min_before_discount": 30750000000,
              "price_max_before_discount": 30750000000,
              "hidden_price_display": null,
              "price_before_discount": 30750000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-4%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "NAVY",
                    "HITAM",
                    "PURPLE",
                    "PUTIH",
                    "CREAM",
                    "ORANGE"
                  ],
                  "images": [
                    "sg-11134201-81ztq-miju66n3er5u95",
                    "sg-11134201-81ztq-miju66n3er5u95",
                    "sg-11134201-81ztq-miju66n3er5u95",
                    "sg-11134201-81ztq-miju66n3er5u95",
                    "sg-11134201-81ztq-miju66n3er5u95",
                    "sg-11134201-81ztq-miju66n3er5u95"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "PILIH YA",
                  "options": [
                    "CUMA TALI SAJA",
                    "PAKET 7 BARANG"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 410241183527092,
                "bundle_deal_label": "Pilih 3, diskon 3%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bandung Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 820482828468224,
                "price": 28820000000,
                "strikethrough_price": 30750000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1314269895475200,
                "discount_text": "-4%",
                "model_id": 262274641698,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1314269895475200,
                  "voucher_code": "7V5EBNMKL",
                  "voucher_discount": 700000000,
                  "time_info": {
                    "start_time": 1766132880,
                    "end_time": 1771493280,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 25000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 30750000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Mentari Starr",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53153437808,
            "shopid": 1679174629,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztq-miju66n3er5u95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1049112,700005517,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,700700063,299033478,1428713,1718087960,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":559,\"model_id\":262274641698,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztq-miju66n3er5u95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1049112,700005517,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,700700063,299033478,1428713,1718087960,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":559,\"model_id\":262274641698,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53153437808",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56353427726,
              "shopid": 1705202322,
              "name": "realme Watch 5 | Compass & Independent GPS | 460mAh 14-day Battery Life | Accurateย Sportsย &ย Health | AMOLED 600nits | IP68ย Waterย Resistant",
              "label_ids": [
                844931064601283,
                1718093079,
                1119699,
                1718596,
                298488495,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                2213765,
                298933384
              ],
              "image": "id-11134207-8224w-mijppztpzhflb4",
              "images": [
                "id-11134207-8224w-mijppztpzhflb4",
                "id-11134207-8224r-mijppztq3p4x6e",
                "id-11134207-8224x-mijppztq0w018f",
                "id-11134207-82251-mijppztq53pd5e",
                "id-11134207-8224v-mijppztq2akhcf",
                "id-11134207-8224w-mijppztq6i9t86",
                "id-11134207-8224q-mijq1qbvzxmw15"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766378735,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Realme",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 79900000000,
              "price_min": 79900000000,
              "price_max": 79900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Titanium Black",
                    "Titanium Silver"
                  ],
                  "images": [
                    "id-11134207-8224s-mijq1qbyat502a",
                    "id-11134207-8224u-mijq1qbyc7pga2"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 79900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390330222388,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 79900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "realme AIOT Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56353427726,
            "shopid": 1705202322,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mijppztpzhflb4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1119699,1718596,298488495,700005490,1049120,822059908662278,825465608499232,2213765,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":242,\"model_id\":390330222388,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mijppztpzhflb4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1119699,1718596,298488495,700005490,1049120,822059908662278,825465608499232,2213765,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":242,\"model_id\":390330222388,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56353427726",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52803430192,
              "shopid": 1584818210,
              "name": "Samsung Galaxy Watch8 40Mm / Watch 8 40Mm",
              "label_ids": [
                844931064601283,
                1059152,
                1049124,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1718596,
                298488495,
                299033478,
                2213765
              ],
              "image": "sg-11134275-81zu1-mijjlvswujus56",
              "images": [
                "sg-11134275-81zu1-mijjlvswujus56",
                "sg-11134275-81zwr-mijjlvo2lblz63",
                "sg-11134275-81zv9-mijjlw29p0jl5c",
                "sg-11134275-81zwb-mijjlvspqy2v46",
                "sg-11134275-81zwu-mijjlw48fo5j1c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766367809,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 908300000000,
              "price_min": 908300000000,
              "price_max": 908300000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "Graphite",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134275-81zw9-mijjlw9mzbpg18",
                    "sg-11134275-81zu4-mijjlwdyqqrl33"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 908050000000,
                "strikethrough_price": 908300000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1322848052854788,
                "discount_text": null,
                "model_id": 238223723072,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1322848052854788,
                  "voucher_code": "COCOFOOD2",
                  "voucher_discount": 250000000,
                  "time_info": {
                    "start_time": 1767155520,
                    "end_time": 1774935120,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 30000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 908300000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "cocofoodiest",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52803430192,
            "shopid": 1584818210,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134275-81zu1-mijjlvswujus56\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049124,1718093079,822059908662278,825465608499232,825465608497696,1718596,298488495,299033478,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":212,\"model_id\":238223723072,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134275-81zu1-mijjlvswujus56\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049124,1718093079,822059908662278,825465608499232,825465608497696,1718596,298488495,299033478,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":212,\"model_id\":238223723072,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52803430192",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56203405700,
              "shopid": 157066193,
              "name": "Garmin Watch VENUE SQ/Jam Tangan Garmin VENUE SQ Promo",
              "label_ids": [
                2018619,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1718093079,
                1119699,
                1718596,
                700765096,
                298488495,
                298933384,
                2213765,
                2023641,
                1059152,
                1059154,
                822059908662278,
                2048661,
                834403089593352,
                825465608497696,
                840955085144628,
                825465608494624,
                825465608493600,
                2048660,
                822120592861206,
                827380695406658,
                825465608499232,
                840990690654214,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224r-miiho8fahp8m8a",
              "images": [
                "id-11134207-8224r-miiho8fahp8m8a",
                "id-11134207-8224x-miiho8faj3t2d0",
                "id-11134207-82251-miiho8fakidibc",
                "id-11134207-8224x-miiho8falwxy22"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766304191,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 180000000000,
              "price_min": 180000000000,
              "price_max": 180000000000,
              "price_min_before_discount": 300000000000,
              "price_max_before_discount": 300000000000,
              "hidden_price_display": null,
              "price_before_discount": 300000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-40%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 813684616658944,
                "price": 180000000000,
                "strikethrough_price": 300000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-40%",
                "model_id": 430327337487,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 300000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MOSES KITCHEN&MCC FASHIONS",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56203405700,
            "shopid": 157066193,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-miiho8fahp8m8a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1718093079,1119699,1718596,700765096,298488495,298933384,2213765,2023641,1059152,1059154,822059908662278,2048661,834403089593352,825465608497696,840955085144628,825465608494624,825465608493600,2048660,822120592861206,827380695406658,825465608499232,840990690654214,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":561,\"model_id\":430327337487,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-miiho8fahp8m8a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1718093079,1119699,1718596,700765096,298488495,298933384,2213765,2023641,1059152,1059154,822059908662278,2048661,834403089593352,825465608497696,840955085144628,825465608494624,825465608493600,2048660,822120592861206,827380695406658,825465608499232,840990690654214,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":561,\"model_id\":430327337487,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56203405700",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27493856579,
              "shopid": 308000918,
              "name": "Samsung Watch Ultra (Second)",
              "label_ids": [
                700185071,
                700190019,
                844931064601283,
                298463379,
                1059156,
                700005500,
                1718093079,
                822059908662278,
                825465608493600,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                298488495,
                299033477,
                2048660,
                2048661,
                2213765,
                700765096,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224w-mihllnbhdg5k50",
              "images": [
                "id-11134207-8224w-mihllnbhdg5k50",
                "id-11134207-8224t-mihllnbgzeh3bc",
                "id-11134207-8224w-mihllnbjbojn3a",
                "id-11134207-8224x-mihllnbja9z742",
                "id-11134207-8224x-mihllnbk3rwhf8",
                "id-11134207-8224q-mihllnboh3ie58",
                "id-11134207-8224t-mihllnbr0efb94"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766250591,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Samsung",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 562000000000,
              "price_min": 562000000000,
              "price_max": 562000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Sukoharjo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 562000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 292271626442,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 562000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Mr. O Phone",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 27493856579,
            "shopid": 308000918,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mihllnbhdg5k50\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700185071,700190019,844931064601283,298463379,1059156,700005500,1718093079,822059908662278,825465608493600,825465608499232,825465608497696,1119699,1718596,298488495,299033477,2048660,2048661,2213765,700765096,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":418,\"model_id\":292271626442,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mihllnbhdg5k50\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700185071,700190019,844931064601283,298463379,1059156,700005500,1718093079,822059908662278,825465608493600,825465608499232,825465608497696,1119699,1718596,298488495,299033477,2048660,2048661,2213765,700765096,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":418,\"model_id\":292271626442,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27493856579",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47903399791,
              "shopid": 69095641,
              "name": "GARMIN FORERUNNER 45s",
              "label_ids": [
                2018619,
                2023641,
                2068629,
                298938357,
                844931064601283,
                298463379,
                1059152,
                700005489,
                1400066568,
                822059908662278,
                825465608494624,
                825465608499232,
                2048660,
                2048661,
                1718093079,
                1718596,
                700765096,
                1119699,
                298488495,
                2213765,
                298933384,
                2098628,
                298938368,
                298468389,
                2098629,
                1718088045
              ],
              "image": "id-11134207-8224v-mihhdwcphdkw08",
              "images": [
                "id-11134207-8224v-mihhdwcphdkw08",
                "id-11134207-82252-mihhdwcpk6ps88",
                "id-11134207-8224s-mihhdwcplla8b3",
                "id-11134207-82252-mihhdwcpis5c13"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766243439,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 6,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 150000000000,
              "price_min": 150000000000,
              "price_max": 150000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp500RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 150000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 360325580307,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 150000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp500RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "shutterbox",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47903399791,
            "shopid": 69095641,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mihhdwcphdkw08\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,2068629,298938357,844931064601283,298463379,1059152,700005489,1400066568,822059908662278,825465608494624,825465608499232,2048660,2048661,1718093079,1718596,700765096,1119699,298488495,2213765,298933384,2098628,298938368,298468389,2098629,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":774,\"model_id\":360325580307,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mihhdwcphdkw08\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,2068629,298938357,844931064601283,298463379,1059152,700005489,1400066568,822059908662278,825465608494624,825465608499232,2048660,2048661,1718093079,1718596,700765096,1119699,298488495,2213765,298933384,2098628,298938368,298468389,2098629,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":774,\"model_id\":360325580307,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47903399791",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57253361618,
              "shopid": 1702271466,
              "name": "HK10 Ultra A Smartwatch NFC - Panggilan Bluetooth, IP67, Mode Olahraga | Unisex | Impor Jerman | Cocok Android IOS",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                1400066568,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1718596,
                298488495,
                298933384,
                299033478,
                2213765,
                298463379,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224u-migy7en8c4xt3f",
              "images": [
                "id-11134207-8224u-migy7en8c4xt3f",
                "id-11134207-8224u-migy7en6dwjsc3",
                "id-11134207-8224t-migy7en6b3ew9d",
                "id-11134207-8224u-migy7en66vpke4",
                "id-11134207-8224s-migy7en6chzcee",
                "id-11134207-8224w-migy7en68aa0b3",
                "id-11134207-8224z-migy7en6gpoo12"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766213268,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 40000000000,
              "price_min": 40000000000,
              "price_max": 40000000000,
              "price_min_before_discount": 200000000000,
              "price_max_before_discount": 200000000000,
              "hidden_price_display": null,
              "price_before_discount": 200000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-80%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdva-migyftf5ko3o7c.16000101766211069.mp4",
                  "thumb_url": "id-11110105-6vdva-migyftf5ko3o7c_cover",
                  "duration": 32,
                  "version": 2,
                  "vid": "id-11110105-6vdva-migyftf5ko3o7c",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdva-migyftf5ko3o7c.16000101766211069.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdva-migyftf5ko3o7c.16000101766211069.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdva-migyftf5ko3o7c.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "HK10U-Putih",
                    "HK10U-hitam",
                    "HK10U-Jeruk",
                    "HK10U-Acak",
                    "HK10P-green",
                    "HK10P-silver",
                    "HK10P-black"
                  ],
                  "images": [
                    "id-11134207-8224y-migy7en6fb48d4",
                    "id-11134207-8224r-migy7en6i494dd",
                    "id-11134207-82250-migy7en6jitkd9",
                    "id-11134207-8224r-migy7en6i494dd",
                    "id-11134207-8224x-mj733axsi32809",
                    "id-11134207-8224o-mj733axsjhmodc",
                    "id-11134207-8224q-mj733axskw745b"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 812263016022016,
                "price": 39000000000,
                "strikethrough_price": 200000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1314293552005120,
                "discount_text": "-80%",
                "model_id": 345403718828,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1314293552005120,
                  "voucher_code": "SQLY301",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1766135640,
                    "end_time": 1773738840,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 30000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 200000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Globe Prima Tech Jam",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57253361618,
            "shopid": 1702271466,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-migy7en8c4xt3f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,1400066568,822059908662278,825465608499232,825465608497696,1718093079,1718596,298488495,298933384,299033478,2213765,298463379,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":427,\"model_id\":345403718828,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-migy7en8c4xt3f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,1400066568,822059908662278,825465608499232,825465608497696,1718093079,1718596,298488495,298933384,299033478,2213765,298463379,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":427,\"model_id\":345403718828,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57253361618",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57203279093,
              "shopid": 301061531,
              "name": "New! Smartwatch Amoled HainoTeko Germany HT-28 WaterProoft Super Slim Jam Tangan Touch Screen Layar Amoled Sport Health Monitoring Kesehatan & Olahraga 3 Pairs Strap",
              "label_ids": [
                834230400556567,
                2018619,
                2023641,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                700005489,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1718093079,
                1718596,
                298488495,
                2098621,
                2213765,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224x-mief26vg8poo85",
              "images": [
                "id-11134207-8224x-mief26vg8poo85",
                "id-11134207-82252-mief26vfjfgi8a",
                "id-11134207-8224v-mief26vfku0y7e",
                "id-11134207-8224u-mief26vfm8le96"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766057944,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 68500000000,
              "price_min": 68500000000,
              "price_max": 68500000000,
              "price_min_before_discount": 80000000000,
              "price_max_before_discount": 80000000000,
              "hidden_price_display": null,
              "price_before_discount": 80000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-14%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven7-mief5koyqbr46c.16000031766057579.mp4",
                  "thumb_url": "id-11110105-6ven7-mief5koyqbr46c_cover",
                  "duration": 37,
                  "version": 2,
                  "vid": "id-11110105-6ven7-mief5koyqbr46c",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven7-mief5koyqbr46c.16000031766057579.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven7-mief5koyqbr46c.16000031766057579.mp4",
                      "width": 480,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven7-mief5koyqbr46c.default.mp4",
                    "width": 480,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "WARNA",
                  "options": [
                    "BLACK",
                    "GOLD"
                  ],
                  "images": [
                    "id-11134207-8224r-mief26vfnn5u1c",
                    "id-11134207-8224o-mief26vfp1qa91"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 811587221389312,
                "price": 68500000000,
                "strikethrough_price": 80000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-14%",
                "model_id": 292265723764,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 80000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HainoTeko.Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57203279093,
            "shopid": 301061531,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mief26vg8poo85\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,2018619,2023641,844931086908638,844931064601283,298463379,1059152,700005489,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1718596,298488495,2098621,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":810,\"model_id\":292265723764,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mief26vg8poo85\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,2018619,2023641,844931086908638,844931064601283,298463379,1059152,700005489,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1718596,298488495,2098621,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":810,\"model_id\":292265723764,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57203279093",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54603276981,
              "shopid": 46376789,
              "name": "iFlytek AIT-P10T Dual Screen Translator 99.9% NEW",
              "label_ids": [
                844931064601283,
                1400066568,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                2048660,
                2048661,
                825465608493600,
                825465608499232,
                1119699,
                1718596,
                700765096,
                298488495,
                2213765,
                299033477
              ],
              "image": "id-11134207-8224q-mie8txs68e86e6",
              "images": [
                "id-11134207-8224q-mie8txs68e86e6",
                "id-11134207-8224t-mie8txs69ssmbf",
                "id-11134207-8224r-mie8txs6b7d2dd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766047932,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "IFLYTEK",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1280000000000,
              "price_min": 1280000000000,
              "price_max": 1280000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1280000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 360314929980,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1280000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "manuelerick_",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54603276981,
            "shopid": 46376789,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mie8txs68e86e6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1059152,1059154,1718093079,822059908662278,825465608497696,2048660,2048661,825465608493600,825465608499232,1119699,1718596,700765096,298488495,2213765,299033477],\"matched_keywords\":[\"\"],\"merge_rank\":155,\"model_id\":360314929980,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mie8txs68e86e6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1059152,1059154,1718093079,822059908662278,825465608497696,2048660,2048661,825465608493600,825465608499232,1119699,1718596,700765096,298488495,2213765,299033477],\"matched_keywords\":[\"\"],\"merge_rank\":155,\"model_id\":360314929980,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54603276981",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 58103259634,
              "shopid": 18432502,
              "name": "Xiaomi Smart Band 8 Pro 1.74 inch Amoled",
              "label_ids": [
                1000167,
                844931064601283,
                844931086908638,
                1400005526,
                1049116,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1718596,
                298488495,
                299033477,
                2213765
              ],
              "image": "id-11134207-82252-mie4gjuiiosj9d",
              "images": [
                "id-11134207-82252-mie4gjuiiosj9d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766039824,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Xiaomi",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 55000000000,
              "price_min": 55000000000,
              "price_max": 55000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Mojokerto",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 55000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 340313987313,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 55000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "wonjinshine",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 58103259634,
            "shopid": 18432502,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mie4gjuiiosj9d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,844931086908638,1400005526,1049116,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,298488495,299033477,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":402,\"model_id\":340313987313,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mie4gjuiiosj9d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,844931086908638,1400005526,1049116,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,298488495,299033477,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":402,\"model_id\":340313987313,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_58103259634",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48253278424,
              "shopid": 194150799,
              "name": "NORTH EDGE MARS 5 โ€“ Outdoor Smartwatch",
              "label_ids": [
                2018619,
                700185071,
                700190019,
                844931064601283,
                298463379,
                1049124,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608493600,
                1119699,
                1718596,
                298488495,
                2098621,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224p-midz6aq5id5315",
              "images": [
                "id-11134207-8224p-midz6aq5id5315",
                "id-11134207-8224q-midz6aq5bcavee"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766031870,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "North Edge",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 68900000000,
              "price_min": 68900000000,
              "price_max": 68900000000,
              "price_min_before_discount": 99900000000,
              "price_max_before_discount": 99900000000,
              "hidden_price_display": null,
              "price_before_discount": 99900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-31%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "White",
                    "Blue"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 799787620827136,
                "price": 68900000000,
                "strikethrough_price": 99900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-31%",
                "model_id": 435313457263,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 99900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Deyana Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48253278424,
            "shopid": 194150799,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-midz6aq5id5315\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700185071,700190019,844931064601283,298463379,1049124,1059152,1718093079,822059908662278,825465608499232,825465608497696,825465608493600,1119699,1718596,298488495,2098621,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":41,\"model_id\":435313457263,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-midz6aq5id5315\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700185071,700190019,844931064601283,298463379,1049124,1059152,1718093079,822059908662278,825465608499232,825465608497696,825465608493600,1119699,1718596,298488495,2098621,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":41,\"model_id\":435313457263,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48253278424",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49353257492,
              "shopid": 296426053,
              "name": "[NEW PRODUCT] OLIKE Smart Band Active Sport B3 Screen 2.7D Curved 3ATM Waterproof 20 Day Battery Life | Smart Band Health Monitor Sync Strava, Strap 18mm",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                844931086908638,
                1718093079,
                298463379,
                1119699,
                1718596,
                298488495,
                2098621,
                700005509,
                1049138,
                822059908662278,
                2048661,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                2048660,
                700765096,
                2213765,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224x-mid5uwrbwr2b32",
              "images": [
                "id-11134207-8224x-mid5uwrbwr2b32",
                "id-11134207-8224p-mid5uwrd4ao445",
                "id-11134207-8224w-mid5uwrh96vb2e",
                "id-11134207-8224p-mid5uwrx6akkd9",
                "id-11134207-8224x-mid5uwt5ayvb7b",
                "id-11134207-8224s-mid5uwy11kp0c7",
                "id-11134207-82251-mid5uwy5dhqf2a",
                "id-11134207-8224v-mid5uwy12z9g80",
                "id-11134207-8224w-mid5uwygvv9i9a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765981679,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Olike",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 32320000000,
              "price_min": 32320000000,
              "price_max": 32320000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6vdvf-mid5vz3dclc16b.16000101765981459.mp4",
                  "thumb_url": "id-11110107-6vdvf-mid5vz3dclc16b_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110107-6vdvf-mid5vz3dclc16b",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6vdvf-mid5vz3dclc16b.16000101765981459.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvf-mid5vz3dclc16b.16000101765981459.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvf-mid5vz3dclc16b.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "B3",
                  "options": [
                    "Black",
                    "Silver"
                  ],
                  "images": [
                    "id-11134207-8224u-mid5wll85wjk14",
                    "id-11134207-82252-mid5wogw8lqba2"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjarmasin",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 32320000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 340311338991,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 32320000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SUPPLYACC",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49353257492,
            "shopid": 296426053,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mid5uwrbwr2b32\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,844931086908638,1718093079,298463379,1119699,1718596,298488495,2098621,700005509,1049138,822059908662278,2048661,825465608493600,825465608494624,825465608499232,825465608497696,2048660,700765096,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":732,\"model_id\":340311338991,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mid5uwrbwr2b32\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,844931086908638,1718093079,298463379,1119699,1718596,298488495,2098621,700005509,1049138,822059908662278,2048661,825465608493600,825465608494624,825465608499232,825465608497696,2048660,700765096,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":732,\"model_id\":340311338991,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49353257492",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48303238944,
              "shopid": 129213690,
              "name": "Etrex SE Garmin Etrex SE TAM",
              "label_ids": [
                1400066568,
                2023641,
                1000167,
                2018619,
                2068629,
                298938357,
                1428713,
                1718087960,
                298463379,
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608497696,
                2048660,
                2048661,
                825465608494624,
                825465608499232,
                1119699,
                1718596,
                700765096,
                298488495,
                2098621,
                2213765,
                1718088045,
                298468389,
                2098629,
                298938368,
                2098628
              ],
              "image": "id-11134207-8224v-micub8iw75ky8b",
              "images": [
                "id-11134207-8224v-micub8iw75ky8b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765962114,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 317500000000,
              "price_min": 317500000000,
              "price_max": 317500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp1JT X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 317500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 425310099545,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 317500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp1,1JT x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Falsacom",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48303238944,
            "shopid": 129213690,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-micub8iw75ky8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2023641,1000167,2018619,2068629,298938357,1428713,1718087960,298463379,844931064601283,1059154,1059152,1718093079,822059908662278,825465608497696,2048660,2048661,825465608494624,825465608499232,1119699,1718596,700765096,298488495,2098621,2213765,1718088045,298468389,2098629,298938368,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":806,\"model_id\":425310099545,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-micub8iw75ky8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2023641,1000167,2018619,2068629,298938357,1428713,1718087960,298463379,844931064601283,1059154,1059152,1718093079,822059908662278,825465608497696,2048660,2048661,825465608494624,825465608499232,1119699,1718596,700765096,298488495,2098621,2213765,1718088045,298468389,2098629,298938368,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":806,\"model_id\":425310099545,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48303238944",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24147811182,
              "shopid": 1680605640,
              "name": "Braided Solo Loop For Apple watch band 44mm 40mm ultra 2 49mm 45mm-42-41mm Elastic bracelet iWatch series 9 8 se 6 7 5 4 3 strap",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                1119699,
                1718093079,
                1718596,
                298488495,
                299033478,
                2213765
              ],
              "image": "sg-11134201-81zu8-micib5t2fmywcc",
              "images": [
                "sg-11134201-81zu8-micib5t2fmywcc",
                "sg-11134201-81zvj-micib6dyfojobe",
                "sg-11134201-81zww-micib6vduoef6a",
                "sg-11134201-81ztu-micib7f2dywzd3",
                "sg-11134201-8224x-mhlkek3f42dd51",
                "sg-11134201-81zwe-micib88kny137a",
                "sg-11134201-81ztz-micib8mcphc692",
                "sg-11134201-81ztg-micib8zug54z4d",
                "sg-11134201-81zvo-micib9av5beo07"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765941826,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 20160000000,
              "price_min": 20160000000,
              "price_max": 20160000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Band Color",
                  "options": [
                    "Pearl White 17",
                    "Pink Punch 18",
                    "Black White 12",
                    "Blue Green 13",
                    "multin Color 11",
                    "Orange 14",
                    "Charcoal 15",
                    "Brown 08",
                    "Atlantic Blue 09",
                    "Red 07",
                    "Comouflage Multin10",
                    "Dark Cherry 31",
                    "Abyss Blue 32",
                    "Chocolat 30",
                    "Sequoia Green 34",
                    "Blueberry 26",
                    "Neon Lime 27",
                    "Strawberry Red 25",
                    "Hyper Grape 28",
                    "Blue Green 04",
                    "Inverness Green 05",
                    "Blue Pink 03",
                    "Black 06",
                    "Vitamin C 29",
                    "Z Black Red 01",
                    "Pride Edition 24",
                    "Z Blue White 02",
                    "Starlight 35",
                    "Starlight Black 36",
                    "Z-Purple Gold 33",
                    "Sky Blue 21",
                    "Pistachio 22",
                    "Purple Pulse 19",
                    "Electric Orange 23",
                    "Space Gray 16"
                  ],
                  "images": [
                    "sg-11134201-81zwd-micibb38q6mgf4",
                    "sg-11134201-81zv5-micibbuc3z0j59",
                    "sg-11134201-81zuk-micibc4cra4k1e",
                    "sg-11134201-81zts-micibcfb1erm7d",
                    "sg-11134201-81zu8-micibcss8d1k21",
                    "sg-11134201-81zvn-micibd5lmk1t23",
                    "sg-11134201-81zws-micibbg10ykk1c",
                    "sg-11134201-81zvq-micibdhvcr9e38",
                    "sg-11134201-81zub-micibdwhbkzsf5",
                    "sg-11134201-81zvi-micibe8a8dfk71",
                    "sg-11134201-81zux-micibek44bns06",
                    "sg-11134201-81zu5-micibev7wgsj43",
                    "sg-11134201-81zte-micibf69je9z6e",
                    "sg-11134201-81zu8-micibfh88z5t0e",
                    "sg-11134201-81zuz-micibg34m96r16",
                    "sg-11134201-81zvf-micibggje5u0a9",
                    "sg-11134201-81ztx-micibgx7gg01c9",
                    "sg-11134201-81zth-micibaba37r85c",
                    "sg-11134201-81zu3-micibh8n3ncw3d",
                    "sg-11134201-81zu2-micibhm2gmiw27",
                    "sg-11134201-81ztx-micibhzxe3uo24",
                    "sg-11134201-81ztl-micibibjqvb748",
                    "sg-11134201-81zv3-micibim0fjev06",
                    "sg-11134201-81zww-micibiyknjt3ed",
                    "sg-11134201-81zvk-micibjazaqkm19",
                    "sg-11134201-81zuj-micibjm1fz0h4b",
                    "sg-11134201-81ztm-micibjz2bthe75",
                    "sg-11134201-81zvl-micibkcanwuf2e",
                    "sg-11134201-81zwl-micibkx5m49477",
                    "sg-11134201-81zvl-miciblfp52bre8",
                    "sg-11134201-81ztg-micib8zug54z4d",
                    "sg-11134201-81zvo-micib9av5beo07",
                    "sg-11134201-81zvr-micib9lmwwsj43",
                    "sg-11134201-81zwj-micib9y9fu9s77",
                    "sg-11134201-81zth-micibamr3mkofa"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ships From",
                  "options": [
                    "CHINA"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 20160000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 49599833666,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 20160000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EchotStore",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 24147811182,
            "shopid": 1680605640,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zu8-micib5t2fmywcc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1119699,1718093079,1718596,298488495,299033478,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":426,\"model_id\":49599833666,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zu8-micib5t2fmywcc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1119699,1718093079,1718596,298488495,299033478,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":426,\"model_id\":49599833666,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24147811182",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43527283749,
              "shopid": 228891654,
              "name": "Smartwatch M10 Pro",
              "label_ids": [
                2018619,
                700190019,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                700005487,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                298488495,
                2098621,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224w-mhzveb1tz2f589",
              "images": [
                "id-11134207-8224w-mhzveb1tz2f589",
                "id-11134207-8224r-mhzveb18mps6c1",
                "id-11134207-8224y-mhzveb18lb7q8e",
                "id-11134207-82251-mhzveb1f3w1u99"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765893305,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 25000000000,
              "price_min": 25000000000,
              "price_max": 25000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Silver",
                    "Pink"
                  ],
                  "images": [
                    "id-11134207-82251-mhzveb1f3w1u99",
                    "id-11134207-8224r-mhzveb18mps6c1",
                    "id-11134207-8224w-mhzveb1tz2f589"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 25000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 380306100271,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 25000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Wanti99lestari",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43527283749,
            "shopid": 228891654,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mhzveb1tz2f589\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700190019,844931064601283,844931086908638,298463379,1059152,700005487,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,2098621,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":263,\"model_id\":380306100271,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mhzveb1tz2f589\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700190019,844931064601283,844931086908638,298463379,1059152,700005487,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,2098621,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":263,\"model_id\":380306100271,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43527283749",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44953183118,
              "shopid": 64715447,
              "name": "ADVAN Smartwatch SR | Amoled Display 1.43\" | Bluetooth Call | Ai Voice Assistant | Waterproof IP68 |  Bluetooth 5.2 | 100+ Mode Sport | Material ZInc Alloy | Up To 15-Days Battery",
              "label_ids": [
                47,
                2018619,
                2023641,
                1000167,
                700190019,
                700185071,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1049112,
                1059151,
                822059908662278,
                822120592861206,
                825465608499232,
                834403089593352,
                825465608497696,
                2048660,
                2048661,
                825465608493600,
                1718093079,
                1718596,
                700765096,
                1119699,
                298488495,
                2213765,
                298933384,
                299033477,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82252-mibkece0oz5w79",
              "images": [
                "id-11134207-82252-mibkece0oz5w79",
                "id-11134207-8224x-mibkecdngsncb4",
                "id-11134207-8224z-mibkecdw8uf6e6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765884897,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100013,
              "brand": "ADVAN",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 22000000000,
              "price_min": 22000000000,
              "price_max": 22000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "WARNA",
                  "options": [
                    "Rose gold"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 22000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 277259852498,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 22000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BHIESTORE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44953183118,
            "shopid": 64715447,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mibkece0oz5w79\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,2018619,2023641,1000167,700190019,700185071,1428713,1718087960,844931086908638,844931064601283,298463379,1049112,1059151,822059908662278,822120592861206,825465608499232,834403089593352,825465608497696,2048660,2048661,825465608493600,1718093079,1718596,700765096,1119699,298488495,2213765,298933384,299033477,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":635,\"model_id\":277259852498,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mibkece0oz5w79\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,2018619,2023641,1000167,700190019,700185071,1428713,1718087960,844931086908638,844931064601283,298463379,1049112,1059151,822059908662278,822120592861206,825465608499232,834403089593352,825465608497696,2048660,2048661,825465608493600,1718093079,1718596,700765096,1119699,298488495,2213765,298933384,299033477,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":635,\"model_id\":277259852498,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44953183118",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44227273061,
              "shopid": 301061531,
              "name": "Smart Watch HainoTeko HT-27 Amoled WaterProoft Super Slim Baterai Tahan 7 Hari Jam Tangan Touch Screen Layar Amoled Sport Health Monitoring Kesehatan & Olahraga 3 Pairs Strap",
              "label_ids": [
                834230400556567,
                2018619,
                2023641,
                844931064601283,
                844931086908638,
                298463379,
                700005489,
                1059152,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                298488495,
                2098621,
                2213765,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224y-mibf3ooyb85k5e",
              "images": [
                "id-11134207-8224y-mibf3ooyb85k5e",
                "id-11134207-82250-mibf3ooupzwhf0",
                "id-11134207-8224u-mibf3oouregx58",
                "id-11134207-8224s-mibf3ooust1d14",
                "id-11134207-8224v-mibf3oouu7lt95"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765876460,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "HAINO TEKO",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 68500000000,
              "price_min": 68500000000,
              "price_max": 68500000000,
              "price_min_before_discount": 85000000000,
              "price_max_before_discount": 85000000000,
              "hidden_price_display": null,
              "price_before_discount": 85000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-19%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv6-mibfc8836aysf7.16000081765876286.mp4",
                  "thumb_url": "id-11110105-6vdv6-mibfc8836aysf7_cover",
                  "duration": 40,
                  "version": 2,
                  "vid": "id-11110105-6vdv6-mibfc8836aysf7",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv6-mibfc8836aysf7.16000081765876286.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv6-mibfc8836aysf7.16000081765876286.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv6-mibfc8836aysf7.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Silver",
                    "Gold"
                  ],
                  "images": [
                    "id-11134207-82252-mibf3oouvm69c9",
                    "id-11134207-8224s-mibf3ooux0qpae",
                    "id-11134207-8224w-mibf3oouyfb599"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 811587221389312,
                "price": 68500000000,
                "strikethrough_price": 85000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-19%",
                "model_id": 405304871299,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 85000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HainoTeko.Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44227273061,
            "shopid": 301061531,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mibf3ooyb85k5e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,2018619,2023641,844931064601283,844931086908638,298463379,700005489,1059152,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,298488495,2098621,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":811,\"model_id\":405304871299,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mibf3ooyb85k5e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,2018619,2023641,844931064601283,844931086908638,298463379,700005489,1059152,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,298488495,2098621,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":811,\"model_id\":405304871299,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44227273061",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 58003155889,
              "shopid": 408934982,
              "name": "GPS Tracker Pelacak Kendaraan X3 Concox Realtime - ANTI MALING",
              "label_ids": [
                1059152,
                1049122,
                822059908662278,
                825465608497696,
                825465608493600,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                1718596,
                298488495,
                2098621,
                2213765
              ],
              "image": "id-11134207-8224q-mib5wkaureh212",
              "images": [
                "id-11134207-8224q-mib5wkaureh212",
                "id-11134207-8224y-mib5wkav5g5f36",
                "id-11134207-8224s-mib5wkaupzwm21"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765861148,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Concox",
              "cmt_count": 0,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 55200000000,
              "price_min": 55200000000,
              "price_max": 55200000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 55200000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 302258588937,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 55200000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Tracksolid Official",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 58003155889,
            "shopid": 408934982,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mib5wkaureh212\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1049122,822059908662278,825465608497696,825465608493600,825465608494624,825465608499232,1718093079,1119699,1718596,298488495,2098621,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":551,\"model_id\":302258588937,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mib5wkaureh212\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1049122,822059908662278,825465608497696,825465608493600,825465608494624,825465608499232,1718093079,1119699,1718596,298488495,2098621,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":551,\"model_id\":302258588937,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_58003155889",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51403130462,
              "shopid": 1499776956,
              "name": "AZAHRAKOLEKSI FILIEKEU JAM TANGAN PINTAR WANITA GAYA ELEGAN MODIS PANGGILAN BLUETOOTH OLAHRAGA TAHAN AIR GELANG FGH-56",
              "label_ids": [
                844931064601283,
                1049141,
                1049154,
                1718093079,
                822059908662278,
                825465608499232,
                1718596,
                298488495,
                2098621,
                2213765
              ],
              "image": "id-11134201-8224q-mia80u9blqf688",
              "images": [
                "id-11134201-8224q-mia80u9blqf688",
                "id-11134201-8224r-mia80ws7lzwm87",
                "id-11134201-82250-mia80z9gmhvl80",
                "id-11134201-8224p-mia810zhq6f546",
                "id-11134201-8224s-mia813xw8uf408",
                "id-11134201-82251-mia815n0uj2873",
                "id-11134201-8224u-mia817c41loh2d",
                "id-11134201-8224v-mia818h3epky8f",
                "id-11134201-8224u-mia81a5qaoe95b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765803483,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 49664000000,
              "price_min": 49664000000,
              "price_max": 49664000000,
              "price_min_before_discount": 51200000000,
              "price_max_before_discount": 51200000000,
              "hidden_price_display": null,
              "price_before_discount": 51200000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-3%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "black",
                    "wine red"
                  ],
                  "images": [
                    "id-11134201-8224u-mia81pabchs008",
                    "id-11134201-82252-mia81qpshloge0"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Yogyakarta",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 817925863309312,
                "price": 49664000000,
                "strikethrough_price": 51200000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-3%",
                "model_id": 335301117360,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 51200000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "azahrakoleksi",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51403130462,
            "shopid": 1499776956,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mia80u9blqf688\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049141,1049154,1718093079,822059908662278,825465608499232,1718596,298488495,2098621,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":223,\"model_id\":335301117360,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mia80u9blqf688\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049141,1049154,1718093079,822059908662278,825465608499232,1718596,298488495,2098621,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":223,\"model_id\":335301117360,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51403130462",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47903123247,
              "shopid": 52605257,
              "name": "SMARTWATCH PEJE ZW SERIES 10 MINI AI RECORDER CHAT GPT GARANSI RESMI ORIGINAL",
              "label_ids": [
                2023641,
                298938357,
                2068629,
                2018619,
                700190019,
                844931064601283,
                298463379,
                1718093079,
                1049116,
                1049123,
                822059908662278,
                825465608497696,
                825465608492064,
                825465608494624,
                825465608499232,
                1400066568,
                1119699,
                1718596,
                298488495,
                298933384,
                2098621,
                2213765,
                298938368,
                1718088045,
                2098628,
                298468389,
                2098629
              ],
              "image": "sg-11134201-822xk-mia0mgswwyrobb",
              "images": [
                "sg-11134201-822xk-mia0mgswwyrobb",
                "sg-11134201-822zd-mia0mc1g9xxc43",
                "sg-11134201-822yn-mia0mgdfyqyp78",
                "sg-11134201-822wg-mia0mhbil62o4d",
                "sg-11134201-822xj-mia0mchbuv43aa",
                "sg-11134201-822wi-mia0mdlxbwu9cc",
                "sg-11134201-822xs-mia0melfjcao66",
                "sg-11134201-822zo-mia0mf8kmbk004",
                "sg-11134201-822xx-mia0mfu25s76d1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765790056,
              "sold": 4,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 6,
              "view_count": null,
              "catid": 100013,
              "brand": "PEJE",
              "cmt_count": 2,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 49450000000,
              "price_min": 49450000000,
              "price_max": 49450000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven9-mishnqmkffgn4f.16000081766909267.mp4",
                  "thumb_url": "id-11110105-6ven9-mishnqmkffgn4f_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6ven9-mishnqmkffgn4f",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven9-mishnqmkffgn4f.16000081766909267.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven9-mishnqmkffgn4f.16000081766909267.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven9-mishnqmkffgn4f.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "BLACK",
                    "SILVER",
                    "PINK"
                  ],
                  "images": [
                    "id-11134207-8224y-mj6v2olnfkefe4",
                    "id-11134207-8224t-mj6v2olpglxd98",
                    "id-11134207-8224t-mj6v2olngyyvda"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Malang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp164RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 49450000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390300150516,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 49450000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp164RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": " Time Malang",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47903123247,
            "shopid": 52605257,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822xk-mia0mgswwyrobb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,298938357,2068629,2018619,700190019,844931064601283,298463379,1718093079,1049116,1049123,822059908662278,825465608497696,825465608492064,825465608494624,825465608499232,1400066568,1119699,1718596,298488495,298933384,2098621,2213765,298938368,1718088045,2098628,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":156,\"model_id\":390300150516,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822xk-mia0mgswwyrobb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,298938357,2068629,2018619,700190019,844931064601283,298463379,1718093079,1049116,1049123,822059908662278,825465608497696,825465608492064,825465608494624,825465608499232,1400066568,1119699,1718596,298488495,298933384,2098621,2213765,298938368,1718088045,2098628,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":156,\"model_id\":390300150516,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47903123247",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44703085583,
              "shopid": 214295724,
              "name": "Apple Watch 3 42mm",
              "label_ids": [
                2018619,
                2068629,
                298938357,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1049117,
                1049116,
                822059908662278,
                825465608499232,
                1119699,
                298488495,
                299033477,
                298938368,
                298468389
              ],
              "image": "id-11134207-8224o-mi8cengpjshvd5",
              "images": [
                "id-11134207-8224o-mi8cengpjshvd5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765689952,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 90000000000,
              "price_min": 90000000000,
              "price_max": 90000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp300RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 90000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 445295194730,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 90000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp300RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Magnetic778",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44703085583,
            "shopid": 214295724,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mi8cengpjshvd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2068629,298938357,1428713,1718087960,844931064601283,298463379,1049117,1049116,822059908662278,825465608499232,1119699,298488495,299033477,298938368,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":844,\"model_id\":445295194730,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mi8cengpjshvd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2068629,298938357,1428713,1718087960,844931064601283,298463379,1049117,1049116,822059908662278,825465608499232,1119699,298488495,299033477,298938368,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":844,\"model_id\":445295194730,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44703085583",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56153008718,
              "shopid": 42251167,
              "name": "Smart Watch Taqwa",
              "label_ids": [
                1400066568,
                844931064601283,
                844931086908638,
                1049112,
                700005486,
                1718093079,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                298463379,
                2098621,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224y-mi6k5qs3hblz71",
              "images": [
                "id-11134207-8224y-mi6k5qs3hblz71",
                "id-11134207-8224o-mifoiun5ul8g26",
                "id-11134207-8224r-mifoiun5t6o04f",
                "id-11134207-8224o-mifoiun4u2h399"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765582291,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "TAQWA",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 52000000000,
              "price_min": 52000000000,
              "price_max": 52000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6ven4-mi6k7fhfjoxs4e.16000091765581789.mp4",
                  "thumb_url": "id-11110107-6ven4-mi6k7fhfjoxs4e_cover",
                  "duration": 42,
                  "version": 2,
                  "vid": "id-11110107-6ven4-mi6k7fhfjoxs4e",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ven4-mi6k7fhfjoxs4e.16000091765581789.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ven4-mi6k7fhfjoxs4e.16000091765581789.mp4",
                      "width": 270,
                      "height": 330
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ven4-mi6k7fhfjoxs4e.default.mp4",
                    "width": 288,
                    "height": 352
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 52000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 302251133998,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 52000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "safaraz Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56153008718,
            "shopid": 42251167,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mi6k5qs3hblz71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,844931086908638,1049112,700005486,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1119699,298463379,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":569,\"model_id\":302251133998,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mi6k5qs3hblz71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,844931086908638,1049112,700005486,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1119699,298463379,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":569,\"model_id\":302251133998,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56153008718",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46052998008,
              "shopid": 41156874,
              "name": "GPS Tracker CY06 4G SERVER SECUMURE PLUS",
              "label_ids": [
                2018619,
                2023641,
                844931086908638,
                844931064601283,
                1059156,
                700005499,
                822059908662278,
                827380695406658,
                825465608499232,
                825465608497696,
                822120592861206,
                825465608494624,
                1119699,
                2098621,
                1718093079
              ],
              "image": "id-11134207-8224y-mh70qqig62327d",
              "images": [
                "id-11134207-8224y-mh70qqig62327d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765512808,
              "sold": 3,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 27500000000,
              "price_min": 27500000000,
              "price_max": 27500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 27500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 292249027691,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 27500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "azka5150",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46052998008,
            "shopid": 41156874,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mh70qqig62327d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931086908638,844931064601283,1059156,700005499,822059908662278,827380695406658,825465608499232,825465608497696,822120592861206,825465608494624,1119699,2098621,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":219,\"model_id\":292249027691,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mh70qqig62327d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931086908638,844931064601283,1059156,700005499,822059908662278,827380695406658,825465608499232,825465608497696,822120592861206,825465608494624,1119699,2098621,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":219,\"model_id\":292249027691,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46052998008",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52752953616,
              "shopid": 1410468266,
              "name": "GPS Handheld Trimble TDC-600 Bekas",
              "label_ids": [
                844931064601283,
                700005495,
                700005490,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                2098621
              ],
              "image": "id-11134207-8224q-mjdmjirdj7ybc9",
              "images": [
                "id-11134207-8224q-mjdmjirdj7ybc9",
                "id-11134207-8224r-mi4ozahq1xxdfb",
                "id-11134207-8224z-mi4ozahq3cht08",
                "id-11134207-8224s-mi4ozahq4r29e6",
                "id-11134207-82250-mi4ozahq65mp40",
                "id-11134207-8224z-mi4ozahq7k7561",
                "id-11134207-82250-mi4pw3y1bsw045"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765470563,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3300000000000,
              "price_min": 3300000000000,
              "price_max": 3300000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 3300000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 310285930921,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3300000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GEMILANG SURVEY INDONESIA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52752953616,
            "shopid": 1410468266,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjdmjirdj7ybc9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005495,700005490,822059908662278,825465608499232,825465608497696,1718093079,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":602,\"model_id\":310285930921,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjdmjirdj7ybc9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005495,700005490,822059908662278,825465608499232,825465608497696,1718093079,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":602,\"model_id\":310285930921,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52752953616",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55502943634,
              "shopid": 1504983808,
              "name": "Huawei Watch Fit 4 Original Garansi Resmi Huawei Indonesia",
              "label_ids": [
                844931064601283,
                700005514,
                1059156,
                822059908662278,
                825465608499232,
                298463379,
                1718093079,
                1119699,
                2098621,
                298933384,
                1400285055,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82251-mi4ofbic6arl8b",
              "images": [
                "id-11134207-82251-mi4ofbic6arl8b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765468082,
              "sold": 3,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 2,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 161500000000,
              "price_min": 161500000000,
              "price_max": 161500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Batang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 161500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 224624936023,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 161500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "dunia Android reborn",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55502943634,
            "shopid": 1504983808,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mi4ofbic6arl8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005514,1059156,822059908662278,825465608499232,298463379,1718093079,1119699,2098621,298933384,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":879,\"model_id\":224624936023,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mi4ofbic6arl8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005514,1059156,822059908662278,825465608499232,298463379,1718093079,1119699,2098621,298933384,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":879,\"model_id\":224624936023,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55502943634",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57602932114,
              "shopid": 410265923,
              "name": "Cincin Pintar R11C Smart Ring dengan Layar Tampilan, Pemantauan Detak Jantung, Tidur, Mode Multi Olahraga, Tahan Air 1 ATM, Cincin Pintar dengan Kotak Pengisian Daya",
              "label_ids": [
                2018619,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                1049120,
                822059908662278,
                825465608497696,
                840990690654214,
                840955085144628,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                1015914,
                700190087,
                1400285055,
                298933384,
                2108628,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-822xp-mi48yg5urc3l4a",
              "images": [
                "sg-11134201-822xp-mi48yg5urc3l4a",
                "sg-11134201-822wk-mi48yig2w5xef0",
                "sg-11134201-822yc-mi48yld1cyro19",
                "sg-11134201-822wz-mi48ynkjtx4y90",
                "sg-11134201-822zh-mi48yqe1inep29",
                "sg-11134201-822ww-mi48ysm0vtog9d",
                "sg-11134201-822zm-mi48yv4b74zm60",
                "sg-11134201-822zg-mi48ywv5u8lja6",
                "sg-11134201-822xq-mi48yyv8stfs74"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765441832,
              "sold": 16,
              "historical_sold": 16,
              "liked": false,
              "liked_count": 16,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 7,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 32999900000,
              "price_min": 32999900000,
              "price_max": 32999900000,
              "price_min_before_discount": 41999900000,
              "price_max_before_discount": 41999900000,
              "hidden_price_display": null,
              "price_before_discount": 41999900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-21%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134201-822wy-mi48z14kfimb0a",
                    "sg-11134201-822xv-mi48z2g40i6gc5"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "7#(17.5mm)",
                    "8#(18.3mm)",
                    "9#(19.1mm)",
                    "10#(20mm)",
                    "11#(20.8mm)",
                    "12#(21.6mm)",
                    "13#(22.3mm)"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.857142857142857,
                "rating_count": [
                  7,
                  0,
                  0,
                  0,
                  1,
                  6
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 403227258667730,
                "bundle_deal_label": "Pilih 2, diskon 4%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 814267926888448,
                "price": 32200000000,
                "strikethrough_price": 41999900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1298167501963264,
                "discount_text": "-21%",
                "model_id": 400282639135,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1298167501963264,
                  "voucher_code": "SEAR8521U",
                  "voucher_discount": 799900000,
                  "time_info": {
                    "start_time": 1764213300,
                    "end_time": 1772297940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 22999900000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 41999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 16,
                "rounded_local_monthly_sold_count": 16,
                "local_monthly_sold_count_text": "16",
                "rounded_display_sold_count": 16,
                "display_sold_count_text": "16"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Searchai Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57602932114,
            "shopid": 410265923,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822xp-mi48yg5urc3l4a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,1049120,822059908662278,825465608497696,840990690654214,840955085144628,825465608494624,825465608499232,1718093079,1119699,1015914,700190087,1400285055,298933384,2108628,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":761,\"model_id\":400282639135,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822xp-mi48yg5urc3l4a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,1049120,822059908662278,825465608497696,840990690654214,840955085144628,825465608494624,825465608499232,1718093079,1119699,1015914,700190087,1400285055,298933384,2108628,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":761,\"model_id\":400282639135,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57602932114",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47252925930,
              "shopid": 276030541,
              "name": "Olike Interstellar Smart Watch (FW6)",
              "label_ids": [
                2018619,
                298938357,
                2068629,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1049122,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                2048660,
                2048661,
                700765096,
                2098621,
                2098629,
                1718088045,
                298938368,
                2098628,
                298468389
              ],
              "image": "id-11134207-8224y-mi3scfjr1a0w84",
              "images": [
                "id-11134207-8224y-mi3scfjr1a0w84",
                "id-11134207-8224v-mi3scfjr2olc3b",
                "id-11134207-8224q-mi3scfjrb400c9",
                "id-11134207-8224o-mi3scfjr435se1",
                "id-11134207-8224w-mi3scfjr6wao5f",
                "id-11134207-8224q-mi3scfjr5hq88d",
                "id-11134207-8224p-mi3scfjr8av44d",
                "id-11134207-8224p-mi3sbtj2mhhiba",
                "id-11134207-82250-mi3sb1qw8zyb86"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765414117,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Olike",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 23999900000,
              "price_min": 23999900000,
              "price_max": 23999900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp80RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 23999900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 315280531164,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 23999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp80RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "csvzio00v_",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47252925930,
            "shopid": 276030541,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mi3scfjr1a0w84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298938357,2068629,844931086908638,844931064601283,298463379,1059152,1049122,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1718093079,1119699,2048660,2048661,700765096,2098621,2098629,1718088045,298938368,2098628,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":346,\"model_id\":315280531164,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mi3scfjr1a0w84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298938357,2068629,844931086908638,844931064601283,298463379,1059152,1049122,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1718093079,1119699,2048660,2048661,700765096,2098621,2098629,1718088045,298938368,2098628,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":346,\"model_id\":315280531164,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47252925930",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56352878268,
              "shopid": 44686230,
              "name": "garmin fenix 7 solar",
              "label_ids": [
                844931064601283,
                1059156,
                700000491,
                822059908662278,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                1400066568,
                298933384,
                2023641
              ],
              "image": "id-11134207-8224x-mi2zkjhho8w48f",
              "images": [
                "id-11134207-8224x-mi2zkjhho8w48f",
                "id-11134207-8224p-mi2zkjhhfthg2d",
                "id-11134207-8224v-mi2zkjhhh81w44",
                "id-11134207-8224z-mi2zkjhhimmc73",
                "id-11134207-8224x-mi2zkjhhk16s76",
                "id-11134207-8224w-mi2zkjhhlfr800",
                "id-11134207-8224y-mi2zkjhhmubob7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765365590,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 725000000000,
              "price_min": 725000000000,
              "price_max": 725000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Salatiga",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 725000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 272243586548,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 725000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Candibaru_new",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56352878268,
            "shopid": 44686230,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mi2zkjhho8w48f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700000491,822059908662278,825465608494624,825465608499232,1718093079,1119699,1400066568,298933384,2023641],\"matched_keywords\":[\"\"],\"merge_rank\":677,\"model_id\":272243586548,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mi2zkjhho8w48f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700000491,822059908662278,825465608494624,825465608499232,1718093079,1119699,1400066568,298933384,2023641],\"matched_keywords\":[\"\"],\"merge_rank\":677,\"model_id\":272243586548,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56352878268",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51252843726,
              "shopid": 172870542,
              "name": "AMAZFIT ACTIVE 2 Round Resmi",
              "label_ids": [
                1000167,
                2018619,
                700190019,
                844931064601283,
                298463379,
                1718093079,
                1119699,
                700765096,
                2103651,
                2143613,
                1049145,
                1049148,
                822059908662278,
                2048660,
                2048661,
                825465608493600,
                825465608494624,
                825465608499232,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224r-mi2klvnljj0n65",
              "images": [
                "id-11134207-8224r-mi2klvnljj0n65"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765340438,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Amazfit",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 199000000000,
              "price_min": 199000000000,
              "price_max": 199000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bandar Lampung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 199000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 272242248884,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 199000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Lampung Jam Tangan",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51252843726,
            "shopid": 172870542,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mi2klvnljj0n65\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,700190019,844931064601283,298463379,1718093079,1119699,700765096,2103651,2143613,1049145,1049148,822059908662278,2048660,2048661,825465608493600,825465608494624,825465608499232,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":168,\"model_id\":272242248884,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mi2klvnljj0n65\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,700190019,844931064601283,298463379,1718093079,1119699,700765096,2103651,2143613,1049145,1049148,822059908662278,2048660,2048661,825465608493600,825465608494624,825465608499232,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":168,\"model_id\":272242248884,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51252843726",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54052827093,
              "shopid": 21175839,
              "name": "Xiaomi Smart Band 10 warna Midnight Black",
              "label_ids": [
                2018619,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1049116,
                700000488,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                1015914,
                700190087,
                2098621,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224u-mi1p7mysrdaed2",
              "images": [
                "id-11134207-8224u-mi1p7mysrdaed2",
                "id-11134207-8224u-mi1p7myz4buwb9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765287708,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "Xiaomi",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 60000000000,
              "price_min": 60000000000,
              "price_max": 60000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Mojokerto",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 60000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 315273537767,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 60000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Skincare.ori.obral",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54052827093,
            "shopid": 21175839,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mi1p7mysrdaed2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931086908638,844931064601283,298463379,1049116,700000488,1718093079,822059908662278,825465608499232,825465608497696,1119699,298933384,1015914,700190087,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":195,\"model_id\":315273537767,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mi1p7mysrdaed2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931086908638,844931064601283,298463379,1049116,700000488,1718093079,822059908662278,825465608499232,825465608497696,1119699,298933384,1015914,700190087,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":195,\"model_id\":315273537767,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54052827093",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57002801752,
              "shopid": 1545819250,
              "name": "Ready GPS Garmin Nuvi GPS GARMIN Mobil Motor - 42LM",
              "label_ids": [
                844931064601283,
                1049112,
                1049127,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384
              ],
              "image": "id-11134207-8224u-mi1ayji601z972",
              "images": [
                "id-11134207-8224u-mi1ayji601z972"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765263704,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 55000000000,
              "price_min": 55000000000,
              "price_max": 55000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 55000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 320270849106,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 55000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "wireless gallery",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57002801752,
            "shopid": 1545819250,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mi1ayji601z972\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1049127,822059908662278,825465608499232,825465608497696,1718093079,1119699,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":572,\"model_id\":320270849106,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mi1ayji601z972\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1049127,822059908662278,825465608499232,825465608497696,1718093079,1119699,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":572,\"model_id\":320270849106,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57002801752",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40677091570,
              "shopid": 778835250,
              "name": "Apple Watch Series 6 40mm GPS + LTE Nike Edition Black Original",
              "label_ids": [
                1718093079,
                1049112,
                1400005539,
                822059908662278,
                825465608499232,
                1119699,
                2098621
              ],
              "image": "id-11134207-8224q-mi0hsl7ud5oh31",
              "images": [
                "id-11134207-8224q-mi0hsl7ud5oh31",
                "id-11134207-8224o-mi0hsl7ssyyo65",
                "id-11134207-82251-mi0hsl7sudj4ee",
                "id-11134207-8224s-mi0hsl7uek8x4f",
                "id-11134207-8224u-mi0hsl7xaia02d",
                "id-11134207-8224y-mi0hsl7svs3k48"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765214830,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple Watch",
              "cmt_count": 0,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 265000000000,
              "price_min": 265000000000,
              "price_max": 265000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6vdvi-mi0ht5x7p4w45a.16000081765214553.mp4",
                  "thumb_url": "id-11110107-6vdvi-mi0ht5x7p4w45a_cover",
                  "duration": 35,
                  "version": 2,
                  "vid": "id-11110107-6vdvi-mi0ht5x7p4w45a",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6vdvi-mi0ht5x7p4w45a.16000081765214553.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvi-mi0ht5x7p4w45a.16000081765214553.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvi-mi0ht5x7p4w45a.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Majalengka",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 265000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 282238313934,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 265000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "yogaprmna99",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40677091570,
            "shopid": 778835250,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mi0hsl7ud5oh31\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718093079,1049112,1400005539,822059908662278,825465608499232,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":764,\"model_id\":282238313934,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mi0hsl7ud5oh31\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718093079,1049112,1400005539,822059908662278,825465608499232,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":764,\"model_id\":282238313934,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40677091570",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53702775239,
              "shopid": 408934982,
              "name": "PAKET Asset Tracker AT1 + Simcard + Server TrackSolid - Anti Maling",
              "label_ids": [
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608493600,
                825465608494624,
                1119699,
                2098621
              ],
              "image": "id-11134207-8224q-mhzv8aqgyoebe5",
              "images": [
                "id-11134207-8224q-mhzv8aqgyoebe5",
                "id-11134207-82251-mhzv8aqgx9tv35",
                "id-11134207-8224v-mhzv8aqh02yrde"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765186769,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Concox",
              "cmt_count": 0,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 70100000000,
              "price_min": 70100000000,
              "price_max": 70100000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "PAKET",
                  "options": [
                    "SIMCARD + 1 TAHUN",
                    "SIMCARD + LIFETIME"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 70100000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 360266896383,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 70100000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Tracksolid Official",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53702775239,
            "shopid": 408934982,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mhzv8aqgyoebe5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":552,\"model_id\":360266896383,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mhzv8aqgyoebe5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":552,\"model_id\":360266896383,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53702775239",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53252761371,
              "shopid": 408934982,
              "name": "Gps Portable Asset Tracker AT1 / GPS Tracker - Anti Maling",
              "label_ids": [
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608493600,
                825465608494624,
                1119699,
                2098621
              ],
              "image": "id-11134207-8224o-mhzv8aqgugozdd",
              "images": [
                "id-11134207-8224o-mhzv8aqgugozdd",
                "id-11134207-8224y-mhzv8aqgvv9fcc",
                "id-11134207-82250-mhzv8aqgt24j86"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765186162,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Concox",
              "cmt_count": 0,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 57900000000,
              "price_min": 57900000000,
              "price_max": 57900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 57900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 355266830949,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 57900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Tracksolid Official",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53252761371,
            "shopid": 408934982,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mhzv8aqgugozdd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":554,\"model_id\":355266830949,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mhzv8aqgugozdd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":554,\"model_id\":355266830949,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53252761371",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49502746430,
              "shopid": 1513565931,
              "name": "Smartwatch Alexander Christie S002 Rubber Strap Original Garansi Resmi 1 Tahun",
              "label_ids": [
                1400066568,
                844931064601283,
                2018619,
                298463379,
                1059152,
                700005489,
                822059908662278,
                825465608499232,
                1718093079,
                1119699,
                2098621,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224s-mhybt9z2ztvq7d",
              "images": [
                "id-11134207-8224s-mhybt9z2ztvq7d",
                "id-11134207-8224u-mhybt9z2olc68a",
                "id-11134207-8224q-mhybt9z2pzwmeb",
                "id-11134207-82251-mhybt9yz0jygdb",
                "id-11134207-8224p-mhybt9z2st1i05",
                "id-11134207-8224o-mhybt9z2u7lyb7",
                "id-11134207-8224z-mhybt9z2x0qu17",
                "id-11134207-8224o-mhybt9z2yfbae2",
                "id-11134207-8224w-mhybt9yz1yiw98"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765112676,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Alexandre Christie",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 300000000000,
              "price_min": 300000000000,
              "price_max": 300000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6venb-mhytgd9771tv72.16000041765113068.mp4",
                  "thumb_url": "id-11110107-6venb-mhytgd9771tv72_cover",
                  "duration": 27,
                  "version": 2,
                  "vid": "id-11110107-6venb-mhytgd9771tv72",
                  "formats": [
                    {
                      "format": 1600004,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6venb-mhytgd9771tv72.16000041765113068.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venb-mhytgd9771tv72.16000041765113068.mp4",
                      "width": 632,
                      "height": 360
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venb-mhytgd9771tv72.default.mp4",
                    "width": 636,
                    "height": 362
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Hitam",
                  "options": [
                    "Hitam",
                    "Merah",
                    "Kuning",
                    "Hijau",
                    "Hitam Silver"
                  ],
                  "images": [
                    "id-11134207-8224z-mhybt9yz3d3cd6",
                    "id-11134207-82250-mhybt9yz4rnsc3",
                    "id-11134207-8224w-mhybt9yz7kso99",
                    "id-11134207-8224o-mhybt9yz668842",
                    "id-11134207-8224s-mhybt9yz8zd4be"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 300000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 297235187706,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 300000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Hoki Arloji",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49502746430,
            "shopid": 1513565931,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhybt9z2ztvq7d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,2018619,298463379,1059152,700005489,822059908662278,825465608499232,1718093079,1119699,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":141,\"model_id\":297235187706,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhybt9z2ztvq7d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,2018619,298463379,1059152,700005489,822059908662278,825465608499232,1718093079,1119699,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":141,\"model_id\":297235187706,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49502746430",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50752680062,
              "shopid": 1625383942,
              "name": "[COD] VIVO GT2 Jam tangan pintar - GPS NFC Layar 2.3 inci Panggilan Bluetooth Pemantauan detak jantung dua Baterai Tahan lama Jam tangan pintar bisnis universal pria dan wanita",
              "label_ids": [
                1718087960,
                1428713,
                298463379,
                844931064601283,
                844931086908638,
                1049116,
                700005516,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                2018619,
                1400285055,
                298933384,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82250-mhwtnfqe172d72",
              "images": [
                "id-11134207-82250-mhwtnfqe172d72",
                "id-11134207-82251-mhwtnfqe2lmted",
                "id-11134207-8224q-mhwtnfqecflx8c",
                "id-11134207-8224v-mhwtnfqe407906",
                "id-11134207-8224w-mhwtnfqe5erp2f",
                "id-11134207-8224o-mhwtnfqeb11h95",
                "id-11134207-82252-mhwtnfqe6tc552",
                "id-11134207-8224u-mhwtnfqe87wl05",
                "id-11134207-8224z-mhwtnfqe9mh12f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765000716,
              "sold": 14,
              "historical_sold": 14,
              "liked": false,
              "liked_count": 20,
              "view_count": null,
              "catid": 100013,
              "brand": "Vivo",
              "cmt_count": 5,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 20900000000,
              "price_min": 20900000000,
              "price_max": 20900000000,
              "price_min_before_discount": 44000000000,
              "price_max_before_discount": 44000000000,
              "hidden_price_display": null,
              "price_before_discount": 44000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vena-mhwydqhrint209.16000031765000289.mp4",
                  "thumb_url": "id-11110105-6vena-mhwydqhrint209_cover",
                  "duration": 37,
                  "version": 2,
                  "vid": "id-11110105-6vena-mhwydqhrint209",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vena-mhwydqhrint209.16000031765000289.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vena-mhwydqhrint209.16000031765000289.mp4",
                      "width": 854,
                      "height": 480
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vena-mhwydqhrint209.default.mp4",
                    "width": 854,
                    "height": 480
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 388325991264720,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Sidoarjo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 17900100000,
                "strikethrough_price": 44000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1304797647224832,
                "discount_text": "-53%",
                "model_id": 440258305566,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1304797647224832,
                  "voucher_code": "FWJF87643",
                  "voucher_discount": 2999900000,
                  "time_info": {
                    "start_time": 1765003200,
                    "end_time": 1770967080,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 19999900000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 44000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 179.001",
                      "hidden_promotion_price": "Rp 1?9.001",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 14,
                "rounded_local_monthly_sold_count": 14,
                "local_monthly_sold_count_text": "14",
                "rounded_display_sold_count": 14,
                "display_sold_count_text": "14"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Casual smart watch store 2",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50752680062,
            "shopid": 1625383942,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhwtnfqe172d72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,298463379,844931064601283,844931086908638,1049116,700005516,822059908662278,825465608499232,825465608497696,1718093079,1119699,2018619,1400285055,298933384,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":288,\"model_id\":440258305566,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhwtnfqe172d72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,298463379,844931064601283,844931086908638,1049116,700005516,822059908662278,825465608499232,825465608497696,1718093079,1119699,2018619,1400285055,298933384,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":288,\"model_id\":440258305566,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50752680062",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47052619037,
              "shopid": 1679195087,
              "name": "Go Tech - Jam Tangan Anak Anti Air 4G Video Call  2 Camersa 360ยฐ Rotation B599 Smart Watch Kids Digital Smartwatch Kids GPS Waterproof Kids Smart Watch voice call gps dll GT",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718093079,
                298463379,
                298933384,
                1718087960,
                1428713,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-82278-mhuovhsqnqit37",
              "images": [
                "sg-11134201-82278-mhuovhsqnqit37",
                "sg-11134201-8225r-mhuovipaywow83",
                "sg-11134201-8226k-mhuoviz2n56ob2",
                "sg-11134201-8225c-mhuovjjv8zcxcd",
                "sg-11134201-8225m-mhuovjsbpm9v53",
                "sg-11134201-8226f-mhuovk04g6bl4e",
                "sg-11134201-8225x-mhuovkofo6wz74",
                "sg-11134201-8226l-mhuovkvz2zno38",
                "sg-11134201-8227x-mhuovlmxe7t0a7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764863229,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 21849000000,
              "price_min": 21849000000,
              "price_max": 21849000000,
              "price_min_before_discount": 70000000000,
              "price_max_before_discount": 70000000000,
              "hidden_price_display": null,
              "price_before_discount": 70000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-69%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "blue-Flip",
                    "black-Flip",
                    "green-Flip",
                    "purple-Flip",
                    "redblue-Flip",
                    "redblue-Flip."
                  ],
                  "images": [
                    "id-11134207-8224z-mhvlr4esda10ac",
                    "id-11134207-8224o-mhvm9wh47jsxb4",
                    "id-11134207-8224v-mhvm9wh0kwzm11",
                    "id-11134207-8224q-mhvm9wh0mbk274",
                    "id-11134207-8224v-mhvm9wh0nq4i5b",
                    "id-11134207-8224o-mhvm9wh0p4oyd9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 21349000000,
                "strikethrough_price": 70000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1304118194880512,
                "discount_text": "-69%",
                "model_id": 400251245341,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1304118194880512,
                  "voucher_code": "V6T5A01",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1764922740,
                    "end_time": 1772270340,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 18000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 70000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 213.490",
                      "hidden_promotion_price": "Rp 2?3.490",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Sahabat Digital Anak ",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47052619037,
            "shopid": 1679195087,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82278-mhuovhsqnqit37\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718093079,298463379,298933384,1718087960,1428713,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":846,\"model_id\":400251245341,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82278-mhuovhsqnqit37\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718093079,298463379,298933384,1718087960,1428713,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":846,\"model_id\":400251245341,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47052619037",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56202549908,
              "shopid": 59414059,
              "name": "[NEW PRODUCT] OLIKE Smartwatch For Runner FG02 Jam Tangan Pria Built-in GPS & Beidou, Sport & Strava Activity Sync, Layar AMOLED 1.43\", 3ATM Water Resistance",
              "label_ids": [
                298938357,
                700185027,
                700195012,
                2153644,
                700185028,
                700195016,
                700195013,
                1400095067,
                1400285005,
                1000109,
                1002164,
                1000167,
                1013217,
                1668726,
                1011692,
                1016119,
                1012865,
                2018618,
                2068629,
                844931086908638,
                844931064601283,
                298463379,
                1718093079,
                1119699,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                2213652,
                1428713,
                1718087960,
                1015914,
                700190087,
                1400285055,
                825465608492064,
                825465608493600,
                298468389,
                2098628,
                1718088045,
                2098629,
                298938368
              ],
              "image": "id-11134207-82250-mizcq36ok6wx56",
              "images": [
                "id-11134207-82250-mizcq36ok6wx56",
                "id-11134207-8224y-mjgiyh8e6djb1e",
                "id-11134207-8224p-mhtwte74jj7kdc",
                "id-11134207-8224y-mhtwte74nqww29",
                "id-11134207-8224u-mhtwte74rym8ce",
                "id-11134207-8224r-mhtwte74i4n48a",
                "id-11134207-8224y-mhtwte74gq2o73",
                "id-11134207-8224x-mhtwte74qk1sdd",
                "id-11134207-8224v-mhtwte7ccgsje1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764817445,
              "sold": 5,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 36,
              "view_count": null,
              "catid": 100013,
              "brand": "Olike",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 79900000000,
              "price_min": 79900000000,
              "price_max": 79900000000,
              "price_min_before_discount": 169900000000,
              "price_max_before_discount": 169900000000,
              "hidden_price_display": null,
              "price_before_discount": 169900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv4-mjdz83nwmepsc6.16000081768210029.mp4",
                  "thumb_url": "id-11110105-6vdv4-mjdz83nwmepsc6_cover",
                  "duration": 49,
                  "version": 2,
                  "vid": "id-11110105-6vdv4-mjdz83nwmepsc6",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv4-mjdz83nwmepsc6.16000081768210029.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mjdz83nwmepsc6.16000081768210029.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mjdz83nwmepsc6.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black"
                  ],
                  "images": [
                    "id-11134207-8224o-mhtx6oh0jv2bbf"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  0,
                  4
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-82250-mizcq36ok6wx56",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 414826233086441,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp266RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 820232957001728,
                "price": 79900000000,
                "strikethrough_price": 169900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 445247562751,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 169900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp266RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Olike Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56202549908,
            "shopid": 59414059,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mizcq36ok6wx56\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298938357,700185027,700195012,2153644,700185028,700195016,700195013,1400095067,1400285005,1000109,1002164,1000167,1013217,1668726,1011692,1016119,1012865,2018618,2068629,844931086908638,844931064601283,298463379,1718093079,1119699,700005490,1049120,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,2213652,1428713,1718087960,1015914,700190087,1400285055,825465608492064,825465608493600,298468389,2098628,1718088045,2098629,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":503,\"model_id\":445247562751,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mizcq36ok6wx56\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298938357,700185027,700195012,2153644,700185028,700195016,700195013,1400095067,1400285005,1000109,1002164,1000167,1013217,1668726,1011692,1016119,1012865,2018618,2068629,844931086908638,844931064601283,298463379,1718093079,1119699,700005490,1049120,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,2213652,1428713,1718087960,1015914,700190087,1400285055,825465608492064,825465608493600,298468389,2098628,1718088045,2098629,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":503,\"model_id\":445247562751,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56202549908",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47602577756,
              "shopid": 15078171,
              "name": "Apple Watch Serie 10 42mm Rosegold Ibox",
              "label_ids": [
                2018619,
                844931064601283,
                844931086908638,
                1059156,
                700005499,
                1718093079,
                822059908662278,
                825465608492064,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                2098621
              ],
              "image": "id-11134207-8224z-mhttkgms4mpuf1",
              "images": [
                "id-11134207-8224z-mhttkgms4mpuf1",
                "id-11134207-8224x-mhttkgmthsli01",
                "id-11134207-8224v-mhttkgmnpwjsc4",
                "id-11134207-82250-mhttkgmnohzcb4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764810774,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple Watch",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 550000000000,
              "price_min": 550000000000,
              "price_max": 550000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 550000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 440247115932,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 550000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Keyshops.id",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47602577756,
            "shopid": 15078171,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhttkgms4mpuf1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1059156,700005499,1718093079,822059908662278,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,1119699,298933384,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":680,\"model_id\":440247115932,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhttkgms4mpuf1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1059156,700005499,1718093079,822059908662278,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,1119699,298933384,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":680,\"model_id\":440247115932,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47602577756",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54352501028,
              "shopid": 308000918,
              "name": "Apple Watch 8",
              "label_ids": [
                700185071,
                700190019,
                844931064601283,
                298463379,
                1718093079,
                1119699,
                1400285055,
                1049155,
                1059156,
                2048660,
                2048661,
                825465608493600,
                825465608494624,
                822059908662278,
                825465608499232,
                825465608497696,
                700765096,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224p-miqbuw7vhmo1f7",
              "images": [
                "id-11134207-8224p-miqbuw7vhmo1f7",
                "id-11134207-8224u-miqbuw7vke81f8",
                "id-11134207-8224t-miqbuw7zwb9ga9",
                "id-11134207-82250-miqbuw7xmubs7a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764736108,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 7,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple Watch",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 318000000000,
              "price_min": 318000000000,
              "price_max": 318000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Sukoharjo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 318000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 325242367101,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 318000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Mr. O Phone",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54352501028,
            "shopid": 308000918,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-miqbuw7vhmo1f7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700185071,700190019,844931064601283,298463379,1718093079,1119699,1400285055,1049155,1059156,2048660,2048661,825465608493600,825465608494624,822059908662278,825465608499232,825465608497696,700765096,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":417,\"model_id\":325242367101,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-miqbuw7vhmo1f7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700185071,700190019,844931064601283,298463379,1718093079,1119699,1400285055,1049155,1059156,2048660,2048661,825465608493600,825465608494624,822059908662278,825465608499232,825465608497696,700765096,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":417,\"model_id\":325242367101,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54352501028",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50752453138,
              "shopid": 15574256,
              "name": "Strap Original Apple Watch Nike Sport Band 45mm",
              "label_ids": [
                844931064601283,
                1049142,
                1400000598,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                2098621
              ],
              "image": "id-11134207-8224t-mhrgs55amqyo9a",
              "images": [
                "id-11134207-8224t-mhrgs55amqyo9a",
                "id-11134207-82252-mhrgs557cr9k3f",
                "id-11134207-82250-mhrgs550hjb958",
                "id-11134207-8224w-mhrgs55ao5j4f5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764668139,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 50000000000,
              "price_min": 50000000000,
              "price_max": 50000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Rokan Hulu",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 50000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 355238095222,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 50000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "PreloveHype7",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50752453138,
            "shopid": 15574256,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mhrgs55amqyo9a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049142,1400000598,1718093079,822059908662278,825465608499232,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":221,\"model_id\":355238095222,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mhrgs55amqyo9a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049142,1400000598,1718093079,822059908662278,825465608499232,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":221,\"model_id\":355238095222,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50752453138",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45402442496,
              "shopid": 408934982,
              "name": "Gps Motorbike VG102 Concox Original - Anti Maling",
              "label_ids": [
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                2098621
              ],
              "image": "id-11134207-8224o-mhr28rhz7ll289",
              "images": [
                "id-11134207-8224o-mhr28rhz7ll289",
                "id-11134207-8224o-mhr28rhzaepyc4",
                "id-11134207-82251-mhr28rhzbtae8a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764644009,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 31500000000,
              "price_min": 31500000000,
              "price_max": 31500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "MOTOR",
                  "options": [
                    "PCX",
                    "VARIO",
                    "SCOOPY",
                    "FAZZIO",
                    "MIO",
                    "BEAT"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 31500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 360235798043,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 31500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Tracksolid Official",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45402442496,
            "shopid": 408934982,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mhr28rhz7ll289\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1049122,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":550,\"model_id\":360235798043,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mhr28rhz7ll289\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1049122,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":550,\"model_id\":360235798043,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45402442496",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50452393575,
              "shopid": 306592086,
              "name": "KIRO iPhone Smart Watch-support Whatsapp Reply-Watch Series 11 Smartwatch OLED 2.1\" Display for sport Smartwatch-Bluetooth 6.0 call-Dynamic Island-Tahan Air IP68 -Kompatibel Android iOS",
              "label_ids": [
                298938357,
                2018619,
                2068629,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1015914,
                700190087,
                1400285055,
                2098628,
                1718088045,
                298938368,
                298468389,
                2098629
              ],
              "image": "id-11134207-8224q-mhpzedcfn9qccf",
              "images": [
                "id-11134207-8224q-mhpzedcfn9qccf",
                "id-11134207-8224q-mhpzedc9fxfkb9",
                "id-11134207-8224p-mhpzedc9d4aoaa",
                "id-11134207-8224t-mhpzedc9iqkg1a",
                "id-11134207-8224w-mhpzedc9k54w7d",
                "id-11134207-8224q-mhpzedc9eiv477",
                "id-11134207-82252-mhpzedc9ocu806",
                "id-11134207-8224z-mhpzedc9preo7d",
                "id-11134207-8224y-mhpzedc9ljpc5d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764579574,
              "sold": 57,
              "historical_sold": 69,
              "liked": false,
              "liked_count": 60,
              "view_count": null,
              "catid": 100013,
              "brand": "KIRO",
              "cmt_count": 26,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 32800000000,
              "price_min": 32800000000,
              "price_max": 32800000000,
              "price_min_before_discount": 69900000000,
              "price_max_before_discount": 69900000000,
              "hidden_price_display": null,
              "price_before_discount": 69900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvh-mife5mdtxfyf7b.16000081766116431.mp4",
                  "thumb_url": "id-11110105-6vdvh-mife5mdtxfyf7b_cover",
                  "duration": 26,
                  "version": 2,
                  "vid": "id-11110105-6vdvh-mife5mdtxfyf7b",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvh-mife5mdtxfyf7b.16000081766116431.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvh-mife5mdtxfyf7b.16000081766116431.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvh-mife5mdtxfyf7b.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Perak",
                    "Pink"
                  ],
                  "images": [
                    "id-11134207-8224s-mgnupjiz9wjx99",
                    "id-11134207-8224w-mgnupjizbb4d12",
                    "id-11134207-8224p-mgnvzdsq5tse8e"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.846153846153846,
                "rating_count": [
                  26,
                  1,
                  0,
                  0,
                  0,
                  25
                ],
                "rcount_with_context": 6,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp109RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228201603547136,
                "price": 32800000000,
                "strikethrough_price": 69900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 325232132006,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 69900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 69,
                "rounded_local_monthly_sold_count": 57,
                "local_monthly_sold_count_text": "57",
                "rounded_display_sold_count": 69,
                "display_sold_count_text": "69"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp109RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "JJStore2",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50452393575,
            "shopid": 306592086,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mhpzedcfn9qccf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298938357,2018619,2068629,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1718093079,1015914,700190087,1400285055,2098628,1718088045,298938368,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":637,\"model_id\":325232132006,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mhpzedcfn9qccf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298938357,2018619,2068629,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1718093079,1015914,700190087,1400285055,2098628,1718088045,298938368,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":637,\"model_id\":325232132006,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50452393575",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48802415228,
              "shopid": 1659072746,
              "name": "Cityjungle Smartwatch GPSAir | GPS Frekuensi Ganda Multi Sistem | Support Strava | Layar AMOLED 1,32โ€ HD | Pemantauan Kesehatan Lengkap | Tahan Air 5ATM | Baterai 360mAh Tahan Lama | 170+ Mode Olahraga | Jam Tangan Wanita & Pria",
              "label_ids": [
                2018618,
                298938357,
                298888358,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                700005490,
                1049120,
                1718093079,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                840990690654214,
                840955085144628,
                2213652,
                1015914,
                700190087,
                298933384,
                2048661,
                825465608493600,
                2048660,
                700765096,
                1400285055,
                700810055,
                298938368,
                2098629,
                2098628,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224v-mhpmfo7n9jwj54",
              "images": [
                "id-11134207-8224v-mhpmfo7n9jwj54",
                "id-11134207-8224p-mhpofei3qo7acc",
                "id-11134207-82252-mhpofehzpzphae",
                "id-11134207-8224o-mhpofehzls0582",
                "id-11134207-8224p-mhpofehzre9x33",
                "id-11134207-82250-mhpofehziyv988",
                "id-11134207-8224p-mhpofehzn6klc6",
                "id-11134207-8224t-mhpofehzol51ac",
                "id-11134207-8224p-mhpofehzkdfpd4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764569843,
              "sold": 95,
              "historical_sold": 99,
              "liked": false,
              "liked_count": 334,
              "view_count": null,
              "catid": 100013,
              "brand": "CITYJUNGLE",
              "cmt_count": 53,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 79500000000,
              "price_min": 79500000000,
              "price_max": 79500000000,
              "price_min_before_discount": 279000000000,
              "price_max_before_discount": 279000000000,
              "hidden_price_display": null,
              "price_before_discount": 279000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-72%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vena-mhptkeerpj438a.16000081764568479.mp4",
                  "thumb_url": "id-11110105-6vena-mhptkeerpj438a_cover",
                  "duration": 46,
                  "version": 2,
                  "vid": "id-11110105-6vena-mhptkeerpj438a",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vena-mhptkeerpj438a.16000081764568479.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vena-mhptkeerpj438a.16000081764568479.mp4",
                      "width": 1278,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vena-mhptkeerpj438a.default.mp4",
                    "width": 958,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Emas mawar",
                    "Hitam+Nylon Magnetik",
                    "Emasr+Nylon Magneti"
                  ],
                  "images": [
                    "id-11134207-82252-mhpmfo7qqkg12b",
                    "id-11134207-8224p-mhpu8lwcaqdg3c",
                    "id-11134207-8224x-mj9ngtgo5fyd82",
                    "id-11134207-8224r-mhpu8lwclywyce"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.90566037735849,
                "rating_count": [
                  53,
                  0,
                  0,
                  1,
                  3,
                  49
                ],
                "rcount_with_context": 11,
                "rcount_with_image": 9
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-8224v-mhpmfo7n9jwj54",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 399316208595153,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp112RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228244620324865,
                "price": 67500000000,
                "strikethrough_price": 279000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1299792132456448,
                "discount_text": "-72%",
                "model_id": 355231166277,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1299792132456448,
                  "voucher_code": "CITYQD120",
                  "voucher_discount": 12000000000,
                  "time_info": {
                    "start_time": 1764406560,
                    "end_time": 1772470740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 279000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 99,
                "rounded_local_monthly_sold_count": 95,
                "local_monthly_sold_count_text": "95",
                "rounded_display_sold_count": 99,
                "display_sold_count_text": "99"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp112RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CITYJUNGLE Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48802415228,
            "shopid": 1659072746,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mhpmfo7n9jwj54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298938357,298888358,1428713,1718087960,844931086908638,844931064601283,298463379,700005490,1049120,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,840990690654214,840955085144628,2213652,1015914,700190087,298933384,2048661,825465608493600,2048660,700765096,1400285055,700810055,298938368,2098629,2098628,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":334,\"model_id\":355231166277,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mhpmfo7n9jwj54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298938357,298888358,1428713,1718087960,844931086908638,844931064601283,298463379,700005490,1049120,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,840990690654214,840955085144628,2213652,1015914,700190087,298933384,2048661,825465608493600,2048660,700765096,1400285055,700810055,298938368,2098629,2098628,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":334,\"model_id\":355231166277,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48802415228",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52202346427,
              "shopid": 75057008,
              "name": "apple watch 7+GPS 41mm starlight",
              "label_ids": [
                844931064601283,
                1049116,
                1049117,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1718093079,
                1119699,
                298933384
              ],
              "image": "id-11134207-8224p-mhodwijwx5vpc6",
              "images": [
                "id-11134207-8224p-mhodwijwx5vpc6",
                "id-11134207-8224u-mhodwijo9bswa1",
                "id-11134207-8224v-mhodwijqadc341",
                "id-11134207-8224v-mhq8ko1kefwgcd",
                "id-11134207-8224o-mhzgivcaoqv4bb",
                "id-11134207-8224w-mimxkqs66juu0c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764481957,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple Watch",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 200000000000,
              "price_min": 200000000000,
              "price_max": 200000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 200000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 272214437036,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 200000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "arizal182",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52202346427,
            "shopid": 75057008,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mhodwijwx5vpc6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049117,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":162,\"model_id\":272214437036,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mhodwijwx5vpc6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049117,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":162,\"model_id\":272214437036,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52202346427",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43026880197,
              "shopid": 4981391,
              "name": "Xiaomi Mi Band 7 - black",
              "label_ids": [
                2018619,
                844931064601283,
                298463379,
                1059150,
                700005498,
                822059908662278,
                825465608497696,
                2048660,
                2048661,
                825465608493600,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                700765096,
                2098621,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224s-mhndeh5yyy9wfa",
              "images": [
                "id-11134207-8224s-mhndeh5yyy9wfa",
                "id-11134207-8224v-mhndeh5uelty40",
                "id-11134207-8224x-mhndeh6i7g8wa7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764420282,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Xiaomi",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 34950000000,
              "price_min": 34950000000,
              "price_max": 34950000000,
              "price_min_before_discount": 49900000000,
              "price_max_before_discount": 49900000000,
              "hidden_price_display": null,
              "price_before_discount": 49900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-30%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Medan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 826865225352192,
                "price": 34950000000,
                "strikethrough_price": 49900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-30%",
                "model_id": 302213295403,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 49900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "jvcell",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43026880197,
            "shopid": 4981391,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhndeh5yyy9wfa\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1059150,700005498,822059908662278,825465608497696,2048660,2048661,825465608493600,825465608494624,825465608499232,1718093079,1119699,700765096,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":588,\"model_id\":302213295403,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhndeh5yyy9wfa\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1059150,700005498,822059908662278,825465608497696,2048660,2048661,825465608493600,825465608494624,825465608499232,1718093079,1119699,700765096,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":588,\"model_id\":302213295403,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43026880197",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56002314080,
              "shopid": 1659072746,
              "name": "Cityjungle NeoGPS (DM56) Smartwatch GPS Frekuensi Ganda Layar Sentuh AMOLED 1.43\" Tahan Air 5ATM Kompas Bluetooth Panggilan Altimeter Tekanan Udara Pelacakan Olahraga Real-Time",
              "label_ids": [
                2018618,
                298938357,
                298888358,
                844931086908638,
                844931064601283,
                700005490,
                1049120,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1718087960,
                1428713,
                298463379,
                2213652,
                1015914,
                700190087,
                840990690654214,
                840955085144628,
                298933384,
                825465608493600,
                2048660,
                2048661,
                700765096,
                1400285055,
                700810055,
                2098629,
                2098628,
                298468389,
                298938368,
                1718088045
              ],
              "image": "id-11134207-8224s-mhn51chpn285a9",
              "images": [
                "id-11134207-8224s-mhn51chpn285a9",
                "id-11134207-8224r-mhn51chpogsl0f",
                "id-11134207-8224p-mhn51chppvd1f0",
                "id-11134207-8224o-mhn51chpr9xh48",
                "id-11134207-8224u-mhn51chpsohx65",
                "id-11134207-8224w-mhn51chpu32da8",
                "id-11134207-8224q-mhn51chpww794b",
                "id-11134207-8224y-mhihoqoqlzb4fe",
                "id-11134207-8224q-mhn51chpvhmtd5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764408783,
              "sold": 1,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 28,
              "view_count": null,
              "catid": 100013,
              "brand": "CITYJUNGLE",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 72500000000,
              "price_min": 72500000000,
              "price_max": 72500000000,
              "price_min_before_discount": 240000000000,
              "price_max_before_discount": 240000000000,
              "hidden_price_display": null,
              "price_before_discount": 240000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-70%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven7-mhpv6uhs07wjbc.16000081764571234.mp4",
                  "thumb_url": "id-11110105-6ven7-mhpv6uhs07wjbc_cover",
                  "duration": 37,
                  "version": 2,
                  "vid": "id-11110105-6ven7-mhpv6uhs07wjbc",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven7-mhpv6uhs07wjbc.16000081764571234.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven7-mhpv6uhs07wjbc.16000081764571234.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven7-mhpv6uhs07wjbc.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam-NeoGPS(DM56)",
                    "Perak-NeoGPS(DM56)",
                    "Hitam-GPS2(B78)",
                    "Merah-GPS2(B78)"
                  ],
                  "images": [
                    "id-11134207-8224s-mhn51chpn285a9",
                    "id-11134207-82251-mhn51chplnnp65",
                    "id-11134207-8224z-mhn33n00xg5c61",
                    "id-11134207-82250-mhn51chls003bd"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 400303711338588,
                "add_on_deal_label": "Kombo Hemat",
                "sub_type": 0,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp99RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228244620324865,
                "price": 59500000000,
                "strikethrough_price": 240000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1326121832955904,
                "discount_text": "-70%",
                "model_id": 425224807243,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1326121832955904,
                  "voucher_code": "CITY130KK",
                  "voucher_discount": 13000000000,
                  "time_info": {
                    "start_time": 1767545400,
                    "end_time": 1775581140,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 240000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp99RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CITYJUNGLE Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56002314080,
            "shopid": 1659072746,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhn51chpn285a9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298938357,298888358,844931086908638,844931064601283,700005490,1049120,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1718087960,1428713,298463379,2213652,1015914,700190087,840990690654214,840955085144628,298933384,825465608493600,2048660,2048661,700765096,1400285055,700810055,2098629,2098628,298468389,298938368,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":335,\"model_id\":425224807243,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhn51chpn285a9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298938357,298888358,844931086908638,844931064601283,700005490,1049120,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1718087960,1428713,298463379,2213652,1015914,700190087,840990690654214,840955085144628,298933384,825465608493600,2048660,2048661,700765096,1400285055,700810055,2098629,2098628,298468389,298938368,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":335,\"model_id\":425224807243,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56002314080",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48202337921,
              "shopid": 1659072746,
              "name": "Cityjungle B78 Smartwatch GPS | Tahan Air 5ATM,Cocok untuk Renang & Aktivitas Outdoor | Layar AMOLED 1.43โ€ Full Touch | Kompas, Altimeter & Barometer | 170+ Mode Olahraga Outdoor | Detak Jantung & Oksigen | Panggilan Bluetooth & Notifikasi",
              "label_ids": [
                2018618,
                298888358,
                298938357,
                844931064601283,
                844931086908638,
                1718093079,
                1049120,
                700005490,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1718087960,
                1428713,
                298463379,
                2213652,
                1015914,
                700190087,
                840955085144628,
                840990690654214,
                825465608493600,
                2048661,
                2048660,
                700765096,
                298933384,
                700810055,
                1400285055,
                1718088045,
                298468389,
                2098628,
                298938368,
                2098629
              ],
              "image": "id-11134207-8224z-mhn33n00xg5c61",
              "images": [
                "id-11134207-8224z-mhn33n00xg5c61",
                "id-11134207-8224o-mhn33n00yups73",
                "id-11134207-8224o-mhn33n0109a8ca",
                "id-11134207-8224r-mhn33n011nuod9",
                "id-11134207-8224o-mhn33n0132f44b",
                "id-11134207-8224r-mhn33n014gzk4b",
                "id-11134207-8224x-mhn33n018oow95",
                "id-11134207-82251-mhn33n017a4gd6",
                "id-11134207-8224p-mhn33n015vk0b0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764406215,
              "sold": 29,
              "historical_sold": 32,
              "liked": false,
              "liked_count": 189,
              "view_count": null,
              "catid": 100013,
              "brand": "CITYJUNGLE",
              "cmt_count": 24,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 72500000000,
              "price_min": 72500000000,
              "price_max": 72500000000,
              "price_min_before_discount": 240000000000,
              "price_max_before_discount": 240000000000,
              "hidden_price_display": null,
              "price_before_discount": 240000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-70%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven2-mhpupcz5ahhief.16000081764570404.mp4",
                  "thumb_url": "id-11110105-6ven2-mhpupcz5ahhief_cover",
                  "duration": 59,
                  "version": 2,
                  "vid": "id-11110105-6ven2-mhpupcz5ahhief",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven2-mhpupcz5ahhief.16000081764570404.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven2-mhpupcz5ahhief.16000081764570404.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven2-mhpupcz5ahhief.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam-GPS2(B78)",
                    "Merah-GPS2(B78)",
                    "Hitam-NeoGPS(DM56)",
                    "Perak-NeoGPS(DM56)"
                  ],
                  "images": [
                    "id-11134207-8224z-mhn33n00xg5c61",
                    "id-11134207-82250-mhn51chls003bd",
                    "id-11134207-82250-mhn51chpk9396f",
                    "id-11134207-82251-mhn51chplnnp65"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  24,
                  0,
                  0,
                  0,
                  0,
                  24
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 6
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 400303711338588,
                "add_on_deal_label": "Kombo Hemat",
                "sub_type": 0,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp95RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228244620324865,
                "price": 57500000000,
                "strikethrough_price": 240000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1313592406196224,
                "discount_text": "-70%",
                "model_id": 420224600672,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1313592406196224,
                  "voucher_code": "CITY150GP",
                  "voucher_discount": 15000000000,
                  "time_info": {
                    "start_time": 1766051640,
                    "end_time": 1774112340,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 240000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 32,
                "rounded_local_monthly_sold_count": 29,
                "local_monthly_sold_count_text": "29",
                "rounded_display_sold_count": 32,
                "display_sold_count_text": "32"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp95RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CITYJUNGLE Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48202337921,
            "shopid": 1659072746,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhn33n00xg5c61\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298888358,298938357,844931064601283,844931086908638,1718093079,1049120,700005490,822059908662278,825465608499232,825465608497696,825465608494624,1718087960,1428713,298463379,2213652,1015914,700190087,840955085144628,840990690654214,825465608493600,2048661,2048660,700765096,298933384,700810055,1400285055,1718088045,298468389,2098628,298938368,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":333,\"model_id\":420224600672,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhn33n00xg5c61\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298888358,298938357,844931064601283,844931086908638,1718093079,1049120,700005490,822059908662278,825465608499232,825465608497696,825465608494624,1718087960,1428713,298463379,2213652,1015914,700190087,840955085144628,840990690654214,825465608493600,2048661,2048660,700765096,298933384,700810055,1400285055,1718088045,298468389,2098628,298938368,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":333,\"model_id\":420224600672,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48202337921",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53852146635,
              "shopid": 1673477956,
              "name": "Quickfit Strap Garmin Fenix 5s Tali Jam Gps Watch Band Quick Fit 20mm",
              "label_ids": [
                844931064601283,
                700005486,
                1049112,
                822059908662278,
                825465608499232,
                2098621,
                1718093079,
                1428713,
                1718087960,
                298463379,
                700700063,
                298468389,
                1718088045
              ],
              "image": "id-11134201-8224v-mhj36nstdvyd19",
              "images": [
                "id-11134201-8224v-mhj36nstdvyd19",
                "id-11134201-8224s-mhj36ptf2qyu8c",
                "id-11134201-82250-mhj36shpbfgkc5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764160902,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 32200000000,
              "price_min": 32200000000,
              "price_max": 32200000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "1. Biru Muda",
                    "2.Hijau Stabilo",
                    "3. Biru Navy",
                    "4.Stone Abu Tua",
                    "5. Kuning",
                    "6. Ungu",
                    "7. Merah",
                    "8. Putih",
                    "9. Hitam",
                    "10. Orange",
                    "11. Hijau Mint"
                  ],
                  "images": [
                    "id-11134201-8224v-mhj36nstdvyd19",
                    "id-11134201-8224v-mhj36nstdvyd19",
                    "id-11134201-8224v-mhj36nstdvyd19",
                    "id-11134201-8224v-mhj36nstdvyd19",
                    "id-11134201-8224v-mhj36nstdvyd19",
                    "id-11134201-8224v-mhj36nstdvyd19",
                    "id-11134201-8224v-mhj36nstdvyd19",
                    "id-11134201-8224v-mhj36nstdvyd19",
                    "id-11134201-8224v-mhj36nstdvyd19",
                    "id-11134201-8224v-mhj36nstdvyd19",
                    "id-11134201-8224v-mhj36nstdvyd19"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 31300000000,
                "strikethrough_price": 32200000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1303337307750400,
                "discount_text": null,
                "model_id": 292203652141,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1303337307750400,
                  "voucher_code": "MIST17",
                  "voucher_discount": 900000000,
                  "time_info": {
                    "start_time": 1764829620,
                    "end_time": 1772263620,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 28000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 32200000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Elham Good",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53852146635,
            "shopid": 1673477956,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mhj36nstdvyd19\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005486,1049112,822059908662278,825465608499232,2098621,1718093079,1428713,1718087960,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":217,\"model_id\":292203652141,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mhj36nstdvyd19\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005486,1049112,822059908662278,825465608499232,2098621,1718093079,1428713,1718087960,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":217,\"model_id\":292203652141,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53852146635",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53852141590,
              "shopid": 1673477956,
              "name": "Strap Tali Jam Gps Garmin Vivoactive HR Watch Band Murah",
              "label_ids": [
                700005486,
                1049112,
                822059908662278,
                825465608499232,
                844931064601283,
                2098621,
                1718093079,
                1718087960,
                1428713,
                298463379,
                700700063,
                298468389,
                1718088045
              ],
              "image": "id-11134201-82251-mhj2w3r1uqrl64",
              "images": [
                "id-11134201-82251-mhj2w3r1uqrl64",
                "id-11134201-8224v-mhj2w4spmlmu31",
                "id-11134201-8224x-mhj2w61633t044"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764160415,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 33000000000,
              "price_min": 33000000000,
              "price_max": 33000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "1. Tosca",
                    "2. Hijau Mint",
                    "3.Hijau Stabilo",
                    "4.Biru Navy",
                    "5.Biru Elektrik",
                    "6. Hitam",
                    "7. Abu-abu",
                    "8. Putih",
                    "9. Orange"
                  ],
                  "images": [
                    "id-11134201-82251-mhj2w3r1uqrl64",
                    "id-11134201-82251-mhj2w3r1uqrl64",
                    "id-11134201-82251-mhj2w3r1uqrl64",
                    "id-11134201-82251-mhj2w3r1uqrl64",
                    "id-11134201-82251-mhj2w3r1uqrl64",
                    "id-11134201-82251-mhj2w3r1uqrl64",
                    "id-11134201-82251-mhj2w3r1uqrl64",
                    "id-11134201-82251-mhj2w3r1uqrl64",
                    "id-11134201-82251-mhj2w3r1uqrl64"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 32100000000,
                "strikethrough_price": 33000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1303337307750400,
                "discount_text": null,
                "model_id": 282203635028,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1303337307750400,
                  "voucher_code": "MIST17",
                  "voucher_discount": 900000000,
                  "time_info": {
                    "start_time": 1764829620,
                    "end_time": 1772263620,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 28000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 33000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Elham Good",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53852141590,
            "shopid": 1673477956,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mhj2w3r1uqrl64\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005486,1049112,822059908662278,825465608499232,844931064601283,2098621,1718093079,1718087960,1428713,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":218,\"model_id\":282203635028,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mhj2w3r1uqrl64\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005486,1049112,822059908662278,825465608499232,844931064601283,2098621,1718093079,1718087960,1428713,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":218,\"model_id\":282203635028,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53852141590",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48702136143,
              "shopid": 1662024727,
              "name": "Samsung Galaxy Watch8 40mm / Watch 8 40mm.",
              "label_ids": [
                844931064601283,
                1059152,
                700005487,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079
              ],
              "image": "sg-11134275-82262-mhifhwbj3v9h09",
              "images": [
                "sg-11134275-82262-mhifhwbj3v9h09",
                "sg-11134275-8224w-mhifhw2p11qc92",
                "sg-11134275-82264-mhifhw643egw6f",
                "sg-11134275-8226t-mhifhw16bpj660",
                "sg-11134275-82289-mhifhw8kcphgdc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764121669,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 851522000000,
              "price_min": 851522000000,
              "price_max": 851522000000,
              "price_min_before_discount": 868900000000,
              "price_max_before_discount": 868900000000,
              "hidden_price_display": null,
              "price_before_discount": 868900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-2%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "Graphite",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134275-8226s-mhifhwis6h3694",
                    "sg-11134275-8227l-mhifhx0dhkoyc7"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 795434419798016,
                "price": 851322000000,
                "strikethrough_price": 868900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1293090296971264,
                "discount_text": "-2%",
                "model_id": 340205449565,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1293090296971264,
                  "voucher_code": "INDR2K",
                  "voucher_discount": 200000000,
                  "time_info": {
                    "start_time": 1763608080,
                    "end_time": 1771646880,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 868900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "indriaanishiinta",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48702136143,
            "shopid": 1662024727,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134275-82262-mhifhwbj3v9h09\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005487,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":643,\"model_id\":340205449565,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134275-82262-mhifhwbj3v9h09\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005487,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":643,\"model_id\":340205449565,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48702136143",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50152099010,
              "shopid": 1631362272,
              "name": "GPS Garmin 66s Bekas Murah Dengan Garansi 1 Bulan",
              "label_ids": [
                1400066568,
                844931064601283,
                700005490,
                700005495,
                1718093079,
                822059908662278,
                825465608497696,
                2048660,
                2048661,
                825465608494624,
                825465608499232,
                1119699,
                700765096,
                298463379,
                298933384,
                2098621,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82251-mhhplf1nngugbc",
              "images": [
                "id-11134207-82251-mhhplf1nngugbc",
                "id-11134207-82251-mhhplf1novew9a",
                "id-11134207-8224y-mhhplf1nq9zc56"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764100841,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 650000000000,
              "price_min": 650000000000,
              "price_max": 650000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 650000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 325204759090,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 650000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Afandi Survey DI",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50152099010,
            "shopid": 1631362272,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mhhplf1nngugbc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,700005490,700005495,1718093079,822059908662278,825465608497696,2048660,2048661,825465608494624,825465608499232,1119699,700765096,298463379,298933384,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":259,\"model_id\":325204759090,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mhhplf1nngugbc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,700005490,700005495,1718093079,822059908662278,825465608497696,2048660,2048661,825465608494624,825465608499232,1119699,700765096,298463379,298933384,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":259,\"model_id\":325204759090,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50152099010",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46402092797,
              "shopid": 34558647,
              "name": "Redmi Watch 2 Lite Mulus Fullset Bonus Hard Case",
              "label_ids": [
                844931064601283,
                1718093079,
                1119699,
                2098621,
                700005490,
                700005495,
                822059908662278,
                825465608493600,
                825465608499232,
                825465608497696
              ],
              "image": "id-11134207-8224z-mhhh94ze7g8w81",
              "images": [
                "id-11134207-8224z-mhhh94ze7g8w81"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764063584,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Redmi",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 35000000000,
              "price_min": 35000000000,
              "price_max": 35000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 35000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 430202361392,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 35000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "onlin_shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46402092797,
            "shopid": 34558647,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhhh94ze7g8w81\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1119699,2098621,700005490,700005495,822059908662278,825465608493600,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":727,\"model_id\":430202361392,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhhh94ze7g8w81\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1119699,2098621,700005490,700005495,822059908662278,825465608493600,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":727,\"model_id\":430202361392,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46402092797",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46602067050,
              "shopid": 340471827,
              "name": "Apple Watch Series 9 45mm Starlight BH99% Fullset Original iWatch",
              "label_ids": [
                2018619,
                844931064601283,
                298463379,
                1718093079,
                1119699,
                2098621,
                1059152,
                700005489,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82251-mizs0pcveg3qe0",
              "images": [
                "id-11134207-82251-mizs0pcveg3qe0",
                "id-11134207-82250-mizs0pc5x79g18",
                "id-11134207-8224z-mizs0pc7y8sla6",
                "id-11134207-8224u-mizs0pcb17nq6a",
                "id-11134207-8224x-mizs0pd0ighz56",
                "id-11134207-8224o-mizs0pd0h1xjaa",
                "id-11134207-8224z-mizs0pgajke989",
                "id-11134207-8224u-mizs0pi0s078cf",
                "id-11134207-82252-mizs0pijs2rn67"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764038517,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 7,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 350000000000,
              "price_min": 350000000000,
              "price_max": 350000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 350000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 277198596065,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 350000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ggapple",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46602067050,
            "shopid": 340471827,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mizs0pcveg3qe0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1718093079,1119699,2098621,1059152,700005489,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":814,\"model_id\":277198596065,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mizs0pcveg3qe0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1718093079,1119699,2098621,1059152,700005489,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":814,\"model_id\":277198596065,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46602067050",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56852055876,
              "shopid": 1579640819,
              "name": "Garmin Venu 3S Smartwatch - Garansi Resmi Garmin Indonesia",
              "label_ids": [
                844931064601283,
                844931086908638,
                1049116,
                1049117,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699
              ],
              "image": "id-11134207-8224t-mhh26gyjxfk495",
              "images": [
                "id-11134207-8224t-mhh26gyjxfk495",
                "id-11134207-8224y-mhh26gysfnd147",
                "id-11134207-8224v-mhh26hcqafpc4b",
                "id-11134207-8224o-mhh26gyj3xmu3c",
                "id-11134207-8224q-mhh26gyj5c7aea"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764038260,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 699900000000,
              "price_min": 699900000000,
              "price_max": 699900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Soft Gold Ivory",
                    "Slate Pebble Gray",
                    "SoftGold French Gray"
                  ],
                  "images": [
                    "id-11134207-8224x-mhh26gyj6qrq9f",
                    "id-11134207-8224z-mhh26gyj85c602",
                    "id-11134207-8224z-mhh26gyj9jwmc9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 699900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 345200038335,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 699900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KDMP Mabung Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56852055876,
            "shopid": 1579640819,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mhh26gyjxfk495\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049116,1049117,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":660,\"model_id\":345200038335,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mhh26gyjxfk495\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049116,1049117,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":660,\"model_id\":345200038335,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56852055876",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51602006450,
              "shopid": 1579640819,
              "name": "Garmin Venu 3 Smartwatch - Garansi Resmi Garmin Indonesia",
              "label_ids": [
                844931086908638,
                844931064601283,
                1049116,
                1049117,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699
              ],
              "image": "id-11134207-82250-mhfrj5xaerda97",
              "images": [
                "id-11134207-82250-mhfrj5xaerda97",
                "id-11134207-8224x-mhfrj5xc7dhr91",
                "id-11134207-82250-mhfrj61hon4dde",
                "id-11134207-8224u-mhfrj5xaby8e26",
                "id-11134207-8224q-mhfrj5xadcsuf3",
                "id-11134207-8224r-mhfrj5xag5xq29"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763959811,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 689900000000,
              "price_min": 689900000000,
              "price_max": 689900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Slate Black",
                    "Silver Whitestone"
                  ],
                  "images": [
                    "id-11134207-8224p-mhfrj5xahki69a",
                    "id-11134207-82251-mhfrj5xaiz2mea"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 689900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 262196422124,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 689900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KDMP Mabung Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51602006450,
            "shopid": 1579640819,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhfrj5xaerda97\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049116,1049117,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":661,\"model_id\":262196422124,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhfrj5xaerda97\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049116,1049117,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":661,\"model_id\":262196422124,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51602006450",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53151999180,
              "shopid": 270686239,
              "name": "ORIN OBU T1 - GPS Tracker Alat Pelacak Lokasi Mobil Tanpa DUAL USB Lighter CHARGER Plug & Play",
              "label_ids": [
                1400066568,
                2018619,
                844931064601283,
                844931086908638,
                1718093079,
                1119699,
                1049117,
                1049116,
                822059908662278,
                825465608492064,
                825465608499232,
                825465608497696,
                2218763
              ],
              "image": "id-11134207-8224p-mhfmoxxyww0829",
              "images": [
                "id-11134207-8224p-mhfmoxxyww0829",
                "id-11134207-8224r-mhfmoxxysoawe9",
                "id-11134207-8224t-mhfmoxxyr9qg99",
                "id-11134207-8224o-mhfmoxxypv6019"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763953636,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "VASTEL",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 125000000000,
              "price_min": 125000000000,
              "price_max": 125000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "PAKET",
                  "options": [
                    "UNIT ONLY",
                    "+KUOTA 1THN"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 125000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 272195928133,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 125000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ORIN Indonesia",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53151999180,
            "shopid": 270686239,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mhfmoxxyww0829\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,844931086908638,1718093079,1119699,1049117,1049116,822059908662278,825465608492064,825465608499232,825465608497696,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":184,\"model_id\":272195928133,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mhfmoxxyww0829\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,844931086908638,1718093079,1119699,1049117,1049116,822059908662278,825465608492064,825465608499232,825465608497696,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":184,\"model_id\":272195928133,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53151999180",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49252014740,
              "shopid": 270686239,
              "name": "BUY 1 GET 1 FREE! ORIN OBU M GPS Tracker Motor Alat Pelacak JPS Lokasi Jarak Jauh Tersembunyi + ORIN TAG",
              "label_ids": [
                844931086908638,
                844931064601283,
                1400066568,
                2018619,
                1718093079,
                1119699,
                1049116,
                1049117,
                822059908662278,
                825465608492064,
                825465608499232,
                825465608497696,
                2218763
              ],
              "image": "id-11134207-8224q-mhfmoxxz13pk8b",
              "images": [
                "id-11134207-8224q-mhfmoxxz13pk8b",
                "id-11134207-8224v-mhfocgr9gwztdb",
                "id-11134207-8224s-mhfocgr9e3ux97",
                "id-11134207-8224y-mhfocgr9fifd45",
                "id-11134207-82252-mhfocgr9baq1aa"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763951356,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "VASTEL",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 125000000000,
              "price_min": 125000000000,
              "price_max": 125000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "PAKET",
                  "options": [
                    "UNIT ONLY",
                    "+KUOTA 1BLN"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 125000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 405195287258,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 125000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ORIN Indonesia",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49252014740,
            "shopid": 270686239,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mhfmoxxz13pk8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1400066568,2018619,1718093079,1119699,1049116,1049117,822059908662278,825465608492064,825465608499232,825465608497696,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":182,\"model_id\":405195287258,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mhfmoxxz13pk8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1400066568,2018619,1718093079,1119699,1049116,1049117,822059908662278,825465608492064,825465608499232,825465608497696,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":182,\"model_id\":405195287258,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49252014740",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40476673688,
              "shopid": 270686239,
              "name": "ORIN TAG Mini IOS Apple GPS Tracker Motor dan Kunci Anti Maling Pelacak Apple iCloud Find My JPS Tanpa Sim Card",
              "label_ids": [
                1400066568,
                2018619,
                844931064601283,
                844931086908638,
                1119699,
                1718093079,
                1049116,
                1049117,
                822059908662278,
                825465608492064,
                825465608499232,
                825465608497696,
                2218763
              ],
              "image": "id-11134207-8224s-mhd1jgt3t72ie8",
              "images": [
                "id-11134207-8224s-mhd1jgt3t72ie8",
                "id-11134207-8224q-mhd1jgt3ulmy36",
                "id-11134207-8224x-mhd0t1ek4etm84",
                "id-11134207-8224r-mhd1jgsvglji58",
                "id-11134207-8224u-mhd0t1ek309605",
                "id-11134207-8224y-mhd1jgslpfkc50",
                "id-11134207-8224q-mhd1jgspj37s3c",
                "id-11134207-8224y-mhd1jgszk360a0",
                "id-11134207-8224s-mhd1jgsnkutlde"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763795291,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "VASTEL",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 24900000000,
              "price_min": 24900000000,
              "price_max": 24900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 24900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390188889332,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 24900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ORIN Indonesia",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40476673688,
            "shopid": 270686239,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhd1jgt3t72ie8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,844931086908638,1119699,1718093079,1049116,1049117,822059908662278,825465608492064,825465608499232,825465608497696,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":556,\"model_id\":390188889332,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhd1jgt3t72ie8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,844931086908638,1119699,1718093079,1049116,1049117,822059908662278,825465608492064,825465608499232,825465608497696,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":556,\"model_id\":390188889332,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40476673688",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50701931915,
              "shopid": 1662546121,
              "name": "Gavanazz - PEJE Vibe Smartwatch Custom Video Screen Bluetooth Call IP68 Health & Music",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1049112,
                700005512,
                822059908662278,
                825465608499232,
                298933384,
                1718093079,
                298463379,
                700700063,
                298468389,
                1718088045
              ],
              "image": "id-11134201-8224y-mhcsiicrq9zed5",
              "images": [
                "id-11134201-8224y-mhcsiicrq9zed5",
                "id-11134201-82251-mhcsikuzco3u92",
                "id-11134201-8224u-mhcsinbrxszz66",
                "id-11134201-8224q-mhcsio89fr4eb4",
                "id-11134201-8224v-mhcsipxgvz7t33"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763779757,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 94423000000,
              "price_min": 94423000000,
              "price_max": 94423000000,
              "price_min_before_discount": 96350000000,
              "price_max_before_discount": 96350000000,
              "hidden_price_display": null,
              "price_before_discount": 96350000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-2%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "BLACK",
                    "PINK"
                  ],
                  "images": [
                    "id-11134201-8224z-mhcsj6cy9k3yf3",
                    "id-11134201-8224y-mhcsj827o0lpb9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 786904832868352,
                "price": 93523000000,
                "strikethrough_price": 96350000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1288936141242392,
                "discount_text": "-2%",
                "model_id": 385187908068,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1288936141242392,
                  "voucher_code": "GAVANAZ4",
                  "voucher_discount": 900000000,
                  "time_info": {
                    "start_time": 1763112900,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 28000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 96350000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gavanazz",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50701931915,
            "shopid": 1662546121,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mhcsiicrq9zed5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1049112,700005512,822059908662278,825465608499232,298933384,1718093079,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":834,\"model_id\":385187908068,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mhcsiicrq9zed5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1049112,700005512,822059908662278,825465608499232,298933384,1718093079,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":834,\"model_id\":385187908068,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50701931915",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49351915240,
              "shopid": 1625140159,
              "name": "Samsung GT8 Jam tangan pintar GPS NFC Layar 1.28 inci Panggilan Bluetooth Pemantauan detak jantung dua Baterai Tahan lama Jam tangan pintar bisnis universal pria dan wanita",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1049116,
                700005516,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1400285055,
                298933384,
                2023641,
                1015914,
                700190087,
                2018619,
                2098621,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224r-mhbp09qv1szx34",
              "images": [
                "id-11134207-8224r-mhbp09qv1szx34",
                "id-11134207-82250-mhbp09qv4m4t9e",
                "id-11134207-8224s-mhbp09qv60p99c",
                "id-11134207-8224x-mhbp09qv8tu5da",
                "id-11134207-8224t-mhbp09qv7f9pdb",
                "id-11134207-8224p-mhbp09qva8el01",
                "id-11134207-8224y-mhbp09qvbmz19f",
                "id-11134207-82250-mhbp09qvd1jh4c",
                "id-11134207-82250-mhbp09qv37kda7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763714995,
              "sold": 5,
              "historical_sold": 19,
              "liked": false,
              "liked_count": 16,
              "view_count": null,
              "catid": 100013,
              "brand": "Samsung",
              "cmt_count": 5,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 20459100000,
              "price_min": 20459100000,
              "price_max": 20459100000,
              "price_min_before_discount": 44000000000,
              "price_max_before_discount": 44000000000,
              "hidden_price_display": null,
              "price_before_discount": 44000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvb-mhbpmx5vm3ux8a.16000081763714442.mp4",
                  "thumb_url": "id-11110105-6vdvb-mhbpmx5vm3ux8a_cover",
                  "duration": 32,
                  "version": 2,
                  "vid": "id-11110105-6vdvb-mhbpmx5vm3ux8a",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvb-mhbpmx5vm3ux8a.16000081763714442.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvb-mhbpmx5vm3ux8a.16000081763714442.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvb-mhbpmx5vm3ux8a.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "black",
                    "silver"
                  ],
                  "images": [
                    "id-11134207-8224r-mhbp09qveg3x03",
                    "id-11134207-82250-mhbp09qv37kda7"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 388004577558782,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Sidoarjo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 19459100000,
                "strikethrough_price": 44000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1332338806505472,
                "discount_text": "-54%",
                "model_id": 335182117813,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1332338806505472,
                  "voucher_code": "SVC-1332338806505472",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1768323600,
                    "end_time": 1768409999,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 44000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 194.591",
                      "hidden_promotion_price": "Rp 1?4.591",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 19,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 19,
                "display_sold_count_text": "19"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "OneWatch Tech",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49351915240,
            "shopid": 1625140159,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mhbp09qv1szx34\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,298463379,1049116,700005516,822059908662278,825465608499232,825465608497696,1718093079,1400285055,298933384,2023641,1015914,700190087,2018619,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":292,\"model_id\":335182117813,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mhbp09qv1szx34\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,298463379,1049116,700005516,822059908662278,825465608499232,825465608497696,1718093079,1400285055,298933384,2023641,1015914,700190087,2018619,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":292,\"model_id\":335182117813,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49351915240",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54951809488,
              "shopid": 301061531,
              "name": "Hainoteko RW-58 Smart watch Premium 1 ATM Tahan Air 12jam Jam Tangan Layar AMOLED Bisa Call Pantau kesehantan & olahraga 24H Baterai Tahan 10 Hari",
              "label_ids": [
                834230400556567,
                844931064601283,
                844931086908638,
                2018619,
                2023641,
                298463379,
                1059152,
                700005489,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                2098621,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224y-mha3nn0cimtr2d",
              "images": [
                "id-11134207-8224y-mha3nn0cimtr2d",
                "id-11134207-8224x-mha3nn0cftovf0",
                "id-11134207-82250-mha3nn0ch89b6e",
                "id-11134207-8224p-mha3nn0c1s0af5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763642302,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "HAINO TEKO",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 68500000000,
              "price_min": 68500000000,
              "price_max": 68500000000,
              "price_min_before_discount": 80000000000,
              "price_max_before_discount": 80000000000,
              "hidden_price_display": null,
              "price_before_discount": 80000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-14%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven7-mhaiqvkr3xn006.16000031763642299.mp4",
                  "thumb_url": "id-11110105-6ven7-mhaiqvkr3xn006_cover",
                  "duration": 45,
                  "version": 2,
                  "vid": "id-11110105-6ven7-mhaiqvkr3xn006",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven7-mhaiqvkr3xn006.16000031763642299.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven7-mhaiqvkr3xn006.16000031763642299.mp4",
                      "width": 480,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven7-mhaiqvkr3xn006.default.mp4",
                    "width": 480,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "hitam",
                    "silver"
                  ],
                  "images": [
                    "id-11134207-8224y-mha3nn0cimtr2d",
                    "id-11134207-8224x-mha3nn0cftovf0"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 811587221389312,
                "price": 68500000000,
                "strikethrough_price": 80000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-14%",
                "model_id": 380168922040,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 80000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HainoTeko.Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54951809488,
            "shopid": 301061531,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mha3nn0cimtr2d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,844931064601283,844931086908638,2018619,2023641,298463379,1059152,700005489,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,2098621,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":586,\"model_id\":380168922040,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mha3nn0cimtr2d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,844931064601283,844931086908638,2018619,2023641,298463379,1059152,700005489,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,2098621,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":586,\"model_id\":380168922040,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54951809488",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55601754960,
              "shopid": 355849185,
              "name": "Huawei Watch Fit 3 - White",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059156,
                700005499,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                825465608493600,
                1119699,
                298933384,
                2098621
              ],
              "image": "id-11134207-8224v-mh9y6hdouyvf69",
              "images": [
                "id-11134207-8224v-mh9y6hdouyvf69"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763607794,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 110000000000,
              "price_min": 110000000000,
              "price_max": 110000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 110000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 385162583835,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 110000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "dadiberkah",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55601754960,
            "shopid": 355849185,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mh9y6hdouyvf69\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059156,700005499,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,825465608493600,1119699,298933384,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":863,\"model_id\":385162583835,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mh9y6hdouyvf69\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059156,700005499,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,825465608493600,1119699,298933384,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":863,\"model_id\":385162583835,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55601754960",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48351743670,
              "shopid": 17867851,
              "name": "huawei watch GT4",
              "label_ids": [
                2018619,
                844931086908638,
                844931064601283,
                1049116,
                1049117,
                1718093079,
                822059908662278,
                827380695406658,
                825465608499232,
                825465608497696,
                825465608494624,
                822120592861206,
                1119699,
                2098621
              ],
              "image": "id-11134207-8224z-mh95qvgd06x5c3",
              "images": [
                "id-11134207-8224z-mh95qvgd06x5c3",
                "id-11134207-8224r-mh95qvg5ea6g2e",
                "id-11134207-8224w-mh95qvgcyscpbe",
                "id-11134207-8224z-mh95qvgcvz7t20",
                "id-11134207-8224s-mh95qvg5cvm083",
                "id-11134207-82252-mh95qvg5foqw31",
                "id-11134207-8224v-mh95qvgcxds908",
                "id-11134207-8224t-mh95qvgfgop441"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763560757,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 170000000000,
              "price_min": 170000000000,
              "price_max": 170000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 170000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 320160029080,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 170000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "fxrendykurnia",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48351743670,
            "shopid": 17867851,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mh95qvgd06x5c3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,1049116,1049117,1718093079,822059908662278,827380695406658,825465608499232,825465608497696,825465608494624,822120592861206,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":336,\"model_id\":320160029080,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mh95qvgd06x5c3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,1049116,1049117,1718093079,822059908662278,827380695406658,825465608499232,825465608497696,825465608494624,822120592861206,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":336,\"model_id\":320160029080,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48351743670",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45401716308,
              "shopid": 1479995539,
              "name": "{New} Rolemani R9 Pro Jam Tangan Smartwatch Asli Waterproof IP68 Custom Wallpaper Kalkulator Bluetooth Call Android IOS More Sports Modes Pemantauan Kesehatan Smart Watch Pria Wanita",
              "label_ids": [
                2018618,
                2153644,
                1012729,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1119699,
                2213652,
                1718087960,
                1428713,
                1049112,
                1059151,
                822059908662278,
                825465608499232,
                1015914,
                700190087,
                2068629,
                298938357,
                825465608497696,
                2098629,
                298938368,
                2098628,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224y-mgw7gxsi9fd668",
              "images": [
                "id-11134207-8224y-mgw7gxsi9fd668",
                "id-11134207-8224x-mh8jju7u1hcc0d",
                "id-11134207-82252-mh8jju7onmyx04",
                "id-11134207-8224w-mh8jju8pc0su26",
                "id-11134207-8224q-mh8jju8p4zygce",
                "id-11134207-8224t-mh8jju7tm13gf4",
                "id-11134207-8224q-mh8jju8sotn355",
                "id-11134207-8224z-mh8jju7om8eh42",
                "id-11134207-8224x-mh8jju7v3eo8ff"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763523281,
              "sold": 1,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 9,
              "view_count": null,
              "catid": 100013,
              "brand": "ROLEMANI",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 23999900000,
              "price_min": 23999900000,
              "price_max": 23999900000,
              "price_min_before_discount": 99999900000,
              "price_max_before_discount": 99999900000,
              "hidden_price_display": null,
              "price_before_discount": 99999900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-76%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Pink",
                    "Black"
                  ],
                  "images": [
                    "id-11134207-8224q-mh8jju912tqid4",
                    "id-11134207-8224w-mh8jju9148ayc8"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 410459157312368,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp79RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 731823613740032,
                "price": 23899900000,
                "strikethrough_price": 99999900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1280214446129152,
                "discount_text": "-76%",
                "model_id": 420155136434,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1280214446129152,
                  "voucher_code": "ROLE11020",
                  "voucher_discount": 100000000,
                  "time_info": {
                    "start_time": 1762072800,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 100000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 99999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp79RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Rolemani Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45401716308,
            "shopid": 1479995539,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mgw7gxsi9fd668\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,1012729,844931064601283,844931086908638,298463379,1718093079,1119699,2213652,1718087960,1428713,1049112,1059151,822059908662278,825465608499232,1015914,700190087,2068629,298938357,825465608497696,2098629,298938368,2098628,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":699,\"model_id\":420155136434,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mgw7gxsi9fd668\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,1012729,844931064601283,844931086908638,298463379,1718093079,1119699,2213652,1718087960,1428713,1049112,1059151,822059908662278,825465608499232,1015914,700190087,2068629,298938357,825465608497696,2098629,298938368,2098628,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":699,\"model_id\":420155136434,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45401716308",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43826566505,
              "shopid": 1665124596,
              "name": "MICODUS Gps Tracker 2G Portable  ML500 - Daya tahan baterai 6 hari - Gratis Aplikasi",
              "label_ids": [
                1400066568,
                844931064601283,
                1059152,
                700005489,
                1718093079,
                822059908662278,
                825465608499232,
                825465608494624,
                2098621,
                298933384
              ],
              "image": "id-11134207-82250-mh8ilvba7qj37f",
              "images": [
                "id-11134207-82250-mh8ilvba7qj37f",
                "id-11134207-8224r-mh8ilvbg6nezee",
                "id-11134207-8224z-mh8ilvbg81zfd7",
                "id-11134207-82251-mh8ilvbgav4bfe",
                "id-11134207-8224o-mh8ilvbgc9or44",
                "id-11134207-8224r-mh8ilvbgdo97d3",
                "id-11134207-8224z-mh8ilvbgf2tn0d",
                "id-11134207-8224t-mh8ilvbgghe337"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763521787,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 65000000000,
              "price_min": 65000000000,
              "price_max": 65000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvb-mh8isy3lhwjy13.16000031763521262.mp4",
                  "thumb_url": "id-11110105-6vdvb-mh8isy3lhwjy13_cover",
                  "duration": 59,
                  "version": 2,
                  "vid": "id-11110105-6vdvb-mh8isy3lhwjy13",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvb-mh8isy3lhwjy13.16000031763521262.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvb-mh8isy3lhwjy13.16000031763521262.mp4",
                      "width": 480,
                      "height": 480
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvb-mh8isy3lhwjy13.default.mp4",
                    "width": 480,
                    "height": 480
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Varian",
                  "options": [
                    "GPS Only",
                    "GPS + Simcard"
                  ],
                  "images": [
                    "id-11134207-8224y-mh8ilvbghvyjd2",
                    "id-11134207-82252-mh8ilvbgjaiz56"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 65000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 375154897656,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 65000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MICODUS Online",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43826566505,
            "shopid": 1665124596,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mh8ilvba7qj37f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1059152,700005489,1718093079,822059908662278,825465608499232,825465608494624,2098621,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":797,\"model_id\":375154897656,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mh8ilvba7qj37f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1059152,700005489,1718093079,822059908662278,825465608499232,825465608494624,2098621,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":797,\"model_id\":375154897656,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43826566505",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48751698468,
              "shopid": 9227816,
              "name": "Smartwatch Lige Kotak Military Q6",
              "label_ids": [
                1000167,
                2018619,
                844931064601283,
                844931086908638,
                298463379,
                1049112,
                700005517,
                822059908662278,
                825465608492064,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                1718093079,
                1119699,
                2048661,
                2048660,
                700765096,
                2098621,
                298933384,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224w-mh8a7fkdird6d7",
              "images": [
                "id-11134207-8224w-mh8a7fkdird6d7",
                "id-11134207-8224v-mh8a7fkdk5xmcf"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763507219,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Lige",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 25000000000,
              "price_min": 25000000000,
              "price_max": 25000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bandung Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 25000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 320154151397,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 25000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GREYZSHOP",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48751698468,
            "shopid": 9227816,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mh8a7fkdird6d7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,844931086908638,298463379,1049112,700005517,822059908662278,825465608492064,825465608499232,825465608497696,840990690654214,840955085144628,1718093079,1119699,2048661,2048660,700765096,2098621,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":416,\"model_id\":320154151397,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mh8a7fkdird6d7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,844931086908638,298463379,1049112,700005517,822059908662278,825465608492064,825465608499232,825465608497696,840990690654214,840955085144628,1718093079,1119699,2048661,2048660,700765096,2098621,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":416,\"model_id\":320154151397,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48751698468",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55851532936,
              "shopid": 54060005,
              "name": "JETE Venus Smartwatch | 1.75\" AMOLED HD FULL SCREEN | HITAM (BNIB!)",
              "label_ids": [
                1049116,
                700005558,
                822059908662278,
                825465608499232,
                844931064601283,
                1718093079,
                1015914,
                700190087,
                1119699,
                2098621
              ],
              "image": "id-11134207-82251-mh63swpecw7h38",
              "images": [
                "id-11134207-82251-mh63swpecw7h38",
                "id-11134207-82250-mh63swpea32ldc",
                "id-11134207-8224y-mh63swpebhn1b8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763375296,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "JETE",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 45000000000,
              "price_min": 45000000000,
              "price_max": 45000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": true,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Pasuruan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 45000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 262164858339,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 45000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "TRONIK STORE 007",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55851532936,
            "shopid": 54060005,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mh63swpecw7h38\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049116,700005558,822059908662278,825465608499232,844931064601283,1718093079,1015914,700190087,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":368,\"model_id\":262164858339,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mh63swpecw7h38\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049116,700005558,822059908662278,825465608499232,844931064601283,1718093079,1015914,700190087,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":368,\"model_id\":262164858339,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55851532936",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54551394481,
              "shopid": 1623950990,
              "name": "Banivestiwall - Whoop 5.0 & Mg Fitness Tracker One, Peak & Life Advanced Health & Recovery Insights",
              "label_ids": [
                844931086908638,
                844931064601283,
                1049112,
                1049147,
                822059908662278,
                825465608499232,
                825465608497696,
                2098621,
                298933384,
                1428713,
                1718087960,
                1718093079,
                298463379,
                700700063,
                1718088045,
                298468389
              ],
              "image": "id-11134201-8224t-mh1uvhidaia161",
              "images": [
                "id-11134201-8224t-mh1uvhidaia161",
                "id-11134201-82252-mh1uvigancb3bd",
                "id-11134201-8224o-mh1uvk5felmy07",
                "id-11134201-8224y-mh1uvlv4khzi06",
                "id-11134201-8224y-mh1uvoc0cruz6d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763117848,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1141984200000,
              "price_min": 1141984200000,
              "price_max": 1141984200000,
              "price_min_before_discount": 1165290000000,
              "price_max_before_discount": 1165290000000,
              "hidden_price_display": null,
              "price_before_discount": 1165290000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-2%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 792573099163648,
                "price": 1141084200000,
                "strikethrough_price": 1165290000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1294603434475520,
                "discount_text": "-2%",
                "model_id": 287157342032,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1294603434475520,
                  "voucher_code": "BANIVEST4",
                  "voucher_discount": 900000000,
                  "time_info": {
                    "start_time": 1763788500,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 28000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 1165290000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Banivestiwall",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54551394481,
            "shopid": 1623950990,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mh1uvhidaia161\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049112,1049147,822059908662278,825465608499232,825465608497696,2098621,298933384,1428713,1718087960,1718093079,298463379,700700063,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":624,\"model_id\":287157342032,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mh1uvhidaia161\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049112,1049147,822059908662278,825465608499232,825465608497696,2098621,298933384,1428713,1718087960,1718093079,298463379,700700063,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":624,\"model_id\":287157342032,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54551394481",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51001403014,
              "shopid": 1623950990,
              "name": "Banivestiwall - Aukey Smartwatch 2 Ultra Amoled, Waterproof, Bluetooth Call Sw-2U",
              "label_ids": [
                844931086908638,
                844931064601283,
                1049112,
                1049147,
                822059908662278,
                825465608499232,
                825465608497696,
                2098621,
                1718087960,
                1428713,
                1718093079,
                298463379,
                700700063,
                298468389,
                1718088045
              ],
              "image": "id-11134201-8224w-mh1saj7bp79mde",
              "images": [
                "id-11134201-8224w-mh1saj7bp79mde",
                "id-11134201-8224w-mh1sal2znqbu06",
                "id-11134201-8224o-mh1salzqhhc9b2",
                "id-11134201-8224x-mh1samwmm6ffd5",
                "id-11134201-8224y-mh1saom7ajgr4e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763113506,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 95344200000,
              "price_min": 95344200000,
              "price_max": 95344200000,
              "price_min_before_discount": 97290000000,
              "price_max_before_discount": 97290000000,
              "hidden_price_display": null,
              "price_before_discount": 97290000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-2%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Spesifikasi",
                  "options": [
                    "S"
                  ],
                  "images": [
                    "id-11134201-8224r-mh1sb80bku179d"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 792573099163648,
                "price": 94444200000,
                "strikethrough_price": 97290000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1294603434475520,
                "discount_text": "-2%",
                "model_id": 277157110583,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1294603434475520,
                  "voucher_code": "BANIVEST4",
                  "voucher_discount": 900000000,
                  "time_info": {
                    "start_time": 1763788500,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 28000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 97290000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Banivestiwall",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51001403014,
            "shopid": 1623950990,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224w-mh1saj7bp79mde\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049112,1049147,822059908662278,825465608499232,825465608497696,2098621,1718087960,1428713,1718093079,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":757,\"model_id\":277157110583,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224w-mh1saj7bp79mde\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049112,1049147,822059908662278,825465608499232,825465608497696,2098621,1718087960,1428713,1718093079,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":757,\"model_id\":277157110583,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51001403014",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49001412980,
              "shopid": 1623950990,
              "name": "Banivestiwall - Hyundai Hy-C8 Pro Ai Smart Glasses Translator 100+ Bahasa, Transcript, Musik, Bluetooth Call",
              "label_ids": [
                844931064601283,
                844931086908638,
                1049112,
                1049147,
                822059908662278,
                825465608499232,
                825465608497696,
                2098621,
                1428713,
                1718087960,
                1718093079,
                298463379,
                700700063,
                1718088045,
                298468389
              ],
              "image": "id-11134201-82252-mh1rxkkwq2of62",
              "images": [
                "id-11134201-82252-mh1rxkkwq2of62",
                "id-11134201-82251-mh1rxlhi7cayc0",
                "id-11134201-8224o-mh1rxn68ahord6",
                "id-11134201-8224w-mh1rxouq9dsfdb",
                "id-11134201-8224z-mh1rxrb0z4ztce"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763112900,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 48108200000,
              "price_min": 48108200000,
              "price_max": 48108200000,
              "price_min_before_discount": 49090000000,
              "price_max_before_discount": 49090000000,
              "hidden_price_display": null,
              "price_before_discount": 49090000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-2%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "White"
                  ],
                  "images": [
                    "id-11134201-82252-mh1ry8v8flscdb"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 792573099163648,
                "price": 47208200000,
                "strikethrough_price": 49090000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1294603434475520,
                "discount_text": "-2%",
                "model_id": 310129122462,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1294603434475520,
                  "voucher_code": "BANIVEST4",
                  "voucher_discount": 900000000,
                  "time_info": {
                    "start_time": 1763788500,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 28000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 49090000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Banivestiwall",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49001412980,
            "shopid": 1623950990,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mh1rxkkwq2of62\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049112,1049147,822059908662278,825465608499232,825465608497696,2098621,1428713,1718087960,1718093079,298463379,700700063,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":829,\"model_id\":310129122462,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mh1rxkkwq2of62\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049112,1049147,822059908662278,825465608499232,825465608497696,2098621,1428713,1718087960,1718093079,298463379,700700063,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":829,\"model_id\":310129122462,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49001412980",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50851402570,
              "shopid": 1623950990,
              "name": "Banivestiwall - Majdomo Smartwatch Amoled 1.32'' Gps 5Atm 170+ Sport Mode, Hr & Spo2, Sleep Tracking, Baterai Awet Smartwatch Viral",
              "label_ids": [
                844931086908638,
                844931064601283,
                1049112,
                1049147,
                822059908662278,
                825465608499232,
                825465608497696,
                2098621,
                1428713,
                1718087960,
                1718093079,
                298933384,
                298463379,
                700700063,
                298468389,
                1718088045
              ],
              "image": "id-11134201-8224w-mh1r9qyte70pca",
              "images": [
                "id-11134201-8224w-mh1r9qyte70pca",
                "id-11134201-8224s-mh1r9soqa9e033",
                "id-11134201-8224v-mh1r9uec4pvt01",
                "id-11134201-8224u-mh1r9vasjdos0b",
                "id-11134201-8224u-mh1r9w758n4f9c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763111789,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 167668200000,
              "price_min": 167668200000,
              "price_max": 167668200000,
              "price_min_before_discount": 171090000000,
              "price_max_before_discount": 171090000000,
              "hidden_price_display": null,
              "price_before_discount": 171090000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-2%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "emas",
                    "hitam"
                  ],
                  "images": [
                    "id-11134201-82251-mh1raegp0wzz06",
                    "id-11134201-82250-mh1ragx958neff"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 792573099163648,
                "price": 166768200000,
                "strikethrough_price": 171090000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1294603434475520,
                "discount_text": "-2%",
                "model_id": 370128418227,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1294603434475520,
                  "voucher_code": "BANIVEST4",
                  "voucher_discount": 900000000,
                  "time_info": {
                    "start_time": 1763788500,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 28000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 171090000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Banivestiwall",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50851402570,
            "shopid": 1623950990,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224w-mh1r9qyte70pca\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049112,1049147,822059908662278,825465608499232,825465608497696,2098621,1428713,1718087960,1718093079,298933384,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":828,\"model_id\":370128418227,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224w-mh1r9qyte70pca\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049112,1049147,822059908662278,825465608499232,825465608497696,2098621,1428713,1718087960,1718093079,298933384,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":828,\"model_id\":370128418227,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50851402570",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46251426766,
              "shopid": 1623950990,
              "name": "Banivestiwall - Amazfit Gts Smartwatch Amoled 1.65\" Jam Tangan Pintar Kebugaran",
              "label_ids": [
                844931064601283,
                844931086908638,
                1049112,
                1049147,
                822059908662278,
                825465608499232,
                825465608497696,
                2098621,
                1718087960,
                1428713,
                1718093079,
                298463379,
                700700063,
                298468389,
                1718088045
              ],
              "image": "id-11134201-8224q-mh1q0lkiopaga7",
              "images": [
                "id-11134201-8224q-mh1q0lkiopaga7",
                "id-11134201-8224s-mh1q0n9bfbpnb7",
                "id-11134201-8224r-mh1q0pqldhqh12",
                "id-11134201-8224z-mh1q0s7fslqi6e",
                "id-11134201-8224q-mh1q0t3md8uj96"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763109691,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 104556200000,
              "price_min": 104556200000,
              "price_max": 104556200000,
              "price_min_before_discount": 106690000000,
              "price_max_before_discount": 106690000000,
              "hidden_price_display": null,
              "price_before_discount": 106690000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-2%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Gray",
                    "Orange"
                  ],
                  "images": [
                    "id-11134201-8224v-mh1q1hkof56zfd",
                    "id-11134201-8224r-mh1q1k1sr1fv31",
                    "id-11134201-8224o-mh1q1ky2rdor39"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 792573099163648,
                "price": 103656200000,
                "strikethrough_price": 106690000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1294603434475520,
                "discount_text": "-2%",
                "model_id": 244087052948,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1294603434475520,
                  "voucher_code": "BANIVEST4",
                  "voucher_discount": 900000000,
                  "time_info": {
                    "start_time": 1763788500,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 28000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 106690000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Banivestiwall",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46251426766,
            "shopid": 1623950990,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mh1q0lkiopaga7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049112,1049147,822059908662278,825465608499232,825465608497696,2098621,1718087960,1428713,1718093079,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":344,\"model_id\":244087052948,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mh1q0lkiopaga7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049112,1049147,822059908662278,825465608499232,825465608497696,2098621,1718087960,1428713,1718093079,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":344,\"model_id\":244087052948,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46251426766",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57751401722,
              "shopid": 1623950990,
              "name": "Banivestiwall - Whoop 5.0 Peak Edition Fitness Wearable Vo2 Max, Sleep Tracking, Coaching + 12 Month Subscription & 14+ Days Battery Life",
              "label_ids": [
                844931064601283,
                844931086908638,
                1049112,
                1049147,
                822059908662278,
                825465608499232,
                825465608497696,
                2098621,
                1428713,
                1718087960,
                1718093079,
                298463379,
                700700063,
                298468389,
                1718088045
              ],
              "image": "id-11134201-8224t-mh1pxqn78etq2c",
              "images": [
                "id-11134201-8224t-mh1pxqn78etq2c",
                "id-11134201-8224x-mh1pxrkzy1oofb",
                "id-11134201-8224u-mh1pxtadlki75c",
                "id-11134201-8224x-mh1pxu89fmdq9c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763109553,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 880618200000,
              "price_min": 880618200000,
              "price_max": 880618200000,
              "price_min_before_discount": 898590000000,
              "price_max_before_discount": 898590000000,
              "hidden_price_display": null,
              "price_before_discount": 898590000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-2%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 792573099163648,
                "price": 879718200000,
                "strikethrough_price": 898590000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1294603434475520,
                "discount_text": "-2%",
                "model_id": 262157049660,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1294603434475520,
                  "voucher_code": "BANIVEST4",
                  "voucher_discount": 900000000,
                  "time_info": {
                    "start_time": 1763788500,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 28000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 898590000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Banivestiwall",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57751401722,
            "shopid": 1623950990,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mh1pxqn78etq2c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049112,1049147,822059908662278,825465608499232,825465608497696,2098621,1428713,1718087960,1718093079,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":345,\"model_id\":262157049660,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mh1pxqn78etq2c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049112,1049147,822059908662278,825465608499232,825465608497696,2098621,1428713,1718087960,1718093079,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":345,\"model_id\":262157049660,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57751401722",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47801338352,
              "shopid": 1670054977,
              "name": "Samsung smartwatch HK10 Ultra A NFC SportMode Bluetooth Call Android IOS IP67 Impor Pria Wanita",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1400066568,
                1119699,
                1718093079,
                298463379,
                1400285055,
                298933384,
                2098621,
                2023641,
                2018619,
                1718087960,
                1428713,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224p-mh0klpq7juh724",
              "images": [
                "id-11134207-8224p-mh0klpq7juh724",
                "id-11134207-8224x-mh0klpqns6q07f",
                "id-11134207-82251-mh0klpqnxszs24",
                "id-11134207-8224s-mh0klpqnwefc7f",
                "id-11134207-8224x-mh0klpqnqs5kf3",
                "id-11134207-82250-mh0klpqntlagd3",
                "id-11134207-8224u-mh0klpqnuzuw43"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763042756,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 37000000000,
              "price_min": 37000000000,
              "price_max": 37000000000,
              "price_min_before_discount": 257600000000,
              "price_max_before_discount": 257600000000,
              "hidden_price_display": null,
              "price_before_discount": 257600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-86%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven1-mh0lwv7nxvd93a.16000101763042213.mp4",
                  "thumb_url": "id-11110105-6ven1-mh0lwv7nxvd93a_cover",
                  "duration": 32,
                  "version": 2,
                  "vid": "id-11110105-6ven1-mh0lwv7nxvd93a",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven1-mh0lwv7nxvd93a.16000101763042213.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven1-mh0lwv7nxvd93a.16000101763042213.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven1-mh0lwv7nxvd93a.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Orange",
                    "Silver",
                    "Black",
                    "Warna random"
                  ],
                  "images": [
                    "id-11134207-8224o-mh0m1z3478r245",
                    "id-11134207-82250-mh0m1z39joju61",
                    "id-11134207-8224t-mh0m1z39l34a16",
                    "id-11134207-8224x-mh0m1z39mhoq8c"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 785996212388864,
                "price": 36000000000,
                "strikethrough_price": 257600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1288743949582344,
                "discount_text": "-86%",
                "model_id": 355119721686,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1288743949582344,
                  "voucher_code": "U8XMSMART",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1763089680,
                    "end_time": 1771042080,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 30000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 257600000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Teknologi Gunung Sungai",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47801338352,
            "shopid": 1670054977,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mh0klpq7juh724\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1400066568,1119699,1718093079,298463379,1400285055,298933384,2098621,2023641,2018619,1718087960,1428713,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":599,\"model_id\":355119721686,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mh0klpq7juh724\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1400066568,1119699,1718093079,298463379,1400285055,298933384,2098621,2023641,2018619,1718087960,1428713,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":599,\"model_id\":355119721686,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47801338352",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42676294688,
              "shopid": 1669980032,
              "name": "Kids Smart Watch Supports video calling 4G GPS Locator: A Guardian for Your Child's Safety",
              "label_ids": [
                844931064601283,
                1718093079,
                1119699,
                298933384,
                298463379,
                2023641,
                1015914,
                700190087,
                2018619,
                2098621,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224t-mhr1riimt5og51",
              "images": [
                "id-11134207-8224t-mhr1riimt5og51",
                "id-11134207-8224t-mgx973jyhm33b8",
                "id-11134207-8224u-mgx973jyesy7ab",
                "id-11134207-8224s-mgxb16o26nt4c4",
                "id-11134207-82250-mgx973jybztb6f",
                "id-11134207-8224t-mgx973jydedr5c",
                "id-11134207-8224q-mgx973jy96of38",
                "id-11134207-8224z-mgx973jyj0nj94",
                "id-11134207-8224t-mgx973jyal8v37"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762842463,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 29300000000,
              "price_min": 29300000000,
              "price_max": 29300000000,
              "price_min_before_discount": 58000000000,
              "price_max_before_discount": 58000000000,
              "hidden_price_display": null,
              "price_before_discount": 58000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-49%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven4-mgxawwjc4nil42.16000101762842114.mp4",
                  "thumb_url": "id-11110105-6ven4-mgxawwjc4nil42_cover",
                  "duration": 57,
                  "version": 2,
                  "vid": "id-11110105-6ven4-mgxawwjc4nil42",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven4-mgxawwjc4nil42.16000101762842114.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-mgxawwjc4nil42.16000101762842114.mp4",
                      "width": 960,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-mgxawwjc4nil42.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "blue",
                    "black",
                    "pink"
                  ],
                  "images": [
                    "id-11134207-8224x-mgx973jykf7z9a",
                    "id-11134207-82250-mgxb16nxji8e72",
                    "id-11134207-8224x-mgxb16o2598o93"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 391618251468940,
                "bundle_deal_label": "Pilih 2, diskon 5%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 783241611640832,
                "price": 28800000000,
                "strikethrough_price": 58000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1285415760052224,
                "discount_text": "-49%",
                "model_id": 340104885852,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1285415760052224,
                  "voucher_code": "UREEVIP1",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1762693140,
                    "end_time": 1770645480,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 58000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "TechHarbor",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42676294688,
            "shopid": 1669980032,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mhr1riimt5og51\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1119699,298933384,298463379,2023641,1015914,700190087,2018619,2098621,1059152,1049122,822059908662278,825465608499232,825465608497696,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":222,\"model_id\":340104885852,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mhr1riimt5og51\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1119699,298933384,298463379,2023641,1015914,700190087,2018619,2098621,1059152,1049122,822059908662278,825465608499232,825465608497696,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":222,\"model_id\":340104885852,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42676294688",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53151160878,
              "shopid": 1224897417,
              "name": "Strap untuk Apple Watch Series 11/10 (46mm) 9/8/7 (45mm) 6/5/4/SE (44mm) EPSIGARD Altos Band (not Nomad Stratos) Tali Jam",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                1049116,
                1049117,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384,
                1015914,
                700190087,
                2098621
              ],
              "image": "id-11134207-8224w-mgx96budpwy391",
              "images": [
                "id-11134207-8224w-mgx96budpwy391",
                "id-11134207-82252-mgx96buhb56ycb",
                "id-11134207-8224t-mgx96buhcjre54",
                "id-11134207-8224q-mgx96buhdybuf6",
                "id-11134207-8224q-mgx96buhfcwaeb",
                "id-11134207-8224w-mgx96buhgrgq8d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762839617,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 165000000000,
              "price_min": 165000000000,
              "price_max": 165000000000,
              "price_min_before_discount": 250000000000,
              "price_max_before_discount": 250000000000,
              "hidden_price_display": null,
              "price_before_discount": 250000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-34%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Natural/Black",
                    "Natural/Volta",
                    "Natural/So Orange",
                    "Black/Black",
                    "Black/Volta",
                    "Black/So Orange"
                  ],
                  "images": [
                    "id-11134207-82251-mgx96buhi6166e",
                    "id-11134207-8224v-mgx96buhjklm06",
                    "id-11134207-8224o-mgx96buhkz625d",
                    "id-11134207-8224w-mgx96buhmdqiab",
                    "id-11134207-82251-mgx96buhnsay31",
                    "id-11134207-8224x-mgx9dp3s54wba3"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 784622208729088,
                "price": 165000000000,
                "strikethrough_price": 250000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-34%",
                "model_id": 415104625841,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 250000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Epsigardย Official",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53151160878,
            "shopid": 1224897417,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mgx96budpwy391\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1049116,1049117,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,1015914,700190087,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":566,\"model_id\":415104625841,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mgx96budpwy391\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1049116,1049117,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,1015914,700190087,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":566,\"model_id\":415104625841,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53151160878",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53451090918,
              "shopid": 1631362272,
              "name": ". GPS Garmin 65s Bekas Normal โ€“ Akurat, Tahan Lama, dan Siap Kerja Lapangan",
              "label_ids": [
                844931064601283,
                1400066568,
                700005490,
                700005495,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                298463379,
                2098621,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82251-mhrdfo9048hy0a",
              "images": [
                "id-11134207-82251-mhrdfo9048hy0a",
                "id-11134207-8224y-mgvmffxtp6vj70",
                "id-11134207-8224z-mgvmffxtqlfzb8",
                "id-11134207-82252-mgvmffxts00fbb",
                "id-11134207-8224o-mgvmffxttekvad",
                "id-11134207-82252-mgvmffxqxgjtbd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762754362,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 500000000000,
              "price_min": 500000000000,
              "price_max": 500000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 500000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 355099144922,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 500000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Afandi Survey DI",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53451090918,
            "shopid": 1631362272,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mhrdfo9048hy0a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,700005490,700005495,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,298463379,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":724,\"model_id\":355099144922,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mhrdfo9048hy0a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,700005490,700005495,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,298463379,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":724,\"model_id\":355099144922,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53451090918",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55651079764,
              "shopid": 1533544127,
              "name": "Lefun Health A02 Smart Bracelet : 24h Real Time Heart Rate /Blood Oxygen Testing / Sleep Monitoring / Motion Monitoring / IP68 Deep Water Resist / Aksesoris Modis dengan Fitur Kesehatan Canggih",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1400066568,
                298933384,
                2098621,
                2018619,
                1400285055
              ],
              "image": "id-11134207-8224p-mgvqjnqttfd975",
              "images": [
                "id-11134207-8224p-mgvqjnqttfd975",
                "id-11134207-8224t-mgvqjnp9v4zte7",
                "id-11134207-8224x-mgvqjnpzi03x83",
                "id-11134207-8224z-mgvqjnqmd4wf68",
                "id-11134207-8224t-mgvqjnpx2wwc82",
                "id-11134207-8224r-mgvqjnqtp7nx6b",
                "id-11134207-8224u-mgvqjnqtqm8d14",
                "id-11134207-8224z-mgvqjnqtnt3had",
                "id-11134207-8224s-mgvqjnqts0st2f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762747787,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 359000000000,
              "price_min": 359000000000,
              "price_max": 359000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "HONEY YELLOW",
                    "PEARL SILVER",
                    "ROSE PINK",
                    "RUBY",
                    "TWILIGHT INDIGO",
                    "MIDNIGHT ONYX"
                  ],
                  "images": [
                    "id-11134207-8224r-mgvqjnqtutxp26",
                    "id-11134207-8224v-mgvqjnqtw8i5cb",
                    "id-11134207-8224w-mgvqjnqtxn2le9",
                    "id-11134207-8224p-mgvqjnqtz1n137",
                    "id-11134207-8224t-mgvqjnqu0g7h2c",
                    "id-11134207-8224p-mgvqsktsluyy1e"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 359000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 320098760064,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 359000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DAILY.URBAN",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55651079764,
            "shopid": 1533544127,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mgvqjnqttfd975\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699,1400066568,298933384,2098621,2018619,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":584,\"model_id\":320098760064,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mgvqjnqttfd975\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699,1400066568,298933384,2098621,2018619,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":584,\"model_id\":320098760064,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55651079764",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46201106948,
              "shopid": 884876226,
              "name": "(FREE ANTIGORES) Huawei Watch Fit 3 NEW Segel Garansi Resmi",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                298463379,
                1718093079,
                1400066568,
                1119699,
                2098621,
                1400285055,
                1015914,
                700190087,
                1049112,
                700000535,
                822059908662278,
                825465608499232,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224u-miqmaga6ejgh16",
              "images": [
                "id-11134207-8224u-miqmaga6ejgh16",
                "id-11134207-8224o-miejaw11r0g657",
                "id-11134207-8224o-miqmaga6hclde6",
                "id-11134207-8224z-miiotcwuudxgf5",
                "id-11134207-8224s-mj48jud4rh8jee",
                "id-11134207-8224x-mj48jud4g8p030",
                "id-11134207-8224v-mj2vcp41375te1",
                "id-11134207-82250-mj2vcp411sld01",
                "id-11134207-8224x-mj2vcp410e0x52"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762734417,
              "sold": 4,
              "historical_sold": 7,
              "liked": false,
              "liked_count": 18,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 4,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 149500000000,
              "price_min": 149500000000,
              "price_max": 149500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Grey NFC",
                    "White"
                  ],
                  "images": [
                    "id-11134207-8224s-mj2vcp414lq9da",
                    "id-11134207-8224w-mj2vcp4160apd8",
                    "id-11134207-8224o-mj2vcp417ev5fc"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  0,
                  4
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Kuningan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 149500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390313404813,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 149500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 7,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 7,
                "display_sold_count_text": "7"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "zee_smartstore",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46201106948,
            "shopid": 884876226,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-miqmaga6ejgh16\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1718093079,1400066568,1119699,2098621,1400285055,1015914,700190087,1049112,700000535,822059908662278,825465608499232,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":497,\"model_id\":390313404813,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-miqmaga6ejgh16\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1718093079,1400066568,1119699,2098621,1400285055,1015914,700190087,1049112,700000535,822059908662278,825465608499232,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":497,\"model_id\":390313404813,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46201106948",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57701012228,
              "shopid": 168671443,
              "name": "HUAWEI WATCH FIT 3 Green New BNOB Garansi Resmi Hijau",
              "label_ids": [
                2018619,
                2023641,
                700700063,
                700025282,
                844931064601283,
                844931086908638,
                1059150,
                700005498,
                822059908662278,
                2048660,
                2048661,
                825465608494624,
                825465608499232,
                825465608497696,
                298463379,
                1718093079,
                1119699,
                700765096,
                2098621,
                2068629,
                298938357,
                2098629,
                2098628,
                298938368,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82250-mgt2m3gz5qfj20",
              "images": [
                "id-11134207-82250-mgt2m3gz5qfj20"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762586293,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 127990000000,
              "price_min": 127990000000,
              "price_max": 127990000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Medan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp426RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 127990000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 307135894904,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 127990000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp426RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Momoshiroi",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57701012228,
            "shopid": 168671443,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mgt2m3gz5qfj20\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,700700063,700025282,844931064601283,844931086908638,1059150,700005498,822059908662278,2048660,2048661,825465608494624,825465608499232,825465608497696,298463379,1718093079,1119699,700765096,2098621,2068629,298938357,2098629,2098628,298938368,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":132,\"model_id\":307135894904,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mgt2m3gz5qfj20\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,700700063,700025282,844931064601283,844931086908638,1059150,700005498,822059908662278,2048660,2048661,825465608494624,825465608499232,825465608497696,298463379,1718093079,1119699,700765096,2098621,2068629,298938357,2098629,2098628,298938368,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":132,\"model_id\":307135894904,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57701012228",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47401041037,
              "shopid": 1665124596,
              "name": "MICODUS Gps Tracker 2G MV710N untuk mobil / motor Realtime Tracking",
              "label_ids": [
                844931064601283,
                1718093079,
                1059152,
                700005489,
                822059908662278,
                825465608499232,
                825465608494624,
                1400066568,
                1119699,
                2098621,
                2048660,
                2048661
              ],
              "image": "id-11134207-8224t-mgswcsoejt3cc9",
              "images": [
                "id-11134207-8224t-mgswcsoejt3cc9",
                "id-11134207-8224w-mgswcsoel7nsab",
                "id-11134207-8224r-mgswcsoemm883b",
                "id-11134207-8224q-mgswcsoeo0soa3",
                "id-11134207-8224u-mgswcsoepfd4f6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762579622,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 34000000000,
              "price_min": 34000000000,
              "price_max": 34000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven1-mgsxxb2oypzh59.16000031762578137.mp4",
                  "thumb_url": "id-11110105-6ven1-mgsxxb2oypzh59_cover",
                  "duration": 55,
                  "version": 2,
                  "vid": "id-11110105-6ven1-mgsxxb2oypzh59",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven1-mgsxxb2oypzh59.16000031762578137.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven1-mgsxxb2oypzh59.16000031762578137.mp4",
                      "width": 480,
                      "height": 480
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven1-mgsxxb2oypzh59.default.mp4",
                    "width": 480,
                    "height": 480
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Varian",
                  "options": [
                    "GPS Only",
                    "GPS + Relay",
                    "GPS + Simcard",
                    "Paket Lengkap"
                  ],
                  "images": [
                    "id-11134207-8224p-mgswcsoeqtxk02",
                    "id-11134207-8224p-mgswcsoes8i053",
                    "id-11134207-82252-mgswcsoetn2gac",
                    "id-11134207-8224u-mgswcsoev1mw48"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 34000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 410091576228,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 34000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MICODUS Online",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47401041037,
            "shopid": 1665124596,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mgswcsoejt3cc9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,700005489,822059908662278,825465608499232,825465608494624,1400066568,1119699,2098621,2048660,2048661],\"matched_keywords\":[\"\"],\"merge_rank\":796,\"model_id\":410091576228,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mgswcsoejt3cc9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,700005489,822059908662278,825465608499232,825465608494624,1400066568,1119699,2098621,2048660,2048661],\"matched_keywords\":[\"\"],\"merge_rank\":796,\"model_id\":410091576228,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47401041037",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47800973946,
              "shopid": 67484306,
              "name": "Samsung Galaxy Fit3 Pink New",
              "label_ids": [
                2018619,
                700190019,
                298463379,
                844931064601283,
                1059156,
                1049118,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                2098621,
                298933384,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224u-mgrmfb6l0pvwa7",
              "images": [
                "id-11134207-8224u-mgrmfb6l0pvwa7",
                "id-11134207-8224w-mgrmfb6pcmx527",
                "id-11134207-8224q-mgrmfb70jrwu5b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762498402,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 67500000000,
              "price_min": 67500000000,
              "price_max": 67500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tegal",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 67500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 445087055176,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 67500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Joy Store Acc",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47800973946,
            "shopid": 67484306,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mgrmfb6l0pvwa7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700190019,298463379,844931064601283,1059156,1049118,1718093079,822059908662278,825465608499232,825465608497696,1119699,2098621,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":293,\"model_id\":445087055176,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mgrmfb6l0pvwa7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700190019,298463379,844931064601283,1059156,1049118,1718093079,822059908662278,825465608499232,825465608497696,1119699,2098621,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":293,\"model_id\":445087055176,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47800973946",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57250930874,
              "shopid": 15776626,
              "name": "Garmin Smartwatch Fenix 6 Sapphire",
              "label_ids": [
                844931064601283,
                1049112,
                1059151,
                822059908662278,
                825465608499232,
                1119699,
                1718093079,
                298933384
              ],
              "image": "id-11134207-8224v-mgqlt09pv9qj53",
              "images": [
                "id-11134207-8224v-mgqlt09pv9qj53",
                "id-11134207-8224o-mgqlt0dccgsr4c",
                "id-11134207-8224r-mgqlt0dt32fh26",
                "id-11134207-8224z-mgqlt0e7hdzg28",
                "id-11134207-8224w-mgqlt07hkgzvac",
                "id-11134207-8224r-mgqlt07i6y3093",
                "id-11134207-8224q-mgqlt07e69l924",
                "id-11134207-82251-mgqlt07o79jhe0",
                "id-11134207-8224t-mgqlt08cnzm497"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762437134,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 599999900000,
              "price_min": 599999900000,
              "price_max": 599999900000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 599999900000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390084116739,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 599999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "H A N Sport",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57250930874,
            "shopid": 15776626,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mgqlt09pv9qj53\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1059151,822059908662278,825465608499232,1119699,1718093079,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":174,\"model_id\":390084116739,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mgqlt09pv9qj53\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1059151,822059908662278,825465608499232,1119699,1718093079,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":174,\"model_id\":390084116739,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57250930874",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44026150783,
              "shopid": 148920182,
              "name": "oraimo x Tahilalats Smartwatch Watch 6 Max OSW-8001N 1.83\"TFT Full Touch Screen Jam Tangan Bluetooth With AI Dial 105+ Mode Olahraga Sport Waterproof IP68",
              "label_ids": [
                1000544,
                1518617,
                1002164,
                700700063,
                1668726,
                1011692,
                2018618,
                1016119,
                2153644,
                844931086908638,
                844931064601283,
                700005489,
                1059152,
                822059908662278,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1718087960,
                1428713,
                298463379,
                1718093079,
                1119699,
                1015914,
                700190087,
                2213652,
                1400285055,
                2048660,
                2048661,
                825465608493600,
                700765096,
                700810055,
                299103323,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82250-mgolj2au9mha08",
              "images": [
                "id-11134207-82250-mgolj2au9mha08",
                "id-11134207-82251-mgolj2asmmmi83",
                "id-11134207-82252-mgolj2aso16y13",
                "id-11134207-8224z-mgolj2asl8228e",
                "id-11134207-82250-mgolj2asiex626",
                "id-11134207-8224o-mgolk3x5258rf3",
                "id-11134207-8224z-mgolj2asqubuc1",
                "id-11134207-8224z-mgolj2ass8wa84",
                "id-11134207-8224v-mgolj2astngqb8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762316078,
              "sold": 662,
              "historical_sold": 959,
              "liked": false,
              "liked_count": 1121,
              "view_count": null,
              "catid": 100013,
              "brand": "ORAIMO",
              "cmt_count": 465,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 22490000000,
              "price_min": 22490000000,
              "price_max": 22490000000,
              "price_min_before_discount": 100000000000,
              "price_max_before_discount": 100000000000,
              "hidden_price_display": null,
              "price_before_discount": 100000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-78%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven2-mgolk8tayn7tcb.16000081762315222.mp4",
                  "thumb_url": "id-11110105-6ven2-mgolk8tayn7tcb_cover",
                  "duration": 44,
                  "version": 2,
                  "vid": "id-11110105-6ven2-mgolk8tayn7tcb",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven2-mgolk8tayn7tcb.16000081762315222.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven2-mgolk8tayn7tcb.16000081762315222.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven2-mgolk8tayn7tcb.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Blue",
                    "Orange"
                  ],
                  "images": [
                    "id-11134207-8224w-mgolk3x8vswcf4",
                    "id-11134207-82251-mgolk3x8x7gse0"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.944086021505377,
                "rating_count": [
                  465,
                  0,
                  0,
                  4,
                  18,
                  443
                ],
                "rcount_with_context": 130,
                "rcount_with_image": 104
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-82250-mgolj2au9mha08",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 407210773721140,
                "bundle_deal_label": "Pilih 2, diskon 3%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 725154318057472,
                "price": 22490000000,
                "strikethrough_price": 100000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-78%",
                "model_id": 375075584185,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 100000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 959,
                "rounded_local_monthly_sold_count": 662,
                "local_monthly_sold_count_text": "662",
                "rounded_display_sold_count": 959,
                "display_sold_count_text": "959"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Oraimo Indonesia Official Shop",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44026150783,
            "shopid": 148920182,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mgolj2au9mha08\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000544,1518617,1002164,700700063,1668726,1011692,2018618,1016119,2153644,844931086908638,844931064601283,700005489,1059152,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718087960,1428713,298463379,1718093079,1119699,1015914,700190087,2213652,1400285055,2048660,2048661,825465608493600,700765096,700810055,299103323,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":579,\"model_id\":375075584185,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mgolj2au9mha08\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000544,1518617,1002164,700700063,1668726,1011692,2018618,1016119,2153644,844931086908638,844931064601283,700005489,1059152,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718087960,1428713,298463379,1718093079,1119699,1015914,700190087,2213652,1400285055,2048660,2048661,825465608493600,700765096,700810055,299103323,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":579,\"model_id\":375075584185,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44026150783",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41076150569,
              "shopid": 593679080,
              "name": "Goojodoq kipas angin mini 100% ori",
              "label_ids": [
                844931064601283,
                1119699,
                1400285055,
                844931086908638,
                298933384,
                1015914,
                700190087,
                298463379,
                1718093079,
                1049134,
                1400000535,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                2098621,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224v-mgol1ve2q3v0b7",
              "images": [
                "id-11134207-8224v-mgol1ve2q3v0b7",
                "id-11134207-8224t-mgol1ve0kumi64",
                "id-11134207-8224p-mgol1vgt39jj7a",
                "id-11134207-8224z-mgol1vlnur617b",
                "id-11134207-8224x-mhr5cduix7up28"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762314791,
              "sold": 5,
              "historical_sold": 16,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 6,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 32000000000,
              "price_min": 32000000000,
              "price_max": 32000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "GS0006",
                  "options": [
                    "UNGU",
                    "BIRU",
                    "PINK",
                    "NAILONG GS0001"
                  ],
                  "images": [
                    "id-11134207-8224z-mgol1vdvcmj2c0",
                    "id-11134207-82251-mgol1vdve13i38",
                    "id-11134207-8224p-mhu71bcfdypsc9",
                    "id-11134207-8224v-mhu71bcfgruod2"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  6,
                  0,
                  0,
                  0,
                  0,
                  6
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Singkawang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 32000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 310249408124,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 32000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 16,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 16,
                "display_sold_count_text": "16"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SINAR KHATULISTIWA ELECTRONIC",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41076150569,
            "shopid": 593679080,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mgol1ve2q3v0b7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1119699,1400285055,844931086908638,298933384,1015914,700190087,298463379,1718093079,1049134,1400000535,822059908662278,825465608494624,825465608499232,825465608497696,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":741,\"model_id\":310249408124,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mgol1ve2q3v0b7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1119699,1400285055,844931086908638,298933384,1015914,700190087,298463379,1718093079,1049134,1400000535,822059908662278,825465608494624,825465608499232,825465608497696,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":741,\"model_id\":310249408124,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41076150569",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47150762408,
              "shopid": 6487959,
              "name": "Oppo Watch X2 Resmi Oppo Original Baru",
              "label_ids": [
                2018619,
                844931064601283,
                298463379,
                1718093079,
                1059150,
                1400000569,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224v-mgm4hti3n8y1b7",
              "images": [
                "id-11134207-8224v-mgm4hti3n8y1b7",
                "id-11134207-8224s-mgm4hti54miz50"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762166217,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Oppo",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 530000000000,
              "price_min": 530000000000,
              "price_max": 530000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Labuhan Batu Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 530000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 375066696882,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 530000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "jez18",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47150762408,
            "shopid": 6487959,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mgm4hti3n8y1b7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1718093079,1059150,1400000569,822059908662278,825465608499232,825465608497696,1119699,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":149,\"model_id\":375066696882,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mgm4hti3n8y1b7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1718093079,1059150,1400000569,822059908662278,825465608499232,825465608497696,1119699,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":149,\"model_id\":375066696882,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47150762408",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49250704859,
              "shopid": 1663674638,
              "name": "ROBOT RWO1 Vista Smartwatch AMOLED 1.75 Inch Ultra Thin IP68 Black Original",
              "label_ids": [
                1400066568,
                844931064601283,
                844931086908638,
                298463379,
                1049116,
                700005558,
                822059908662278,
                825465608499232,
                825465608497696,
                1718087960,
                1428713,
                1119699,
                1718093079,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224r-mgce301o24nh40",
              "images": [
                "id-11134207-8224r-mgce301o24nh40",
                "id-11134207-8224t-mfumklmlbs3zcd",
                "id-11134207-8224w-mfumklmf5udn15",
                "id-11134207-8224w-mfumklmlbs3t70",
                "id-11134207-8224u-mfumklmne87e37",
                "id-11134207-82250-mfumklmp88wb48",
                "id-11134207-82251-mfumklmlr8cv41",
                "id-11134207-8224w-mfumklmnfmrub7",
                "id-11134207-8224x-mfumklmf4ft7a0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762089424,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "ROBOT",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 73305400000,
              "price_min": 73305400000,
              "price_max": 73305400000,
              "price_min_before_discount": 107802000000,
              "price_max_before_discount": 107802000000,
              "hidden_price_display": null,
              "price_before_discount": 107802000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-32%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 389166865330451,
                "bundle_deal_label": "Pilih 2, diskon 2%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Pasuruan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 778329276334080,
                "price": 73305400000,
                "strikethrough_price": 107802000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-32%",
                "model_id": 425061862542,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 107802000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gotham Jaya Elektro",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49250704859,
            "shopid": 1663674638,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mgce301o24nh40\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,844931086908638,298463379,1049116,700005558,822059908662278,825465608499232,825465608497696,1718087960,1428713,1119699,1718093079,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":49,\"model_id\":425061862542,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mgce301o24nh40\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,844931086908638,298463379,1049116,700005558,822059908662278,825465608499232,825465608497696,1718087960,1428713,1119699,1718093079,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":49,\"model_id\":425061862542,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49250704859",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41776023386,
              "shopid": 1557399265,
              "name": "D21 Smart Watch & Earbud Set AMOLED Health TWS Siri",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1718093079,
                1119699,
                1400285055,
                1015914,
                700190087,
                2068629,
                298938357,
                298938368,
                2098628,
                1718088045,
                298468389,
                2098629
              ],
              "image": "id-11134207-8224q-mgi3no69inf088",
              "images": [
                "id-11134207-8224q-mgi3no69inf088",
                "id-11134207-8224o-mgi3no65ytqi7b",
                "id-11134207-82250-mgi3no69lgjwee"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761924823,
              "sold": 1,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 28279200000,
              "price_min": 28279200000,
              "price_max": 28279200000,
              "price_min_before_discount": 310000000000,
              "price_max_before_discount": 310000000000,
              "hidden_price_display": null,
              "price_before_discount": 310000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": ">90% off",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "silver",
                    "black",
                    "black."
                  ],
                  "images": [
                    "id-11134207-8224r-mgi3no69mv4ce2",
                    "id-11134207-8224x-mgi3no69o9os97",
                    "id-11134207-8224x-mgi3no69po98e1"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp92RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 27779200000,
                "strikethrough_price": 310000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1327463398785032,
                "discount_text": ">90% off",
                "model_id": 315054335410,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1327463398785032,
                  "voucher_code": "MERAZ002",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1767705720,
                    "end_time": 1775820120,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 310000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 277.792",
                      "hidden_promotion_price": "Rp 2?7.792",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp92RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MerakTek",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41776023386,
            "shopid": 1557399265,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mgi3no69inf088\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1049122,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,1400285055,1015914,700190087,2068629,298938357,298938368,2098628,1718088045,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":429,\"model_id\":315054335410,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mgi3no69inf088\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1049122,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,1400285055,1015914,700190087,2068629,298938357,298938368,2098628,1718088045,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":429,\"model_id\":315054335410,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41776023386",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56300477880,
              "shopid": 1111346496,
              "name": "Garmin Forerunner 570 | 47mm AMOLED Screen with Built In Speaker and Microphone - Garansi Resmi 2 Tahun",
              "label_ids": [
                1012729,
                2018618,
                2153644,
                1428713,
                1718087960,
                1400066568,
                844931064601283,
                1718093079,
                700005506,
                1049135,
                822059908662278,
                825465608499232,
                834403089593352,
                825465608497696,
                2048660,
                2048661,
                700765096,
                2098621,
                2213652,
                1015914,
                700190087,
                1049116,
                1049117,
                1049127,
                1049112,
                700005489,
                1059152
              ],
              "image": "id-11134207-8224s-mjdopd7mq70kdf",
              "images": [
                "id-11134207-8224s-mjdopd7mq70kdf",
                "id-11134207-8224x-mgg42o00uy319d",
                "id-11134207-8224q-mgg42o00tjil83",
                "id-11134207-82251-mgg42o00s4y508"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761801939,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 878000000000,
              "price_min": 878000000000,
              "price_max": 878000000000,
              "price_min_before_discount": 923900000000,
              "price_max_before_discount": 923900000000,
              "hidden_price_display": null,
              "price_before_discount": 923900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-5%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven7-mgg431rd9h5b0d.16000081761801545.mp4",
                  "thumb_url": "id-11110105-6ven7-mgg431rd9h5b0d_cover",
                  "duration": 30,
                  "version": 2,
                  "vid": "id-11110105-6ven7-mgg431rd9h5b0d",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven7-mgg431rd9h5b0d.16000081761801545.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven7-mgg431rd9h5b0d.16000081761801545.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven7-mgg431rd9h5b0d.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Whitestone",
                    "Purple"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 823758269498368,
                "price": 878000000000,
                "strikethrough_price": 923900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-5%",
                "model_id": 310044104762,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 923900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Doran Wearable Authorized Store Bandung",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56300477880,
            "shopid": 1111346496,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mjdopd7mq70kdf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2018618,2153644,1428713,1718087960,1400066568,844931064601283,1718093079,700005506,1049135,822059908662278,825465608499232,834403089593352,825465608497696,2048660,2048661,700765096,2098621,2213652,1015914,700190087,1049116,1049117,1049127,1049112,700005489,1059152],\"matched_keywords\":[\"\"],\"merge_rank\":878,\"model_id\":310044104762,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mjdopd7mq70kdf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2018618,2153644,1428713,1718087960,1400066568,844931064601283,1718093079,700005506,1049135,822059908662278,825465608499232,834403089593352,825465608497696,2048660,2048661,700765096,2098621,2213652,1015914,700190087,1049116,1049117,1049127,1049112,700005489,1059152],\"matched_keywords\":[\"\"],\"merge_rank\":878,\"model_id\":310044104762,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56300477880",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26843443942,
              "shopid": 785475,
              "name": "Huawei Watch GT 6 Pro 46MM Smartwatch Sport Olahraga Kesehatan Garansi Resmi Huawei Indonesia",
              "label_ids": [
                1400066568,
                2018619,
                844931064601283,
                1400005526,
                1049116,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608492064,
                1119699,
                2048660,
                2048661,
                298463379,
                2023641,
                298468389
              ],
              "image": "id-11134207-82252-mgd7qfrj395926",
              "images": [
                "id-11134207-82252-mgd7qfrj395926",
                "id-11134207-82252-mgd7qfriw8b17b",
                "id-11134207-8224s-mgd7qfrj0g0d4e",
                "id-11134207-8224t-mgd7qfrixmvh0a",
                "id-11134207-82252-mgd7qfrj1ukt7a",
                "id-11134207-8224u-mgd7qfriz1fx01",
                "id-11134207-82252-mgd7qfrj4nppe8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761637209,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 459900000000,
              "price_min": 459900000000,
              "price_max": 459900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvc-mgdeiwbh9hxp67.16000081761637500.mp4",
                  "thumb_url": "id-11110105-6vdvc-mgdeiwbh9hxp67_cover",
                  "duration": 39,
                  "version": 2,
                  "vid": "id-11110105-6vdvc-mgdeiwbh9hxp67",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvc-mgdeiwbh9hxp67.16000081761637500.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvc-mgdeiwbh9hxp67.16000081761637500.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvc-mgdeiwbh9hxp67.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "46mm Black",
                    "46mm Brown"
                  ],
                  "images": [
                    "id-11134207-8224z-mgd7qfrj62a57a",
                    "id-11134207-8224u-mgd7qfrj7gulc2"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 459900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 430026547807,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 459900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Topsell Indonesia",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26843443942,
            "shopid": 785475,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mgd7qfrj395926\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,1400005526,1049116,822059908662278,825465608499232,825465608497696,825465608492064,1119699,2048660,2048661,298463379,2023641,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":616,\"model_id\":430026547807,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mgd7qfrj395926\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,1400005526,1049116,822059908662278,825465608499232,825465608497696,825465608492064,1119699,2048660,2048661,298463379,2023641,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":616,\"model_id\":430026547807,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26843443942",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54200254450,
              "shopid": 410265923,
              "name": "2025 New GPS Sports Watch Drop-resistant DM58 1.43inch AMOLED 5ATM Waterproof Altitude Compass Large-capacity Battery",
              "label_ids": [
                2018619,
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1718093079,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1015914,
                700190087,
                1119699,
                298933384,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8259r-mgd3w8z7c6q700",
              "images": [
                "sg-11134201-8259r-mgd3w8z7c6q700",
                "sg-11134201-8259y-mgd3wc02xqtn4e",
                "sg-11134201-82588-mgd3wccbvuob1b",
                "sg-11134201-8258k-mgd3wcl9saa39b",
                "sg-11134201-8257w-mgd3w9gmbqbsc2",
                "sg-11134201-8259c-mgd3w9vaa8lodc",
                "sg-11134201-825b7-mgd3wa9lenm420",
                "sg-11134201-825as-mgd3wak18c2586",
                "sg-11134201-825a0-mgd3watw7ytl3b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761619627,
              "sold": 1,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 9,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 4,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 52999900000,
              "price_min": 52999900000,
              "price_max": 52999900000,
              "price_min_before_discount": 159999900000,
              "price_max_before_discount": 159999900000,
              "hidden_price_display": null,
              "price_before_discount": 159999900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-67%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venf-mgd47y97cmj140.16000081761620201.mp4",
                  "thumb_url": "id-11110105-6venf-mgd47y97cmj140_cover",
                  "duration": 45,
                  "version": 2,
                  "vid": "id-11110105-6venf-mgd47y97cmj140",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venf-mgd47y97cmj140.16000081761620201.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venf-mgd47y97cmj140.16000081761620201.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venf-mgd47y97cmj140.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black",
                    "Red"
                  ],
                  "images": [
                    "sg-11134201-825a6-mgd3wpyokgeh8a",
                    "sg-11134201-82599-mgd3wqkytr0p0e"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.75,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  1,
                  3
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 373434085556561,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 814267926888448,
                "price": 52200000000,
                "strikethrough_price": 159999900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1298167501963264,
                "discount_text": "-67%",
                "model_id": 370025054792,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1298167501963264,
                  "voucher_code": "SEAR8521U",
                  "voucher_discount": 799900000,
                  "time_info": {
                    "start_time": 1764213300,
                    "end_time": 1772297940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 22999900000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 159999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Searchai Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54200254450,
            "shopid": 410265923,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8259r-mgd3w8z7c6q700\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,298463379,1718093079,700005490,1049120,822059908662278,825465608499232,825465608497696,825465608494624,1015914,700190087,1119699,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":358,\"model_id\":370025054792,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8259r-mgd3w8z7c6q700\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,298463379,1718093079,700005490,1049120,822059908662278,825465608499232,825465608497696,825465608494624,1015914,700190087,1119699,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":358,\"model_id\":370025054792,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54200254450",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49600251124,
              "shopid": 1607976290,
              "name": "Garmin GPSMAP H1 โ€“ Handheld GPS Navigator Original Garansi Resmi TAM 2 Tahun GPSMAP H 1 GPS MAP H1",
              "label_ids": [
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                700005495,
                700005490,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                298933384,
                2018619,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224r-mgc0f8ym5ukta3",
              "images": [
                "id-11134207-8224r-mgc0f8ym5ukta3",
                "id-11134207-8224t-mgc0f8y23uob51",
                "id-11134207-8224r-mgc0f8yc4umlc1",
                "id-11134207-8224o-mgc0f8xtitqhd3",
                "id-11134207-8224o-mg900gs9enm144"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761553487,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1261630000000,
              "price_min": 1261630000000,
              "price_max": 1261630000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven4-mgc0fyeu0emkdc.16000081761553294.mp4",
                  "thumb_url": "id-11110105-6ven4-mgc0fyeu0emkdc_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6ven4-mgc0fyeu0emkdc",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven4-mgc0fyeu0emkdc.16000081761553294.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-mgc0fyeu0emkdc.16000081761553294.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-mgc0fyeu0emkdc.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1261630000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 310022468306,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1261630000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RICOM - Radio Komunikasi & GPS",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49600251124,
            "shopid": 1607976290,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mgc0f8ym5ukta3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,298463379,700005495,700005490,822059908662278,825465608493600,825465608494624,825465608499232,1718093079,1119699,298933384,2018619,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":851,\"model_id\":310022468306,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mgc0f8ym5ukta3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,298463379,700005495,700005490,822059908662278,825465608493600,825465608494624,825465608499232,1718093079,1119699,298933384,2018619,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":851,\"model_id\":310022468306,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49600251124",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54850100310,
              "shopid": 1362684332,
              "name": "TERBARU! HAINOTEKO FG-5 SMARTWATCH 5G RAM 4/64GB DOWNLOAD APLIKASI, DUAL CAM, SIM CARD, GPS, Wi-Fi",
              "label_ids": [
                2018619,
                844931064601283,
                844931086908638,
                298463379,
                700005489,
                1059152,
                822059908662278,
                825465608492064,
                825465608493600,
                825465608494624,
                822120592861206,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384,
                2048660,
                2048661,
                700765096,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224z-mg7n5f45o2krc7",
              "images": [
                "id-11134207-8224z-mg7n5f45o2krc7",
                "id-11134207-82252-mg7n5f4dcsgcb8",
                "id-11134207-8224v-mg7n5f40shl6e2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761289523,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "HAINO TEKO",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 109900000000,
              "price_min": 109900000000,
              "price_max": 109900000000,
              "price_min_before_discount": 209900000000,
              "price_max_before_discount": 209900000000,
              "hidden_price_display": null,
              "price_before_discount": 209900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-48%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6vdvh-mg7nkhzkmdxrd2.16000031761289499.mp4",
                  "thumb_url": "id-11110107-6vdvh-mg7nkhzkmdxrd2_cover",
                  "duration": 53,
                  "version": 2,
                  "vid": "id-11110107-6vdvh-mg7nkhzkmdxrd2",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6vdvh-mg7nkhzkmdxrd2.16000031761289499.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvh-mg7nkhzkmdxrd2.16000031761289499.mp4",
                      "width": 480,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvh-mg7nkhzkmdxrd2.default.mp4",
                    "width": 480,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 801506371093504,
                "price": 109900000000,
                "strikethrough_price": 209900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-48%",
                "model_id": 410008218284,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 209900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HainoTeko",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54850100310,
            "shopid": 1362684332,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mg7n5f45o2krc7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,700005489,1059152,822059908662278,825465608492064,825465608493600,825465608494624,822120592861206,825465608499232,825465608497696,1718093079,1119699,298933384,2048660,2048661,700765096,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":485,\"model_id\":410008218284,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mg7n5f45o2krc7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,700005489,1059152,822059908662278,825465608492064,825465608493600,825465608494624,822120592861206,825465608499232,825465608497696,1718093079,1119699,298933384,2048660,2048661,700765096,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":485,\"model_id\":410008218284,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54850100310",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50850083602,
              "shopid": 37322813,
              "name": "ROBOT RWS2 Smartwatch 1.83\" HD Display BT Call Muslim Prayer Smart Watch Jam Tangan Pintar Tahan Air Hingga Kedalaman 10 Meter",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                298463379,
                1718093079,
                1119699,
                700765096,
                2098621,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                825465608493600,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82252-mg7jci78y7t5e4",
              "images": [
                "id-11134207-82252-mg7jci78y7t5e4",
                "id-11134207-82252-mg7jci6tgkcucf",
                "id-11134207-82252-mg7jci78wt8pf4",
                "id-11134207-8224w-mg7jci6rl53j2f",
                "id-11134207-8224o-mg7jci6pob9n10",
                "id-11134207-8224p-mg7jci7g0glp6f",
                "id-11134207-82252-mg7jci6yndvsa4",
                "id-11134207-8224u-mg7jci6szpji8e",
                "id-11134207-82250-mg7jci78zmdla6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761283074,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 22500000000,
              "price_min": 22500000000,
              "price_max": 22500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Pink"
                  ],
                  "images": [
                    "id-11134207-8224r-mg7jci7910y15e",
                    "id-11134207-8224v-mg7jci792fihce"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Tangerang Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 22500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 345007570347,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 22500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Ayo Gan Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc1LjIzOV97YjExYmEzYWY0ODU1N2ZiZTI1MDQ4NzA0ZGZhMzMzMDA6MDIwMDAwMzMzODU5NjRkODowMTAwMDE0MTNiYjA3MTIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDE1MjQ3MTMzMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50850083602,
            "shopid": 37322813,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mg7jci78y7t5e4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1718093079,1119699,700765096,2098621,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":683,\"model_id\":345007570347,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mg7jci78y7t5e4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1718093079,1119699,700765096,2098621,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":683,\"model_id\":345007570347,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50850083602",
            "debug_info": null
          }
        ],
        "total_fetched": 500,
        "total_count": 2500,
        "pages_fetched": 17,
        "has_more": false
      }
    },
    "https://shopee.co.id/search?facet=11044504": {
      "page_url": "https://shopee.co.id/search?facet=11044504",
      "page_type": "category",
      "page_params": {
        "match_id": 11044504,
        "filters": {}
      },
      "items": {
        "items": [
          {
            "item_basic": {
              "itemid": 40577890779,
              "shopid": 1344414745,
              "name": "Quick Release Band Nylon Loop Strap for Redmi Watch 5 Active/5 Lite / Amazfit Bip 6 Adjustable 22mm 20mm Belt Tali Jam Tangan Smartwatch for Samsung Watch Galaxy Watch 7 6 5 4 FE/Garmin Watch /Huawei Watch GT 5 4 3 2 /Xiaomi Watch/Itel/Aolon/advan",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                1718596,
                2213765,
                1119699,
                700765096,
                298488495,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8262a-mj9q5zim5w5ie8",
              "images": [
                "sg-11134201-8262a-mj9q5zim5w5ie8",
                "sg-11134201-82628-mj9q60c5knb846",
                "sg-11134201-8261z-mj9q61hobvghee",
                "sg-11134201-825zt-mj9q61yx1b7nf5",
                "sg-11134201-8262q-mj9q62i39tdy8c",
                "sg-11134201-8260d-mj9q6310uhhie7",
                "sg-11134201-8260s-mj9q63cq36yse9",
                "sg-11134201-82617-mj9q63zjb5kw48",
                "sg-11134201-82627-mj9q657gq6meb7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767952695,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4500000000,
              "price_min": 4500000000,
              "price_max": 4500000000,
              "price_min_before_discount": 9000000000,
              "price_max_before_discount": 9000000000,
              "hidden_price_display": null,
              "price_before_discount": 9000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kinx-mdlhy9vykndh92.16000081755589815.mp4",
                  "thumb_url": "sg-11110106-6kinx-mdlhy9vykndh92_cover",
                  "duration": 11,
                  "version": 2,
                  "vid": "sg-11110106-6kinx-mdlhy9vykndh92",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kinx-mdlhy9vykndh92.16000081755589815.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kinx-mdlhy9vykndh92.16000081755589815.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kinx-mdlhy9vykndh92.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Hyacinth Purple",
                    "Klein Blue",
                    "Water red",
                    "Advanced Gray",
                    "Milkshake powder",
                    "Island Blue",
                    "Blue",
                    "Spruce Green",
                    "orange",
                    "Plum",
                    "black",
                    "Field green",
                    "Starlight"
                  ],
                  "images": [
                    "sg-11134201-8261m-mj9q66dkv7k301",
                    "sg-11134201-8262m-mj9q68m7bzlx46",
                    "sg-11134201-8261g-mj9q6ahw2nlx17",
                    "sg-11134201-825zv-mj9q6c53c7i872",
                    "sg-11134201-8260t-mj9q6e41u5fq01",
                    "sg-11134201-82626-mj9q6g6wluype5",
                    "sg-11134201-8260h-mj9q6iaswutce9",
                    "sg-11134201-82625-mj9q6kj14uf7e7",
                    "sg-11134201-8262r-mj9q6mkltn9j41",
                    "sg-11134201-82612-mj9q6oo8apky95",
                    "sg-11134201-82627-mj9q6qx8t4huc7",
                    "sg-11134201-82615-mj9q6t2rhhxfb2",
                    "sg-11134201-8261e-mj9q6ve0q5tzd1"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Variation",
                  "options": [
                    "20mm Strap",
                    "22mm Strap"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 374886765965807,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 749772776980480,
                "price": 4500000000,
                "strikethrough_price": 9000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 128454386836,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 9000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "LCAPLE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40577890779,
            "shopid": 1344414745,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262a-mj9q5zim5w5ie8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1718596,2213765,1119699,700765096,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2373,\"model_id\":128454386836,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262a-mj9q5zim5w5ie8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1718596,2213765,1119699,700765096,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2373,\"model_id\":128454386836,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40577890779",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48504416384,
              "shopid": 1344444411,
              "name": "Silicone Strap for Redmi Watch 6 5 4 Strap Original Silikon Soft Sport Rubber Band with Same Color Buckle Bracelet Watchband Tali Jam Smartwatch for Xiaomi Mi Band 9 8 Pro",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                1718596,
                2213765,
                1119699,
                700765096,
                298488495,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8260b-mj9of6d943k562",
              "images": [
                "sg-11134201-8260b-mj9of6d943k562",
                "sg-11134201-82609-mj9nkgwyjtvpe5",
                "sg-11134201-825zw-mj9ofa2imjusbd",
                "sg-11134201-825zm-mj9ofbm71jicdd",
                "sg-11134201-82611-mj9ofct1r3ls5c",
                "sg-11134201-825zr-mj9nkjdbuakmbd",
                "sg-11134201-82623-mj9ofdau31fn7b",
                "sg-11134201-8260f-mj9ofdlhtwqs6a",
                "sg-11134201-8260a-mj9ofdwr8d8ib1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767949749,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2990000000,
              "price_min": 2990000000,
              "price_max": 2990000000,
              "price_min_before_discount": 5980000000,
              "price_max_before_discount": 5980000000,
              "hidden_price_display": null,
              "price_before_discount": 5980000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "midnight blue",
                    " pink sand",
                    "Misty Blue",
                    "ivory",
                    "Smoky Purple",
                    "olive",
                    "wine red",
                    "silver gray",
                    "black"
                  ],
                  "images": [
                    "sg-11134201-82609-mj9ofeo4g4qr16",
                    "sg-11134201-8262f-mj9offj6zmrpdf",
                    "sg-11134201-8260z-mj9ofgfy0emfb4",
                    "sg-11134201-825zm-mj9ofhc5zm6fc9",
                    "sg-11134201-8262n-mj9ofi7wyfpfd2",
                    "sg-11134201-8260n-mj9ofizg6io1da",
                    "sg-11134201-8261k-mj9ofjvbtwcg08",
                    "sg-11134201-8261p-mj9ofsglnxtvb4",
                    "sg-11134201-82617-mj9oftcjjdvq88"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 6/5/4",
                    "Mi Band 9 Pro",
                    "Mi Band 8 Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 374890880581698,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 749782205792256,
                "price": 2990000000,
                "strikethrough_price": 5980000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 335411476841,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5980000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RMUTANE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48504416384,
            "shopid": 1344444411,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260b-mj9of6d943k562\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1718596,2213765,1119699,700765096,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":402,\"model_id\":335411476841,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260b-mj9of6d943k562\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1718596,2213765,1119699,700765096,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":402,\"model_id\":335411476841,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48504416384",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55204390996,
              "shopid": 1481886281,
              "name": "Soft Rubber Strap for Redmi Watch 5 Active / Redmi Watch 5 Lite Quick Release 22mm 20mm Silicone Band Tali Jam Tangan Smartwatch for Samsung Watch Galaxy Watch 7 6 5 4 FE/Garmin /Huawei Watch GT 6 5/Amazfit Bip 6 GTS GTR /Xiaomi/Itel /Aolon/advan",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                1718596,
                2213765,
                700765096,
                700810080,
                298488495,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-82627-mj9nkgbd3wg62d",
              "images": [
                "sg-11134201-82627-mj9nkgbd3wg62d",
                "sg-11134201-8262a-mj9nkgljx5ab02",
                "sg-11134201-8262l-mj9nkgyplt6p71",
                "sg-11134201-825zs-mj9nkhg6kzrad6",
                "sg-11134201-8260k-mj9nkhuh9wxtbd",
                "sg-11134201-8262z-mj9nki4agxl386",
                "sg-11134201-8262a-mj9nkiej5k3r8c",
                "sg-11134201-8262q-mj9nkir33toh2c",
                "sg-11134201-8260m-mj9nkj0k1s0139"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767948295,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2790000000,
              "price_min": 2790000000,
              "price_max": 2790000000,
              "price_min_before_discount": 5580000000,
              "price_max_before_discount": 5580000000,
              "hidden_price_display": null,
              "price_before_discount": 5580000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16000081716192284.mp4",
                  "thumb_url": "sg-11110106-7rd75-lvio4y2laqhd9c",
                  "duration": 11,
                  "version": 2,
                  "vid": "sg-11110106-6khxt-lvio4vc3aipfdd",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16003221722507009.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16003221722507009.mp4",
                      "width": 360,
                      "height": 480
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16004081742283531.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16004081742283531.mp4",
                      "width": 360,
                      "height": 480
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16006731725169025.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16006731725169025.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16006711723457699.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16006711723457699.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16004091721349391.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16004091721349391.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16006591721349394.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16006591721349394.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16000081716192284.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16000081716192284.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16003251718649312.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16003251718649312.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16003241718649312.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16003241718649312.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16004101742283532.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16004101742283532.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16004111721349394.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.16004111721349394.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxt-lvio4vc3aipfdd.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "black(strap)",
                    "white(strap)",
                    "pink(strap)",
                    "Ice Gray(strap)",
                    "blue(strap)",
                    "Indigo Blue(strap)",
                    "dark green(strap)",
                    "light green(strap)",
                    "yellow(strap)",
                    "wine(strap)",
                    "Steel Grey(strap)",
                    "purple(strap)",
                    "light blue(strap)",
                    "red(strap)",
                    "midnight(strap)"
                  ],
                  "images": [
                    "sg-11134201-82626-mj9nkj78pqtda8",
                    "sg-11134201-8262e-mj9mfwftr94zb2",
                    "sg-11134201-8260n-mj9nkjten2tg8f",
                    "sg-11134201-82631-mj9nkk1guyv9e8",
                    "sg-11134201-82622-mj9nkkluycxs0a",
                    "sg-11134201-825zs-mj9nkl46vfus27",
                    "sg-11134201-8260d-mj9nklnn943o79",
                    "sg-11134201-8261g-mj9nkm65kk5i4b",
                    "sg-11134201-8260f-mj9nkmjlbmkgd2",
                    "sg-11134201-8262x-mj9nkn1aufia6d",
                    "sg-11134201-8261s-mj9nknph41z740",
                    "sg-11134201-8261f-mj9nknxevtaf5b",
                    "sg-11134201-8261r-mj9nkoirffnq11",
                    "sg-11134201-8262k-mj9nkozwz3es95",
                    "sg-11134201-82629-mj9nkpar5ouc3c"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm watch band",
                    "22mm watch band",
                    "Redmi Watch 5 Active",
                    "Redmi Watch 5 Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372020215039022,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744039557694464,
                "price": 2790000000,
                "strikethrough_price": 5580000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 430411318804,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5580000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "YUIYUKARI",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55204390996,
            "shopid": 1481886281,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82627-mj9nkgbd3wg62d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,1718596,2213765,700765096,700810080,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2284,\"model_id\":430411318804,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82627-mj9nkgbd3wg62d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,1718596,2213765,700765096,700810080,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2284,\"model_id\":430411318804,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55204390996",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45904405964,
              "shopid": 1176840059,
              "name": "Nylon Loop Strap for Redmi Watch 5 Active/5 Lite / Amazfit Bip 6 Adjustable 22mm 20mm Quick Release Band Tali Jam Tangan Smartwatch for Samsung Watch Galaxy Watch 7 6 5 4 FE/Garmin Watch /Huawei Watch GT 5 4 3 2 /Xiaomi Watch/Itel/Aolon/advan",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                1718596,
                2213765,
                1119699,
                700765096,
                298488495,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8260r-mj9mhx31v3eo8c",
              "images": [
                "sg-11134201-8260r-mj9mhx31v3eo8c",
                "sg-11134201-825zm-mj9mhy6zaww22f",
                "sg-11134201-8260h-mj9mhyx6ox6qe4",
                "sg-11134201-8261x-mj9mhzuuu7lsf6",
                "sg-11134201-8261h-mj9mi0whws91b4",
                "sg-11134201-8262j-mj9mi29cl5oi5b",
                "sg-11134201-8261d-mj9mi3d0b7rb4e",
                "sg-11134201-8260c-mj9mi406eps798",
                "sg-11134201-8261g-mj9mi51dlladbb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767946534,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4500000000,
              "price_min": 4500000000,
              "price_max": 4500000000,
              "price_min_before_discount": 9000000000,
              "price_max_before_discount": 9000000000,
              "hidden_price_display": null,
              "price_before_discount": 9000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kinx-mdlhy9vykndh92.16000081755589815.mp4",
                  "thumb_url": "sg-11110106-6kinx-mdlhy9vykndh92_cover",
                  "duration": 11,
                  "version": 2,
                  "vid": "sg-11110106-6kinx-mdlhy9vykndh92",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kinx-mdlhy9vykndh92.16000081755589815.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kinx-mdlhy9vykndh92.16000081755589815.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kinx-mdlhy9vykndh92.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Hyacinth Purple",
                    "Klein Blue",
                    "Water red",
                    "Advanced Gray",
                    "Milkshake powder",
                    "Island Blue",
                    "Blue",
                    "Spruce Green",
                    "orange",
                    "Plum",
                    "black",
                    "Field green",
                    "Starlight"
                  ],
                  "images": [
                    "sg-11134201-825zz-mj9mi6iut5oi6b",
                    "sg-11134201-825zl-mj9mi99yglqbda",
                    "sg-11134201-82605-mj9mic46u4g3cb",
                    "sg-11134201-8262f-mj9miepptds2a1",
                    "sg-11134201-8262a-mj9mihlvaio4b6",
                    "sg-11134201-8260u-mj9mik9cxo1s78",
                    "sg-11134201-825zu-mj9mim2tx5ol29",
                    "sg-11134201-82600-mj9mio6ogxz426",
                    "sg-11134201-8261g-mj9miq7bssu9a2",
                    "sg-11134201-82634-mj9mis5uasck8a",
                    "sg-11134201-8260d-mj9miucfj0g068",
                    "sg-11134201-82628-mj9miwadnri9e0",
                    "sg-11134201-8260o-mj9miyf5udc4f8"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Variation",
                  "options": [
                    "20mm Strap",
                    "22mm Strap"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 807868299805696,
                "price": 4500000000,
                "strikethrough_price": 9000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 345411151524,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 9000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almnvo Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45904405964,
            "shopid": 1176840059,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260r-mj9mhx31v3eo8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1718596,2213765,1119699,700765096,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2303,\"model_id\":345411151524,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260r-mj9mhx31v3eo8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1718596,2213765,1119699,700765096,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2303,\"model_id\":345411151524,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45904405964",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51354390528,
              "shopid": 1176840059,
              "name": "22mm 20mm Nylon Scrunchie Strap Band for Redmi Watch 5 Active/Redmi Watch 5 Lite/Samsung Galaxy Watch 7 6 5 4 FE/Huawei Watch GT 6 5 Quick Release Band Belt for Tali Jam Tangan Smartwatch Garmin/Amazfit Bip 6 GTS GTR/Xiaomi Watch/Active/Itel/Aolon/Advan",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                1718596,
                2213765,
                1119699,
                700765096,
                298488495,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8261j-mj9mfr1qrj7p63",
              "images": [
                "sg-11134201-8261j-mj9mfr1qrj7p63",
                "sg-11134201-825zw-mj9mfrl005j92c",
                "sg-11134201-8262e-mj9mfs398cue7c",
                "sg-11134201-8262o-mj9mfshpdvyb39",
                "sg-11134201-82631-mj9mfsw8z479b7",
                "sg-11134201-8260y-mj9mft5rmvia61",
                "sg-11134201-8261h-mj9mftkrey9se4",
                "sg-11134201-82606-mj9mfu2xu0ozb7",
                "sg-11134201-8260m-mj9mfuov3k78c9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767946399,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2250000000,
              "price_min": 2250000000,
              "price_max": 2250000000,
              "price_min_before_discount": 4500000000,
              "price_max_before_discount": 4500000000,
              "hidden_price_display": null,
              "price_before_discount": 4500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "White",
                    "Black",
                    "Grey",
                    "Pink sand",
                    "Red",
                    "Bohemia color",
                    "Bohemia strip",
                    "Midnight",
                    "Army Green",
                    "Wine red",
                    "brown cheetah",
                    "Green Arrow",
                    "Bohemia balck",
                    "Bohemia purple",
                    "Bohemia tourquise",
                    "Dark Gray",
                    "lilac",
                    "Navy Blue",
                    "Deep black",
                    "Pink",
                    "Rainbow"
                  ],
                  "images": [
                    "sg-11134201-8261k-mj9mfuybkm4k8e",
                    "sg-11134201-8260m-mj9mfvhatona1b",
                    "sg-11134201-8260z-mj9mfvxbczy9b5",
                    "sg-11134201-82608-mj9mfwipmih3dd",
                    "sg-11134201-825zt-mj9mfx0qyvwg6d",
                    "sg-11134201-8260l-mj9mfxhw5wjp60",
                    "sg-11134201-8262n-mj9mfy354ao37e",
                    "sg-11134201-8262y-mj9mfypgs5q83c",
                    "sg-11134201-8261c-mj9mfz33v9c0ef",
                    "sg-11134201-825zq-mj9mfzcuesxtd0",
                    "sg-11134201-8260e-mj9mfzthccn7d2",
                    "sg-11134201-8261z-mj9mg0h6pssib7",
                    "sg-11134201-825zx-mj9mg0t5k1z837",
                    "sg-11134201-8261c-mj9mg13mpkw441",
                    "sg-11134201-8261y-mj9mg1ks268669",
                    "sg-11134201-825zw-mj9mg1udx2ip71",
                    "sg-11134201-8260m-mj9mg230mept3c",
                    "sg-11134201-8262e-mj9mg2mgavwk5f",
                    "sg-11134201-8262o-mj9mg34tmhomf6",
                    "sg-11134201-8260p-mj9mg3dwzmdf1a",
                    "sg-11134201-825zn-mj9mg3xiznk5dd"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "22mm",
                    "20mm",
                    "Redmi Watch 5 Active",
                    "Redmi Watch 5 Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 807868299805696,
                "price": 2250000000,
                "strikethrough_price": 4500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 380411140577,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almnvo Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51354390528,
            "shopid": 1176840059,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261j-mj9mfr1qrj7p63\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1718596,2213765,1119699,700765096,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2291,\"model_id\":380411140577,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261j-mj9mfr1qrj7p63\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1718596,2213765,1119699,700765096,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2291,\"model_id\":380411140577,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51354390528",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57104370525,
              "shopid": 1592077131,
              "name": "Genuine Leather Strap for Mi Band 10 9 8 NFC Sport Replacement Band Wristband Belt Bracelet Accessories Tali Jam Tangan Smartwatch for Xiaomi Miband 8 9 10 Strap",
              "label_ids": [
                2018618,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                2213765,
                700765096,
                2213652,
                298488495,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-82634-mj9879dyi9s10b",
              "images": [
                "sg-11134201-82634-mj9879dyi9s10b",
                "sg-11134201-825zn-mj9879ueark328",
                "sg-11134201-82612-mj86w1lsrx1dc5",
                "sg-11134201-8261j-mj987b8h13b40b",
                "sg-11134201-8261d-mj987bvdam82c1",
                "sg-11134201-825zr-mj987c8dbk7bf8",
                "sg-11134201-825zw-mj86w2wtsa9uec",
                "sg-11134201-825zy-mj987d0ie96se0",
                "sg-11134201-82608-mj987db560aq6a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767922452,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5130000000,
              "price_min": 5130000000,
              "price_max": 5130000000,
              "price_min_before_discount": 10800000000,
              "price_max_before_discount": 10800000000,
              "hidden_price_display": null,
              "price_before_discount": 10800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9ak-mi734ln162o6e9.16000081765613608.mp4",
                  "thumb_url": "sg-11110106-6v9ak-mi734ln162o6e9_cover",
                  "duration": 16,
                  "version": 2,
                  "vid": "sg-11110106-6v9ak-mi734ln162o6e9",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9ak-mi734ln162o6e9.16000081765613608.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9ak-mi734ln162o6e9.16000081765613608.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9ak-mi734ln162o6e9.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "black(strap)",
                    "white(strap)",
                    "brown(strap)",
                    "pink(strap)",
                    "blue(strap)",
                    "coffee(strap)",
                    "star(strap)"
                  ],
                  "images": [
                    "sg-11134201-82601-mj987dmrbshw2c",
                    "sg-11134201-825zx-mj987dvqd05ef7",
                    "sg-11134201-82635-mj987e64joqq4c",
                    "sg-11134201-8260b-mj987efzuk1z00",
                    "sg-11134201-8261b-mj987eob1kav41",
                    "sg-11134201-8260x-mj987eyrnc3o03",
                    "sg-11134201-8262x-mj987f7bi6f6f8"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Mi band 10 9 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359072125956385,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5130000000,
                "strikethrough_price": 10800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 385409443807,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 10800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 51.300",
                      "hidden_promotion_price": "Rp ?1.300",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57104370525,
            "shopid": 1592077131,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82634-mj9879dyi9s10b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931064601283,844931086908638,298463379,1059154,1059152,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,700765096,2213652,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2280,\"model_id\":385409443807,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82634-mj9879dyi9s10b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931064601283,844931086908638,298463379,1059154,1059152,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,700765096,2213652,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2280,\"model_id\":385409443807,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57104370525",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51504365883,
              "shopid": 1592077131,
              "name": "20mm 22mm Quick Release Waterproof Strap for Tali Jam Tangan Smartwatch Redmi Watch 5 Active /Redmi Watch 5 Lite Sport Silicone Rubber Band for Samsung Galaxy Watch FE 7 6 5 4/Garmin Watch/Huawei Watch GT 6 5 4/Amazfit/Xiaomi/Itel 011 12/Aolon/Advan",
              "label_ids": [
                2018618,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                1119699,
                1718596,
                2213765,
                700765096,
                2213652,
                298488495,
                2103651,
                2143613,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8262n-mj987akvzls282",
              "images": [
                "sg-11134201-8262n-mj987akvzls282",
                "sg-11134201-8262m-mj987b8ovdvme1",
                "sg-11134201-82628-mj987bqchczrc4",
                "sg-11134201-82604-mj987c67zima63",
                "sg-11134201-8260h-mj987cldupz456",
                "sg-11134201-8262h-mj987d3hglxc6e",
                "sg-11134201-82630-mj987dgpvll2b2",
                "sg-11134201-8261d-mj987dxv9lhj51",
                "sg-11134201-825zz-mj987edhk5xjb5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767922457,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3027000000,
              "price_min": 3027000000,
              "price_max": 3027000000,
              "price_min_before_discount": 6580000000,
              "price_max_before_discount": 6580000000,
              "hidden_price_display": null,
              "price_before_discount": 6580000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kipn-ma9asoe3x8cl86.16000081748313651.mp4",
                  "thumb_url": "sg-11110106-6kipn-ma9asoe3x8cl86_cover",
                  "duration": 34,
                  "version": 2,
                  "vid": "sg-11110106-6kipn-ma9asoe3x8cl86",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kipn-ma9asoe3x8cl86.16000081748313651.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kipn-ma9asoe3x8cl86.16000081748313651.mp4",
                      "width": 1280,
                      "height": 672
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kipn-ma9asoe3x8cl86.default.mp4",
                    "width": 1028,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Army green(strap)",
                    "Wine red(strap)",
                    "Rose Pink(strap)",
                    "Teal(strap)",
                    "Navy Blue(strap)",
                    "beige(strap)",
                    "Amber Yellow(strap)",
                    "Grey(strap)",
                    "White(strap)",
                    "Black(strap)",
                    "balck(case)"
                  ],
                  "images": [
                    "sg-11134201-8260j-mj987es8og7b6d",
                    "sg-11134201-8260g-mj987f7979c778",
                    "sg-11134201-82631-mj987fkeggzme1",
                    "sg-11134201-8260t-mj987fyi5wxt79",
                    "sg-11134201-82623-mj987gcsjn5x25",
                    "sg-11134201-8260t-mj987grsd62q3d",
                    "sg-11134201-82612-mj987h8ge39f0b",
                    "sg-11134201-8262e-mj987hmyhwcic9",
                    "sg-11134201-82627-mj987i0bv8jp9e",
                    "sg-11134201-8260q-mj987iehx05e58",
                    "sg-11134201-82613-mj987iquaoeb9c"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm watch band",
                    "22mm watch band",
                    "Redmi Watch 5 Active",
                    "Redmi Watch 5 Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359072125956385,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 3027000000,
                "strikethrough_price": 6580000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 410409443692,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6580000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 30.270",
                      "hidden_promotion_price": "Rp ?0.270",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51504365883,
            "shopid": 1592077131,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262n-mj987akvzls282\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1119699,1718596,2213765,700765096,2213652,298488495,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":989,\"model_id\":410409443692,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262n-mj987akvzls282\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1119699,1718596,2213765,700765096,2213652,298488495,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":989,\"model_id\":410409443692,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51504365883",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48304370371,
              "shopid": 744247506,
              "name": "GPS Garmin 67 Bekas / Garmin GPSMap 67 Second Komplit",
              "label_ids": [
                2018619,
                2023641,
                298888358,
                298938357,
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1059152,
                1049124,
                822059908662278,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                1718093079,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                2098628,
                298938368,
                2098629,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82252-mj8fntnpqpds84",
              "images": [
                "id-11134207-82252-mj8fntnpqpds84",
                "id-11134207-8224t-mj8fntnlakn939",
                "id-11134207-8224t-mj8fntnlsu1284",
                "id-11134207-8224s-mj8fntqri0w42a",
                "id-11134207-8224u-mj8fntoje8zo36",
                "id-11134207-8224t-mj8fntoztm2ta6",
                "id-11134207-82250-mj8fntpuubk7a3",
                "id-11134207-8224o-mj8fntq89iwwaa",
                "id-11134207-8224o-mj8fntr1j0uc4b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767874645,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 700000000000,
              "price_min": 700000000000,
              "price_max": 700000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvg-mj8gjdgvauiuc3.16000041767875933.mp4",
                  "thumb_url": "id-11110105-6vdvg-mj8gjdgvauiuc3_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6vdvg-mj8gjdgvauiuc3",
                  "formats": [
                    {
                      "format": 1600004,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvg-mj8gjdgvauiuc3.16000041767875933.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvg-mj8gjdgvauiuc3.16000041767875933.mp4",
                      "width": 360,
                      "height": 646
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvg-mj8gjdgvauiuc3.default.mp4",
                    "width": 464,
                    "height": 832
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp1,1JT X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 700000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390407693316,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 700000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp1,2JT x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "TOKO SURVEYOR JAKARTA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48304370371,
            "shopid": 744247506,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj8fntnpqpds84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298888358,298938357,1718087960,1428713,844931064601283,298463379,1059152,1049124,822059908662278,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1718093079,1119699,1718596,2213765,700765096,298488495,2098628,298938368,2098629,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1935,\"model_id\":390407693316,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj8fntnpqpds84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298888358,298938357,1718087960,1428713,844931064601283,298463379,1059152,1049124,822059908662278,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1718093079,1119699,1718596,2213765,700765096,298488495,2098628,298938368,2098629,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1935,\"model_id\":390407693316,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48304370371",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44604354756,
              "shopid": 1589172126,
              "name": "22/20mm Quick Release Silicone Strap for Tali Jam Tangan Smartwatch Samsung Watch Galaxy Watch 7 6 5 4 FE Rubber Band for Huawei Watch GT 6 5 4 3/Garmin/Amazfit GTS GTR /Xiaomi Watch S4 S1 S2 S3/Active/Redmi Watch 5 Active/5 Lite/Itel 011 12/Aolon/Advan",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718596,
                2213765,
                1119699,
                298488495,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-82607-mj8dmmzbm7sy39",
              "images": [
                "sg-11134201-82607-mj8dmmzbm7sy39",
                "sg-11134201-82601-mj8dmnb4g5ja46",
                "sg-11134201-8261q-mj8dmnlou9l23f",
                "sg-11134201-82604-mj8dmnvw8jcwfe",
                "sg-11134201-8261r-mj8dmo5rb0ue66",
                "sg-11134201-8260v-mj8dmofv43ycbf",
                "sg-11134201-825zl-mj8dmop8p9fqda",
                "sg-11134201-8261n-mj8dmozfzbi9d7",
                "sg-11134201-8262n-mj8dmp9r1ptu0c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767871043,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2690000000,
              "price_min": 2690000000,
              "price_max": 2690000000,
              "price_min_before_discount": 6200000000,
              "price_max_before_discount": 6200000000,
              "hidden_price_display": null,
              "price_before_discount": 6200000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-57%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khxv-m3xd0ebwqn5y3d.16000081734515517.mp4",
                  "thumb_url": "sg-11110106-6khxv-m3xd0ebwqn5y3d_cover",
                  "duration": 38,
                  "version": 2,
                  "vid": "sg-11110106-6khxv-m3xd0ebwqn5y3d",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxv-m3xd0ebwqn5y3d.16003251738383602.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxv-m3xd0ebwqn5y3d.16003251738383602.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxv-m3xd0ebwqn5y3d.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Orange",
                    "Star",
                    "Stone",
                    "Pink Sands",
                    "Pine green",
                    "Black",
                    "Wine red",
                    "Navy blue",
                    "Red",
                    "Purple",
                    "Lavender",
                    "White",
                    "Olive"
                  ],
                  "images": [
                    "sg-11134201-8261d-mj8dmpj40cn81b",
                    "sg-11134201-8261d-mj8dmpra8yrm1e",
                    "sg-11134201-8261x-mj8dmq32dm9va3",
                    "sg-11134201-82625-mj8dmqbmwao556",
                    "sg-11134201-82631-mj8dmqjg3pj4b4",
                    "sg-11134201-82605-mj8dmqr1ff9id4",
                    "sg-11134201-8260s-mj8dmr08rtvke7",
                    "sg-11134201-82630-mj8dmr7r65fq1a",
                    "sg-11134201-8262i-mj8dmriwpjpc11",
                    "sg-11134201-8260u-mj8dmrqv0xdw09",
                    "sg-11134201-8261k-mj8dmry29iivc1",
                    "sg-11134201-825zl-mj8dms4ttgxte2",
                    "sg-11134201-8261o-mj8dmscwi7sx95"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm watch band",
                    "22mm watch band"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359070448239000,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718141299146752,
                "price": 2690000000,
                "strikethrough_price": 6200000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-57%",
                "model_id": 277319003370,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6200000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Fulsaxad",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44604354756,
            "shopid": 1589172126,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82607-mj8dmmzbm7sy39\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1718596,2213765,1119699,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2308,\"model_id\":277319003370,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82607-mj8dmmzbm7sy39\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1718596,2213765,1119699,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2308,\"model_id\":277319003370,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44604354756",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42877839808,
              "shopid": 1589172126,
              "name": "Stainless Steel Strap +Soft Film for IWatch Apple Watch Ultra/SE 3 2 Series 11 10 9 8 7 6 49 46 45 44 42 41 40 38mm Metal Band Screen Protector Belt Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718596,
                2213765,
                1119699,
                298488495,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-82624-mj8d8kdu2877aa",
              "images": [
                "sg-11134201-82624-mj8d8kdu2877aa",
                "sg-11134201-8262k-mj8d8kqnot1f9e",
                "sg-11134201-8262b-mj8d8l0baygx75",
                "sg-11134201-8261y-mj8d8ld8wt8n4b",
                "sg-11134201-8260a-mj8d8llfruv817",
                "sg-11134201-825zx-mj8d8m1po8w32b",
                "sg-11134201-8262r-mj8d8mberthd3d",
                "sg-11134201-8262z-mj8d8mjr0phg37",
                "sg-11134201-8261v-mj863vjq2k1td5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767870385,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5149000000,
              "price_min": 5149000000,
              "price_max": 5149000000,
              "price_min_before_discount": 16640000000,
              "price_max_before_discount": 16640000000,
              "hidden_price_display": null,
              "price_before_discount": 16640000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-69%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                  "thumb_url": "sg-11110106-7rbk7-lq8wjhcokltw28",
                  "duration": 10,
                  "version": 2,
                  "vid": "sg-11110106-6khwg-lq8wjb83dfai8d",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600264,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600393,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600266,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600658,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600265,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600394,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600395,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600396,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600267,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600268,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600566,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Black(strap+film)",
                    "Star(strap+film)",
                    "Silver(strap+film)",
                    "Gold(strap+film)",
                    "RoseGold(strap+film)",
                    "Blue(strap+film)",
                    "Rose red(strap+film)"
                  ],
                  "images": [
                    "sg-11134201-82635-mj8d8n7lb20yd6",
                    "sg-11134201-825zq-mj8d8nmijx1i30",
                    "sg-11134201-8262f-mj8d8nv4tres3b",
                    "sg-11134201-82619-mj8d8oakj11hf4",
                    "sg-11134201-825zs-mj85fm9cvqircb",
                    "sg-11134201-8260w-mj8d8ot3fi118b",
                    "sg-11134201-825zm-mj8d8p6w934734"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "smartwear_size",
                  "options": [
                    "38mm",
                    "40mm",
                    "41mm",
                    "42mm",
                    "44mm",
                    "45mm",
                    "49mm",
                    "Series 11 10 42mm",
                    "Series 11 10 46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359070448239000,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5149000000,
                "strikethrough_price": 16640000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-69%",
                "model_id": 325407429862,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 16640000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 51.490",
                      "hidden_promotion_price": "Rp ?1.490",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Fulsaxad",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42877839808,
            "shopid": 1589172126,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82624-mj8d8kdu2877aa\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1718596,2213765,1119699,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2336,\"model_id\":325407429862,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82624-mj8d8kdu2877aa\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1718596,2213765,1119699,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2336,\"model_id\":325407429862,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42877839808",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44804349514,
              "shopid": 1697484463,
              "name": "Kids Smartwatch Q19 Smartwatch Anak GPS SOS Tahan Air Pintar Anak",
              "label_ids": [
                844931086908638,
                844931064601283,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1718596,
                2213765,
                1119699,
                298488495
              ],
              "image": "id-11134207-8224y-mj89xhecxzwh46",
              "images": [
                "id-11134207-8224y-mj89xhecxzwh46",
                "id-11134207-82251-mj89xhed0t1d6b",
                "id-11134207-8224t-mj8a2afhkgzr20",
                "id-11134207-82251-mj8a2afhlvk7ba",
                "id-11134207-8224r-mj89xheczegx33",
                "id-11134207-8224w-mj89xhed27lt46",
                "id-11134207-8224x-mj89xhektqmc04",
                "id-11134207-8224x-mj8a2afezrid9a",
                "id-11134207-8224r-mj8a2aff162t83"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767866754,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 12784000000,
              "price_min": 12784000000,
              "price_max": 12784000000,
              "price_min_before_discount": 63920000000,
              "price_max_before_discount": 63920000000,
              "hidden_price_display": null,
              "price_before_discount": 63920000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-80%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven0-mj8afqp8eux236.16000101767865673.mp4",
                  "thumb_url": "id-11110105-6ven0-mj8afqp8eux236_cover",
                  "duration": 25,
                  "version": 2,
                  "vid": "id-11110105-6ven0-mj8afqp8eux236",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven0-mj8afqp8eux236.16000101767865673.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven0-mj8afqp8eux236.16000101767865673.mp4",
                      "width": 960,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven0-mj8afqp8eux236.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Biru",
                    "Hitam",
                    "Merah",
                    "Merah Muda",
                    "Ungu",
                    "hijau"
                  ],
                  "images": [
                    "id-11134207-8224p-mj8a2aff3z7pbf",
                    "id-11134207-8224o-mj8a2aff5ds5b0",
                    "id-11134207-8224s-mj8a2aff6scl71",
                    "id-11134207-8224z-mj8a2aff86x19d",
                    "id-11134207-8224t-mj8a2aff9lhhae",
                    "id-11134207-8224u-mj8a2affb01x54"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 826793913810944,
                "price": 12784000000,
                "strikethrough_price": 63920000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-80%",
                "model_id": 355407227653,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 63920000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "3h01yvresd",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44804349514,
            "shopid": 1697484463,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mj89xhecxzwh46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1718596,2213765,1119699,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":2151,\"model_id\":355407227653,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mj89xhecxzwh46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1718596,2213765,1119699,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":2151,\"model_id\":355407227653,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44804349514",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49954349456,
              "shopid": 310075078,
              "name": "Case Garmin Venu 4 2in1 with Tempered Glass / Bumper Case Anti Gores Tempered Glass Garmin Venu 4 41mm 45mm",
              "label_ids": [
                2023641,
                2018619,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                700005490,
                700005495,
                1718093079,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                825465608494624,
                825465608499232,
                2048661,
                825465608493600,
                822120592861206,
                840955085144628,
                827380695406658,
                1718596,
                2213765,
                700765096,
                298488495,
                298933384
              ],
              "image": "sg-11134201-8261l-mj8b1hvd6kufde",
              "images": [
                "sg-11134201-8261l-mj8b1hvd6kufde",
                "sg-11134201-8261x-mj8b1i79u7t1cd",
                "sg-11134201-8260i-mj8b1ijk8ao45d",
                "sg-11134201-82625-mj8b1isq7jer64",
                "sg-11134201-8260w-mj8b1j2kgft3ea",
                "sg-11134201-8260m-mj8b1jazsc8xa2",
                "sg-11134201-825zo-mj8b1hfhof7n31",
                "sg-11134201-8261y-mj8b1hmh42rkc3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767866688,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 6500000000,
              "price_min": 6500000000,
              "price_max": 6500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Clear"
                  ],
                  "images": [
                    "sg-11134201-825zo-mj8b1hfhof7n31",
                    "sg-11134201-8261y-mj8b1hmh42rkc3"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ukuran",
                  "options": [
                    "41mm",
                    "45mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 6500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 340407214694,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "VENT SCREEN PROTECTOR",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49954349456,
            "shopid": 310075078,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261l-mj8b1hvd6kufde\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931064601283,844931086908638,700005490,700005495,1718093079,822059908662278,825465608497696,840990690654214,2048660,825465608494624,825465608499232,2048661,825465608493600,822120592861206,840955085144628,827380695406658,1718596,2213765,700765096,298488495,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":536,\"model_id\":340407214694,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261l-mj8b1hvd6kufde\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931064601283,844931086908638,700005490,700005495,1718093079,822059908662278,825465608497696,840990690654214,2048660,825465608494624,825465608499232,2048661,825465608493600,822120592861206,840955085144628,827380695406658,1718596,2213765,700765096,298488495,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":536,\"model_id\":340407214694,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49954349456",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57554320762,
              "shopid": 1344414745,
              "name": "Magnetic Band Silicone Strap for Apple Watch Ultra 3 2 SE 3 2 49 46 42 41 45 44 40 42 38mm Iwatch Series 11 10 9 8 7 6 5 4 3 Rubber Bracelet Belt Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8261t-mj81mr5vo1dsc3",
              "images": [
                "sg-11134201-8261t-mj81mr5vo1dsc3",
                "sg-11134201-8260y-mj81mrqif7ye79",
                "sg-11134201-8261k-mj81msbqwuf70a",
                "sg-11134201-8260g-mj81msprdp8j51",
                "sg-11134201-82635-mj81mt49rcaq24",
                "sg-11134201-8262s-mj81mtn61nnk72",
                "sg-11134201-8260f-mj81mtz9gcg370",
                "sg-11134201-82618-mj81mudlqtc597",
                "sg-11134201-8262c-mj81mux30u855b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767850875,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5225000000,
              "price_min": 5225000000,
              "price_max": 5225000000,
              "price_min_before_discount": 15000000000,
              "price_max_before_discount": 15000000000,
              "hidden_price_display": null,
              "price_before_discount": 15000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-65%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16000081710423706.mp4",
                  "thumb_url": "sg-11110106-7rcc0-lsvdjr88nehjda",
                  "duration": 34,
                  "version": 2,
                  "vid": "sg-11110106-6khyq-lsvdjodurh5sc4",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16006711737646165.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16006711737646165.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16000081710423706.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16000081710423706.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16003251737646165.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16003251737646165.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black&Orange",
                    "Gray&Orange",
                    "Black&Red",
                    "star",
                    "Black",
                    "white&black",
                    "Indigo",
                    "Acid blue",
                    "Pink",
                    "Grey",
                    "Green",
                    "Chocolate",
                    "Baby pink",
                    "Antique Black",
                    "Midnight",
                    "Orange"
                  ],
                  "images": [
                    "sg-11134201-8262j-mj81mv7flz4690",
                    "sg-11134201-8261b-mj81mvockkcl95",
                    "sg-11134201-8261e-mj81mvyjnoqufb",
                    "sg-11134201-82612-mj81mwc26ebqe7",
                    "sg-11134201-8260d-mj81mwnfeih1d6",
                    "sg-11134201-8261d-mj81mx417ev577",
                    "sg-11134201-82634-mj81mxcwosue6b",
                    "sg-11134201-8261j-mj81mxmeoohte7",
                    "sg-11134201-82620-mj81mxwa0wsh48",
                    "sg-11134201-8262a-mj81my52xlabb7",
                    "sg-11134201-8261e-mj81mye79u6c7c",
                    "sg-11134201-8261d-mj81mynbrqx090",
                    "sg-11134201-825zw-mj81myx4c8w4e1",
                    "sg-11134201-82615-mj81mz7x1jwkb4",
                    "sg-11134201-8262i-mj81mzgwterraf",
                    "sg-11134201-8262f-mj81mzr6po1u15"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 374886765965807,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5225000000,
                "strikethrough_price": 15000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-65%",
                "model_id": 410405717938,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 15000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 52.250",
                      "hidden_promotion_price": "Rp ?2.250",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "LCAPLE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57554320762,
            "shopid": 1344414745,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261t-mj81mr5vo1dsc3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059154,1059152,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1119699,1718596,2213765,700765096,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":195,\"model_id\":410405717938,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261t-mj81mr5vo1dsc3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059154,1059152,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1119699,1718596,2213765,700765096,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":195,\"model_id\":410405717938,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57554320762",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43377862404,
              "shopid": 1344414745,
              "name": "Tempered Glass PC Case Stainless Steel Strap for Apple Watch 49mm 46mm Iwatch Series 11 10 9 8 7 6 5 4 SE Ultra 3 2 45mm 41mm 38 40 42 44mm Metal Band Cover Screen Protector for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059154,
                1059152,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8260x-mj81mqraipl004",
              "images": [
                "sg-11134201-8260x-mj81mqraipl004",
                "sg-11134201-8260p-mj81mrszi41x0e",
                "sg-11134201-825zn-mj81msmn5vyfa0",
                "sg-11134201-825zo-mj81msy4oikg00",
                "sg-11134201-82621-mj81mt82d2isfb",
                "sg-11134201-8262f-mj81mtgex72f86",
                "sg-11134201-8261s-mj81mtxhcfsy64",
                "sg-11134201-8260x-mj81mujqmm8264",
                "sg-11134201-8261s-mj81mv6yy8783b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767850872,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5530000000,
              "price_min": 5530000000,
              "price_max": 5530000000,
              "price_min_before_discount": 17400000000,
              "price_max_before_discount": 17400000000,
              "hidden_price_display": null,
              "price_before_discount": 17400000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-68%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                  "thumb_url": "sg-11110106-7rbk7-lq8wjhcokltw28",
                  "duration": 10,
                  "version": 2,
                  "vid": "sg-11110106-6khwg-lq8wjb83dfai8d",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600264,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600393,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600266,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600658,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600265,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600394,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600395,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600396,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600267,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600268,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600566,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black+Clear",
                    "Starlight+Clear",
                    "Silver+Clear",
                    "Blue",
                    "Rose Red",
                    "Black",
                    "Starlight",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134201-8261z-mj81mvghlxxg90",
                    "sg-11134201-8261t-mj81mvox92x11c",
                    "sg-11134201-825zp-mj81mw4pzf2be7",
                    "sg-11134201-8261d-mj81mwfv0jybfa",
                    "sg-11134201-8262k-mj81mwufp2ip2a",
                    "sg-11134201-82631-mj81mx3y31frc1",
                    "sg-11134201-8261l-mj81mxl5dtkx6b",
                    "sg-11134201-8262g-mj81mxugzdoh36"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "38mm",
                    "40mm",
                    "41mm",
                    "42mm",
                    "44mm",
                    "45mm",
                    "49mm",
                    "42mm Series 11 10",
                    "46mm Series 11 10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 374886765965807,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5530000000,
                "strikethrough_price": 17400000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-68%",
                "model_id": 410405720853,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 17400000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 55.300",
                      "hidden_promotion_price": "Rp ?5.300",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "LCAPLE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43377862404,
            "shopid": 1344414745,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260x-mj81mqraipl004\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059154,1059152,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1119699,1718596,2213765,700765096,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2329,\"model_id\":410405720853,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260x-mj81mqraipl004\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059154,1059152,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1119699,1718596,2213765,700765096,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2329,\"model_id\":410405720853,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43377862404",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40977842102,
              "shopid": 1612442872,
              "name": "TPU Case Metal Strap for Apple Watch Ultra/SE 3 2 49mm 46mm Iwatch Series 11 10 9 8 7 6 5 4 3 41 38 40 42 44 45mm for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max 8 MAX 9 PRO S20 T500 Stainless Steel Band Screen Protector Cover Accessories",
              "label_ids": [
                2018618,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                2213652,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-82612-mj7y0jy5fc3k64",
              "images": [
                "sg-11134201-82612-mj7y0jy5fc3k64",
                "sg-11134201-8261y-mj7y0krj241v64",
                "sg-11134201-8261w-mj7y0liewsu8a7",
                "sg-11134201-82628-mj7y0lzd064gb6",
                "sg-11134201-8262n-mj7y0mqmpgxy58",
                "sg-11134201-82616-mj7y0n54nnr471",
                "sg-11134201-8262h-mj7y0njdee4n4e",
                "sg-11134201-82630-mj7y0o17vjlx49",
                "sg-11134201-8261q-mj7y0ot0i5frab"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767844792,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5757000000,
              "price_min": 5757000000,
              "price_max": 5757000000,
              "price_min_before_discount": 17200000000,
              "price_max_before_discount": 17200000000,
              "hidden_price_display": null,
              "price_before_discount": 17200000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-67%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                  "thumb_url": "sg-11110106-7rbk7-lq8wjhcokltw28",
                  "duration": 10,
                  "version": 2,
                  "vid": "sg-11110106-6khwg-lq8wjb83dfai8d",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600264,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600393,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600266,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600658,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600265,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600394,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600395,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600396,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600267,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600268,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600566,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black+Clear",
                    "Starlight+Clear",
                    "Silver+Clear",
                    "Blue",
                    "Rose Red with pink",
                    "Black",
                    "Starlight",
                    "Silver",
                    "Rose Gold"
                  ],
                  "images": [
                    "sg-11134201-825zz-mj7y0p7adm9v55",
                    "sg-11134201-8262y-mj7y0pisfwuef9",
                    "sg-11134201-8260o-mj7y0pski70k87",
                    "sg-11134201-8261y-mj7y0q2h4tmr36",
                    "sg-11134201-8260f-mj7y0qdkpxxe89",
                    "sg-11134201-8261u-mj7y0qnrj8cl9d",
                    "sg-11134201-8262h-mj7y0qxdpd6re6",
                    "sg-11134201-8260r-mj7y0r71wmpz56",
                    "sg-11134201-82627-mj7y0rgica2q6d"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "38mm",
                    "40mm",
                    "41mm",
                    "42mm",
                    "44mm",
                    "45mm",
                    "49mm",
                    "42mm Series 11 10",
                    "46mm Series 11 10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 410065853236688,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5757000000,
                "strikethrough_price": 17200000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-67%",
                "model_id": 330405422518,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 17200000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 57.570",
                      "hidden_promotion_price": "Rp ?7.570",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Leixiuer Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40977842102,
            "shopid": 1612442872,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82612-mj7y0jy5fc3k64\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,1119699,1718596,2213765,700765096,298488495,2213652,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2363,\"model_id\":330405422518,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82612-mj7y0jy5fc3k64\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,1119699,1718596,2213765,700765096,298488495,2213652,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2363,\"model_id\":330405422518,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40977842102",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55404284611,
              "shopid": 1484087853,
              "name": "Rubber Band for Apple Watch Ultra 3 2 SE 3 2 49 46 42 41 45 44 40 42 38mm Iwatch Series 11 10 9 8 7 6 5 4 3 Magnetic Silicone Strap Bracelet Belt Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2153644,
                2018618,
                298888358,
                298938357,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1119699,
                1718596,
                2213765,
                700765096,
                2213652,
                298488495,
                2143647,
                298933384,
                298938368,
                298468389,
                2098629,
                1718088045,
                2098628
              ],
              "image": "sg-11134201-8262a-mj6sczvmo35x6f",
              "images": [
                "sg-11134201-8262a-mj6sczvmo35x6f",
                "sg-11134201-8260u-mj6sd0sruo06c1",
                "sg-11134201-8260j-mj6sd1bpi6te2f",
                "sg-11134201-825zm-mj6sd1pmups04f",
                "sg-11134201-82609-mj6sd24j4f0k63",
                "sg-11134201-825zr-mj6sd2epl0qqd0",
                "sg-11134201-8261v-mj6sd2pp2nes46",
                "sg-11134201-8262v-mj6sd34safb894",
                "sg-11134201-825zt-mj6sd3hfedqe59"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767774751,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5566000000,
              "price_min": 5566000000,
              "price_max": 5566000000,
              "price_min_before_discount": 15000000000,
              "price_max_before_discount": 15000000000,
              "hidden_price_display": null,
              "price_before_discount": 15000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-63%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16000081710423706.mp4",
                  "thumb_url": "sg-11110106-7rcc0-lsvdjr88nehjda",
                  "duration": 34,
                  "version": 2,
                  "vid": "sg-11110106-6khyq-lsvdjodurh5sc4",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16006711737646165.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16006711737646165.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16000081710423706.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16000081710423706.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16003251737646165.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16003251737646165.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black&Orange",
                    "Gray&Orange",
                    "Black&Red",
                    "star",
                    "Black",
                    "white&black",
                    "Indigo",
                    "Acid blue",
                    "Pink",
                    "Grey",
                    "Green",
                    "Chocolate",
                    "Baby pink",
                    "Antique Black",
                    "Midnight",
                    "Orange"
                  ],
                  "images": [
                    "sg-11134201-82606-mj6sd3qn4vluec",
                    "sg-11134201-82633-mj6sd3zr8p37e7",
                    "sg-11134201-8261q-mj6sd4e0zv28e1",
                    "sg-11134201-8261e-mj6sd4mobpxe7b",
                    "sg-11134201-82602-mj6sd537widdd9",
                    "sg-11134201-825zr-mj6sd5s2zgg58c",
                    "sg-11134201-82624-mj6sd61j6rk4b2",
                    "sg-11134201-8261n-mj6sd699gttxb9",
                    "sg-11134201-825zl-mj6sd6invh8i54",
                    "sg-11134201-82608-mj6sd6vki68446",
                    "sg-11134201-825zv-mj6sd7dea32c73",
                    "sg-11134201-8261q-mj6sd7r73o5i4a",
                    "sg-11134201-8262k-mj6sd80wlaf7dc",
                    "sg-11134201-8262b-mj6sd8aaj1foae",
                    "sg-11134201-8262v-mj6sd8hzbrpi51",
                    "sg-11134201-82622-mj6sd8qpyxokd2"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 401078478975345,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5566000000,
                "strikethrough_price": 15000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-63%",
                "model_id": 430402405737,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 15000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 55.660",
                      "hidden_promotion_price": "Rp ?5.660",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EIHAIHIS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55404284611,
            "shopid": 1484087853,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262a-mj6sczvmo35x6f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,298888358,298938357,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,1718596,2213765,700765096,2213652,298488495,2143647,298933384,298938368,298468389,2098629,1718088045,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":1643,\"model_id\":430402405737,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262a-mj6sczvmo35x6f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,298888358,298938357,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,1718596,2213765,700765096,2213652,298488495,2143647,298933384,298938368,298468389,2098629,1718088045,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":1643,\"model_id\":430402405737,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55404284611",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50804269796,
              "shopid": 1339045533,
              "name": "[GEONTECH] Smartwatch 9MAX+ | 2.01 Inch HD Screen | Bluetooth Phone Call | IP65 Waterproof | Smart Sport Band | Calculator",
              "label_ids": [
                2018619,
                2023641,
                844931086908638,
                844931064601283,
                1049122,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                298463379,
                1718093079,
                1119699,
                1718596,
                2213765,
                298488495,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82251-mj6mqgmr7nyf29",
              "images": [
                "id-11134207-82251-mj6mqgmr7nyf29",
                "id-11134207-82252-mj6mqgmo7i80d2",
                "id-11134207-8224o-mj6mqgmo8wsg7d",
                "id-11134207-8224t-mj6mqgmoabcwf7",
                "id-11134207-82252-mj6mqgmobpxc99",
                "id-11134207-8224u-mj6mqgmoej2811",
                "id-11134207-8224q-mj6mqgmofxmo65",
                "id-11134207-8224y-mj6mqgmod4hs84",
                "id-11134207-8224x-mj6mqgmohc74b1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767773431,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 36899900000,
              "price_min": 36899900000,
              "price_max": 36899900000,
              "price_min_before_discount": 59999900000,
              "price_max_before_discount": 59999900000,
              "hidden_price_display": null,
              "price_before_discount": 59999900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-39%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv8-mj6ntaku22o278.16000081767767100.mp4",
                  "thumb_url": "id-11110105-6vdv8-mj6ntaku22o278_cover",
                  "duration": 16,
                  "version": 2,
                  "vid": "id-11110105-6vdv8-mj6ntaku22o278",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv8-mj6ntaku22o278.16000081767767100.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv8-mj6ntaku22o278.16000081767767100.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv8-mj6ntaku22o278.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "WARNA",
                  "options": [
                    "HITAM",
                    "PINK"
                  ],
                  "images": [
                    "id-11134207-8224u-mj6mqgmoiqrke8",
                    "id-11134207-8224v-mj6mqgmok5c0a8"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227866319269889,
                "price": 36899900000,
                "strikethrough_price": 59999900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-39%",
                "model_id": 445402262466,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 59999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "geontech",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50804269796,
            "shopid": 1339045533,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj6mqgmr7nyf29\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931086908638,844931064601283,1049122,1059152,822059908662278,825465608499232,825465608497696,298463379,1718093079,1119699,1718596,2213765,298488495,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2293,\"model_id\":445402262466,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj6mqgmr7nyf29\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931086908638,844931064601283,1049122,1059152,822059908662278,825465608499232,825465608497696,298463379,1718093079,1119699,1718596,2213765,298488495,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2293,\"model_id\":445402262466,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50804269796",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54654264183,
              "shopid": 1609664907,
              "name": "Braided Nylon Strap for IWatch Apple Watch Series 11 10 9 8 7 6 5 4 2 3 SE/Ultra 3 2 Elastic Magnetic Buckle Band Tali Jam Tangan Smartwatch 49mm 46mm 45mm 41mm 44mm 40mm 42mm 38mm Band for I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                1718596,
                1119699,
                2213765,
                298488495,
                700810080,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8262m-mj6qhpea445j7e",
              "images": [
                "sg-11134201-8262m-mj6qhpea445j7e",
                "sg-11134201-82635-mj6qhq846armb8",
                "sg-11134201-82610-mj6qhryowm4j36",
                "sg-11134201-8261u-mj6qhtdhnrib96",
                "sg-11134201-8261f-mj6qhu1dgxs718",
                "sg-11134201-82633-mj6qhuuxqjur4b",
                "sg-11134201-8260m-mj6qhw6lqb5t4c",
                "sg-11134201-8262o-mj6qhx7kc5qa6e",
                "sg-11134201-82630-mj6p6pceydq919"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767771632,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3230000000,
              "price_min": 3230000000,
              "price_max": 3230000000,
              "price_min_before_discount": 6800000000,
              "price_max_before_discount": 6800000000,
              "hidden_price_display": null,
              "price_before_discount": 6800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khx7-lvx888th35ai09.16000081717073557.mp4",
                  "thumb_url": "sg-11110106-7rd4j-lvx88dhc8fj88f",
                  "duration": 44,
                  "version": 2,
                  "vid": "sg-11110106-6khx7-lvx888th35ai09",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx7-lvx888th35ai09.default.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx7-lvx888th35ai09.default.mp4",
                      "width": 720,
                      "height": 480
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx7-lvx888th35ai09.default.mp4",
                    "width": 720,
                    "height": 480
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "band color",
                  "options": [
                    "Lavender(Strap)",
                    "pride edition(Strap)",
                    "Black(Strap)",
                    "Black clever(Strap)",
                    "Star(Strap)",
                    "milk tea(Strap)",
                    "light blue(Strap)",
                    "Atlantic Blue(Strap)",
                    "red(Strap)",
                    "orange(Strap)",
                    "gray(Strap)",
                    "olive green(Strap)",
                    "Rainforest(Strap)",
                    "space gray(Strap)",
                    "pink sand(Strap)",
                    "smoke purple(Strap)",
                    "dark cherry(Strap)",
                    "Black Rainbow(Strap)",
                    "olive(Strap)",
                    "New edition(Strap)"
                  ],
                  "images": [
                    "sg-11134201-825zr-mj6qhzfnlssg22",
                    "sg-11134201-8260p-mj6qi0kioft27f",
                    "sg-11134201-8260n-mj6qi125fgua55",
                    "sg-11134201-82609-mj6qi26qzdad69",
                    "sg-11134201-82610-mj6qi3b6zt3a2e",
                    "sg-11134201-82610-mj6qi4hyz4lg06",
                    "sg-11134201-8260w-mj6qi5c24lj6e4",
                    "sg-11134201-82605-mj6qi6fog35v85",
                    "sg-11134201-8262v-mj6qi6zgkkcm57",
                    "sg-11134201-8260k-mj6qi7soicjq04",
                    "sg-11134201-82624-mj6qi8pkn37m35",
                    "sg-11134201-8260l-mj6qi9hceqyp1d",
                    "sg-11134201-825zt-mj6qiae6bf9daa",
                    "sg-11134201-8260t-mj6qiazfny8167",
                    "sg-11134201-825zq-mj6qibz0btvk1b",
                    "sg-11134201-825zx-mj6qicu1jj0n98",
                    "sg-11134201-8262g-mj6qidrdzf2a18",
                    "sg-11134201-8260e-mj6p6vxk9m2u55",
                    "sg-11134201-82625-mj6qif5ibaio89",
                    "sg-11134201-82620-mj6qig3zhngi3a"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "band width",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 370281332093398,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 3230000000,
                "strikethrough_price": 6800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 420402061234,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6800000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 32.300",
                      "hidden_promotion_price": "Rp ?2.300",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "fegmilde",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54654264183,
            "shopid": 1609664907,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262m-mj6qhpea445j7e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931086908638,844931064601283,298463379,1059154,1059152,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1718596,1119699,2213765,298488495,700810080,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2286,\"model_id\":420402061234,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262m-mj6qhpea445j7e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931086908638,844931064601283,298463379,1059154,1059152,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1718596,1119699,2213765,298488495,700810080,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2286,\"model_id\":420402061234,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54654264183",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40677827022,
              "shopid": 1495053614,
              "name": "TPU Case + Metal Strap for Apple Watch Ultra/SE 3 2 49mm 46mm Iwatch Series 11 10 9 8 1 2 3 4 5 6 41 38 40 42 44 45mm Stainless Steel Band Belt Screen Protector Cover Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8261h-mj6qcz6irn5t09",
              "images": [
                "sg-11134201-8261h-mj6qcz6irn5t09",
                "sg-11134201-8260o-mj6qd05pce8772",
                "sg-11134201-8261i-mj6qd1mymrr964",
                "sg-11134201-82621-mj6qd3fe8ohv15",
                "sg-11134201-8262w-mj6qd4zoffgg74",
                "sg-11134201-825zw-mj6qd646tjwi80",
                "sg-11134201-8261d-mj6qd75cuby952",
                "sg-11134201-8260i-mj6qd8d3fjlte5",
                "sg-11134201-8260u-mj6qd9zejnk24e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767771411,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5070000000,
              "price_min": 5070000000,
              "price_max": 5070000000,
              "price_min_before_discount": 17200000000,
              "price_max_before_discount": 17200000000,
              "hidden_price_display": null,
              "price_before_discount": 17200000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-71%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                  "thumb_url": "sg-11110106-7rbk7-lq8wjhcokltw28",
                  "duration": 10,
                  "version": 2,
                  "vid": "sg-11110106-6khwg-lq8wjb83dfai8d",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600264,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600393,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600266,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600658,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600265,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600394,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600395,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600396,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600267,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600268,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600566,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black+Clear",
                    "Starlight+Clear",
                    "Silver+Clear",
                    "Blue",
                    "Rose Red with pink",
                    "Black",
                    "Starlight",
                    "Silver",
                    "Rose Gold"
                  ],
                  "images": [
                    "sg-11134201-8262n-mj6qdbfsuq6ac4",
                    "sg-11134201-825zn-mj6qddls2mtf1a",
                    "sg-11134201-8262q-mj6qdex2bwn528",
                    "sg-11134201-825zv-mj6qdgya7z7l36",
                    "sg-11134201-82608-mj6qdhpdlt6s89",
                    "sg-11134201-8261o-mj6qdkbvp9mt84",
                    "sg-11134201-82635-mj6qdm6y79xh90",
                    "sg-11134201-8262w-mj6qdnf7typxa8",
                    "sg-11134201-8260y-mj6qdpys854w97"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "38mm",
                    "40mm",
                    "41mm",
                    "42mm",
                    "44mm",
                    "45mm",
                    "49mm",
                    "42mm Series 11 10",
                    "46mm Series 11 10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 393085536454641,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5070000000,
                "strikethrough_price": 17200000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-71%",
                "model_id": 249138156961,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 17200000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 50.700",
                      "hidden_promotion_price": "Rp ?0.700",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BRADCET",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40677827022,
            "shopid": 1495053614,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261h-mj6qcz6irn5t09\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,1718596,2213765,700765096,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1328,\"model_id\":249138156961,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261h-mj6qcz6irn5t09\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,1718596,2213765,700765096,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1328,\"model_id\":249138156961,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40677827022",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56604288550,
              "shopid": 1592077131,
              "name": "Stainless Steel Strap + PC Case for Apple Watch Iwatch Strap Series 11 10 9 8 7 6 5 4 SE Ultra 3 2 49mm 46 45 41 38 40 42 44mm Metal Band Wristband Cover Screen Protector Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018618,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                1718596,
                1119699,
                2213765,
                700765096,
                2213652,
                298488495,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8261z-mj6qbgdkfxmt34",
              "images": [
                "sg-11134201-8261z-mj6qbgdkfxmt34",
                "sg-11134201-82613-mj6qbgxddybp2c",
                "sg-11134201-82627-mj6qbh7myxhi43",
                "sg-11134201-8261b-mj6qbhi9uwat05",
                "sg-11134201-8261p-mj6qbhrzdx5226",
                "sg-11134201-8262m-mj6qbi03fsata9",
                "sg-11134201-82629-mj6qbi9y8fswfd",
                "sg-11134201-8262b-mj6qbimey2o38d",
                "sg-11134201-82635-mj6qbiw6cfltcd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767771311,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 6210000000,
              "price_min": 6210000000,
              "price_max": 6210000000,
              "price_min_before_discount": 15740000000,
              "price_max_before_discount": 15740000000,
              "hidden_price_display": null,
              "price_before_discount": 15740000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-61%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                  "thumb_url": "sg-11110106-7rbk7-lq8wjhcokltw28",
                  "duration": 10,
                  "version": 2,
                  "vid": "sg-11110106-6khwg-lq8wjb83dfai8d",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600264,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600393,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600266,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600658,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600265,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600394,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600395,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600396,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600267,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600268,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600566,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black+Clear",
                    "Starlight+Clear",
                    "Silver+Clear",
                    "Blue",
                    "Rose Red",
                    "Black",
                    "Starlight",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134201-8262n-mj6qbj53ti4k65",
                    "sg-11134201-8261k-mj6qbjf0lpfqaf",
                    "sg-11134201-8260l-mj6qbjprz94w04",
                    "sg-11134201-82604-mj6qbk09mzurfe",
                    "sg-11134201-8260f-mj6qbkaavdhf4d",
                    "sg-11134201-82634-mj6qbkje8glgf5",
                    "sg-11134201-8262a-mj6qbkslf8xw62",
                    "sg-11134201-825zq-mj6qbl2odfk767"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "38mm",
                    "40mm",
                    "41mm",
                    "42mm",
                    "44mm",
                    "45mm",
                    "49mm",
                    "42mm Series 11 10",
                    "46mm Series 11 10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359072125956385,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 6210000000,
                "strikethrough_price": 15740000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-61%",
                "model_id": 39600918899,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 15740000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 62.100",
                      "hidden_promotion_price": "Rp ?2.100",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56604288550,
            "shopid": 1592077131,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261z-mj6qbgdkfxmt34\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,1718596,1119699,2213765,700765096,2213652,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2282,\"model_id\":39600918899,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261z-mj6qbgdkfxmt34\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,1718596,1119699,2213765,700765096,2213652,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2282,\"model_id\":39600918899,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56604288550",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51804287925,
              "shopid": 1609664907,
              "name": "Strap for Apple Watch IWatch Series 11 10 9 3 6 5 4 3 2 1 SE/Ultra 3 2 Nylon Braided Bracelet Band Tali Jam Tangan Smartwatch 49mm 46mm 45mm 41mm 44mm 40mm 42mm 38mm for I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                840990690654214,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                2213765,
                298488495,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-825zv-mj6p6jy7ifwg42",
              "images": [
                "sg-11134201-825zv-mj6p6jy7ifwg42",
                "sg-11134201-8261v-mj6p6kkxnfnnb7",
                "sg-11134201-8262s-mj6p6lj2jbpc58",
                "sg-11134201-8260z-mj6p6mh7f7r776",
                "sg-11134201-82627-mj6p6nd01151df",
                "sg-11134201-8260u-mj6p6o1leays39",
                "sg-11134201-8262i-mj6p6ojvvdafdb",
                "sg-11134201-825zq-mj6p6p2uultxac",
                "sg-11134201-82626-mj6p6ph4ketg38"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767769431,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1520000000,
              "price_min": 1520000000,
              "price_max": 1520000000,
              "price_min_before_discount": 3200000000,
              "price_max_before_discount": 3200000000,
              "hidden_price_display": null,
              "price_before_discount": 3200000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khxh-lsiaszu3ui0s77.16000081709632151.mp4",
                  "thumb_url": "sg-11110106-7rccq-lsiat41lqkbwb8",
                  "duration": 47,
                  "version": 2,
                  "vid": "sg-11110106-6khxh-lsiaszu3ui0s77",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxh-lsiaszu3ui0s77.16003251713173916.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxh-lsiaszu3ui0s77.16003251713173916.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxh-lsiaszu3ui0s77.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black(strap)",
                    "Black Unity(strap)",
                    "Black Clever(strap)",
                    "Dark Cherry(strap)",
                    "Starlight(strap)",
                    "Neverness green",
                    "Charcoal(strap)",
                    "Pink Punch(strap)",
                    "Beige(strap)",
                    "Pride Edition(strap)",
                    "Abyss blue(strap)",
                    "Pink Sand(strap)"
                  ],
                  "images": [
                    "sg-11134201-8261l-mj6p6psvby0w56",
                    "sg-11134201-8262u-mj6p72cxc740a7",
                    "sg-11134201-8261a-mj6p72ysghdue7",
                    "sg-11134201-8262f-mj6p73t563gidf",
                    "sg-11134201-82609-mj6p74y01r7occ",
                    "sg-11134201-825zq-mj6p767gslj922",
                    "sg-11134201-82618-mj6p7765unlwbe",
                    "sg-11134201-825zv-mj6p77wotukj52",
                    "sg-11134201-8262u-mj6p789qc4joa6",
                    "sg-11134201-82616-mj6p79fv29l0be",
                    "sg-11134201-8262o-mj6p7ag7p8uf81",
                    "sg-11134201-8262d-mj6p7boh6bcy2b"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "M 41/40/38/42mm",
                    "M 49/46/45/44/42mm",
                    "S 41/40/38/42mm",
                    "S 49/46/45/44/42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 370281332093398,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 1520000000,
                "strikethrough_price": 3200000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 330401820708,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3200000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 15.200",
                      "hidden_promotion_price": "Rp ?5.200",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "fegmilde",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51804287925,
            "shopid": 1609664907,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zv-mj6p6jy7ifwg42\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,840990690654214,840955085144628,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2289,\"model_id\":330401820708,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zv-mj6p6jy7ifwg42\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,840990690654214,840955085144628,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2289,\"model_id\":330401820708,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51804287925",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55804266115,
              "shopid": 1407161102,
              "name": "Straps Smartwatch Denim Jeans Beruang Tali Jam Tangan Kulit Denim Kompatibel untuk Apple Watch Series Xiaomi Band 8/9/10 Huawei Band 7/8/9/10 Huawei Watch FIT 3/4/4 Pro",
              "label_ids": [
                2023641,
                700700063,
                298888358,
                2018619,
                298938357,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                2213765,
                298488495,
                1718088045,
                2098628,
                298938368,
                298468389,
                2098629
              ],
              "image": "sg-11134201-8262n-mj6jjh7bf5dv5b",
              "images": [
                "sg-11134201-8262n-mj6jjh7bf5dv5b",
                "sg-11134201-82600-mj6jjhr74xz9f8",
                "sg-11134201-8261v-mj6jjid6016pa6",
                "sg-11134201-8260d-mj6jjixo43r8dc",
                "sg-11134201-82621-mj6jjjiedpfk52",
                "sg-11134201-8260t-mj6jjjzrufb7da",
                "sg-11134201-82617-mj6jjkkaxkhs4c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767759916,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 13900000000,
              "price_min": 13900000000,
              "price_max": 13900000000,
              "price_min_before_discount": 27800000000,
              "price_max_before_discount": 27800000000,
              "hidden_price_display": null,
              "price_before_discount": 27800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Sky",
                    "Biru Tua",
                    "Biru Muda"
                  ],
                  "images": [
                    "sg-11134201-82635-mj6jjl1rr6di6f",
                    "sg-11134201-8260e-mj6jjlikxgxudd",
                    "id-11134207-8224x-mj6jtdbvrabr75",
                    "sg-11134201-8260w-mj6jjmp9a5ms13"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Model",
                  "options": [
                    "Mi Band 8/9/10",
                    "Huawei FIT 3/4/4 Pro",
                    "Huawei Band 8/9/10",
                    "Huawei Band 7",
                    "iW 38/40/41/42 (S10)",
                    "iW 42/44/45/46/49 mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp23RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 796191441338368,
                "price": 13900000000,
                "strikethrough_price": 27800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 267315508017,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 27800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp23RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Leemo Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55804266115,
            "shopid": 1407161102,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262n-mj6jjh7bf5dv5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,700700063,298888358,2018619,298938357,1428713,1718087960,844931064601283,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,2213765,298488495,1718088045,2098628,298938368,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":1877,\"model_id\":267315508017,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262n-mj6jjh7bf5dv5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,700700063,298888358,2018619,298938357,1428713,1718087960,844931064601283,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,2213765,298488495,1718088045,2098628,298938368,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":1877,\"model_id\":267315508017,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55804266115",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49904285199,
              "shopid": 1589172126,
              "name": "Ocean Silicone Sport Strap for Samsung Galaxy Watch Ultra 47mm Breathable Rubber Band Wristband Adjustable Soft Waterproof Belt Accessories for Tali Jam Tangan Smartwatch Samsung Galaxy Watch Ultra",
              "label_ids": [
                2023641,
                2018619,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1119699,
                1718596,
                2213765,
                298488495,
                700810080,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8262s-mj6hd4fyhkht0c",
              "images": [
                "sg-11134201-8262s-mj6hd4fyhkht0c",
                "sg-11134201-8262k-mj6hd5168i68d9",
                "sg-11134201-825zy-mj6hd5pb7qbp74",
                "sg-11134201-8260u-mj6hd69tpszmd9",
                "sg-11134201-8260z-mj6hd6zaot8gc0",
                "sg-11134201-8260c-mj6hd7n91afaaa",
                "sg-11134201-8261h-mj6hd8680kjn16",
                "sg-11134201-8262a-mj6hd8nx5a8357",
                "sg-11134201-82616-mj6hd99cqigzab"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767756262,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2990000000,
              "price_min": 2990000000,
              "price_max": 2990000000,
              "price_min_before_discount": 7800000000,
              "price_max_before_discount": 7800000000,
              "hidden_price_display": null,
              "price_before_discount": 7800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-62%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Wine red",
                    "Pink",
                    "Orange",
                    "White",
                    "Star",
                    "Gray",
                    "Black",
                    "Dark green",
                    "Midnight blue",
                    "Light green",
                    "Blue",
                    "Sky blue"
                  ],
                  "images": [
                    "sg-11134201-82635-mj6hd9ukptzae4",
                    "sg-11134201-8261r-mj6hdadx2ww1e2",
                    "sg-11134201-8260s-mj6hdar0qg3m4f",
                    "sg-11134201-8261u-mj6hdb5m7211e6",
                    "sg-11134201-8260y-mj6hdbq4191fac",
                    "sg-11134201-82614-mj6hdc4p6o0488",
                    "sg-11134201-825zw-mj6hdckzjyf90e",
                    "sg-11134201-8260t-mj6hdcyd9w5fd2",
                    "sg-11134201-8261t-mj6hdd9ls1kx4b",
                    "sg-11134201-8261b-mj6hddlxrrb4f5",
                    "sg-11134201-8262h-mj6hddw69czqf9",
                    "sg-11134201-8260i-mj6hde9570n952"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359070448239000,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2990000000,
                "strikethrough_price": 7800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-62%",
                "model_id": 430400653945,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7800000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 29.900",
                      "hidden_promotion_price": "Rp ?9.900",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Fulsaxad",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49904285199,
            "shopid": 1589172126,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262s-mj6hd4fyhkht0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,1119699,1718596,2213765,298488495,700810080,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2297,\"model_id\":430400653945,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262s-mj6hd4fyhkht0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,1119699,1718596,2213765,298488495,700810080,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2297,\"model_id\":430400653945,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49904285199",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44377788662,
              "shopid": 1589172126,
              "name": "TPU Case Without Film for Apple Watch IWatch Series 11 10 9 8 7 6 5 4 3 Ultra/SE 3 2 49 45 41 44 40 42 38mm Shell Protective Screen Protector Bumper Cover Accessories for Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059154,
                1059152,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                2213765,
                298488495,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8261x-mj6hd37wxouc86",
              "images": [
                "sg-11134201-8261x-mj6hd37wxouc86",
                "sg-11134201-8261c-mj6hd3sq4lj6b9",
                "sg-11134201-8261h-mj6hd4hxji8365",
                "sg-11134201-8260j-mj6hd5fbp5ohf9",
                "sg-11134201-82617-mj6hd67v7ksibf",
                "sg-11134201-8262x-mj6hd6wsmw3nfb",
                "sg-11134201-82605-mj6hd7kyphqa53",
                "sg-11134201-825zl-mj6hd8nay2o172",
                "sg-11134201-8262a-mj6hd9ge77k6d2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767756261,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2375000000,
              "price_min": 2375000000,
              "price_max": 2375000000,
              "price_min_before_discount": 5400000000,
              "price_max_before_discount": 5400000000,
              "hidden_price_display": null,
              "price_before_discount": 5400000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-56%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "silver",
                    "black",
                    "gold",
                    "rose"
                  ],
                  "images": [
                    "sg-11134201-8261b-mj6hdb34or9ic3",
                    "sg-11134201-825zu-mj6hdbze5dz98a",
                    "sg-11134201-825zx-mj6hdcn2tibke0",
                    "sg-11134201-825zs-mj6hddbh1q86ab"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "45mm 44mm 42mm",
                    "41mm 40mm 38mm",
                    "49mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359070448239000,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2375000000,
                "strikethrough_price": 5400000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-56%",
                "model_id": 360400666261,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5400000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 23.750",
                      "hidden_promotion_price": "Rp ?3.750",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Fulsaxad",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44377788662,
            "shopid": 1589172126,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261x-mj6hd37wxouc86\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1059154,1059152,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2311,\"model_id\":360400666261,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261x-mj6hd37wxouc86\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1059154,1059152,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2311,\"model_id\":360400666261,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44377788662",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43777797874,
              "shopid": 1589172126,
              "name": "Soft TPU Case for Huawei Watch GT 5 41mm All-Around Anti Gores Shell Protective Screen Protector Bumper Cover Accessories for Jam Tangan Smartwatch Huawei Watch GT 5 46mm",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                2213765,
                298488495,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8261n-mj6hd4u3sow2cc",
              "images": [
                "sg-11134201-8261n-mj6hd4u3sow2cc",
                "sg-11134201-8260u-mj6hd63kjhmo3e",
                "sg-11134201-8262d-mj6hd6xn3xmod9",
                "sg-11134201-82622-mj6hd7qsqr5x51",
                "sg-11134201-8260v-mj6hd8xvndome0",
                "sg-11134201-825zv-mj6hd9u65xqe92",
                "sg-11134201-825zm-mj6hdantxxc0ea",
                "sg-11134201-8262w-mj6hdb9pc35tbe",
                "sg-11134201-825zv-mj6hdc6rv5dw2d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767756266,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2470000000,
              "price_min": 2470000000,
              "price_max": 2470000000,
              "price_min_before_discount": 5800000000,
              "price_max_before_discount": 5800000000,
              "hidden_price_display": null,
              "price_before_discount": 5800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-57%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Light Gold",
                    "Pink",
                    "Black",
                    "Rose Gold",
                    "Transparent",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134201-825zp-mj6hdcxmcoap48",
                    "sg-11134201-8261v-mj6hdds0b8jka9",
                    "sg-11134201-82631-mj6hdekeeepsa5",
                    "sg-11134201-82607-mj6hdfni2ih1a9",
                    "sg-11134201-8260j-mj6hdgm8hs00f0",
                    "sg-11134201-8260h-mj6hdhml4r9c44"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "GT 5 41mm",
                    "GT 5 46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359070448239000,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2470000000,
                "strikethrough_price": 5800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-57%",
                "model_id": 277315051248,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5800000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 24.700",
                      "hidden_promotion_price": "Rp ?4.700",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Fulsaxad",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43777797874,
            "shopid": 1589172126,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261n-mj6hd4u3sow2cc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2322,\"model_id\":277315051248,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261n-mj6hd4u3sow2cc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2322,\"model_id\":277315051248,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43777797874",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27943957478,
              "shopid": 1589172126,
              "name": "Nylon Scrunchie Strap for Samsung Galaxy Fit 3 Soft Elastic Braided Band Bracelet Belt Wristbands Replacement Accessories Tali Jam Tangan Smartwatch for Samsung Fit 3",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1718093079,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1119699,
                1718596,
                2213765,
                298488495,
                700810080,
                298933384,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-82622-mj6hd4d6g0ee4c",
              "images": [
                "sg-11134201-82622-mj6hd4d6g0ee4c",
                "sg-11134201-8262t-mj6hd5i8uq6c5a",
                "sg-11134201-8260l-mj6hd6jfdq0x83",
                "sg-11134201-8262n-mj6hd70cxfd3df",
                "sg-11134201-8262g-mj6hd7ts5slgff",
                "sg-11134201-82607-mj6hd8or8a2r08",
                "sg-11134201-82616-mj6hd9uc3egw21",
                "sg-11134201-82613-mj6hdaqwfz7k2d",
                "sg-11134201-82622-mj6hdbiblxj783"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767756270,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2790000000,
              "price_min": 2790000000,
              "price_max": 2790000000,
              "price_min_before_discount": 6400000000,
              "price_max_before_discount": 6400000000,
              "hidden_price_display": null,
              "price_before_discount": 6400000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-56%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "black white",
                    "blue white",
                    "Pink",
                    "red black",
                    "Blue",
                    "Red",
                    "cowboy",
                    "Black",
                    "Green",
                    "bright blue",
                    "official rainbow",
                    "colorful black"
                  ],
                  "images": [
                    "sg-11134201-8262m-mj6hdca4qubpc0",
                    "sg-11134201-82633-mj6hdd3dyw3na2",
                    "sg-11134201-8261a-mj6hddzdd4aq15",
                    "sg-11134201-8261e-mj6hdeq54d1ic2",
                    "sg-11134201-82630-mj6hdfh1io7bb6",
                    "sg-11134201-8260t-mj6hdgagd2x3bc",
                    "sg-11134201-82610-mj6hdh4dqnsx9f",
                    "sg-11134201-8262n-mj6hdhvutfyf0f",
                    "sg-11134201-825zz-mj6hdipl66m9d9",
                    "sg-11134201-82602-mj6hdjf6wk5ic6",
                    "sg-11134201-825zp-mj6hdk6kxv5tac",
                    "sg-11134201-8260t-mj6hdkrrsembab"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "smartwear_size",
                  "options": [
                    "Samsung Galaxy Fit 3"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359070448239000,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718141299146752,
                "price": 2790000000,
                "strikethrough_price": 6400000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-56%",
                "model_id": 302315046309,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6400000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Fulsaxad",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 27943957478,
            "shopid": 1589172126,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82622-mj6hd4d6g0ee4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,1059154,1059152,822059908662278,825465608499232,825465608497696,825465608494624,1119699,1718596,2213765,298488495,700810080,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1539,\"model_id\":302315046309,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82622-mj6hd4d6g0ee4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,1059154,1059152,822059908662278,825465608499232,825465608497696,825465608494624,1119699,1718596,2213765,298488495,700810080,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1539,\"model_id\":302315046309,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27943957478",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47554214640,
              "shopid": 1592077131,
              "name": "Film for Redmiย Watchย 5 Anti Gores TPU Soft / 3D Tempered Glass Screen Protector Acceesories for Jam Tangan Smartwatch Redmiย Watchย 5 Film",
              "label_ids": [
                2018618,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                2213652,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-82615-mj5jpgvshamab1",
              "images": [
                "sg-11134201-82615-mj5jpgvshamab1",
                "sg-11134201-8261x-mj5jpho04nibea",
                "sg-11134201-8260h-mj5jpigovapv23",
                "sg-11134201-8261k-mj5jpj3jasxv45",
                "sg-11134201-8261q-mj5jpjvbdqth2b",
                "sg-11134201-8262r-mj5jpktxo45faf",
                "sg-11134201-8262h-mj5jplqmw8aq66",
                "sg-11134201-82609-mj5jpmrl6ubl1b",
                "sg-11134201-825zl-mj5jpng2qeww08"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767699666,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2299000000,
              "price_min": 2299000000,
              "price_max": 2299000000,
              "price_min_before_discount": 2540000000,
              "price_max_before_discount": 2540000000,
              "hidden_price_display": null,
              "price_before_discount": 2540000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-9%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Soft Film",
                    "3D Film"
                  ],
                  "images": [
                    "sg-11134201-8260w-mj5jpob2p7gn9d",
                    "sg-11134201-82601-mj5jpp8ogutg8d"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "1 pcs",
                    "2 pcs"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359072125956385,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2299000000,
                "strikethrough_price": 2540000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-9%",
                "model_id": 340398370038,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2540000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 22.990",
                      "hidden_promotion_price": "Rp ?2.990",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47554214640,
            "shopid": 1592077131,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82615-mj5jpgvshamab1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1119699,1718596,2213765,700765096,298488495,2213652,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2300,\"model_id\":340398370038,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82615-mj5jpgvshamab1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1119699,1718596,2213765,700765096,298488495,2213652,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2300,\"model_id\":340398370038,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47554214640",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45254214705,
              "shopid": 1592077131,
              "name": "Silicone Case for Redmi Watch 5 Active/ 5 Lite Case Anti Gores Rubber Soft Sport Hollow Screen Protector Bumper Frame Cover Accessories Jam Tangan for Smartwatch Xiaomi Redmi Watch 5 Lite",
              "label_ids": [
                2018618,
                844931064601283,
                844931086908638,
                1428713,
                1718087960,
                298463379,
                1718093079,
                1059154,
                1059152,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                2213652,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-82625-mj5jn4wmq7t27f",
              "images": [
                "sg-11134201-82625-mj5jn4wmq7t27f",
                "sg-11134201-8261g-mj5jn5oxrv9e35",
                "sg-11134201-8261r-mj5jn6rjj6rl2a",
                "sg-11134201-8261f-mj5jn7xzneh0e6",
                "sg-11134201-825zl-mj5jn97p4xky05",
                "sg-11134201-825zz-mj5jn9xtr4ec1a",
                "sg-11134201-8260s-mj5jnaxtilts8a",
                "sg-11134201-8262u-mj5jnbje9am9f4",
                "sg-11134201-8261p-mj5jnbyh8jye71"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767699565,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1905000000,
              "price_min": 1905000000,
              "price_max": 1905000000,
              "price_min_before_discount": 4140000000,
              "price_max_before_discount": 4140000000,
              "hidden_price_display": null,
              "price_before_discount": 4140000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black",
                    "White",
                    "Pink",
                    "Grey",
                    "Lime Green",
                    "Mint Green",
                    "Purple",
                    "Sky Blue",
                    "Red",
                    "Ivory",
                    "Pine Green",
                    "Dark Blue",
                    "Orange",
                    "Film"
                  ],
                  "images": [
                    "sg-11134201-82612-mj5jnc8c9mv6cb",
                    "sg-11134201-8261h-mj5jncni7oxt33",
                    "sg-11134201-825zq-mj5jndavsw0738",
                    "sg-11134201-8261r-mj5jndq7iu4k86",
                    "sg-11134201-8262s-mj5jneg2jh8m9a",
                    "sg-11134201-82624-mj5jnezaoutjef",
                    "sg-11134201-8261o-mj5jnfelwjk76e",
                    "sg-11134201-8260b-mj5jnfqd4w035f",
                    "sg-11134201-8262m-mj5jng7akc1zdf",
                    "sg-11134201-825zw-mj5jngn118u9bf",
                    "sg-11134201-82600-mj5jnh5nrf293d",
                    "sg-11134201-822ys-mi4gykqtfzsx70",
                    "sg-11134201-8261w-mj5jnj838jk0b5",
                    "sg-11134201-82616-mj5jnjqlzfutf4"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 5 Active",
                    "Mi Watch 5 Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359072125956385,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 1905000000,
                "strikethrough_price": 4140000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 365398361902,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4140000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 19.050",
                      "hidden_promotion_price": "Rp ?9.050",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45254214705,
            "shopid": 1592077131,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82625-mj5jn4wmq7t27f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,844931064601283,844931086908638,1428713,1718087960,298463379,1718093079,1059154,1059152,822059908662278,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,1119699,1718596,2213765,700765096,298488495,2213652,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1334,\"model_id\":365398361902,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82625-mj5jn4wmq7t27f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,844931064601283,844931086908638,1428713,1718087960,298463379,1718093079,1059154,1059152,822059908662278,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,1119699,1718596,2213765,700765096,298488495,2213652,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1334,\"model_id\":365398361902,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45254214705",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57604205091,
              "shopid": 1485723077,
              "name": "Magnetic Silicone Band Strap for Apple Watch Ultra 3 2 49 46 42 41 45 44 40 42 38mm Iwatch Series 11 10 9 8 7 SE 3 2 6 5 4 3 Rubber Bracelet Belt Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                298938357,
                298888358,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1718093079,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                2098628,
                298468389,
                2098629,
                1718088045,
                298938368
              ],
              "image": "sg-11134201-8260t-mj5jm6rvd5hdbc",
              "images": [
                "sg-11134201-8260t-mj5jm6rvd5hdbc",
                "sg-11134201-8260x-mj5jm7cyuw3n18",
                "sg-11134201-82631-mj5jm7utvsp166",
                "sg-11134201-82608-mj5jm8it4jd2ea",
                "sg-11134201-82607-mj5jm8xtc5ja3e",
                "sg-11134201-8260i-mj5jm95435s07b",
                "sg-11134201-8261x-mj5jm9l7h0jre4",
                "sg-11134201-82605-mj5jma4n87pfc2",
                "sg-11134201-8261a-mj5gbtu0plac94"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767699512,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5500000000,
              "price_min": 5500000000,
              "price_max": 5500000000,
              "price_min_before_discount": 15000000000,
              "price_max_before_discount": 15000000000,
              "hidden_price_display": null,
              "price_before_discount": 15000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-63%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16000081710423706.mp4",
                  "thumb_url": "sg-11110106-7rcc0-lsvdjr88nehjda",
                  "duration": 34,
                  "version": 2,
                  "vid": "sg-11110106-6khyq-lsvdjodurh5sc4",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16006711737646165.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16006711737646165.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16000081710423706.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16000081710423706.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16003251737646165.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16003251737646165.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black&Orange(strap)",
                    "Gray&Orange(strap)",
                    "Black&Red(strap)",
                    "star(strap)",
                    "Black(strap)",
                    "white&black(strap)",
                    "Indigo(strap)",
                    "Acid blue(strap)",
                    "Pink(strap)",
                    "Grey(strap)",
                    "Green(strap)",
                    "Chocolate(strap)",
                    "Baby pink(strap)",
                    "Antique Black(strap)",
                    "Midnight(strap)",
                    "Orange(strap)"
                  ],
                  "images": [
                    "sg-11134201-82622-mj5jmaxhfk0080",
                    "sg-11134201-82605-mj5jmbehlbt099",
                    "sg-11134201-8261f-mj5jmbvdds076d",
                    "sg-11134201-8260b-mj5jmc9odxqac0",
                    "sg-11134201-82621-mj5jmcll9yis05",
                    "sg-11134201-8262p-mj5jmcz72qyv54",
                    "sg-11134201-82612-mj5jmdanrvnkad",
                    "sg-11134201-82615-mj5jmdkw6ps6cb",
                    "sg-11134201-825zz-mj5jmdt0jv2931",
                    "sg-11134201-8262g-mj5jmdzwbfnpc9",
                    "sg-11134201-8262d-mj5jme8k5jwn27",
                    "sg-11134201-8260q-mj5jmefsvimff3",
                    "sg-11134201-8261r-mj5jmenxzcox9d",
                    "sg-11134201-8260z-mj5jmevsxz4295",
                    "sg-11134201-8261n-mj5jmf3pmcxt8b",
                    "sg-11134201-8260l-mj5jmfb07shyec"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 393092813566800,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744055084991488,
                "price": 5500000000,
                "strikethrough_price": 15000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-63%",
                "model_id": 345398357188,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 15000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57604205091,
            "shopid": 1485723077,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260t-mj5jm6rvd5hdbc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298938357,298888358,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,1119699,1718596,2213765,700765096,298488495,2098628,298468389,2098629,1718088045,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":1876,\"model_id\":345398357188,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260t-mj5jm6rvd5hdbc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298938357,298888358,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,1119699,1718596,2213765,700765096,298488495,2098628,298468389,2098629,1718088045,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":1876,\"model_id\":345398357188,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57604205091",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43877785338,
              "shopid": 1485723077,
              "name": "Stainless Steel Strap + PC Case for Apple Watch Iwatch Series 11 10 9 8 7 6 5 4 SE Ultra 3 2 45mm 41mm 38 40 42 44mm 49mm 46mm Metal Band Cover Screen Protector Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2023641,
                298888358,
                298938357,
                2018619,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                1718093079,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                2098628,
                1718088045,
                298468389,
                2098629,
                298938368
              ],
              "image": "sg-11134201-82627-mj5jmbxfmupu4b",
              "images": [
                "sg-11134201-82627-mj5jmbxfmupu4b",
                "sg-11134201-82621-mj5jmcfj0b9g9a",
                "sg-11134201-8262t-mj5jmcook3r460",
                "sg-11134201-8261v-mj5jmd18tkas86",
                "sg-11134201-8261j-mj5jmdem1a8235",
                "sg-11134201-8260j-mj5jmdzn3z7r9b",
                "sg-11134201-82623-mj5jme9ca9s102",
                "sg-11134201-82611-mj5jmeqbfitf4d",
                "sg-11134201-8262k-mj5jmexy055072"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767699514,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 6010000000,
              "price_min": 6010000000,
              "price_max": 6010000000,
              "price_min_before_discount": 17400000000,
              "price_max_before_discount": 17400000000,
              "hidden_price_display": null,
              "price_before_discount": 17400000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-65%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                  "thumb_url": "sg-11110106-7rbk7-lq8wjhcokltw28",
                  "duration": 10,
                  "version": 2,
                  "vid": "sg-11110106-6khwg-lq8wjb83dfai8d",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600393,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600264,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600394,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600658,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600265,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600266,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600268,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600267,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600395,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600396,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600566,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black+Clear",
                    "Starlight+Clear",
                    "Silver+Clear",
                    "Blue",
                    "Rose Red",
                    "Black",
                    "Starlight",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134201-8262g-mj5jmf66fdhf5d",
                    "sg-11134201-82624-mj5jmfeqin7oae",
                    "sg-11134201-8261n-mj5jmflti2v57a",
                    "sg-11134201-82603-mj5jmfv5c2dg8f",
                    "sg-11134201-82620-mj5jmg414ow0d5",
                    "sg-11134201-82635-mj5jmgaxmzuu40",
                    "sg-11134201-8260r-mj5jmghgu9kw88",
                    "sg-11134201-8261x-mj5jmgr2qnly52"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "38mm",
                    "40mm",
                    "41mm",
                    "42mm",
                    "44mm",
                    "45mm",
                    "49mm",
                    "42mm Series 11 10",
                    "46mm Series 11 10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 393092813566800,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744055084991488,
                "price": 6010000000,
                "strikethrough_price": 17400000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-65%",
                "model_id": 315398946555,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 17400000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjIxLjBfe2IxMWJhM2FmNDg1NTgwMDViY2U1OTk1MTZkNjVlMDAwOjAyMDAwMDE0MWRmNzE4ZDc6MDEwMDAxMWRjMGRjOGY3Zn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ0MDI0NzQxNjM=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43877785338,
            "shopid": 1485723077,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82627-mj5jmbxfmupu4b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,298888358,298938357,2018619,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1718093079,1119699,1718596,2213765,700765096,298488495,2098628,1718088045,298468389,2098629,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":2319,\"model_id\":315398946555,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82627-mj5jmbxfmupu4b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,298888358,298938357,2018619,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1718093079,1119699,1718596,2213765,700765096,298488495,2098628,1718088045,298468389,2098629,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":2319,\"model_id\":315398946555,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43877785338",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56554189309,
              "shopid": 1176840059,
              "name": "Soft TPU Case + Metal Strap for Apple Watch Ultra/SE 3 2 49mm 46mm Iwatch Series 11 10 9 8 1 2 3 4 5 6 41 38 40 42 44 45mm Stainless Steel Band Screen Protector Cover Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                298463379,
                844931064601283,
                844931086908638,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8261z-mj5go0ipnith0d",
              "images": [
                "sg-11134201-8261z-mj5go0ipnith0d",
                "sg-11134201-82604-mj5go0z8972b42",
                "sg-11134201-82601-mj5go1lm7xmv8d",
                "sg-11134201-8261x-mj5go1zcnu2p52",
                "sg-11134201-82602-mj5gbr8iv2f4f2",
                "sg-11134201-8261x-mj5gbs2xdc7b07",
                "sg-11134201-8262z-mj5go3feg0ee25",
                "sg-11134201-82621-mj5go3rukmbqdb",
                "sg-11134201-82633-mj5go4bpz4si84"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767694551,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5070000000,
              "price_min": 5070000000,
              "price_max": 5070000000,
              "price_min_before_discount": 17200000000,
              "price_max_before_discount": 17200000000,
              "hidden_price_display": null,
              "price_before_discount": 17200000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-71%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                  "thumb_url": "sg-11110106-7rbk7-lq8wjhcokltw28",
                  "duration": 10,
                  "version": 2,
                  "vid": "sg-11110106-6khwg-lq8wjb83dfai8d",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600264,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600393,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600265,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600266,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600658,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600394,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600395,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600396,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600267,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600268,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600566,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black+Clear",
                    "Starlight+Clear",
                    "Silver+Clear",
                    "Blue",
                    "Rose Red with pink",
                    "Black",
                    "Starlight",
                    "Silver",
                    "Rose Gold"
                  ],
                  "images": [
                    "sg-11134201-8260s-mj5go4quo7451e",
                    "sg-11134201-82624-mj5go53j16vbac",
                    "sg-11134201-8260g-mj5go5eybr4455",
                    "sg-11134201-8260d-mj5go5uifpc575",
                    "sg-11134201-8260v-mj5go671n8jnae",
                    "sg-11134201-8260b-mj5go6n0fapzd5",
                    "sg-11134201-82627-mj5go6yogi6a47",
                    "sg-11134201-8260l-mj5go7btd2ps35",
                    "sg-11134201-8261l-mj5go7p0c0759e"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "38mm",
                    "40mm",
                    "41mm",
                    "42mm",
                    "44mm",
                    "45mm",
                    "49mm",
                    "42mm Series 11 10",
                    "46mm Series 11 10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 403933596234286,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5070000000,
                "strikethrough_price": 17200000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-71%",
                "model_id": 297313534862,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 17200000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 50.700",
                      "hidden_promotion_price": "Rp ?0.700",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almnvo Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56554189309,
            "shopid": 1176840059,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261z-mj5go0ipnith0d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,298463379,844931064601283,844931086908638,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,1718596,2213765,700765096,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":247,\"model_id\":297313534862,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261z-mj5go0ipnith0d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,298463379,844931064601283,844931086908638,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,1718596,2213765,700765096,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":247,\"model_id\":297313534862,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56554189309",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56104183235,
              "shopid": 1612442872,
              "name": "Sport Silicone Strap for IWatch Apple Watch Strap Ultra 3 2 SE 3 2 Series 11 10 9 8 7 6 5 4 3 2 49mm 46mm 45mm 41 44 40mm 42mm 38mm Replacement Rubber Band Wristbands Tali Jam Tangan for Smartwatch T800 Ultra I8 Pro Max S8 S9 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018618,
                844931064601283,
                844931086908638,
                298463379,
                1428713,
                1718087960,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                2213652,
                2103651,
                2143613,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8262l-mj5du0vn08w60c",
              "images": [
                "sg-11134201-8262l-mj5du0vn08w60c",
                "sg-11134201-82624-mj5du1orbcoz6a",
                "sg-11134201-8261q-mj5du28r7g1xa3",
                "sg-11134201-8260m-mj5du2q57tvo77",
                "sg-11134201-8260u-mj5du35qnjeq39",
                "sg-11134201-8260w-mj5du3jb8s934c",
                "sg-11134201-8260d-mj5du42tyqkha5",
                "sg-11134201-8260b-mj5du4olezghc6",
                "sg-11134201-8262m-mj5du4zes64n42"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767689796,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2090000000,
              "price_min": 2090000000,
              "price_max": 2090000000,
              "price_min_before_discount": 3800000000,
              "price_max_before_discount": 3800000000,
              "hidden_price_display": null,
              "price_before_discount": 3800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-45%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kipa-m9srcn9l7wyqc7.16000081747312401.mp4",
                  "thumb_url": "sg-11110106-6kipa-m9srcn9l7wyqc7_cover",
                  "duration": 24,
                  "version": 2,
                  "vid": "sg-11110106-6kipa-m9srcn9l7wyqc7",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kipa-m9srcn9l7wyqc7.16000081747312401.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kipa-m9srcn9l7wyqc7.16000081747312401.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kipa-m9srcn9l7wyqc7.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Blue(strap)",
                    "Midnight Blue(strap)",
                    "Red(strap)",
                    "White(strap)",
                    "Yellow(strap)",
                    "Star(strap)",
                    "Black(strap)",
                    "Pink Sands(strap)",
                    "Purple(strap)",
                    "Pistachio(strap)",
                    "Cherry(strap)",
                    "Clover(strap)",
                    "Orange(strap)",
                    "Midnight(strap)",
                    "Light gray(strap)",
                    "Seafoam(strap)",
                    "Dark Orange(strap)",
                    "Yellow Grass(strap)",
                    "Milk Tea(strap)",
                    "Smoke Purple(strap)"
                  ],
                  "images": [
                    "sg-11134201-8261w-mj5du5ennksj85",
                    "sg-11134201-82630-mj5du5u6ij9jc1",
                    "sg-11134201-8260d-mj5du6b3qygxfb",
                    "sg-11134201-82618-mj5du6qsf951a4",
                    "sg-11134201-8260m-mj5du7w9xkow19",
                    "sg-11134201-8260s-mj5du89s6hvnee",
                    "sg-11134201-8261i-mj5du8oiskcnd4",
                    "sg-11134201-8262j-mj5du94b92ip66",
                    "sg-11134201-82624-mj5du9o86d4z94",
                    "sg-11134201-8260b-mj5dua5xrz7l12",
                    "sg-11134201-8262m-mj5duaqd1ibr32",
                    "sg-11134201-8260k-mj5dub72gzy997",
                    "sg-11134201-8262w-mj5duboq05xi5c",
                    "sg-11134201-8260c-mj5duc713qx017",
                    "sg-11134201-8261f-mj5ducmnpjwibb",
                    "sg-11134201-8260q-mj5dud251rsw36",
                    "sg-11134201-8261q-mj5dudf074sl83",
                    "sg-11134201-8260n-mj5due4je7eu92",
                    "sg-11134201-8261u-mj5duenn3eo7c0",
                    "sg-11134201-8262x-mj5duf4omcck5f"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "49/46/45/44/(S3)42mm",
                    "41/40/38/42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 410065853236688,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 740581161091072,
                "price": 2090000000,
                "strikethrough_price": 3800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-45%",
                "model_id": 440397652918,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3800000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Leixiuer Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56104183235,
            "shopid": 1612442872,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262l-mj5du0vn08w60c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,844931064601283,844931086908638,298463379,1428713,1718087960,1718093079,1059152,1059154,822059908662278,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1119699,1718596,2213765,700765096,298488495,2213652,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":12,\"model_id\":440397652918,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262l-mj5du0vn08w60c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,844931064601283,844931086908638,298463379,1428713,1718087960,1718093079,1059152,1059154,822059908662278,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1119699,1718596,2213765,700765096,298488495,2213652,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":12,\"model_id\":440397652918,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56104183235",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55154197200,
              "shopid": 1718534035,
              "name": "AIS Receiver Samyung SI-60RX Original Resmi",
              "label_ids": [
                844931064601283,
                844931086908638,
                1400066568,
                1049130,
                1049131,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608493600,
                825465608494624,
                1718596,
                2213765,
                298488495,
                1119699,
                1718093079
              ],
              "image": "id-11134207-8224q-mj5czh07nksjf2",
              "images": [
                "id-11134207-8224q-mj5czh07nksjf2",
                "id-11134207-8224q-mj5czh07ozcz10"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767689563,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "SAMYUNG ENC",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2235000000000,
              "price_min": 2235000000000,
              "price_max": 2235000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Samarinda",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 2230000000000,
                "strikethrough_price": 2235000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1327275216617472,
                "discount_text": null,
                "model_id": 440397636192,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1327275216617472,
                  "voucher_code": "SMRMAR50",
                  "voucher_discount": 5000000000,
                  "time_info": {
                    "start_time": 1767685920,
                    "end_time": 1768966800,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 200000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 2235000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SMRMARINA.ID",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55154197200,
            "shopid": 1718534035,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mj5czh07nksjf2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1400066568,1049130,1049131,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1718596,2213765,298488495,1119699,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":250,\"model_id\":440397636192,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mj5czh07nksjf2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1400066568,1049130,1049131,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1718596,2213765,298488495,1119699,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":250,\"model_id\":440397636192,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55154197200",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48104176220,
              "shopid": 61899979,
              "name": "Olike Smartwatch Jam Tangan FW6 Smart Watch Tahan AIr IP68 Call 1.43\" Display Healty Management 20 Day Battery",
              "label_ids": [
                2018619,
                844931086908638,
                844931064601283,
                1718087960,
                1428713,
                700005506,
                1049135,
                822059908662278,
                825465608492064,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                1718093079,
                1119699,
                1718596,
                2213765,
                298488495
              ],
              "image": "id-11134207-8224z-mj3z914gtl341d",
              "images": [
                "id-11134207-8224z-mj3z914gtl341d",
                "id-11134207-82250-mj3z914guznk8c",
                "id-11134207-8224w-mj41vsv75ybnb5",
                "id-11134207-8224o-mj41vsux3jszf0",
                "id-11134207-8224q-mj3z914gwe80da",
                "id-11134207-8224z-mj41vsv8x5vl2a",
                "id-11134207-8224w-mj41vsv4beva18",
                "id-11134207-8224r-mj41vsv4a0au44",
                "id-11134207-8224y-mj41vsv1i9z69b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767609282,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Olike",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 22900000000,
              "price_min": 22900000000,
              "price_max": 22900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vene-mj41vzfxro5ec2.16000031767609159.mp4",
                  "thumb_url": "id-11110105-6vene-mj41vzfxro5ec2_cover",
                  "duration": 38,
                  "version": 2,
                  "vid": "id-11110105-6vene-mj41vzfxro5ec2",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vene-mj41vzfxro5ec2.16000031767609159.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vene-mj41vzfxro5ec2.16000031767609159.mp4",
                      "width": 480,
                      "height": 848
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vene-mj41vzfxro5ec2.default.mp4",
                    "width": 480,
                    "height": 848
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Pink"
                  ],
                  "images": [
                    "id-11134207-8224s-mj41vsv70c1xd8"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Makassar",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 22800000000,
                "strikethrough_price": 22900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1276912640081920,
                "discount_text": null,
                "model_id": 395393950703,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1276912640081920,
                  "voucher_code": "SMAR12",
                  "voucher_discount": 100000000,
                  "time_info": {
                    "start_time": 1761679560,
                    "end_time": 1769718360,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 17254800000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 22900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Smart Space Makassar",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48104176220,
            "shopid": 61899979,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mj3z914gtl341d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,1718087960,1428713,700005506,1049135,822059908662278,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1718093079,1119699,1718596,2213765,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":254,\"model_id\":395393950703,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mj3z914gtl341d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,1718087960,1428713,700005506,1049135,822059908662278,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1718093079,1119699,1718596,2213765,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":254,\"model_id\":395393950703,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48104176220",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53054141980,
              "shopid": 792318245,
              "name": "[Rotary Kamera] ORI Samsung Smartwatch S10Pro 4G & 5G RAM 4 / 64GB Video call Wifi GPS NFC Bisa Nonton Youtube TikTok Waterproof AI Voice Health Monitoring Jam Tangan Wanita smartwatch pria jam tangan Couple",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1049112,
                1059151,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                1718596,
                2213765,
                298488495,
                298933384,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224p-mj3xpijrx0jm6f",
              "images": [
                "id-11134207-8224p-mj3xpijrx0jm6f",
                "id-11134207-8224q-mj3xpijryf4292",
                "id-11134207-8224z-mj3xpijrztoi6e",
                "id-11134207-8224r-mj3xpijs188y12",
                "id-11134207-8224x-mj3xpijs6uiqfe",
                "id-11134207-82252-mj3xpijs2mtef5",
                "id-11134207-8224r-mj3xpijs893696",
                "id-11134207-8224v-mj3xpijs41du49",
                "id-11134207-8224t-mj3xpijs5fyae9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767606761,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 78800000000,
              "price_min": 78800000000,
              "price_max": 78800000000,
              "price_min_before_discount": 168800000000,
              "price_max_before_discount": 168800000000,
              "hidden_price_display": null,
              "price_before_discount": 168800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemx-mj40cbew4kcm73.16000081767606571.mp4",
                  "thumb_url": "id-11110105-6vemx-mj40cbew4kcm73_cover",
                  "duration": 58,
                  "version": 2,
                  "vid": "id-11110105-6vemx-mj40cbew4kcm73",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemx-mj40cbew4kcm73.16000081767606571.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemx-mj40cbew4kcm73.16000081767606571.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemx-mj40cbew4kcm73.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Grey",
                    "black."
                  ],
                  "images": [
                    "id-11134207-8224v-mj3xpijs9nnmc5",
                    "id-11134207-8224o-mj40fsh9qm8286",
                    "id-11134207-8224r-mj40fsh9tfcy4b"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228231928365057,
                "price": 76800000000,
                "strikethrough_price": 168800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1322936829362176,
                "discount_text": "-53%",
                "model_id": 370393770233,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1322936829362176,
                  "voucher_code": "TOKOZ9876",
                  "voucher_discount": 2000000000,
                  "time_info": {
                    "start_time": 1767165600,
                    "end_time": 1775204880,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 60800000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 168800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "d49larjuq1",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53054141980,
            "shopid": 792318245,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mj3xpijrx0jm6f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1049112,1059151,1718093079,822059908662278,825465608499232,1119699,1718596,2213765,298488495,298933384,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":259,\"model_id\":370393770233,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mj3xpijrx0jm6f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1049112,1059151,1718093079,822059908662278,825465608499232,1119699,1718596,2213765,298488495,298933384,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":259,\"model_id\":370393770233,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53054141980",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45704161834,
              "shopid": 1482501769,
              "name": "Sport TPU Case Silicone Strap for Huawei Band 10 9 8 Soft Rubber Band Replacement Watchband Bracelet Anti Gores Bumper Screen Protector Cover Accessories Tali Jam Tangan Smartwatch for Huawei Band 10 8 9",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                700810080,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-81zv8-mj401196qwaq79",
              "images": [
                "sg-11134201-81zv8-mj401196qwaq79",
                "sg-11134201-82628-mj4011uyct1g98",
                "sg-11134201-81zv3-mj4012h4ikg7ff",
                "sg-11134201-81zud-mj40131aexogfb",
                "sg-11134201-822xj-mibgmj5rzapu95",
                "sg-11134201-81zue-mj40145x50qq3e",
                "sg-11134201-81zw5-mj4014m49og017",
                "sg-11134201-82632-mj40152vq96td6",
                "sg-11134201-8262r-mj4015vvnzsz65"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767606041,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2330000000,
              "price_min": 2330000000,
              "price_max": 2330000000,
              "price_min_before_discount": 4800000000,
              "price_max_before_discount": 4800000000,
              "hidden_price_display": null,
              "price_before_discount": 4800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-51%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16000081704195678.mp4",
                  "thumb_url": "sg-11110106-7rbl4-lq0hq1j07r8d2e",
                  "duration": 44,
                  "version": 2,
                  "vid": "sg-11110106-6khxr-lq0hptrvh2lca6",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16003221717915071.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16003221717915071.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16002401714677073.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16002401714677073.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16004081714676686.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16004081714676686.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16006711722578936.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16006711722578936.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16006731724225197.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16006731724225197.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16002411714677088.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16002411714677088.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16006591723054587.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16006591723054587.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16004091714676668.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16004091714676668.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16000081704195678.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16000081704195678.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16003241708494741.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16003241708494741.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16003251708494741.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16003251708494741.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16004101714676686.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16004101714676686.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16004111714676686.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16004111714676686.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16005581708494741.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16005581708494741.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16005681714676686.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.16005681714676686.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq0hptrvh2lca6.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Clear+White",
                    "Clear+Black",
                    "Clear+Pink",
                    "Clear+Ivory",
                    "Clear+Blue",
                    "Green+Green",
                    "Black+Black",
                    "Pink+Pink",
                    "Silver+white",
                    "Black+blue",
                    "Rose gold+pink"
                  ],
                  "images": [
                    "sg-11134201-8262u-mj4016cc4ethb7",
                    "sg-11134201-822ye-mi6t8fa91fyf16",
                    "sg-11134201-8260w-mj4016xx4w017a",
                    "sg-11134201-82601-mj40178le0p20f",
                    "sg-11134201-82628-mj4017lrp43p01",
                    "sg-11134201-822yh-mi03owpr711k44",
                    "sg-11134201-81zvp-mj4018b808p3bd",
                    "sg-11134201-81zwe-mj4018n9w3r655",
                    "sg-11134201-82623-mj4018xowbut93",
                    "sg-11134201-8260d-mj401986wpom6d",
                    "sg-11134201-8261c-mj4019l50vesd0"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei Band 8/9/10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372023830524999,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744048265069568,
                "price": 2330000000,
                "strikethrough_price": 4800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-51%",
                "model_id": 425393715512,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4800000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KILPILLS",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45704161834,
            "shopid": 1482501769,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zv8-mj401196qwaq79\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,1718596,2213765,700765096,298488495,700810080,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":260,\"model_id\":425393715512,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zv8-mj401196qwaq79\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,1718596,2213765,700765096,298488495,700810080,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":260,\"model_id\":425393715512,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45704161834",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56304150223,
              "shopid": 1410865922,
              "name": "Soft Sport Silicone Strap for Redmi Watch 6 5 4 Strap Original Polos Warna Silikon Rubber Band with Same Color Buckle Bracelet Watchband Tali Jam Smartwatch for Xiaomi Mi Band 9 8 Pro",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-82607-mj3yydess8w5f6",
              "images": [
                "sg-11134201-82607-mj3yydess8w5f6",
                "sg-11134201-81zvn-mj3yydr1ys5j99",
                "sg-11134201-81zup-mj3yyful5t6qab",
                "sg-11134201-81zw3-mj3yyhl0cnwi1d",
                "sg-11134201-81ztk-mj3yyi4tlvk00e",
                "sg-11134201-8262n-mj3yyicuf8qp3c",
                "sg-11134201-82602-mj3yyip1ukg57b",
                "sg-11134201-82615-mj3yyj39jbwl9b",
                "sg-11134201-8261s-mj3yyjgh8zr78d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767604243,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2751000000,
              "price_min": 2751000000,
              "price_max": 2751000000,
              "price_min_before_discount": 5980000000,
              "price_max_before_discount": 5980000000,
              "hidden_price_display": null,
              "price_before_discount": 5980000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "midnight blue",
                    " pink sand",
                    "Misty Blue",
                    "ivory",
                    "Smoky Purple",
                    "olive",
                    "wine red",
                    "silver gray",
                    "black"
                  ],
                  "images": [
                    "sg-11134201-82635-mj3yykhf1ced32",
                    "sg-11134201-81zvw-mj3yylhcyt53d4",
                    "sg-11134201-81zun-mj3yymhf5ds085",
                    "sg-11134201-8261g-mj3yyncroh6ua1",
                    "sg-11134201-81zv0-mj3yyocgo8aoad",
                    "sg-11134201-81zty-mj3yyp8vskxseb",
                    "sg-11134201-8261f-mj3yyqafpc014f",
                    "sg-11134201-81zwr-mj3yyrdgn40297",
                    "sg-11134201-81zv4-mj3yys985lhe0c"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 6/5/4",
                    "Mi Band 9 Pro",
                    "Mi Band 8 Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 392642018162052,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2751000000,
                "strikethrough_price": 5980000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 325393557651,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5980000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 27.510",
                      "hidden_promotion_price": "Rp ?7.510",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "jaobeo Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56304150223,
            "shopid": 1410865922,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82607-mj3yydess8w5f6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,700765096,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":261,\"model_id\":325393557651,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82607-mj3yydess8w5f6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,700765096,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":261,\"model_id\":325393557651,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56304150223",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47354158818,
              "shopid": 1612442872,
              "name": "Sport Soft Rubber Strap Band for Redmi Watch 6 / 5 / 4 Adjustable Silicone Replacement Wristband Belt Bracelet Accessories Tali Jam Tangan Smartwatch for Mi Band 9 Pro / Mi Band 8 Pro",
              "label_ids": [
                2018618,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1718093079,
                1119699,
                1718596,
                2213765,
                700765096,
                2213652,
                298488495,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81zv3-mj3v94609clg2d",
              "images": [
                "sg-11134201-81zv3-mj3v94609clg2d",
                "sg-11134201-81zv0-mj3v94vmf6dde6",
                "sg-11134201-81zv7-mj3v95cvy41z00",
                "sg-11134201-81zth-mj3v95tw9i4n29",
                "sg-11134201-81zui-mj3v96ak7m6c19",
                "sg-11134201-81zw4-mj3v96tq0o3q8b",
                "sg-11134201-81ztd-mj3v97ccqsqq50",
                "sg-11134201-81zue-mj3v97qmqhaa9e",
                "sg-11134201-81zuo-mj3v984yhbt34a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767598015,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3027000000,
              "price_min": 3027000000,
              "price_max": 3027000000,
              "price_min_before_discount": 7040000000,
              "price_max_before_discount": 7040000000,
              "hidden_price_display": null,
              "price_before_discount": 7040000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-57%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                  "thumb_url": "sg-11110106-6kiny-m9uaa30wleaq84_cover",
                  "duration": 30,
                  "version": 2,
                  "vid": "sg-11110106-6kiny-m9uaa30wleaq84",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Coconut Grey",
                    "Yellow",
                    "Steel gray",
                    "Purple",
                    "Pink",
                    "Midnight blue",
                    "Dark green",
                    "Red",
                    "Teal",
                    "Starlight",
                    "White",
                    "Black"
                  ],
                  "images": [
                    "sg-11134201-81zuf-mj3v98jq3vgh88",
                    "sg-11134201-8261n-mj3v9927x0jpe1",
                    "sg-11134201-81ztj-mj3v9bvvt4p3e1",
                    "sg-11134201-81zuw-mj3v9cdgndhg52",
                    "sg-11134201-82630-mj3v9d07ammd4b",
                    "sg-11134201-81zu8-mj3v9dgf0efac9",
                    "sg-11134201-81zth-mj3v9dxkfrb78b",
                    "sg-11134201-81zw5-mj3v9ef87e9u5f",
                    "sg-11134201-81zuz-mj3v9ewttoua64",
                    "sg-11134201-81zwo-mj3v9fghgoav5c",
                    "sg-11134201-81zwt-mj3v9fy6vb43d0",
                    "sg-11134201-81ztk-mj3v9gf84ete31"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi watch 6/5/4",
                    "for Mi band 9/8 pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 410065853236688,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 3027000000,
                "strikethrough_price": 7040000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-57%",
                "model_id": 320392919633,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7040000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 30.270",
                      "hidden_promotion_price": "Rp ?0.270",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Leixiuer Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47354158818,
            "shopid": 1612442872,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zv3-mj3v94609clg2d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,1119699,1718596,2213765,700765096,2213652,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":262,\"model_id\":320392919633,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zv3-mj3v94609clg2d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,1119699,1718596,2213765,700765096,2213652,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":262,\"model_id\":320392919633,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47354158818",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47504153080,
              "shopid": 1612442872,
              "name": "TPU Elastic Strap for Redmi Watch 6 5 4 Scrunchie Cute Solo Loop Lucu Bracelet Band Accessories Tali Jam Tangan for Smartwatch Xiaomi Mi Band 9 Pro / Mi Band 8 Pro",
              "label_ids": [
                2018618,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                1119699,
                1718596,
                2213765,
                700765096,
                2213652,
                298488495,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-825zt-mj3tp3jwtvczfd",
              "images": [
                "sg-11134201-825zt-mj3tp3jwtvczfd",
                "sg-11134201-8261r-mj3tp3yr5c7ae8",
                "sg-11134201-8261l-mj3tp51ilqmc56",
                "sg-11134201-8261p-mj3tp651kfesd3",
                "sg-11134201-8260y-mj3tp6jiqivbcf",
                "sg-11134201-82615-mj3tp6thfn5y97",
                "sg-11134201-825zp-mj3tp77pfn5y49",
                "sg-11134201-8261j-mj3tp83q2tj87c",
                "sg-11134201-825zs-mj3tp8rombk470"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767595395,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4389000000,
              "price_min": 4389000000,
              "price_max": 4389000000,
              "price_min_before_discount": 8400000000,
              "price_max_before_discount": 8400000000,
              "hidden_price_display": null,
              "price_before_discount": 8400000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-48%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kiox-mdpryjxqw3yx63.16000081755848784.mp4",
                  "thumb_url": "sg-11110106-6kiox-mdpryjxqw3yx63_cover",
                  "duration": 12,
                  "version": 2,
                  "vid": "sg-11110106-6kiox-mdpryjxqw3yx63",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiox-mdpryjxqw3yx63.16000081755848784.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiox-mdpryjxqw3yx63.16000081755848784.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiox-mdpryjxqw3yx63.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "rainbow 1",
                    "rainbow 2",
                    "fishtail",
                    "bread"
                  ],
                  "images": [
                    "sg-11134201-825zp-mj3tp9pqm9kx79",
                    "sg-11134201-8260l-mj3tpapvq6tf1c",
                    "sg-11134201-81ztu-mj3tpbehvif58f",
                    "sg-11134201-81zvh-mj3tpc8idgqu13"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi watch 6 5 4",
                    "mi band 9 8 pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 410065853236688,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 4389000000,
                "strikethrough_price": 8400000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-48%",
                "model_id": 325392669666,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 8400000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 43.890",
                      "hidden_promotion_price": "Rp ?3.890",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Leixiuer Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47504153080,
            "shopid": 1612442872,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zt-mj3tp3jwtvczfd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1119699,1718596,2213765,700765096,2213652,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":263,\"model_id\":325392669666,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zt-mj3tp3jwtvczfd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1119699,1718596,2213765,700765096,2213652,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":263,\"model_id\":325392669666,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47504153080",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 58004132580,
              "shopid": 1174578785,
              "name": "Cute Solo Loop Strap for Redmi Watch 6 5 4 Lucu Scrunchie TPU Elastic Bracelet Band Accessories Tali Jam Tangan for Smartwatch Xiaomi Mi Band 9 Pro / Mi Band 8 Pro",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                298463379,
                844931064601283,
                844931086908638,
                1059154,
                1059152,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1718093079,
                1119699,
                1718596,
                2213765,
                700765096,
                298488495,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81zuz-mj3snp1tt9tv7b",
              "images": [
                "sg-11134201-81zuz-mj3snp1tt9tv7b",
                "sg-11134201-81zvp-mj3snt31gqo1b5",
                "sg-11134201-81zug-mj3snwst5rly44",
                "sg-11134201-81zv5-mj3so0mumj28b6",
                "sg-11134201-81zu7-mj3so3uobzeq7f",
                "sg-11134201-81zw7-mj3so6t8737p8b",
                "sg-11134201-81zvd-mj3so9hv4buv17",
                "sg-11134201-81zwl-mj3soc0lz6di2b",
                "sg-11134201-81ztz-mj3sodbc51qb35"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767593676,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3990000000,
              "price_min": 3990000000,
              "price_max": 3990000000,
              "price_min_before_discount": 8400000000,
              "price_max_before_discount": 8400000000,
              "hidden_price_display": null,
              "price_before_discount": 8400000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kiox-mdpryjxqw3yx63.16000081755848784.mp4",
                  "thumb_url": "sg-11110106-6kiox-mdpryjxqw3yx63_cover",
                  "duration": 12,
                  "version": 2,
                  "vid": "sg-11110106-6kiox-mdpryjxqw3yx63",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiox-mdpryjxqw3yx63.16000081755848784.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiox-mdpryjxqw3yx63.16000081755848784.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiox-mdpryjxqw3yx63.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "rainbow 1",
                    "rainbow 2",
                    "fishtail",
                    "bread"
                  ],
                  "images": [
                    "sg-11134201-81ztf-mj3soeacwjr41f",
                    "sg-11134201-81zvh-mj3sofcmg93846",
                    "sg-11134201-81zw1-mj3sogwyxx4w76",
                    "sg-11134201-81ztu-mj3sojk8s1s27f"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi watch 6 5 4",
                    "mi band 9 8 pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 403883604325098,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 3990000000,
                "strikethrough_price": 8400000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 415392515461,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 8400000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 39.900",
                      "hidden_promotion_price": "Rp ?9.900",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EIMO store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 58004132580,
            "shopid": 1174578785,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zuz-mj3snp1tt9tv7b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,298463379,844931064601283,844931086908638,1059154,1059152,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,1119699,1718596,2213765,700765096,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":264,\"model_id\":415392515461,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zuz-mj3snp1tt9tv7b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,298463379,844931064601283,844931086908638,1059154,1059152,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,1119699,1718596,2213765,700765096,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":264,\"model_id\":415392515461,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_58004132580",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43277756088,
              "shopid": 158703308,
              "name": "Huawei Band & Watch Fit Charging Stand - Tripod Dock Holder Charger",
              "label_ids": [
                844931064601283,
                700005499,
                1059156,
                822059908662278,
                825465608499232,
                825465608497696,
                298463379,
                825465608492064,
                1119699,
                1718093079,
                1718596,
                2213765,
                298488495,
                1718087960,
                1428713,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224s-mj3iu24q21vm83",
              "images": [
                "id-11134207-8224s-mj3iu24q21vm83",
                "id-11134207-82252-mj3iu24q3gg24c",
                "id-11134207-8224y-mj3iu24q4v0i56",
                "id-11134207-8224t-mj3iu24q69ky6b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767591056,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1500000000,
              "price_min": 1500000000,
              "price_max": 1500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "White",
                    "Beige",
                    "Dark Olive Green"
                  ],
                  "images": [
                    "id-11134207-8224o-mj3qz2ttsiyte4",
                    "id-11134207-82250-mj3qz2tttxj959",
                    "id-11134207-8224t-mj3qz2ttvc3pb8",
                    "id-11134207-8224t-mj3qz2ttwqo5bb"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Semarang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 360392318302,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CORDA 3D",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43277756088,
            "shopid": 158703308,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mj3iu24q21vm83\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005499,1059156,822059908662278,825465608499232,825465608497696,298463379,825465608492064,1119699,1718093079,1718596,2213765,298488495,1718087960,1428713,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":67,\"model_id\":360392318302,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mj3iu24q21vm83\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005499,1059156,822059908662278,825465608499232,825465608497696,298463379,825465608492064,1119699,1718093079,1718596,2213765,298488495,1718087960,1428713,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":67,\"model_id\":360392318302,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43277756088",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54004112525,
              "shopid": 62859654,
              "name": "Anti Gores Suunto Vertical Antigores LCD Screen Protector Suunto Vertical 49mm Screen Guard",
              "label_ids": [
                844931064601283,
                2018619,
                298463379,
                1718093079,
                700005489,
                1059152,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                825465608492064,
                1119699,
                1718596,
                298488495,
                2213765,
                298933384,
                1718087960,
                1428713,
                2023641,
                298888358,
                298938357,
                2098628,
                298938368,
                1718088045,
                298468389,
                2098629
              ],
              "image": "id-11134207-82251-mj2yhamchkw383",
              "images": [
                "id-11134207-82251-mj2yhamchkw383",
                "id-11134207-8224v-mj2yhamcerr7fa",
                "id-11134207-8224y-mj2yhamcg6bna1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767543199,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Suunto",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3705000000,
              "price_min": 3705000000,
              "price_max": 3705000000,
              "price_min_before_discount": 3900000000,
              "price_max_before_discount": 3900000000,
              "hidden_price_display": null,
              "price_before_discount": 3900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-5%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 3705000000,
                "strikethrough_price": 3900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-5%",
                "model_id": 355390870081,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3900000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 37.050",
                      "hidden_promotion_price": "Rp ?7.050",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Custom Fashion ",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54004112525,
            "shopid": 62859654,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj2yhamchkw383\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,2018619,298463379,1718093079,700005489,1059152,822059908662278,825465608494624,825465608499232,825465608497696,825465608492064,1119699,1718596,298488495,2213765,298933384,1718087960,1428713,2023641,298888358,298938357,2098628,298938368,1718088045,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":266,\"model_id\":355390870081,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj2yhamchkw383\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,2018619,298463379,1718093079,700005489,1059152,822059908662278,825465608494624,825465608499232,825465608497696,825465608492064,1119699,1718596,298488495,2213765,298933384,1718087960,1428713,2023641,298888358,298938357,2098628,298938368,1718088045,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":266,\"model_id\":355390870081,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54004112525",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57854107411,
              "shopid": 1118224551,
              "name": "Magnetic Silicone Band Strap for Apple Watch Ultra 3 2 SE 3 2 49 46 42 41 45 44 40 42 38mm Iwatch Series 11 10 9 8 7 6 5 4 3 Rubber Bracelet Belt Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                298888358,
                2023641,
                2018619,
                298938357,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1119699,
                1718596,
                700765096,
                298488495,
                2213765,
                298933384,
                1718088045,
                298938368,
                2098629,
                2098628,
                298468389
              ],
              "image": "sg-11134201-81ztv-mj2t5upnvi107c",
              "images": [
                "sg-11134201-81ztv-mj2t5upnvi107c",
                "sg-11134201-81zuf-mj2t5vil9xqb89",
                "sg-11134201-81ztc-mj2t5w8vjw1x86",
                "sg-11134201-81ztu-mj2t5wsdarr45e",
                "sg-11134201-81zuv-mj2t5xi9ssg494",
                "sg-11134201-81zul-mj2t5yhiww002a",
                "sg-11134201-81zvr-mj2t5zbenh1gaf",
                "sg-11134201-81zv6-mj2t608nxmo788",
                "sg-11134201-81zwr-mj2t6102cw7889"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767533972,
              "sold": 6,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5225000000,
              "price_min": 5225000000,
              "price_max": 5225000000,
              "price_min_before_discount": 15000000000,
              "price_max_before_discount": 15000000000,
              "hidden_price_display": null,
              "price_before_discount": 15000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-65%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16000081710423706.mp4",
                  "thumb_url": "sg-11110106-7rcc0-lsvdjr88nehjda",
                  "duration": 34,
                  "version": 2,
                  "vid": "sg-11110106-6khyq-lsvdjodurh5sc4",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16006711737646165.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16006711737646165.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16000081710423706.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16000081710423706.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16003251737646165.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.16003251737646165.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lsvdjodurh5sc4.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black&Orange",
                    "Gray&Orange",
                    "Black&Red",
                    "star",
                    "Black",
                    "white&black",
                    "Indigo",
                    "Acid blue",
                    "Pink",
                    "Grey",
                    "Green",
                    "Chocolate",
                    "Baby pink",
                    "Antique Black",
                    "Midnight",
                    "Orange"
                  ],
                  "images": [
                    "sg-11134201-81zur-mj2t61miuxog5e",
                    "sg-11134201-81zun-mj2t627ohz40fe",
                    "sg-11134201-81zuv-mj2t62soy70ldc",
                    "sg-11134201-81zw7-mj2t63ax07pcc3",
                    "sg-11134201-81zuh-mj2t63v4feo535",
                    "sg-11134201-81zwu-mj2t64izf1fo74",
                    "sg-11134201-81zul-mj2t654kcr2bf5",
                    "sg-11134201-81zuw-mj2t65q49uroa9",
                    "sg-11134201-81zu1-mj2t66gfohzab9",
                    "sg-11134201-81zw7-mj2t674hi1adb0",
                    "sg-11134201-81zvg-mj2t67pkyewy17",
                    "sg-11134201-81zum-mj2t68ntl3wi13",
                    "sg-11134201-81ztr-mj2t69gvwmboad",
                    "sg-11134201-81zvq-mj2t6a2hdwqo66",
                    "sg-11134201-81ztd-mj2t6alnnv2d97",
                    "sg-11134201-81ztn-mj2t6bf4dngiba"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 390465501544583,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5225000000,
                "strikethrough_price": 15000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-65%",
                "model_id": 445390527158,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 15000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 52.250",
                      "hidden_promotion_price": "Rp ?2.250",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 6,
                "local_monthly_sold_count_text": "6",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "APBAND",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57854107411,
            "shopid": 1118224551,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztv-mj2t5upnvi107c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298888358,2023641,2018619,298938357,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,1718596,700765096,298488495,2213765,298933384,1718088045,298938368,2098629,2098628,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":267,\"model_id\":445390527158,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztv-mj2t5upnvi107c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298888358,2023641,2018619,298938357,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,1718596,700765096,298488495,2213765,298933384,1718088045,298938368,2098629,2098628,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":267,\"model_id\":445390527158,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57854107411",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57254107309,
              "shopid": 1118224551,
              "name": "Stainless Steel Strap +Soft Film for IWatch Apple Watch Ultra/SE 3 2 49mm Series 11 10 9 8 7 6 45 44 42 41 40 38mm Metal Band Screen Protector Belt Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2023641,
                2018619,
                298938357,
                298888358,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1718093079,
                1119699,
                1718596,
                700765096,
                298488495,
                2213765,
                2098629,
                2098628,
                298468389,
                298938368,
                1718088045
              ],
              "image": "sg-11134201-81zu8-mj2t4wid8u864b",
              "images": [
                "sg-11134201-81zu8-mj2t4wid8u864b",
                "sg-11134201-81zuj-mj2t4wqpzzlzb0",
                "sg-11134201-81zvo-mj2t4x5ovsw16a",
                "sg-11134201-81zu8-mj2t4xljhlvlb5",
                "sg-11134201-81zwa-mj2t4y2sgu1169",
                "sg-11134201-81ztm-mj2t4yipt0cl97",
                "sg-11134201-81zur-mj2t4yys232994",
                "sg-11134201-81zud-mj2t4zgd8yyv77",
                "sg-11134201-81zwe-mj2t4zychkw36e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767533913,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5149000000,
              "price_min": 5149000000,
              "price_max": 5149000000,
              "price_min_before_discount": 16640000000,
              "price_max_before_discount": 16640000000,
              "hidden_price_display": null,
              "price_before_discount": 16640000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-69%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                  "thumb_url": "sg-11110106-7rbk7-lq8wjhcokltw28",
                  "duration": 10,
                  "version": 2,
                  "vid": "sg-11110106-6khwg-lq8wjb83dfai8d",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600393,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600264,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600265,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600266,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600658,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600394,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600267,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600395,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600268,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600396,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600566,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Black(strap+film)",
                    "Star(strap+film)",
                    "Silver(strap+film)",
                    "Gold(strap+film)",
                    "RoseGold(strap+film)",
                    "Blue(strap+film)",
                    "Rose red(strap+film)"
                  ],
                  "images": [
                    "sg-11134201-81zw0-mj2t50a57ax2f8",
                    "sg-11134201-81zwn-mj2t50m9wcg3c2",
                    "sg-11134201-81zu3-mj2t50xj6jnqc5",
                    "sg-11134201-81zuy-mj2t51812ps10e",
                    "sg-11134201-81zur-mj2t51pcpgjr83",
                    "sg-11134201-81zup-mj2t5224unt15d",
                    "sg-11134201-81zuo-mj2t52dkgglfb8"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "smartwear_size",
                  "options": [
                    "38mm",
                    "40mm",
                    "41mm",
                    "42mm",
                    "44mm",
                    "45mm",
                    "49mm",
                    "Series 11 10 42mm",
                    "Series 11 10 46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 390465501544583,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5149000000,
                "strikethrough_price": 16640000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-69%",
                "model_id": 405390522990,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 16640000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 51.490",
                      "hidden_promotion_price": "Rp ?1.490",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "APBAND",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57254107309,
            "shopid": 1118224551,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zu8-mj2t4wid8u864b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,298938357,298888358,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,1119699,1718596,700765096,298488495,2213765,2098629,2098628,298468389,298938368,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":268,\"model_id\":405390522990,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zu8-mj2t4wid8u864b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,298938357,298888358,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,1119699,1718596,700765096,298488495,2213765,2098629,2098628,298468389,298938368,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":268,\"model_id\":405390522990,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57254107309",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52854049086,
              "shopid": 1203705478,
              "name": "smartwatch Ultra 4GB RAM+128GB ROM Smart Watch  For Android IOS Store GPS Lady's watch Bluetooth Health Monitoring Phone Call Android 4G Jam Tangan Wanita Pria Olahraga Jam Smartwatch Men's watch S9Ultra/S10Ultra",
              "label_ids": [
                2018619,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                298488495,
                2213765,
                1400285055,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224u-mj0rs4qvx5ab23",
              "images": [
                "id-11134207-8224u-mj0rs4qvx5ab23",
                "id-11134207-8224z-mj0rs4qkn75tae",
                "id-11134207-82251-mj0rs4qfj6rkfe",
                "id-11134207-8224x-mj0rs4qbfp53ee",
                "id-11134207-8224x-mj0rs4qfklc004",
                "id-11134207-8224u-mj0rs4qfez2ef1",
                "id-11134207-8224p-mj0rs4rvs16s4e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767410810,
              "sold": 28,
              "historical_sold": 28,
              "liked": false,
              "liked_count": 19,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 8,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 19300000000,
              "price_min": 19300000000,
              "price_max": 19300000000,
              "price_min_before_discount": 70000000000,
              "price_max_before_discount": 70000000000,
              "hidden_price_display": null,
              "price_before_discount": 70000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-72%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam Ultra",
                    "Hitam  Ultra",
                    "abu-abu Ultra",
                    "oranye Ultra"
                  ],
                  "images": [
                    "id-11134207-82251-mj0rs4s03y839e",
                    "id-11134207-8224s-mj0rs4s05csjfb",
                    "id-11134207-8224v-mj0rs4s06rcz44",
                    "id-11134207-8224x-mj0rs4s085xfee"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.625,
                "rating_count": [
                  8,
                  0,
                  1,
                  0,
                  0,
                  7
                ],
                "rcount_with_context": 8,
                "rcount_with_image": 7
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 822966846291968,
                "price": 19300000000,
                "strikethrough_price": 70000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-72%",
                "model_id": 385385105860,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 70000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 28,
                "rounded_local_monthly_sold_count": 28,
                "local_monthly_sold_count_text": "28",
                "rounded_display_sold_count": 28,
                "display_sold_count_text": "28"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": " Apple Wireless bluetooth head",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52854049086,
            "shopid": 1203705478,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mj0rs4qvx5ab23\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,2213765,1400285055,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":102,\"model_id\":385385105860,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mj0rs4qvx5ab23\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,2213765,1400285055,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":102,\"model_id\":385385105860,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52854049086",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41577688073,
              "shopid": 1702249661,
              "name": "Jam Tangan Anak Smartwatch Q12B SOS Layar IP67Tahan Air 1,44 Inci Baterai Tahan Lama Pagar Pengaman untuk Anak Laki-laki dan Perempuan dengan Fitur SOS dan Panggilan",
              "label_ids": [
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1049122,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1119699,
                1718093079,
                1718596,
                298488495,
                2213765,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224s-miyeampiw1z511",
              "images": [
                "id-11134207-8224s-miyeampiw1z511",
                "id-11134207-82250-miyeampiunepfd",
                "id-11134207-8224v-miyeampinmkh2c",
                "id-11134207-82251-miyf4n9hwhz92b",
                "id-11134207-8224p-miyf4n9nd5hfc7",
                "id-11134207-82252-miyeampip14x3b",
                "id-11134207-82251-miyeampit8u96c",
                "id-11134207-8224t-miyeampixgjlb1",
                "id-11134207-8224s-miyeampiyv4165"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767269299,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 15855500000,
              "price_min": 15855500000,
              "price_max": 15855500000,
              "price_min_before_discount": 89666600000,
              "price_max_before_discount": 89666600000,
              "hidden_price_display": null,
              "price_before_discount": 89666600000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-82%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven1-miyf7y24odtza5.16000101767268373.mp4",
                  "thumb_url": "id-11110105-6ven1-miyf7y24odtza5_cover",
                  "duration": 54,
                  "version": 2,
                  "vid": "id-11110105-6ven1-miyf7y24odtza5",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven1-miyf7y24odtza5.16000101767268373.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven1-miyf7y24odtza5.16000101767268373.mp4",
                      "width": 960,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven1-miyf7y24odtza5.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "A204-S12B-pink",
                    "A204-S12B-black",
                    "A204-S12B-blue",
                    "A203-S1-black",
                    "A203-S1-blue",
                    "A203-S1-pink",
                    "A202-Z1-pink",
                    "A202-Z1-black",
                    "A202-Z1-blue",
                    "warna acak"
                  ],
                  "images": [
                    "id-11134207-8224o-miyf4n9sfrba07",
                    "id-11134207-8224z-miyf4n9sh5vq05",
                    "id-11134207-8224t-miyf4n9sikg609",
                    "id-11134207-8224z-miyf4n9sjz0m67",
                    "id-11134207-82251-miyf4n9sldl275",
                    "id-11134207-8224v-miyf4n9sms5i2f",
                    "id-11134207-8224w-miyf4n9so6py95",
                    "id-11134207-8224s-miyf4n9splaec3",
                    "id-11134207-8224s-miyf4n9sqzuu8c",
                    "id-11134207-8224w-miyf4n9ssefa75"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 821051030814720,
                "price": 15055500000,
                "strikethrough_price": 89666600000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1325246246699012,
                "discount_text": "-82%",
                "model_id": 292303722596,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1325246246699012,
                  "voucher_code": "XIQUFF68",
                  "voucher_discount": 800000000,
                  "time_info": {
                    "start_time": 1767441000,
                    "end_time": 1774954560,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 13000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 89666600000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Bagian Khusus Seri Anak-Anak",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41577688073,
            "shopid": 1702249661,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-miyeampiw1z511\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1059152,1049122,822059908662278,825465608497696,825465608494624,825465608499232,1119699,1718093079,1718596,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":274,\"model_id\":292303722596,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-miyeampiw1z511\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1059152,1049122,822059908662278,825465608497696,825465608494624,825465608499232,1119699,1718093079,1718596,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":274,\"model_id\":292303722596,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41577688073",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55853983607,
              "shopid": 1702249661,
              "name": "Q19 kids Smartwatch Jam anak telepon anak Gps Digital Smartwatch anak Waterproof IP67 Anti Air VC Bisa di putar 360 Derajat",
              "label_ids": [
                844931086908638,
                844931064601283,
                298463379,
                1049122,
                1059152,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1718596,
                1119699,
                1718093079,
                298488495,
                1400285055,
                2213765,
                298933384,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82251-mix0c4rpkow575",
              "images": [
                "id-11134207-82251-mix0c4rpkow575",
                "id-11134207-8224t-miwzoec1f6ki78",
                "id-11134207-8224o-miwzoec1hzpedf",
                "id-11134207-8224q-mix0c4rb96gwfb",
                "id-11134207-8224t-mix0c4rfjoxxce",
                "id-11134207-82250-mix0c4rbrfuqf1",
                "id-11134207-8224r-miwzoec1ds0220",
                "id-11134207-8224v-mix0c4rbbzltd1",
                "id-11134207-8224w-miwzoec1gl4y81"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767184225,
              "sold": 5,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 15688800000,
              "price_min": 15688800000,
              "price_max": 15688800000,
              "price_min_before_discount": 95666600000,
              "price_max_before_discount": 95666600000,
              "hidden_price_display": null,
              "price_before_discount": 95666600000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-84%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvg-mix0l44r1cef4a.16000101767183229.mp4",
                  "thumb_url": "id-11110105-6vdvg-mix0l44r1cef4a_cover",
                  "duration": 27,
                  "version": 2,
                  "vid": "id-11110105-6vdvg-mix0l44r1cef4a",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvg-mix0l44r1cef4a.16000101767183229.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvg-mix0l44r1cef4a.16000101767183229.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvg-mix0l44r1cef4a.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "A205-Q19XZ-green",
                    "A205-Q19XZ-red",
                    "A205-Q19XZ-blue",
                    "A205-Q19XZ-purple",
                    "A205-Q19XZ-black",
                    "A201-Q19-black",
                    "A201-Q19-red",
                    "A201-Q19-purple",
                    "A201-Q19-blue",
                    "A201-Q19-green",
                    "A201-Q19-pink",
                    "warna acak"
                  ],
                  "images": [
                    "id-11134207-8224o-mix0c4rpm3gl7f",
                    "id-11134207-8224t-mix0c4rpni11ef",
                    "id-11134207-8224s-mix0c4rpowlha4",
                    "id-11134207-8224z-mix0c4rpqb5x95",
                    "id-11134207-8224x-mix0c4rprpqd9d",
                    "id-11134207-8224t-mix0c4rpt4atb9",
                    "id-11134207-82251-mix0c4rpuiv913",
                    "id-11134207-8224v-mix0c4rpvxfp1f",
                    "id-11134207-8224v-mix0c4rpxc057d",
                    "id-11134207-8224o-miww7rdrr37r13",
                    "id-11134207-82252-miww7rdrshs78d",
                    "id-11134207-82252-mix131qexbswd5"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 821051030814720,
                "price": 14888800000,
                "strikethrough_price": 95666600000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1325246246699012,
                "discount_text": "-84%",
                "model_id": 390379102869,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1325246246699012,
                  "voucher_code": "XIQUFF68",
                  "voucher_discount": 800000000,
                  "time_info": {
                    "start_time": 1767441000,
                    "end_time": 1774954560,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 13000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 95666600000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Bagian Khusus Seri Anak-Anak",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55853983607,
            "shopid": 1702249661,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mix0c4rpkow575\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1049122,1059152,822059908662278,825465608497696,825465608494624,825465608499232,1718596,1119699,1718093079,298488495,1400285055,2213765,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":129,\"model_id\":390379102869,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mix0c4rpkow575\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1049122,1059152,822059908662278,825465608497696,825465608494624,825465608499232,1718596,1119699,1718093079,298488495,1400285055,2213765,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":129,\"model_id\":390379102869,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55853983607",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 58053991355,
              "shopid": 1481886281,
              "name": "Anti Gores PC Case+Silicone Strap for Amazfit Bip 6 Smart Watch Tempered Glass Screen Protector Bumper Cover Shell Sport Rubber Band Wristband Accessories Tali Jam Tangan Smartwatch Amazfit Bip 6",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1059152,
                1059154,
                822059908662278,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                298463379,
                1718093079,
                1119699,
                1718596,
                700765096,
                298488495,
                2213765,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-81zvx-miwv8875dv5t3b",
              "images": [
                "sg-11134201-81zvx-miwv8875dv5t3b",
                "sg-11134201-81zw3-miwv88vw6cclbb",
                "sg-11134201-81zui-miwv89baxwch35",
                "sg-11134201-81ztn-miwv89rm1tz987",
                "sg-11134201-81zun-miwv8a7l9dza9e",
                "sg-11134201-81zvh-miwv8apqb8xw17",
                "sg-11134201-81zug-miwv8b7b2q6e05",
                "sg-11134201-81zvj-miwv8blr5hqf65",
                "sg-11134201-81zv8-miwv8c2sn0uef8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767174241,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2530000000,
              "price_min": 2530000000,
              "price_max": 2530000000,
              "price_min_before_discount": 7000000000,
              "price_max_before_discount": 7000000000,
              "hidden_price_display": null,
              "price_before_discount": 7000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-64%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9a3-mgf6wfwh1826d8.16000081761745756.mp4",
                  "thumb_url": "sg-11110106-6v9a3-mgf6wfwh1826d8_cover",
                  "duration": 44,
                  "version": 2,
                  "vid": "sg-11110106-6v9a3-mgf6wfwh1826d8",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9a3-mgf6wfwh1826d8.16000081761745756.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9a3-mgf6wfwh1826d8.16000081761745756.mp4",
                      "width": 1366,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9a3-mgf6wfwh1826d8.default.mp4",
                    "width": 1024,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "pink + pink",
                    "agate gray + ivory",
                    "black + black",
                    "white + silver",
                    "Blue + Blue",
                    "ivory + ivory",
                    "Space Gray + black",
                    "pink+Transparent",
                    "agate gray+Trans",
                    "red+Transparent",
                    "black+Transparent",
                    "orange+Transparent",
                    "white+Transparent",
                    "green+Transparent",
                    "ivory+Transparent",
                    "Space Gray+Transpare",
                    "blue+Transparent",
                    "agate gray(Strap)",
                    "red(Strap)",
                    "Space Gray(Strap)",
                    "starlight(Strap)",
                    "dark green(Strap)",
                    "orange(Strap)",
                    "light pink(Strap)",
                    "Ink Blue(Strap)",
                    "white(Strap)",
                    "black(Strap)",
                    "Ink blue(case)",
                    "Pine green(case)",
                    "Ivory white(case)",
                    "Cherry pink(case)",
                    "silver(case)",
                    "Glossy black(case)",
                    "Matte black(case)",
                    "Transparent(case)"
                  ],
                  "images": [
                    "sg-11134201-81ztu-miwv8cjewqgxb8",
                    "sg-11134201-81zve-miwv8cztant09a",
                    "sg-11134201-81ztg-miwv8dds8tmvb7",
                    "sg-11134201-81zvz-miwv8dsn3yf98d",
                    "sg-11134201-81zwk-miwv8e6blmh0f4",
                    "sg-11134201-81zur-miwv8enb3imc12",
                    "sg-11134201-81zv8-miwv8f1zvitiae",
                    "sg-11134201-81zvi-miwv8fnifi8429",
                    "sg-11134201-81zu9-miwv8g1dbhty80",
                    "sg-11134201-81zvz-miwv8gkby4ud75",
                    "sg-11134201-81ztq-miwv8gzzrhflf8",
                    "sg-11134201-81zvl-miwv8hep60ao34",
                    "sg-11134201-81zvl-miwv8hua4v0gd0",
                    "sg-11134201-81zwv-miwv8iaaik1v34",
                    "sg-11134201-81ztc-miwv8ip1r0g690",
                    "sg-11134201-81zv0-miwv8j340kjo4a",
                    "sg-11134201-81zva-miwv8jhqgao7cb",
                    "sg-11134201-81zu8-miwv8jxtlog608",
                    "sg-11134201-81zw2-miwv8kbllt6u13",
                    "sg-11134201-81zwn-miwv8kqphdl38f",
                    "sg-11134201-81ztl-miwv8l4m39c56e",
                    "sg-11134201-81zwx-miwv8lip0nif7b",
                    "sg-11134201-81zu5-miwv8lxugg749b",
                    "sg-11134201-81zvj-miwv8mbhw6x043",
                    "sg-11134201-81zuv-miwv8ms2914x95",
                    "sg-11134201-81zvr-miwv8n96qrk6d5",
                    "sg-11134201-81zto-miwv8nnmmi9s09",
                    "sg-11134201-81ztw-miwv8o3sb8jmf7",
                    "sg-11134201-81zwt-miwv8ojnjima0e",
                    "sg-11134201-81zv3-miwv8owng8w1ad",
                    "sg-11134201-81zuv-miwv8p9trcatd7",
                    "sg-11134201-81ztq-miwv8pmzzkzl6d",
                    "sg-11134201-81zvj-miwv8pytd9ts19",
                    "sg-11134201-81zv1-miwv8qc12w3lc8",
                    "sg-11134201-81ztt-miwv8qr757ggf7"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372020215039022,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2530000000,
                "strikethrough_price": 7000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-64%",
                "model_id": 435378630290,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 25.300",
                      "hidden_promotion_price": "Rp ?5.300",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "YUIYUKARI",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 58053991355,
            "shopid": 1481886281,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zvx-miwv8875dv5t3b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,1059152,1059154,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,298463379,1718093079,1119699,1718596,700765096,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":282,\"model_id\":435378630290,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zvx-miwv8875dv5t3b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,1059152,1059154,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,298463379,1718093079,1119699,1718596,700765096,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":282,\"model_id\":435378630290,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_58053991355",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50653987012,
              "shopid": 1481886281,
              "name": "Soft Magnetic Buckle Silicone Leather Strap for Samsung Watch Galaxy Watch 7 6 5 4 FE 22mm 20mm Quick Release Rubber Band Tali Jam Tangan Smartwatch for Garmin /Huawei Watch GT 6 5 /Amazfit Bip 6 /Xiaomi /Redmi Watch 5 Active/Lite/Itel 011 12/Aolon/Advan",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1059154,
                1059152,
                822059908662278,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                1119699,
                298463379,
                1718093079,
                1718596,
                700765096,
                298488495,
                2213765,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-81ztq-miwv87vq0hs5e8",
              "images": [
                "sg-11134201-81ztq-miwv87vq0hs5e8",
                "sg-11134201-81zve-miwv889sjvuueb",
                "sg-11134201-81zts-miwv88mtjwg09a",
                "sg-11134201-81zty-miwv890gy8li2a",
                "sg-11134201-81ztx-miwv89f4iqro2d",
                "sg-11134201-81ztn-miwv89wy6fwg4c",
                "sg-11134201-81zu5-miwv8adjjugy4d",
                "sg-11134201-81zwk-miwv8arbbi832e",
                "sg-11134201-81zug-miwv8b53y0w51a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767174225,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5890000000,
              "price_min": 5890000000,
              "price_max": 5890000000,
              "price_min_before_discount": 12400000000,
              "price_max_before_discount": 12400000000,
              "hidden_price_display": null,
              "price_before_discount": 12400000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black (Strap)",
                    "Apricot (Strap)",
                    "Beige (Strap)",
                    "Dark Brown (Strap)",
                    "Midnight Blue(Strap)",
                    "Brown (Strap)",
                    "Light Brown (Strap)",
                    "Green (Strap)",
                    "Grey (Strap)"
                  ],
                  "images": [
                    "sg-11134201-81zu5-miwv8bigypz93a",
                    "sg-11134201-81zuu-miwv8bwy69l268",
                    "sg-11134201-81zwg-miwv8carqhvm3d",
                    "sg-11134201-81zut-miwv8cmjzeo10e",
                    "sg-11134201-81ztu-miwv8cz5getjce",
                    "sg-11134201-81zuj-miwv8d9v5k3le9",
                    "sg-11134201-81zwv-miwv8dn892blea",
                    "sg-11134201-81zv8-miwv8dyhkpoic7",
                    "sg-11134201-81zva-miwv8ec1hzphd2"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm",
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372020215039022,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5890000000,
                "strikethrough_price": 12400000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 410378630208,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 12400000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 58.900",
                      "hidden_promotion_price": "Rp ?8.900",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "YUIYUKARI",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50653987012,
            "shopid": 1481886281,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztq-miwv87vq0hs5e8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,1059154,1059152,822059908662278,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1119699,298463379,1718093079,1718596,700765096,298488495,2213765,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":283,\"model_id\":410378630208,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztq-miwv87vq0hs5e8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,1059154,1059152,822059908662278,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1119699,298463379,1718093079,1718596,700765096,298488495,2213765,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":283,\"model_id\":410378630208,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50653987012",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43027673604,
              "shopid": 1481886281,
              "name": "Soft Silicone Strap for Apple Watch Strap SE Ultra 3 2 Series 11 10 9 8 7 6 5 4 3 IWatch 49mm 46 45 44 42 41 40 38mm Silikon Replacement Rubber Band Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1059152,
                1059154,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                298463379,
                1718093079,
                1119699,
                1718596,
                700765096,
                298488495,
                2213765,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81zuc-miwv88o0e8020c",
              "images": [
                "sg-11134201-81zuc-miwv88o0e8020c",
                "sg-11134201-81zw8-miwv892ydrt3a3",
                "sg-11134201-81zv7-miwv89l1odmo23",
                "sg-11134201-81ztw-miwv8a58cu85c5",
                "sg-11134201-81zuz-miwv8aty7nd103",
                "sg-11134201-81zux-miwv8bnwbvgmda",
                "sg-11134201-81zvp-miwv8c604s8z2b",
                "sg-11134201-81zwe-miwv8cmnrnr403",
                "sg-11134201-81ztl-miwv8d5xbk76f3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767174233,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1350000000,
              "price_min": 1350000000,
              "price_max": 1350000000,
              "price_min_before_discount": 2200000000,
              "price_max_before_discount": 2200000000,
              "hidden_price_display": null,
              "price_before_discount": 2200000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-39%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16000081749696144.mp4",
                  "thumb_url": "sg-11110106-6kio8-maw4ytflch9ed3_cover",
                  "duration": 15,
                  "version": 2,
                  "vid": "sg-11110106-6kio8-maw4ytflch9ed3",
                  "formats": [
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004081756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004081756725327.mp4",
                      "width": 640,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006711756726107.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006711756726107.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006731756726107.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006731756726107.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004091756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004091756725327.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16000081749696144.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16000081749696144.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16003251756726107.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16003251756726107.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004111756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004111756725327.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600725,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007251766639118.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007251766639118.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004101756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004101756725327.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600724,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007241766639118.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007241766639118.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black",
                    "White",
                    "pink sand",
                    "Midnight blue",
                    "Cattus",
                    "light purple",
                    "Yellow",
                    "Fog gray",
                    "Ink green",
                    "Lavender",
                    "Star Light",
                    "Red",
                    "pistachio",
                    "dark blue",
                    "Cherry",
                    "Walnut",
                    "Coastal Gray",
                    "Blue color",
                    "Barbie powder",
                    "orange",
                    "deep blue",
                    "Water Squeegee"
                  ],
                  "images": [
                    "sg-11134201-81zwv-miwv8dkcyvibdb",
                    "sg-11134201-81zub-miwv8dvbzqiv57",
                    "sg-11134201-81zu9-miwv8e4nv1fn09",
                    "sg-11134201-81zuu-miwv8eg2ncar01",
                    "sg-11134201-81zu7-miwv8espiww1d6",
                    "sg-11134201-81zvv-miwv8f35i96ube",
                    "sg-11134201-81zuw-miwv8fejmpz608",
                    "sg-11134201-81ztm-miwv8fqymi9x07",
                    "sg-11134201-81zw4-miwv8g2p5m2o00",
                    "sg-11134201-81zwm-miwv8ge38oar7e",
                    "sg-11134201-81zu6-miwv8gtqv01yef",
                    "sg-11134201-81zwn-miwv8h4bda86ce",
                    "sg-11134201-81zv4-miwv8hgkv3lyb1",
                    "sg-11134201-81zul-miwv8hrdbxmv31",
                    "sg-11134201-81zw5-miwv8i3nlr7m34",
                    "sg-11134201-81zvn-miwv8ieeo0sn7d",
                    "sg-11134201-81zui-miwv8iomt2isc5",
                    "sg-11134201-81zuq-miwv8iz2fq4if4",
                    "sg-11134201-81ztr-miwv8jc68yrnd5",
                    "sg-11134201-81ztv-miwv8jntb20x54",
                    "sg-11134201-81zwq-miwv8jyyndvm45",
                    "sg-11134201-81zvr-miwv8ka9xb7kb1"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744039557694464,
                "price": 1350000000,
                "strikethrough_price": 2200000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-39%",
                "model_id": 410378619156,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2200000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "YUIYUKARI",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43027673604,
            "shopid": 1481886281,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zuc-miwv88o0e8020c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,1059152,1059154,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,298463379,1718093079,1119699,1718596,700765096,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":255,\"model_id\":410378619156,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zuc-miwv88o0e8020c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,1059152,1059154,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,298463379,1718093079,1119699,1718596,700765096,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":255,\"model_id\":410378619156,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43027673604",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53203982164,
              "shopid": 1612442872,
              "name": "Alpine Loop Nylon Strap Band for Apple Watch Ultra 3 2 SE 3 Iwatch Series 11 10 9 8 7 6 3 5 4 46 49mm 45mm 41 44 40mm 42mm 38mm Sport Breathable Accessories Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018618,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1059154,
                1059152,
                822059908662278,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                298463379,
                1718093079,
                1119699,
                1718596,
                700765096,
                2213652,
                2103651,
                2143613,
                298488495,
                2213765,
                298933384,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81zvu-miwv1qdn1wxt64",
              "images": [
                "sg-11134201-81zvu-miwv1qdn1wxt64",
                "sg-11134201-81zvc-miwv1r4nbbwj5d",
                "sg-11134201-81zvq-miwv1rynkutc64",
                "sg-11134201-81zts-miwv1sjoukn873",
                "sg-11134201-81zwv-miwv1t5vv8jm5e",
                "sg-11134201-81ztj-miwv1trflekl77",
                "sg-11134201-81zwp-miwv1uqeg16q80",
                "sg-11134201-81zu5-miwv1vwl301y33",
                "sg-11134201-81zu9-miwv1xcjidj915"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767173940,
              "sold": 3,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2394000000,
              "price_min": 2394000000,
              "price_max": 2394000000,
              "price_min_before_discount": 5040000000,
              "price_max_before_discount": 5040000000,
              "hidden_price_display": null,
              "price_before_discount": 5040000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khyq-lvfk9j563nh27d.16000081716004172.mp4",
                  "thumb_url": "sg-11110106-7rd51-lvfk9l1pbpjo44",
                  "duration": 13,
                  "version": 2,
                  "vid": "sg-11110106-6khyq-lvfk9j563nh27d",
                  "formats": [
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lvfk9j563nh27d.16004081727603520.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lvfk9j563nh27d.16004081727603520.mp4",
                      "width": 360,
                      "height": 480
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lvfk9j563nh27d.16006591727603520.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lvfk9j563nh27d.16006591727603520.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lvfk9j563nh27d.16004091727603520.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lvfk9j563nh27d.16004091727603520.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lvfk9j563nh27d.16000081752004909.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lvfk9j563nh27d.16000081752004909.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lvfk9j563nh27d.16003251727528421.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lvfk9j563nh27d.16003251727528421.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lvfk9j563nh27d.16004111727603520.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lvfk9j563nh27d.16004111727603520.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyq-lvfk9j563nh27d.16004101727603520.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lvfk9j563nh27d.16004101727603520.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyq-lvfk9j563nh27d.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "black white",
                    "dark orange",
                    "Popstar",
                    "black",
                    "green",
                    "orange",
                    "star",
                    "white",
                    "ginger",
                    "Black Gray",
                    "light pink",
                    "light gray",
                    "blue",
                    "Red black",
                    "olive",
                    "midnight blue",
                    "lavender",
                    "Red",
                    "wine",
                    "light green",
                    "dark green",
                    "Rose red",
                    "Acid green",
                    "Electric indigo",
                    "Acid blue"
                  ],
                  "images": [
                    "sg-11134201-81zvc-miwv1yrd4fese8",
                    "sg-11134201-81zvl-miwv1zvsbdaaec",
                    "sg-11134201-81zvp-miwv20ml1on59a",
                    "sg-11134201-81zvo-miwv21avygp280",
                    "sg-11134201-81zu6-miwv22cb9ibk3d",
                    "sg-11134201-81zu5-miwv235f9dl25e",
                    "sg-11134201-81ztp-miwv23zyiz2951",
                    "sg-11134201-81ztk-miwv24ewwiytf8",
                    "sg-11134201-81zw3-miwv254imwhxb9",
                    "sg-11134201-81zux-miwv25fqeepy49",
                    "sg-11134201-81ztj-miwv25vanxmvbb",
                    "sg-11134201-81zu8-miwv267l222pe0",
                    "sg-11134201-81zwc-miwv26j81ama5b",
                    "sg-11134201-81zwn-miwv26ubnwn9ef",
                    "sg-11134201-81zwp-miwv27628f0m46",
                    "sg-11134201-81zte-miwv27i4uyv82f",
                    "sg-11134201-81zuv-miwv27ulyner7f",
                    "sg-11134201-81zvw-miwv2866pv5u73",
                    "sg-11134201-81ztc-miwv28ehy8ef55",
                    "sg-11134201-81zvz-miwv28pzi80171",
                    "sg-11134201-81zuv-miwv295bkutd8d",
                    "sg-11134201-81zvo-miwv29gw51qff1",
                    "sg-11134201-81zwo-miwv29tsgi69b0",
                    "sg-11134201-81zvs-miwv2a3t6mf5d0",
                    "sg-11134201-81zwv-miwv2af5h0xsf5"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 410065853236688,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2394000000,
                "strikethrough_price": 5040000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 310379187018,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5040000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 23.940",
                      "hidden_promotion_price": "Rp ?3.940",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Leixiuer Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53203982164,
            "shopid": 1612442872,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zvu-miwv1qdn1wxt64\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,1059154,1059152,822059908662278,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,298463379,1718093079,1119699,1718596,700765096,2213652,2103651,2143613,298488495,2213765,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":144,\"model_id\":310379187018,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zvu-miwv1qdn1wxt64\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,1059154,1059152,822059908662278,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,298463379,1718093079,1119699,1718596,700765096,2213652,2103651,2143613,298488495,2213765,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":144,\"model_id\":310379187018,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53203982164",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42827669570,
              "shopid": 1612442872,
              "name": "Temepred Glass Matte PC Case for Apple Watch Ultra 3 2 49mm IWatch 40mm 41mm 44mm 45mm 42mm 38mm SE 3 2 Series 11 10 9 8 7 6 5 4 3 2 1 Hard Screen Protector Bumper Cover with Film Accessories for Jam Tangan Smartwatch MAX 9 PRO DT No 1 HW22 W26 IWO T500 +",
              "label_ids": [
                2018618,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                298463379,
                1718093079,
                1119699,
                1718596,
                700765096,
                2213652,
                2103651,
                2143613,
                298488495,
                2213765,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-81zwc-miwv1p2qg8av68",
              "images": [
                "sg-11134201-81zwc-miwv1p2qg8av68",
                "sg-11134201-81ztd-miwv1q9v5fd3ea",
                "sg-11134201-81zth-miwv1r1qmm820e",
                "sg-11134201-81zvx-miwv1s23rwg7ab",
                "sg-11134201-81zve-miwv1sovxw5hde",
                "sg-11134201-81zvs-miwv1tbj9sle63",
                "sg-11134201-81ztc-miwv1u2sz4zo37",
                "sg-11134201-81ztr-miwv1uyw5m9yd8",
                "sg-11134201-81zto-miwv1w72mj2ae6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767173933,
              "sold": 3,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1729000000,
              "price_min": 1729000000,
              "price_max": 1729000000,
              "price_min_before_discount": 3400000000,
              "price_max_before_discount": 3400000000,
              "hidden_price_display": null,
              "price_before_discount": 3400000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-49%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khyl-luf2e4vxvt4o55.16000081713794886.mp4",
                  "thumb_url": "sg-11110106-7rd4x-luf2eblm3wc468",
                  "duration": 41,
                  "version": 2,
                  "vid": "sg-11110106-6khyl-luf2e4vxvt4o55",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyl-luf2e4vxvt4o55.16003251726389140.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyl-luf2e4vxvt4o55.16003251726389140.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyl-luf2e4vxvt4o55.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Starlight",
                    "Bright silver",
                    "Transparent",
                    "Black",
                    "White",
                    "Mindnight blue",
                    "Rose",
                    "Red",
                    "Wine",
                    "Green",
                    "Pink"
                  ],
                  "images": [
                    "sg-11134201-81zv5-miwv1x8t62o4c7",
                    "sg-11134201-81zte-miwv1yrapds08b",
                    "sg-11134201-81ztq-miwv203qv9j72a",
                    "sg-11134201-81zuu-miwv213u9c771c",
                    "sg-11134201-81zvg-miwv224lylty3b",
                    "sg-11134201-81zws-miwv230w1o1v61",
                    "sg-11134201-81zuv-miwv23nx5ddx3e",
                    "sg-11134201-81zv5-miwv248q3w907e",
                    "sg-11134201-81zwv-miwv24s273lz19",
                    "sg-11134201-81zvv-miwv2555dtkx5d",
                    "sg-11134201-81zv0-miwv25ms6arqfe"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Variation",
                  "options": [
                    "40mm",
                    "42mm",
                    "38mm",
                    "41mm",
                    "44mm",
                    "45mm",
                    "49mm",
                    "Series 11 10 42mm",
                    "Series 11 10 46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 410065853236688,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 1729000000,
                "strikethrough_price": 3400000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-49%",
                "model_id": 340378605155,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3400000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 17.290",
                      "hidden_promotion_price": "Rp ?7.290",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Leixiuer Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42827669570,
            "shopid": 1612442872,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwc-miwv1p2qg8av68\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931086908638,844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,298463379,1718093079,1119699,1718596,700765096,2213652,2103651,2143613,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":151,\"model_id\":340378605155,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwc-miwv1p2qg8av68\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931086908638,844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,298463379,1718093079,1119699,1718596,700765096,2213652,2103651,2143613,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":151,\"model_id\":340378605155,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42827669570",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51353964361,
              "shopid": 2299609,
              "name": "Strap Two Tone Silicone Magnetic Band Series 1st 1 2 3 4 5 6 7 8 9 10 11 SE SE2 SE3 Ultra Ultra2 Ultra3 38mm/40mm/41mm/42mm/44mm/45mm/46mm/49mm iWatch Smartwatch Tali Jam Tangan",
              "label_ids": [
                2023641,
                2018619,
                844931064601283,
                1059152,
                1049122,
                822059908662278,
                2048660,
                2048661,
                825465608494624,
                822120592861206,
                825465608499232,
                825465608493600,
                840990690654214,
                825465608497696,
                840955085144628,
                827380695406658,
                1718087960,
                1428713,
                298463379,
                1718093079,
                1119699,
                1718596,
                700765096,
                298488495,
                2213765,
                298933384,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224q-miwlx8wi69kw3a",
              "images": [
                "id-11134207-8224q-miwlx8wi69kw3a",
                "id-11134207-8224t-mj9f4ojpc35vf8",
                "id-11134207-8224s-miwlx8ws79j438",
                "id-11134207-8224w-miwlx8wornk520",
                "id-11134207-8224s-miwlx8wot24lec",
                "id-11134207-8224t-miwlx8wovv9h8d",
                "id-11134207-8224q-miwlx91356o7b6",
                "id-11134207-8224p-miwlx8wougp15c",
                "id-11134207-82250-miwlx8wox9txe4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767160326,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5500000000,
              "price_min": 5500000000,
              "price_max": 5500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "01",
                    "02",
                    "03",
                    "04",
                    "05",
                    "06",
                    "07",
                    "08",
                    "09",
                    "10",
                    "11",
                    "12",
                    "13",
                    "14",
                    "15",
                    "16",
                    "17",
                    "18",
                    "19",
                    "20"
                  ],
                  "images": [
                    "id-11134207-8224y-miwlx8woyoed17",
                    "id-11134207-8224r-miwlx8wp02yted",
                    "id-11134207-8224u-miwlx8wp1hj978",
                    "id-11134207-8224y-miwlx8wp2w3pfa",
                    "id-11134207-8224z-miwlx8wp4ao5d4",
                    "id-11134207-82251-miwlx8wwkl5272",
                    "id-11134207-8224s-miwlx8wwlzpi46",
                    "id-11134207-82252-miwlx8wwq7eud7",
                    "id-11134207-8224x-miwlx8wwt0jqc1",
                    "id-11134207-8224u-miwlx8wwuf466c",
                    "id-11134207-8224r-miwlx8wwvtomb0",
                    "id-11134207-8224w-miwlx8wwx89255",
                    "id-11134207-8224u-miwlx915buh132",
                    "id-11134207-8224q-miwlx915d91h66",
                    "id-11134207-8224y-miwlx915enlxb2",
                    "id-11134207-8224r-miwlx915hgqt76",
                    "id-11134207-8224y-miwlx915ivb923",
                    "id-11134207-82250-miwlx915k9vp6b",
                    "id-11134207-8224y-miwlx915log561",
                    "id-11134207-82250-miwlx915n30l63"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ukuran iWatch",
                  "options": [
                    "38mm/40mm/41mm",
                    "42mm/44mm/45mm/49mm",
                    "42mm (Series 10&11)",
                    "46mm (Series 10&11)"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 5500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 385377483435,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GADGET LEE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51353964361,
            "shopid": 2299609,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-miwlx8wi69kw3a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,844931064601283,1059152,1049122,822059908662278,2048660,2048661,825465608494624,822120592861206,825465608499232,825465608493600,840990690654214,825465608497696,840955085144628,827380695406658,1718087960,1428713,298463379,1718093079,1119699,1718596,700765096,298488495,2213765,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":103,\"model_id\":385377483435,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-miwlx8wi69kw3a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,844931064601283,1059152,1049122,822059908662278,2048660,2048661,825465608494624,822120592861206,825465608499232,825465608493600,840990690654214,825465608497696,840955085144628,827380695406658,1718087960,1428713,298463379,1718093079,1119699,1718596,700765096,298488495,2213765,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":103,\"model_id\":385377483435,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51353964361",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52153975714,
              "shopid": 1592077131,
              "name": "Tempered Glass / 3D Film Screen Protector for Huawei Watch Fit 4/4 Pro /3 Soft Tpu / PMMA Protective Film Accessories Jam Tangan Smartwatch Smart Watch Huawei Fit 4 Film",
              "label_ids": [
                2018618,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                1119699,
                1718596,
                700765096,
                2213652,
                298488495,
                2213765,
                2103651,
                2143613,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-81zuy-miwerlifl2ptfe",
              "images": [
                "sg-11134201-81zuy-miwerlifl2ptfe",
                "sg-11134201-81zwb-miwero89i96u88",
                "sg-11134201-81zw5-miwerpnq0w0151",
                "sg-11134201-81zwr-miwerxs741kw7a",
                "sg-11134201-81zww-miweryeiyvwhdc",
                "sg-11134201-81zvx-miweryzt3i845f",
                "sg-11134201-81ztr-miwes01vnoqtad",
                "sg-11134201-81ztf-miwesf331szp7f",
                "sg-11134201-81zww-miwesfyu3e2o87"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767146582,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1102000000,
              "price_min": 1102000000,
              "price_max": 1102000000,
              "price_min_before_discount": 3080000000,
              "price_max_before_discount": 3080000000,
              "hidden_price_display": null,
              "price_before_discount": 3080000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-64%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "clear",
                    "3D",
                    "Tempered glass"
                  ],
                  "images": [
                    "sg-11134201-81zwr-miwesh1o5y4m70",
                    "sg-11134201-81zty-miwesi2l7lz4e7",
                    "sg-11134201-81zv9-miweskvggnpde4"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "1 PCS(Fit 3)",
                    "2 PCS(Fit 3)",
                    "1 PCS(Fit 4)",
                    "2 PCS(Fit 4)",
                    "1 PCS(Fit 4 Pro)",
                    "2 PCS(Fit 4 Pro)"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359072125956385,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 1102000000,
                "strikethrough_price": 3080000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-64%",
                "model_id": 330376601949,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3080000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 11.020",
                      "hidden_promotion_price": "Rp ?1.020",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52153975714,
            "shopid": 1592077131,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zuy-miwerlifl2ptfe\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059154,1059152,1718093079,822059908662278,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1119699,1718596,700765096,2213652,298488495,2213765,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":286,\"model_id\":330376601949,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zuy-miwerlifl2ptfe\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059154,1059152,1718093079,822059908662278,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1119699,1718596,700765096,2213652,298488495,2213765,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":286,\"model_id\":330376601949,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52153975714",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48953981749,
              "shopid": 1592077131,
              "name": "Hard PC Case for Huawei Watch Fit 4/4 Pro/3 Bumper Tempered Glass Screen Protector Cover Frame Accessories for Jam Tangan Smartwatch Huawei Fit 4/ Fit 4 Pro/ Fit 3 Case",
              "label_ids": [
                2018618,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                1119699,
                1718596,
                700765096,
                2213652,
                298488495,
                2213765,
                1400285055,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-81zw2-miwerl7n474381",
              "images": [
                "sg-11134201-81zw2-miwerl7n474381",
                "sg-11134201-81ztc-miwernsgjeh180",
                "sg-11134201-81zwq-miwerpal4bgkad",
                "sg-11134201-81zvq-miwerq55li4n6b",
                "sg-11134201-81zuj-miwerr0gre2rb3",
                "sg-11134201-81zug-miwerxa7aepvf4",
                "sg-11134201-81zu3-miwerytcfg921f",
                "sg-11134201-81zvz-miwes5g2mrra32",
                "sg-11134201-81zwx-miwes84bz56r06"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767146579,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2788000000,
              "price_min": 2788000000,
              "price_max": 2788000000,
              "price_min_before_discount": 5280000000,
              "price_max_before_discount": 5280000000,
              "hidden_price_display": null,
              "price_before_discount": 5280000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-47%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khw3-ly6kvcycxybq97.16000081721998113.mp4",
                  "thumb_url": "sg-11110106-7rdy0-ly6kvnmxbjvuad",
                  "duration": 34,
                  "version": 2,
                  "vid": "sg-11110106-6khw3-ly6kvcycxybq97",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khw3-ly6kvcycxybq97.16003251726285171.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khw3-ly6kvcycxybq97.16003251726285171.mp4",
                      "width": 720,
                      "height": 1280
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khw3-ly6kvcycxybq97.16005581726285171.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khw3-ly6kvcycxybq97.16005581726285171.mp4",
                      "width": 1080,
                      "height": 1920
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khw3-ly6kvcycxybq97.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Green case(fit 3)",
                    "Blue case(fit 3)",
                    "Metal case(fit 3)",
                    "Rose case(fit 3)",
                    "Black case(fit 3)",
                    "Star case(fit 3)",
                    "3D(fit 3)",
                    "Green case(fit 4)",
                    "Green case(fit 4 Pro",
                    "Metal case(fit 4)",
                    "Metal case(fit 4 Pro",
                    "Black case(fit 4)",
                    "Black case(fit 4 Pro",
                    "Blue case(fit 4)",
                    "Blue case(fit 4 Pro",
                    "Rose case(fit 4)",
                    "Rose case(fit 4 Pro",
                    "Star case(fit 4)",
                    "Star case(fit 4 Pro",
                    "3D(fit 4)",
                    "3D(fit 4 Pro)"
                  ],
                  "images": [
                    "sg-11134201-81zvb-miwes8ihk1z44b",
                    "sg-11134201-81zte-miwes8z7rmyr97",
                    "sg-11134201-81zu8-miwes9ffzpqdf4",
                    "sg-11134201-81ztc-miwes9wxqznm6d",
                    "sg-11134201-81zwj-miwesaerwy6f27",
                    "sg-11134201-81ztr-miwesav0x2pv4a",
                    "sg-11134201-81zv8-miwesbha77k05b",
                    "sg-11134201-81zwg-miwesbw9a39c60",
                    "sg-11134201-81zvd-miwescd1h9mrb9",
                    "sg-11134201-81zw4-miwesctsl5ok7d",
                    "sg-11134201-81ztr-miwesd9y8iyp9e",
                    "sg-11134201-81zv3-miwesdqly7lw0a",
                    "sg-11134201-81zwq-miwese7cgzk221",
                    "sg-11134201-81zte-miweseo6xog192",
                    "sg-11134201-81zui-miwesf4ne3gn18",
                    "sg-11134201-81zw7-miwesflt8zr48d",
                    "sg-11134201-81zwk-miwesg20m2vb3e",
                    "sg-11134201-81zvb-miwesglqfrpf43",
                    "sg-11134201-81zu8-miwesh352o7bc6",
                    "sg-11134201-81zv6-miweshoodce84f",
                    "sg-11134201-81zuq-miwesi6ku6f678"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359072125956385,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2788000000,
                "strikethrough_price": 5280000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-47%",
                "model_id": 340376589193,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5280000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 27.880",
                      "hidden_promotion_price": "Rp ?7.880",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48953981749,
            "shopid": 1592077131,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zw2-miwerl7n474381\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,1119699,1718596,700765096,2213652,298488495,2213765,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":287,\"model_id\":340376589193,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zw2-miwerl7n474381\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,1119699,1718596,700765096,2213652,298488495,2213765,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":287,\"model_id\":340376589193,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48953981749",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51303948065,
              "shopid": 1224688845,
              "name": "Silicone Case Strap for Samsung Galaxy Fit 2 Sport Soft Screen Protector Cover Rubber Band Replacement Bracelet Belt Accessories Wristbands Tali Jam Tangan Smartwatch for Samsung Fit 2",
              "label_ids": [
                2018618,
                2153644,
                298888358,
                298938357,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1718596,
                1119699,
                700765096,
                298488495,
                2213652,
                2213765,
                2143647,
                298468389,
                2098629,
                1718088045,
                2098628,
                298938368
              ],
              "image": "sg-11134201-81zue-mivtt1raxurl2d",
              "images": [
                "sg-11134201-81zue-mivtt1raxurl2d",
                "sg-11134201-81zu4-mivtt3sfv7r688",
                "sg-11134201-81zwn-mivtt6bajri991",
                "sg-11134201-81zwh-mivtt7bkf20za6",
                "sg-11134201-81zus-mivttaej4i6f1f",
                "sg-11134201-81zvd-mivttd62uo7440",
                "sg-11134201-81zw7-mivttfo4tdz607",
                "sg-11134201-81ztd-mivttiq70sn879",
                "sg-11134201-81zto-mivttkc2vojn46"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767111341,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1500000000,
              "price_min": 1500000000,
              "price_max": 1500000000,
              "price_min_before_discount": 2750000000,
              "price_max_before_discount": 2750000000,
              "hidden_price_display": null,
              "price_before_discount": 2750000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-45%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "black",
                    "white",
                    "pink",
                    "khaki",
                    "light gray",
                    "deep gray",
                    "wine red",
                    "green ",
                    "purple"
                  ],
                  "images": [
                    "sg-11134201-81zw5-mivttluja96v19",
                    "sg-11134201-81zvj-mivttmw7bwg569",
                    "sg-11134201-81zvc-mivtto8v2adf16",
                    "sg-11134201-81zw3-mivttx9je0av98",
                    "sg-11134201-81zwl-mivttxthn3t09f",
                    "sg-11134201-81zua-mivttymatvra40",
                    "sg-11134201-81zvy-mivtu072vytd05",
                    "sg-11134201-81zvy-mivtu0q7pwjo21",
                    "sg-11134201-81zu1-mivtu1qszegx70"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "samsung fit 2"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 392412463907329,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 784824206409728,
                "price": 1500000000,
                "strikethrough_price": 2750000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-45%",
                "model_id": 320375448519,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2750000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KMAIXA Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51303948065,
            "shopid": 1224688845,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zue-mivtt1raxurl2d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,298888358,298938357,1428713,1718087960,844931086908638,844931064601283,298463379,1059154,1059152,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718596,1119699,700765096,298488495,2213652,2213765,2143647,298468389,2098629,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":288,\"model_id\":320375448519,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zue-mivtt1raxurl2d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,298888358,298938357,1428713,1718087960,844931086908638,844931064601283,298463379,1059154,1059152,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718596,1119699,700765096,298488495,2213652,2213765,2143647,298468389,2098629,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":288,\"model_id\":320375448519,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51303948065",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52003942879,
              "shopid": 1679187046,
              "name": "Kids Smartwatch 100%Authentic with Ultra-Long Battery Life Waterproof Design Kids Digital Smartwatch",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                298463379,
                1718093079,
                1718596,
                1119699,
                298488495,
                2213765,
                298933384,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81zw0-mivqzlmlm0aq81",
              "images": [
                "sg-11134201-81zw0-mivqzlmlm0aq81",
                "sg-11134201-81zwm-mivqzm1crp4y23",
                "sg-11134201-81ztn-mivqzmagitxg7e",
                "sg-11134201-81zuf-mivqzmiwlf5u1e",
                "sg-11134201-81zvv-mivqzmyyf1msd9",
                "sg-11134201-81zvx-mivqznt0o7ib0b",
                "sg-11134201-81zvc-mivqzou3ynsyd7",
                "sg-11134201-81zuo-mivqzq10joqt34",
                "sg-11134201-81zuq-mivqzqy0ta1145"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767106560,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 16888800000,
              "price_min": 16888800000,
              "price_max": 16888800000,
              "price_min_before_discount": 70000000000,
              "price_max_before_discount": 70000000000,
              "hidden_price_display": null,
              "price_before_discount": 70000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-76%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9b7-mivqzzbadpfn48.16000101767106573.mp4",
                  "thumb_url": "sg-11110106-6v9b7-mivqzzbadpfn48_cover",
                  "duration": 31,
                  "version": 2,
                  "vid": "sg-11110106-6v9b7-mivqzzbadpfn48",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9b7-mivqzzbadpfn48.16000101767106573.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9b7-mivqzzbadpfn48.16000101767106573.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9b7-mivqzzbadpfn48.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "colour",
                  "options": [
                    "purple",
                    "green",
                    "redblue",
                    "black",
                    "pink",
                    "blue"
                  ],
                  "images": [
                    "sg-11134201-81ztu-mivqzjubusqpfa",
                    "sg-11134201-81zvi-mivqzk2oc5qceb",
                    "sg-11134201-81zui-mivqzkb8kykja0",
                    "sg-11134201-81zvt-mivqzkjvhblv49",
                    "sg-11134201-81zv6-mivqzksrnzswf9",
                    "sg-11134201-81zv3-mivqzla7a22u1b"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 16888800000,
                "strikethrough_price": 70000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-76%",
                "model_id": 282300285516,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 70000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 168.888",
                      "hidden_promotion_price": "Rp 1?8.888",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Smartwatch Anak Sekolah",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52003942879,
            "shopid": 1679187046,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zw0-mivqzlmlm0aq81\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,298463379,1718093079,1718596,1119699,298488495,2213765,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":279,\"model_id\":282300285516,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zw0-mivqzlmlm0aq81\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,298463379,1718093079,1718596,1119699,298488495,2213765,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":279,\"model_id\":282300285516,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52003942879",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48053959625,
              "shopid": 1589172126,
              "name": "Bling Diamond Case for Mi Band 9 Anti Gores PC Hollow Screen Protector Bumper Frame Cover Accessories Jam Tangan for Smartwatch Xiaomi Mi Band 9 NFC",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718596,
                1119699,
                298488495,
                2213765,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81zu9-mivh4n56ud527a",
              "images": [
                "sg-11134201-81zu9-mivh4n56ud527a",
                "sg-11134201-81zwb-mivh4nvdyhvk48",
                "sg-11134201-81zw3-mivh4omk17gh4f",
                "sg-11134201-81zwr-mivh4p6357gn15",
                "sg-11134201-81zw2-mivh4psfgzr48d",
                "sg-11134201-81zts-mivh4qqxs1kwe8",
                "sg-11134201-81zvv-mivh4rcm6q6fa9",
                "sg-11134201-81zvr-mivh4rvgk7pg1a",
                "sg-11134201-81zu3-mivh4sb0pkhu21"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767089987,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1150000000,
              "price_min": 1150000000,
              "price_max": 1150000000,
              "price_min_before_discount": 2780000000,
              "price_max_before_discount": 2780000000,
              "hidden_price_display": null,
              "price_before_discount": 2780000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-59%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Star Light",
                    "Black",
                    "Rose Gold",
                    "Brownish",
                    "Transparent",
                    "Film"
                  ],
                  "images": [
                    "sg-11134201-81zum-mivh4sw11kp34a",
                    "sg-11134201-81ztn-mivh4tmyhuro19",
                    "sg-11134201-81zw3-mivh4u8pli4jb8",
                    "sg-11134201-81zww-mivh4uu32u4m8c",
                    "sg-11134201-81zw9-mivh4vorxceb7b",
                    "sg-11134201-81ztv-mivh4w515urn11"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359070448239000,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718141299146752,
                "price": 1150000000,
                "strikethrough_price": 2780000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-59%",
                "model_id": 400374365479,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2780000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Fulsaxad",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48053959625,
            "shopid": 1589172126,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zu9-mivh4n56ud527a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1718596,1119699,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":289,\"model_id\":400374365479,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zu9-mivh4n56ud527a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1718596,1119699,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":289,\"model_id\":400374365479,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48053959625",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 58003945225,
              "shopid": 1589172126,
              "name": "Silicone Strap +TPU Soft Film for Redmi Watch 6 / Redmi Watch 5 / Redmi Watch 4 Screen Protector Soft Sport Rubber Band Belt Bracelet Replacement Wristbands Accessories for Tali Jam Tangan Smartwatch Xiaomi Redmi Watch 6 5 4",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1718596,
                298488495,
                700810080,
                2213765,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81zvw-mivgtl45owljf5",
              "images": [
                "sg-11134201-81zvw-mivgtl45owljf5",
                "sg-11134201-81zvf-mivgtmnh2s5gd1",
                "sg-11134201-81zwv-mivgtnpii879b0",
                "sg-11134201-81zw4-mivgtpi1tjba46",
                "sg-11134201-81zu8-mivgtqhe6807c6",
                "sg-11134201-81zte-mivgtrjoyvidcc",
                "sg-11134201-81zvd-mivgtvbcsg00ac",
                "sg-11134201-81zu1-mivgtw1nj7k3a9",
                "sg-11134201-81zv1-minu4prrfocg96"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767089489,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2330000000,
              "price_min": 2330000000,
              "price_max": 2330000000,
              "price_min_before_discount": 4780000000,
              "price_max_before_discount": 4780000000,
              "hidden_price_display": null,
              "price_before_discount": 4780000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-51%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.16000081754637246.mp4",
                  "thumb_url": "sg-11110106-6kioc-md5rgbyovjdycb_cover",
                  "duration": 37,
                  "version": 2,
                  "vid": "sg-11110106-6kioc-md5rgbyovjdycb",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.16000081754637246.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.16000081754637246.mp4",
                      "width": 1280,
                      "height": 672
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.default.mp4",
                    "width": 1028,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black(strap)",
                    "Gray(strap)",
                    "Army Green(strap)",
                    "Ivory(strap)",
                    "Red(strap)",
                    "Purple(strap)",
                    "White(strap)",
                    "Pink(strap)",
                    "Teal(strap)",
                    "Midnight Blue(strap)",
                    "Orange(strap)",
                    "Blue(strap)",
                    "Lime(strap)"
                  ],
                  "images": [
                    "sg-11134201-81zvk-mivgtx21oyyrf3",
                    "sg-11134201-81ztc-mivgtxsveeip6d",
                    "sg-11134201-81zvi-mivgtycg6w3r4f",
                    "sg-11134201-81ztz-mivgtz63durq2e",
                    "sg-11134201-81zto-mivgu00sw7409d",
                    "sg-11134201-81zu7-mivgu0myl5af5d",
                    "sg-11134201-81zvw-mivgu1r3lgxzeb",
                    "sg-11134201-81zu6-mivgu4dzutj6bc",
                    "sg-11134201-81zvh-mivgu4vy8fsz15",
                    "sg-11134201-81zu5-mivgu60fvvgne2",
                    "sg-11134201-81zu1-mivgu7ljkmx177",
                    "sg-11134201-81ztj-mivgu8403gua1a",
                    "sg-11134201-81ztm-mivgu8q0skqr30"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 6",
                    "Redmi Watch 5",
                    "Redmi Watch 4"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359070448239000,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718141299146752,
                "price": 2330000000,
                "strikethrough_price": 4780000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-51%",
                "model_id": 415374327008,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4780000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Fulsaxad",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 58003945225,
            "shopid": 1589172126,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zvw-mivgtl45owljf5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,1718596,298488495,700810080,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":291,\"model_id\":415374327008,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zvw-mivgtl45owljf5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,1718596,298488495,700810080,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":291,\"model_id\":415374327008,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_58003945225",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57603945208,
              "shopid": 1589172126,
              "name": "Slim Stainless Steel Strap for Apple Watch IWatch Series 11 10 9 8 7 6 5 4 3 Ultra/SE 3 2 49 46 45 41 44 40 42 38mm Metal Band Belt Bracelet Wristbands Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                298488495,
                2213765,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-81zw1-mivgtm3gy9ds49",
              "images": [
                "sg-11134201-81zw1-mivgtm3gy9ds49",
                "sg-11134201-81zum-mivgto03snb770",
                "sg-11134201-81ztn-mivgtq6jiq6f93",
                "sg-11134201-81zuz-mivgtruu46iq22",
                "sg-11134201-81zvp-mivgtt6mshz6cd",
                "sg-11134201-81zw8-mir6fkwn2ux0af",
                "sg-11134201-81zvl-mivgtvcv0xdvd9",
                "sg-11134201-81zvr-mivgtwdrydj85b",
                "sg-11134201-81zvz-mivgtx6nwvt110"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767089480,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 6175000000,
              "price_min": 6175000000,
              "price_max": 6175000000,
              "price_min_before_discount": 17600000000,
              "price_max_before_discount": 17600000000,
              "hidden_price_display": null,
              "price_before_discount": 17600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-65%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v992-miba0amjiq69e3.16000081765867316.mp4",
                  "thumb_url": "sg-11110106-6v992-miba0amjiq69e3_cover",
                  "duration": 17,
                  "version": 2,
                  "vid": "sg-11110106-6v992-miba0amjiq69e3",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v992-miba0amjiq69e3.16000081765867316.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v992-miba0amjiq69e3.16000081765867316.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v992-miba0amjiq69e3.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "siliver(strap)",
                    "black(strap)",
                    "star(strap)",
                    "roes pink (strap)",
                    "rose gold(strap)",
                    "gold(strap)",
                    "siliver rose(strap)",
                    "siliver gold(strap)"
                  ],
                  "images": [
                    "sg-11134201-81zva-mivgtxv62vwl2d",
                    "sg-11134201-81zwj-mivgtyljlds795",
                    "sg-11134201-81zvb-mivgtz5j68le83",
                    "sg-11134201-81zvi-mivgtzozwlj914",
                    "sg-11134201-81zwo-mivgu09g6k9158",
                    "sg-11134201-81zu9-mivgu0ureigxe1",
                    "sg-11134201-81zwa-mivgu1dpn2818d",
                    "sg-11134201-81ztl-mivgu1xtmlmr28"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359070448239000,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 6175000000,
                "strikethrough_price": 17600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-65%",
                "model_id": 310374916859,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 17600000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 61.750",
                      "hidden_promotion_price": "Rp ?1.750",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Fulsaxad",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTgwMjAxZjZiYTdhMmM4ZWY0OTAwOjAyMDAwMDMwYjhiOTFmNmY6MDEwMDAxZjQ3MWY0MDQwOX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57603945208,
            "shopid": 1589172126,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zw1-mivgtm3gy9ds49\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":292,\"model_id\":310374916859,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zw1-mivgtm3gy9ds49\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":292,\"model_id\":310374916859,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57603945208",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45753944695,
              "shopid": 1362436990,
              "name": "GARMIN - Forerunner 165, Black / Slate Gray - Jam Tangan Lari GPS Pengukur Detak Jantung",
              "label_ids": [
                2018619,
                844931064601283,
                1400066568,
                1718093079,
                1718596,
                1119699,
                298488495,
                2213765,
                298933384,
                700005495,
                700005490,
                822059908662278,
                825465608494624,
                825465608499232
              ],
              "image": "id-11134207-8224r-mive777c13if60",
              "images": [
                "id-11134207-8224r-mive777c13if60",
                "id-11134207-82251-mive777cjcw2b0",
                "id-11134207-8224x-mive777cnkle2c",
                "id-11134207-8224s-mive777ckrgic3",
                "id-11134207-8224x-mive777cm60y26"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767085291,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 429900000000,
              "price_min": 429900000000,
              "price_max": 429900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 429900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 310374524375,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 429900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "180SPMย ID",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45753944695,
            "shopid": 1362436990,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mive777c13if60\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1400066568,1718093079,1718596,1119699,298488495,2213765,298933384,700005495,700005490,822059908662278,825465608494624,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":293,\"model_id\":310374524375,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mive777c13if60\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1400066568,1718093079,1718596,1119699,298488495,2213765,298933384,700005495,700005490,822059908662278,825465608494624,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":293,\"model_id\":310374524375,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45753944695",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54853937522,
              "shopid": 1692393692,
              "name": "Kids Smartwatch Q19 360ยฐ Rotation 100%Authentic with Ultra-Long Battery Life Waterproof Design",
              "label_ids": [
                844931086908638,
                844931064601283,
                1049122,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                1718596,
                298488495,
                298463379,
                1718093079,
                1119699,
                2213765,
                1400285055,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224t-mivb3bj7co3mad",
              "images": [
                "id-11134207-8224t-mivb3bj7co3mad",
                "id-11134207-82251-mivb3bj7co3n62",
                "id-11134207-8224w-mivb3bj7e2o3ee",
                "id-11134207-82252-mivb3bj983cxe3",
                "id-11134207-8224x-mivb3bj7b9j72b",
                "id-11134207-82252-mivb3bj9oy69eb",
                "id-11134207-8224p-mivb3bj654hzb3",
                "id-11134207-8224w-mivb3bj9njltef",
                "id-11134207-82252-mivb3bj62bd02f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767082129,
              "sold": 3,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 8200000000,
              "price_min": 8200000000,
              "price_max": 8200000000,
              "price_min_before_discount": 40000000000,
              "price_max_before_discount": 40000000000,
              "hidden_price_display": null,
              "price_before_discount": 40000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-80%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven0-mivb5orwi0oxcf.16000101767079936.mp4",
                  "thumb_url": "id-11110105-6ven0-mivb5orwi0oxcf_cover",
                  "duration": 22,
                  "version": 2,
                  "vid": "id-11110105-6ven0-mivb5orwi0oxcf",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven0-mivb5orwi0oxcf.16000101767079936.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven0-mivb5orwi0oxcf.16000101767079936.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven0-mivb5orwi0oxcf.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black-Flip",
                    "Blue-Flip",
                    "Purple-Flip",
                    "Redblue-Flip",
                    "Green-Flip",
                    "q19-black",
                    "q19-purple",
                    "q19-green",
                    "q19-red",
                    "q19-pink",
                    "q19-blue",
                    "z1-black",
                    "z1-blue",
                    "z1-pink",
                    "s1-black",
                    "s1-blue",
                    "s1-pink",
                    "s12B-black",
                    "s12B-blue",
                    "s12B-pink",
                    "4G-x1-black",
                    "4G-x1-blue",
                    "4G-x1-pink",
                    "M8-black",
                    "M8-pink",
                    "M8-blue",
                    "M8-red",
                    "x10max-black",
                    "x10max-pink",
                    "x10max-blue",
                    "x10max-grey",
                    "T900ultra-black",
                    "T900ultra-white",
                    "Hk10pro-black",
                    "Hk10pro-sliver",
                    "Hk10pro-green",
                    "Hk10ultra-black",
                    "Hk10ultra-sliver",
                    "Hk10ultra-orange",
                    "Warna acak"
                  ],
                  "images": [
                    "id-11134207-8224y-mivb3bjgy7t3d8",
                    "id-11134207-82252-mivb3bjgzmdj1d",
                    "id-11134207-8224y-mivb3bjh10xz02",
                    "id-11134207-8224q-mivb3bjh2fif20",
                    "id-11134207-8224r-mivb3bjh3u2veb",
                    "id-11134207-8224r-mivb3bjh58nbf0",
                    "id-11134207-8224q-mivb3bjh6n7r73",
                    "id-11134207-8224v-mivb3bjh81s7ae",
                    "id-11134207-8224p-mivb3bjh9gcn6d",
                    "id-11134207-8224v-mivb3bjhaux351",
                    "id-11134207-82252-mivbuemn4b2d24",
                    "id-11134207-8224x-mivbuems1am9e7",
                    "id-11134207-82251-mivbuems2p6p15",
                    "id-11134207-82250-mivbuems43r5e3",
                    "id-11134207-8224x-mivbuems5ibla5",
                    "id-11134207-8224s-mivbuems6ww1b1",
                    "id-11134207-8224w-mivbuems8bgh78",
                    "id-11134207-8224z-mivbuems9q0xd7",
                    "id-11134207-82250-mivbuemsb4ld44",
                    "id-11134207-8224r-mivbuemscj5t73",
                    "id-11134207-8224y-mivbuemsdxq968",
                    "id-11134207-8224q-mi2r6wej6ha862",
                    "id-11134207-8224r-mi2r6wej7vuo7e",
                    "id-11134207-8224o-mi2fq21ibthkad",
                    "id-11134207-8224q-mi2fq21hz6dj5c",
                    "id-11134207-82252-mi2fq21k311c94",
                    "id-11134207-82251-mi2fq21n8t1i0b",
                    "id-11134207-8224w-mi2j9wzdtr7n32",
                    "id-11134207-8224y-mi2j9wzdscn7f5",
                    "id-11134207-8224p-mi2j9wzdo4xv06",
                    "id-11134207-8224x-mi2j9wzdqy2r5f",
                    "id-11134207-8224z-mi1f8m49em0x8b",
                    "id-11134207-8224p-mi1f8m49g0ld39",
                    "id-11134207-8224v-mivc3vifn091de",
                    "id-11134207-8224u-mivc3vii94av35",
                    "id-11134207-8224p-mivc3viiaivb6a",
                    "id-11134207-8224z-mivc3viibxfr03",
                    "id-11134207-8224r-mivc3viidc07a2",
                    "id-11134207-82251-mivc3viieqkn40",
                    "id-11134207-8224t-mivb3bj7co3mad"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  0,
                  4
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 804838728843264,
                "price": 8200000000,
                "strikethrough_price": 40000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-80%",
                "model_id": 395373602629,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 40000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "NexTech ",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54853937522,
            "shopid": 1692393692,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mivb3bj7co3mad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049122,1059152,822059908662278,825465608499232,825465608497696,1718596,298488495,298463379,1718093079,1119699,2213765,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":294,\"model_id\":395373602629,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mivb3bj7co3mad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049122,1059152,822059908662278,825465608499232,825465608497696,1718596,298488495,298463379,1718093079,1119699,2213765,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":294,\"model_id\":395373602629,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54853937522",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52853923056,
              "shopid": 1677610047,
              "name": "[ Flash Sale ] Hp M56 8/256GB 99% Amanah Fullset Bergaransi",
              "label_ids": [
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                1400066568,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                1718596,
                298488495,
                2213765
              ],
              "image": "id-11134207-8224r-miva5d8hzabp31",
              "images": [
                "id-11134207-8224r-miva5d8hzabp31",
                "id-11134207-8224o-miva5d8i0ow587"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767079772,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 198800000000,
              "price_min": 198800000000,
              "price_max": 198800000000,
              "price_min_before_discount": 359900000000,
              "price_max_before_discount": 359900000000,
              "hidden_price_display": null,
              "price_before_discount": 359900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-45%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "Black+Smart watch",
                    "Olive+Smart watch"
                  ],
                  "images": [
                    "id-11134207-8224p-mhx8h7sifj0g66",
                    "id-11134207-82251-mhx8h7sie4g02c"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 817284898160640,
                "price": 198500000000,
                "strikethrough_price": 359900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1321410572468268,
                "discount_text": "-45%",
                "model_id": 355373381362,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1321410572468268,
                  "voucher_code": "LITTPHONE",
                  "voucher_discount": 300000000,
                  "time_info": {
                    "start_time": 1766983620,
                    "end_time": 1774068840,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 359900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "littlestore898",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52853923056,
            "shopid": 1677610047,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-miva5d8hzabp31\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931086908638,844931064601283,1400066568,1059152,1059154,1718093079,822059908662278,825465608499232,1119699,1718596,298488495,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":295,\"model_id\":355373381362,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-miva5d8hzabp31\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931086908638,844931064601283,1400066568,1059152,1059154,1718093079,822059908662278,825465608499232,1119699,1718596,298488495,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":295,\"model_id\":355373381362,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52853923056",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57353904468,
              "shopid": 1174585117,
              "name": "Stainless Steel Strap Soft Film for Apple Watch IWatch Ultra/SE 3 2 49mm Series 11 10 9 8 7 6 45 44 42 41 40 38mm Metal Band Screen Protector Belt Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                1119699,
                1718596,
                700765096,
                298488495,
                700810080,
                2213765,
                298933384,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81zw2-miv0po6god1c4b",
              "images": [
                "sg-11134201-81zw2-miv0po6god1c4b",
                "sg-11134201-81zv3-miv0poreqwarc8",
                "sg-11134201-81zu7-miv0pp5ma1hf4d",
                "sg-11134201-81zw5-miv0pplugpoifd",
                "sg-11134201-81zun-miv0ppypui2pd6",
                "sg-11134201-81ztv-miv0pqyj4rnkaa",
                "sg-11134201-81zue-miv0pr9e7rb808",
                "sg-11134201-81ztn-miv0prjw2hadf6",
                "sg-11134201-81zu8-miv0prvhu9dz54"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767062378,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5149000000,
              "price_min": 5149000000,
              "price_max": 5149000000,
              "price_min_before_discount": 16640000000,
              "price_max_before_discount": 16640000000,
              "hidden_price_display": null,
              "price_before_discount": 16640000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-69%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                  "thumb_url": "sg-11110106-7rbk7-lq8wjhcokltw28",
                  "duration": 10,
                  "version": 2,
                  "vid": "sg-11110106-6khwg-lq8wjb83dfai8d",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600264,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600393,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600265,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600266,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600394,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600658,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600267,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600268,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600395,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600396,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600566,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Black(strap+film)",
                    "Star(strap+film)",
                    "Silver(strap+film)",
                    "Gold(strap+film)",
                    "RoseGold(strap+film)",
                    "Blue(strap+film)",
                    "Rose red(strap+film)"
                  ],
                  "images": [
                    "sg-11134201-81zwg-miv0ps5zm683e2",
                    "sg-11134201-81zvi-miv0psfn5iited",
                    "sg-11134201-81zvo-miv0psoucav9df",
                    "sg-11134201-81zu4-miv0psy8o54x74",
                    "sg-11134201-81zv5-miv0pt76nfgk92",
                    "sg-11134201-81zwq-miv0ptgj9ibmb6",
                    "sg-11134201-81zwd-miv0ptqf2lfobe"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "smartwear_size",
                  "options": [
                    "38mm",
                    "40mm",
                    "41mm",
                    "42mm",
                    "44mm",
                    "45mm",
                    "49mm",
                    "Series 11 10 42mm",
                    "Series 11 10 46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 403925660611234,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5149000000,
                "strikethrough_price": 16640000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-69%",
                "model_id": 267298652261,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 16640000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 51.490",
                      "hidden_promotion_price": "Rp ?1.490",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Lbiaodai",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57353904468,
            "shopid": 1174585117,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zw2-miv0po6god1c4b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059154,1059152,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1119699,1718596,700765096,298488495,700810080,2213765,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":296,\"model_id\":267298652261,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zw2-miv0po6god1c4b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059154,1059152,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1119699,1718596,700765096,298488495,700810080,2213765,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":296,\"model_id\":267298652261,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57353904468",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53003908953,
              "shopid": 1174585117,
              "name": "Stainless Steel Strap PC Case for Apple Watch 49mm 46mm Iwatch Series 11 10 1 2 3 4 5 6 SE 3 7 8 9 Ultra/Ultra 3 2 45mm 41mm 38 40 42 44Mm Metal 3 LINKS Band for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                1119699,
                1718596,
                700765096,
                298488495,
                2213765,
                298933384,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81zwi-miv0cd7yzkef44",
              "images": [
                "sg-11134201-81zwi-miv0cd7yzkef44",
                "sg-11134201-81ztl-miv0cduzp81v81",
                "sg-11134201-81zvo-miv0cecb979h92",
                "sg-11134201-81zv8-miv0cepn0y6cb1",
                "sg-11134201-81zux-miv0cf5ny9l3fd",
                "sg-11134201-81zv2-miv0cggekzr9a1",
                "sg-11134201-81zvy-miv0chx95t6r6f",
                "sg-11134201-81zwg-miv0ciqnoxs730",
                "sg-11134201-81zw8-miv0ckjvs7iae4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767061770,
              "sold": 4,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5530000000,
              "price_min": 5530000000,
              "price_max": 5530000000,
              "price_min_before_discount": 17400000000,
              "price_max_before_discount": 17400000000,
              "hidden_price_display": null,
              "price_before_discount": 17400000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-68%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                  "thumb_url": "sg-11110106-7rbk7-lq8wjhcokltw28",
                  "duration": 10,
                  "version": 2,
                  "vid": "sg-11110106-6khwg-lq8wjb83dfai8d",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600264,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600393,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600265,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600266,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600394,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600658,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600267,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600268,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600395,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600396,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600566,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black+Clear",
                    "Starlight+Clear",
                    "Silver+Clear",
                    "Blue",
                    "Rose Red",
                    "Black",
                    "Starlight",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134201-81zvz-miv0clcr8geda9",
                    "sg-11134201-81zws-miv0cmnk3aiu4f",
                    "sg-11134201-81zww-miv0cnsaocn576",
                    "sg-11134201-81zwn-miv0cotbuwp16b",
                    "sg-11134201-81zwv-miv0cpqc5y4j1b",
                    "sg-11134201-81ztt-miv0cr2fgah3aa",
                    "sg-11134201-81zw8-miv0cs63rf2b2f",
                    "sg-11134201-81zvj-miv0ct2uuyh23f"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "38mm",
                    "40mm",
                    "41mm",
                    "42mm",
                    "44mm",
                    "45mm",
                    "49mm",
                    "42mm Series 11 10",
                    "46mm Series 11 10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 403925660611234,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5530000000,
                "strikethrough_price": 17400000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-68%",
                "model_id": 287298417143,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 17400000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 55.300",
                      "hidden_promotion_price": "Rp ?5.300",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Lbiaodai",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53003908953,
            "shopid": 1174585117,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwi-miv0cd7yzkef44\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1119699,1718596,700765096,298488495,2213765,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":297,\"model_id\":287298417143,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwi-miv0cd7yzkef44\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1119699,1718596,700765096,298488495,2213765,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":297,\"model_id\":287298417143,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53003908953",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49353907866,
              "shopid": 1482501769,
              "name": "Sport Soft Case Rubber Band for Samsung Galaxy Fit 2 Silicone Strap Replacement Wristbands Bracelet Belt Screen Protector Cover Accessories Tali Jam Tangan Smartwatch for Samsung Fit 2",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                1718093079,
                1718596,
                1119699,
                700765096,
                298488495,
                2103651,
                2143613,
                2213765,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81ztu-miu0f264m58k67",
              "images": [
                "sg-11134201-81ztu-miu0f264m58k67",
                "sg-11134201-81zun-mitnsn33vym916",
                "sg-11134201-81ztc-miu0f48r2nt440",
                "sg-11134201-81zvo-miu0f5eri8sg9a",
                "sg-11134201-81zvz-miu0f5w3ri8852",
                "sg-11134201-81zvm-miu0f6e70phgc9",
                "sg-11134201-81zuf-miu0f6z6gg77b7",
                "sg-11134201-81zum-miu0f7o3c0eg2e",
                "sg-11134201-81ztw-miu0f88gj1tv9e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1767001354,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1250000000,
              "price_min": 1250000000,
              "price_max": 1250000000,
              "price_min_before_discount": 2500000000,
              "price_max_before_discount": 2500000000,
              "hidden_price_display": null,
              "price_before_discount": 2500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "black",
                    "white",
                    "pink",
                    "khaki",
                    "light gray",
                    "deep gray",
                    "wine red",
                    "green ",
                    "purple"
                  ],
                  "images": [
                    "sg-11134201-81zul-miu0f8sthnus05",
                    "sg-11134201-81zum-miu0f971c1l012",
                    "sg-11134201-81zwe-miu0f9mh6vwmba",
                    "sg-11134201-81zv0-miu0fa2sqcxyb4",
                    "sg-11134201-81zuk-miu0fag16pl492",
                    "sg-11134201-81zwg-miu0fau4chl053",
                    "sg-11134201-81zvl-miu0fb8i5s751d",
                    "sg-11134201-81zw6-miu0fbolz37re9",
                    "sg-11134201-81zwm-miu0fc4dhyx3a1"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "samsung fit 2"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372023830524999,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744048265069568,
                "price": 1250000000,
                "strikethrough_price": 2500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 138453096595,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KILPILLS",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49353907866,
            "shopid": 1482501769,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztu-miu0f264m58k67\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1718093079,1718596,1119699,700765096,298488495,2103651,2143613,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":300,\"model_id\":138453096595,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztu-miu0f264m58k67\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1718093079,1718596,1119699,700765096,298488495,2103651,2143613,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":300,\"model_id\":138453096595,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49353907866",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53103882663,
              "shopid": 1484087853,
              "name": "Anti Gores TPU Case + Silicone Strap for Amazfit BIP 6 Sport Rubber Band Wristband Screen Protector Bumper Cover Accessories for Tali Jam Tangan Smartwatch Amazfit BIP 6",
              "label_ids": [
                2153644,
                298888358,
                2018618,
                298938357,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059154,
                1059152,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1718093079,
                1718596,
                1119699,
                700765096,
                2213652,
                298488495,
                2213765,
                298933384,
                1400285055,
                298468389,
                2098629,
                1718088045,
                2098628,
                298938368
              ],
              "image": "sg-11134201-81zud-mitz7ts0iyo8c0",
              "images": [
                "sg-11134201-81zud-mitz7ts0iyo8c0",
                "sg-11134201-81zva-mitz7u30n5kx2f",
                "sg-11134201-821dx-mgpz0pge7lsca6",
                "sg-11134201-81zv6-mitz7uqu87wj54",
                "sg-11134201-81zu0-mitz7v636fpg45",
                "sg-11134201-81zww-mitz7vol9gcm49",
                "sg-11134201-81zuc-mitz7w0gxz48e5",
                "sg-11134201-81zwb-mitz7wfbm32ffc",
                "sg-11134201-82274-mhpn1rorknpe0e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766999336,
              "sold": 4,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2788000000,
              "price_min": 2788000000,
              "price_max": 2788000000,
              "price_min_before_discount": 6000000000,
              "price_max_before_discount": 6000000000,
              "hidden_price_display": null,
              "price_before_discount": 6000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Light gray 1",
                    "orange 1",
                    "Space Gray 1",
                    "Green 1",
                    "Pink 1",
                    "White 1",
                    "starlight 1",
                    "Red 1",
                    "Midnight blue 1",
                    "Black 1",
                    "Light gray(Strap)",
                    "Red (Strap)",
                    "Space Gray(Strap)",
                    "Starlight(Strap)",
                    "Dark green(Strap)",
                    "Orange (Strap)",
                    "pink(Strap)",
                    "Blue (Strap)",
                    "White (Strap)",
                    "Black (Strap)",
                    "Midnight blue(Case)",
                    "Gold(Case)",
                    "rose gold (Case)",
                    "Pink (Case)",
                    "Gun (Case)",
                    "Black (Case)",
                    "Silver (Case)",
                    "Transparent(Case)"
                  ],
                  "images": [
                    "sg-11134201-81zue-mitz7wyz0ooyfd",
                    "sg-11134201-81zwu-mitz7x852ozs96",
                    "sg-11134201-81zvv-mitz7xhcrsaqd4",
                    "sg-11134201-81zwf-mitz7xqfmm0y79",
                    "sg-11134201-81zwo-mitz7xzgf2tc79",
                    "sg-11134201-81zur-mitz7ye3egw6e0",
                    "sg-11134201-81zwp-mitz7ynyibcyf0",
                    "sg-11134201-81zu0-mitz7yyc9jpj75",
                    "sg-11134201-81zu0-mitz7z94jegy0d",
                    "sg-11134201-81zus-mitz7zjq6f4387",
                    "sg-11134201-81zvr-mitz7zxyj0n549",
                    "sg-11134201-81zuf-mitz807ncr9d91",
                    "sg-11134201-81zue-mitz80fh6n7m9c",
                    "sg-11134201-81zts-mitz80th81s7e5",
                    "sg-11134201-81zts-mitz81358agy2b",
                    "sg-11134201-81zv1-mitz81ea2eiq6c",
                    "sg-11134201-81zvo-mitz81n4c7bca8",
                    "sg-11134201-81zuz-mitz822id2irea",
                    "sg-11134201-81zv8-mitz82ix0veo2d",
                    "sg-11134201-81zvo-mitz82youwhs3c",
                    "sg-11134201-81zu6-mitz836qlxqac0",
                    "sg-11134201-81zv9-mitz83fpyfifa7",
                    "sg-11134201-81zw2-mitz83nh4r9cba",
                    "sg-11134201-81zue-mitz83ww4h6va7",
                    "sg-11134201-81zw4-mitz84728hdu1c",
                    "sg-11134201-81ztr-mitz84giy0aq13",
                    "sg-11134201-81zvj-mitnu3ot10xvd8",
                    "sg-11134201-81zti-mitz84w66adf53"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "for Amazfit Bip 6"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 401078478975345,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2788000000,
                "strikethrough_price": 6000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 315370143999,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 27.880",
                      "hidden_promotion_price": "Rp ?7.880",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EIHAIHIS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53103882663,
            "shopid": 1484087853,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zud-mitz7ts0iyo8c0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,298888358,2018618,298938357,1718087960,1428713,844931064601283,844931086908638,298463379,1059154,1059152,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,1718596,1119699,700765096,2213652,298488495,2213765,298933384,1400285055,298468389,2098629,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":301,\"model_id\":315370143999,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zud-mitz7ts0iyo8c0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,298888358,2018618,298938357,1718087960,1428713,844931064601283,844931086908638,298463379,1059154,1059152,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,1718596,1119699,700765096,2213652,298488495,2213765,298933384,1400285055,298468389,2098629,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":301,\"model_id\":315370143999,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53103882663",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25697843281,
              "shopid": 520275456,
              "name": "SKMEI Smartwatch B58 1.95inci Amoled 60 Hz Touchscreen Jam Tangan Wanita  Dengan Flashlight IP67 Waterproof Bluetooth Call Sleep Monitor Fitness Tracker",
              "label_ids": [
                1668726,
                700700063,
                2018618,
                1002164,
                2153644,
                298888358,
                298938357,
                844931064601283,
                844931086908638,
                1049112,
                1059151,
                822059908662278,
                825465608492064,
                825465608493600,
                298463379,
                825465608497696,
                825465608499232,
                1718093079,
                1718596,
                1428713,
                1718087960,
                2213652,
                298488495,
                1015914,
                700190087,
                2143647,
                700810080,
                2213765,
                298938368,
                1718088045,
                2098629,
                2098628,
                298468389
              ],
              "image": "id-11134207-8224v-mitxw95vgj5v6d",
              "images": [
                "id-11134207-8224v-mitxw95vgj5v6d",
                "sg-11134201-81ztj-mitygiz6atxcbb",
                "sg-11134201-81zvw-mitygjgsuu4o88",
                "sg-11134201-81zwi-mitygjypsiyo46",
                "sg-11134201-81zuw-mitygkduubk7e2",
                "sg-11134201-81zv1-mitygks20tmv31",
                "sg-11134201-81zut-mitygl7q5errf8",
                "sg-11134201-81zwc-mityglon9m9ude",
                "sg-11134201-81zto-mitygm3bcdtu2f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766998400,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 8,
              "view_count": null,
              "catid": 100013,
              "brand": "SKMEI",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 36900000000,
              "price_min": 36900000000,
              "price_max": 36900000000,
              "price_min_before_discount": 100000000000,
              "price_max_before_discount": 100000000000,
              "hidden_price_display": null,
              "price_before_discount": 100000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-63%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Pink",
                    "Gold",
                    "Black"
                  ],
                  "images": [
                    "sg-11134201-81zwp-mitygo9tq0w1e3",
                    "sg-11134201-81zw3-mitygq5yjdae10",
                    "sg-11134201-81ztp-mitygrx8mps49d"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 411568059986170,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp61RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 36900000000,
                "strikethrough_price": 100000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-63%",
                "model_id": 430369491541,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 100000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 369.000",
                      "hidden_promotion_price": "Rp 3?9.000",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp61RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SKMEI Authorized Store Jakarta",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 25697843281,
            "shopid": 520275456,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mitxw95vgj5v6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1668726,700700063,2018618,1002164,2153644,298888358,298938357,844931064601283,844931086908638,1049112,1059151,822059908662278,825465608492064,825465608493600,298463379,825465608497696,825465608499232,1718093079,1718596,1428713,1718087960,2213652,298488495,1015914,700190087,2143647,700810080,2213765,298938368,1718088045,2098629,2098628,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":302,\"model_id\":430369491541,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mitxw95vgj5v6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1668726,700700063,2018618,1002164,2153644,298888358,298938357,844931064601283,844931086908638,1049112,1059151,822059908662278,825465608492064,825465608493600,298463379,825465608497696,825465608499232,1718093079,1718596,1428713,1718087960,2213652,298488495,1015914,700190087,2143647,700810080,2213765,298938368,1718088045,2098629,2098628,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":302,\"model_id\":430369491541,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25697843281",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55903879489,
              "shopid": 1542557661,
              "name": "KIRO WATCH S11 Pro Smartwatch Olahraga dengan Layar HD 2.08\" IP67 Waterproof Bluetooth Android iOS Anti-Carsickness 1000+ Free Watch Faces",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1718596,
                298488495,
                2213765,
                1015914,
                700190087,
                298933384,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224o-mittzyfxytqf7e",
              "images": [
                "id-11134207-8224o-mittzyfxytqf7e",
                "id-11134207-82251-mittzyfvpcsk93",
                "id-11134207-8224o-mittzyfvgxdt74",
                "id-11134207-8224z-mittzyg3b9jcf3",
                "id-11134207-8224s-mittzyfvs5xg08",
                "id-11134207-8224w-mittzyfvwdmp8e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766992090,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 36700000000,
              "price_min": 36700000000,
              "price_max": 36700000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "rose gold",
                    "black",
                    "silver"
                  ],
                  "images": [
                    "id-11134207-8224r-mittzyg2hrlsdb",
                    "id-11134207-8224q-mittzyg2j66875",
                    "id-11134207-8224r-mittzyg2gd1c70"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 36550000000,
                "strikethrough_price": 36700000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1285574876348416,
                "discount_text": null,
                "model_id": 385368826581,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1285574876348416,
                  "voucher_code": "BAIFNOV",
                  "voucher_discount": 150000000,
                  "time_info": {
                    "start_time": 1762713360,
                    "end_time": 1769801760,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 36700000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BaiFu Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55903879489,
            "shopid": 1542557661,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mittzyfxytqf7e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,298488495,2213765,1015914,700190087,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":303,\"model_id\":385368826581,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mittzyfxytqf7e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,298488495,2213765,1015914,700190087,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":303,\"model_id\":385368826581,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55903879489",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55553873764,
              "shopid": 1649050856,
              "name": "(NEW ORI) SAMSUNG Galaxy Watch 8 (44mm) AMOLED Bluetooth Raise to Wake Smartwatch Heart Rate Blood Oxygen Sleep Monitoring Waterproof IP68 GPS NFC Jam Tangan pria wanita Original Pelacak Kebugaran Data olahraga layar sentuh penuh wireless charging Support",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                700005490,
                700005495,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1718596,
                298488495,
                1015914,
                700190087,
                2213765,
                298933384,
                298463379,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224p-mitrsqngc3d4fd",
              "images": [
                "id-11134207-8224p-mitrsqngc3d4fd",
                "id-11134207-8224p-mitrsqna3chva0",
                "id-11134207-8224s-mitrsqna1xxf6c",
                "id-11134207-8224r-mitrsqna65mrfe",
                "id-11134207-8224q-mitrsqna7k77b7",
                "id-11134207-82251-mitrsqna4r2b21",
                "id-11134207-8224q-mitrsqna8yrn5a",
                "id-11134207-82252-mitrsqna0jcz28"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766987053,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 106950000000,
              "price_min": 106950000000,
              "price_max": 106950000000,
              "price_min_before_discount": 299000000000,
              "price_max_before_discount": 299000000000,
              "hidden_price_display": null,
              "price_before_discount": 299000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-64%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvi-mitru30q8dfq6c.16000081766986921.mp4",
                  "thumb_url": "id-11110105-6vdvi-mitru30q8dfq6c_cover",
                  "duration": 30,
                  "version": 2,
                  "vid": "id-11110105-6vdvi-mitru30q8dfq6c",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvi-mitru30q8dfq6c.16000081766986921.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvi-mitru30q8dfq6c.16000081766986921.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvi-mitru30q8dfq6c.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Variations",
                  "options": [
                    "Grey-watch 8",
                    "Green-watch 8",
                    "Black-watch 8",
                    "Blue-watch 8",
                    "Silver-watch 8",
                    "Starlight-watch 8",
                    "Pink-watch 8",
                    "Grey_watch 8",
                    "Silver_watch 8",
                    "Black_watch 8"
                  ],
                  "images": [
                    "id-11134207-82251-mitrsqnaadc3c8",
                    "id-11134207-8224o-mitrsqnabrwjca",
                    "id-11134207-8224z-mitrsqnad6gz36",
                    "id-11134207-8224u-mipbz7duj4lkc7",
                    "id-11134207-8224p-mitr5pfv2xac09",
                    "id-11134207-82252-mitr5pfv045gec",
                    "id-11134207-82251-mitr5pfv1ipwa3",
                    "id-11134207-8224v-mitrwop0stfoac",
                    "id-11134207-8224s-mitrwop0u80431",
                    "id-11134207-82252-mitrwop0vmkk2d"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227947013488640,
                "price": 100950000000,
                "strikethrough_price": 299000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1330148206198784,
                "discount_text": "-64%",
                "model_id": 380368401554,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1330148206198784,
                  "voucher_code": "CUWADFSFS",
                  "voucher_discount": 6000000000,
                  "time_info": {
                    "start_time": 1768025700,
                    "end_time": 1776064500,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 299000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Khusus watch Sunflower",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55553873764,
            "shopid": 1649050856,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mitrsqngc3d4fd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,700005490,700005495,822059908662278,825465608499232,825465608497696,1718093079,1718596,298488495,1015914,700190087,2213765,298933384,298463379,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":304,\"model_id\":380368401554,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mitrsqngc3d4fd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,700005490,700005495,822059908662278,825465608499232,825465608497696,1718093079,1718596,298488495,1015914,700190087,2213765,298933384,298463379,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":304,\"model_id\":380368401554,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55553873764",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50703863680,
              "shopid": 1392795503,
              "name": "Morein Plus GT2 Smartwatch - Layar AMOLED 1.43'' | Badan Logam | Tahan Air 1ATM | 100+ Mode Olahraga",
              "label_ids": [
                2018618,
                2018619,
                2068629,
                298938357,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1119699,
                1718596,
                2213652,
                298488495,
                1015914,
                700190087,
                2213765,
                298933384,
                298468389,
                298938368
              ],
              "image": "sg-11134201-81zvc-mitnw51hslc288",
              "images": [
                "sg-11134201-81zvc-mitnw51hslc288",
                "sg-11134201-81zvy-mitnw6pef6de3c",
                "sg-11134201-81zvy-mitnw721dk3k33",
                "sg-11134201-81zvo-mitnw7ivygp236",
                "sg-11134201-81zvx-mitnw7r4t5ac2e",
                "sg-11134201-81zv0-mitnw8gvrqwy12",
                "sg-11134201-81zup-mitnw8q8p0qs2e",
                "sg-11134201-81zv1-mitnw8ybcd1ge1",
                "sg-11134201-81zwf-mj3juiq15qtj9c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766980286,
              "sold": 4,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 25,
              "view_count": null,
              "catid": 100013,
              "brand": "MOREIN Plus",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 39900000000,
              "price_min": 39900000000,
              "price_max": 39900000000,
              "price_min_before_discount": 120000000000,
              "price_max_before_discount": 120000000000,
              "hidden_price_display": null,
              "price_before_discount": 120000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-67%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9b7-mitna605i8e841.16000081766979264.mp4",
                  "thumb_url": "sg-11110106-6v9b7-mitna605i8e841_cover",
                  "duration": 42,
                  "version": 2,
                  "vid": "sg-11110106-6v9b7-mitna605i8e841",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9b7-mitna605i8e841.16000081766979264.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9b7-mitna605i8e841.16000081766979264.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9b7-mitna605i8e841.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Perak",
                    "Hitam+Silikon  Strap",
                    "Perak+Silikon Strap",
                    "Hitam + Nilon Strap",
                    "Perak + Nilon  Strap",
                    "Hitam + Steel Strap",
                    "Perak + Steel Strap"
                  ],
                  "images": [
                    "sg-11134201-81zvc-mitnw51hslc288",
                    "sg-11134201-8260m-mjghm4osvbid03",
                    "sg-11134201-81zug-mitnw9j3zncx0c",
                    "sg-11134201-8260d-mjghm522djwge2",
                    "sg-11134201-81zwm-mitnwa4k4jk7ba",
                    "sg-11134201-8260l-mjghm5cpqf476b",
                    "sg-11134201-81zv0-mitnwap183cz54",
                    "sg-11134201-8261u-mjghm5mjv5due3"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 412174560538845,
                "add_on_deal_label": "Kombo Hemat",
                "sub_type": 0,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp123RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228239327117313,
                "price": 36900000000,
                "strikethrough_price": 120000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1319899592146956,
                "discount_text": "-67%",
                "model_id": 430368020389,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1319899592146956,
                  "voucher_code": "MOREV1227",
                  "voucher_discount": 3000000000,
                  "time_info": {
                    "start_time": 1766804040,
                    "end_time": 1772250840,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 20000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 120000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp123RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Morein Plus Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50703863680,
            "shopid": 1392795503,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zvc-mitnw51hslc288\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2018619,2068629,298938357,1428713,1718087960,844931064601283,844931086908638,298463379,700005490,1049120,822059908662278,825465608499232,825465608497696,825465608494624,1119699,1718596,2213652,298488495,1015914,700190087,2213765,298933384,298468389,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":23,\"model_id\":430368020389,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zvc-mitnw51hslc288\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2018619,2068629,298938357,1428713,1718087960,844931064601283,844931086908638,298463379,700005490,1049120,822059908662278,825465608499232,825465608497696,825465608494624,1119699,1718596,2213652,298488495,1015914,700190087,2213765,298933384,298468389,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":23,\"model_id\":430368020389,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50703863680",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46803866489,
              "shopid": 1649050856,
              "name": "[Baru ORI COD] SAMSUNG Galaxy Watch 7 44mm Max Multifunctiona Smart Watch Wanita Pria IOS&Android Waterproof GPS NFC Bluetooth Fitness Blood Pressure Jam Tangan HD Screen Health Check Smart Alerts Sport Mode Smartwatch wireless charging",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                700005490,
                700005495,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                298488495,
                700810080,
                1015914,
                700190087,
                2213765,
                298463379,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224t-misfg7syk1s2f0",
              "images": [
                "id-11134207-8224t-misfg7syk1s2f0",
                "id-11134207-8224v-misfg7suxeyp58",
                "id-11134207-8224w-misfg7suytj50b",
                "id-11134207-8224o-misfg7sv083lac",
                "id-11134207-8224z-misfg7sv318h0f",
                "id-11134207-8224r-misfg7suulttf8",
                "id-11134207-82250-misfg7sv4fsx57",
                "id-11134207-8224u-misfg7sv1mo101",
                "id-11134207-8224x-misfg7suw0e9e3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766905814,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 56900000000,
              "price_min": 56900000000,
              "price_max": 56900000000,
              "price_min_before_discount": 178800000000,
              "price_max_before_discount": 178800000000,
              "hidden_price_display": null,
              "price_before_discount": 178800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-68%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv5-misfiaj4ikg73a.16000081766905663.mp4",
                  "thumb_url": "id-11110105-6vdv5-misfiaj4ikg73a_cover",
                  "duration": 40,
                  "version": 2,
                  "vid": "id-11110105-6vdv5-misfiaj4ikg73a",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv5-misfiaj4ikg73a.16000081766905663.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv5-misfiaj4ikg73a.16000081766905663.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv5-misfiaj4ikg73a.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Variation1",
                  "options": [
                    "Black-watch 7",
                    "Blue-watch 7",
                    "Green-watch 7",
                    "Silver-watch 7",
                    "Purple-watch 7",
                    "White-watch 7",
                    "Pink-watch 7",
                    "Starlight-watch 7",
                    "Black_watch 7",
                    "Blue_watch 7"
                  ],
                  "images": [
                    "id-11134207-82251-misfg7sv5uddb1",
                    "id-11134207-8224z-misfg7sv78xtfc",
                    "id-11134207-8224p-misf9cunbojs77",
                    "id-11134207-8224r-miseul15zojkc8",
                    "id-11134207-82250-miseul162hog6c",
                    "id-11134207-82250-miseul163w8w46",
                    "id-11134207-8224w-misf2hjykwld9c",
                    "id-11134207-8224x-miseul15u29sff",
                    "id-11134207-8224t-mip9v9b0j7czea",
                    "id-11134207-82252-miseul166pds95"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227947013488640,
                "price": 50900000000,
                "strikethrough_price": 178800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1330148206198784,
                "discount_text": "-68%",
                "model_id": 330365389353,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1330148206198784,
                  "voucher_code": "CUWADFSFS",
                  "voucher_discount": 6000000000,
                  "time_info": {
                    "start_time": 1768025700,
                    "end_time": 1776064500,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 178800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Khusus watch Sunflower",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46803866489,
            "shopid": 1649050856,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-misfg7syk1s2f0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,700005490,700005495,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,700810080,1015914,700190087,2213765,298463379,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":307,\"model_id\":330365389353,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-misfg7syk1s2f0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,700005490,700005495,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,700810080,1015914,700190087,2213765,298463379,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":307,\"model_id\":330365389353,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46803866489",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53803814314,
              "shopid": 1485723077,
              "name": "Silicone Strap with Clear TPU Case for Apple Watch Ultra/SE 3 2 49mm Series 11 10 9 8 7 6 5 4 3 46 45 44 42 41 40 38mm IWatch Strap Cover Transparent Soft Screen Protector Rubber Band for Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                298888358,
                298938357,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                1119699,
                1718596,
                700765096,
                298488495,
                2213765,
                298933384,
                298468389,
                298938368,
                2098628,
                1718088045,
                2098629
              ],
              "image": "sg-11134201-81ztp-mir6fj6by6f66a",
              "images": [
                "sg-11134201-81ztp-mir6fj6by6f66a",
                "sg-11134201-81zuq-mir6fjy154ow53",
                "sg-11134201-81zti-mir6fkbvhhxk14",
                "sg-11134201-81zv8-mir6fku5klq88d",
                "sg-11134201-81zvm-mir6fl8r2knb92",
                "sg-11134201-81zw0-mir6floqwlqc58",
                "sg-11134201-81zu9-mir6fm54o54y8a",
                "sg-11134201-81zw2-mir6fmh08em82b",
                "sg-11134201-81ztw-mir6fmvrjpqb0b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766829860,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2430000000,
              "price_min": 2430000000,
              "price_max": 2430000000,
              "price_min_before_discount": 4460000000,
              "price_max_before_discount": 4460000000,
              "hidden_price_display": null,
              "price_before_discount": 4460000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-46%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16000081749696144.mp4",
                  "thumb_url": "sg-11110106-6kio8-maw4ytflch9ed3_cover",
                  "duration": 15,
                  "version": 2,
                  "vid": "sg-11110106-6kio8-maw4ytflch9ed3",
                  "formats": [
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004081756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004081756725327.mp4",
                      "width": 640,
                      "height": 360
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006731756726107.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006731756726107.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006711756726107.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006711756726107.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004091756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004091756725327.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16000081749696144.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16000081749696144.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16003251756726107.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16003251756726107.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004101756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004101756725327.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004111756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004111756725327.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600724,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007241766639118.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007241766639118.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600725,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007251766639118.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007251766639118.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black",
                    "White",
                    "pink sand",
                    "Midnight",
                    "light purple",
                    "Yellow",
                    "Lavender",
                    "Starlight",
                    "pistachio",
                    "dark blue",
                    "Cherry"
                  ],
                  "images": [
                    "sg-11134201-81zwo-mir6fnbn632ee4",
                    "sg-11134201-81zv9-mir6fntr35z7e3",
                    "sg-11134201-81zvu-mir6fobfd0qp32",
                    "sg-11134201-81ztv-mir6fot81lomdb",
                    "sg-11134201-81zte-mir6fpbxtc7c42",
                    "sg-11134201-81ztx-mir6fptam9kyf0",
                    "sg-11134201-81zv6-mir6fqa7m7t335",
                    "sg-11134201-81zvm-mir6fqsd6dqa0c",
                    "sg-11134201-81zwx-mir6fraynk746c",
                    "sg-11134201-81zvn-mir6frti2c5d52",
                    "sg-11134201-81zv0-mir6fsbdsiysc6"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "38mm",
                    "40mm",
                    "41mm",
                    "42mm",
                    "44mm",
                    "45mm",
                    "49mm",
                    "Series 11 10 42mm",
                    "Series 11 10 46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 393092813566800,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744055084991488,
                "price": 2430000000,
                "strikethrough_price": 4460000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-46%",
                "model_id": 307293188479,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4460000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53803814314,
            "shopid": 1485723077,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztp-mir6fj6by6f66a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298888358,298938357,1428713,1718087960,844931086908638,844931064601283,298463379,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1119699,1718596,700765096,298488495,2213765,298933384,298468389,298938368,2098628,1718088045,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":309,\"model_id\":307293188479,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztp-mir6fj6by6f66a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298888358,298938357,1428713,1718087960,844931086908638,844931064601283,298463379,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1119699,1718596,700765096,298488495,2213765,298933384,298468389,298938368,2098628,1718088045,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":309,\"model_id\":307293188479,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53803814314",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50703819090,
              "shopid": 1174572300,
              "name": "Anti Gores TPU Cover Case +Silicone Strap for Amazfit BIP 6 Screen Protector Bumper Sport Rubber Band Wristband Accessories for Tali Jam Tangan Smartwatch Amazfit BIP 6",
              "label_ids": [
                2018619,
                298938357,
                2023641,
                298888358,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                1119699,
                1718596,
                700765096,
                298488495,
                2213765,
                2098628,
                298468389,
                298938368,
                1718088045,
                2098629
              ],
              "image": "sg-11134201-81zur-mir6bu8ezsar90",
              "images": [
                "sg-11134201-81zur-mir6bu8ezsar90",
                "sg-11134201-81zvi-mir6bv7ruqdfcd",
                "sg-11134201-81zwg-mir6bw0i8dfq19",
                "sg-11134201-81zw1-mir6bwlyd9mufe",
                "sg-11134201-81zu8-mir6bxcziy2q4a",
                "sg-11134201-81zvp-mir6bxy9cbuw0f",
                "sg-11134201-81zts-mir6byqhumtdf9",
                "sg-11134201-81zvi-mir6bzeclvr810",
                "sg-11134201-81zth-mir6bzvq41s68d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766829706,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5290000000,
              "price_min": 5290000000,
              "price_max": 5290000000,
              "price_min_before_discount": 6000000000,
              "price_max_before_discount": 6000000000,
              "hidden_price_display": null,
              "price_before_discount": 6000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-12%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9a3-mgf6wfwh1826d8.16000081761745756.mp4",
                  "thumb_url": "sg-11110106-6v9a3-mgf6wfwh1826d8_cover",
                  "duration": 44,
                  "version": 2,
                  "vid": "sg-11110106-6v9a3-mgf6wfwh1826d8",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9a3-mgf6wfwh1826d8.16000081761745756.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9a3-mgf6wfwh1826d8.16000081761745756.mp4",
                      "width": 1366,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9a3-mgf6wfwh1826d8.default.mp4",
                    "width": 1024,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Light gray 1",
                    "orange 1",
                    "Space Gray 1",
                    "Green 1",
                    "Pink 1",
                    "White 1",
                    "starlight 1",
                    "Red 1",
                    "Midnight blue 1",
                    "Black 1",
                    "Light gray(Strap)",
                    "Red (Strap)",
                    "Space Gray(Strap)",
                    "Starlight(Strap)",
                    "Dark green(Strap)",
                    "Orange (Strap)",
                    "pink(Strap)",
                    "Blue (Strap)",
                    "White (Strap)",
                    "Black (Strap)",
                    "Midnight blue(Case)",
                    "Gold(Case)",
                    "rose gold (Case)",
                    "Pink (Case)",
                    "Gun (Case)",
                    "Black (Case)",
                    "Silver (Case)",
                    "Transparent(Case)"
                  ],
                  "images": [
                    "sg-11134201-81zu8-mir6c0fg4pvl8c",
                    "sg-11134201-81zwo-mir6c0yuadc26b",
                    "sg-11134201-81zwi-mir6c1hcyghyaa",
                    "sg-11134201-81ztn-mir6c1zgaih200",
                    "sg-11134201-81zwd-mir6c2go97up31",
                    "sg-11134201-81zv7-mir6c30mtibs29",
                    "sg-11134201-81zv7-mir6c3hbjpqg77",
                    "sg-11134201-81zw2-mir6c3xsnytcd1",
                    "sg-11134201-81zwl-mir6c4j21urld1",
                    "sg-11134201-81zv1-mir6c528g0sma6",
                    "sg-11134201-81zwf-mir6c5nsfz7n30",
                    "sg-11134201-81zvk-mir6c6g7b8qv74",
                    "sg-11134201-81zvu-mir6c788r9c8f4",
                    "sg-11134201-81zuv-mir6c7zwe2gzfa",
                    "sg-11134201-81ztn-mir6c8rfjdvn19",
                    "sg-11134201-81zwt-mir6c9k5srnnc5",
                    "sg-11134201-81zvo-mir6ca9m2hoka3",
                    "sg-11134201-81zvc-mir6caxmd8ub0d",
                    "sg-11134201-81zth-mir6cbpojy8439",
                    "sg-11134201-81zwg-mir6ccdzp5og3b",
                    "sg-11134201-81zvc-mir6cd3p261314",
                    "sg-11134201-81zv2-mir6cds6n56v2d",
                    "sg-11134201-81zty-mir6cejyj3t29e",
                    "sg-11134201-81zux-mir6cfamjeva5e",
                    "sg-11134201-81ztn-mir6cfzenncw78",
                    "sg-11134201-81ztp-mir6cgnm914z13",
                    "sg-11134201-81zur-mir6ch848ufc71",
                    "sg-11134201-81zw0-mir6chxan6rn4a"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "for Amazfit Bip 6"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 403879611347075,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5290000000,
                "strikethrough_price": 6000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-12%",
                "model_id": 345363011366,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 52.900",
                      "hidden_promotion_price": "Rp ?2.900",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KMAIXA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50703819090,
            "shopid": 1174572300,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zur-mir6bu8ezsar90\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298938357,2023641,298888358,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1119699,1718596,700765096,298488495,2213765,2098628,298468389,298938368,1718088045,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":310,\"model_id\":345363011366,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zur-mir6bu8ezsar90\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298938357,2023641,298888358,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1119699,1718596,700765096,298488495,2213765,2098628,298468389,298938368,1718088045,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":310,\"model_id\":345363011366,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50703819090",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40527592368,
              "shopid": 1702254078,
              "name": "[100% Asli Garansi 12 Bulan][COD]Samsung Anti Air Jam Tangan Anak Smartwatch GPS SIM Multifungsi - Video Call 2Gand4G, Fitur SOS, untuk Anak Laki-Laki & Perempuan.",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718093079,
                1718596,
                298488495,
                2213765,
                298933384
              ],
              "image": "id-11134207-8224r-mir025f8ri0w9d",
              "images": [
                "id-11134207-8224r-mir025f8ri0w9d",
                "id-11134207-8224q-mir025f7fqpzc7",
                "id-11134207-82252-mir025f4tmo665",
                "id-11134207-8224o-mir025gr1dzc3b",
                "id-11134207-8224r-mir025f4v18m3c",
                "id-11134207-8224w-mir025fhgqo763",
                "id-11134207-8224s-mir025f8swlc04",
                "id-11134207-8224t-mir025f2abrce2",
                "id-11134207-8224w-mir025f70ah31a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766820316,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 16288800000,
              "price_min": 16288800000,
              "price_max": 16288800000,
              "price_min_before_discount": 75600000000,
              "price_max_before_discount": 75600000000,
              "hidden_price_display": null,
              "price_before_discount": 75600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-78%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv4-mir056tax2ble3.16000101766819278.mp4",
                  "thumb_url": "id-11110105-6vdv4-mir056tax2ble3_cover",
                  "duration": 29,
                  "version": 2,
                  "vid": "id-11110105-6vdv4-mir056tax2ble3",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv4-mir056tax2ble3.16000101766819278.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mir056tax2ble3.16000101766819278.mp4",
                      "width": 540,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mir056tax2ble3.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Z1-pink",
                    "Z1-blue",
                    "Z1-black",
                    "S1-blue",
                    "S1-black",
                    "S1-pink",
                    "S12-black",
                    "S12-blue",
                    "S12-pink",
                    "acak"
                  ],
                  "images": [
                    "id-11134207-8224p-mir025gr2sjs2a",
                    "id-11134207-8224r-mir025gr47481f",
                    "id-11134207-8224r-mir025gr5loo7e",
                    "id-11134207-82252-mir025gr7094c2",
                    "id-11134207-8224y-mir025gr8etk24",
                    "id-11134207-8224s-mir025gr9te019",
                    "id-11134207-8224q-mir025grb7ygd1",
                    "id-11134207-8224o-mir025grcmiw8a",
                    "id-11134207-82252-mir025gre13cc6",
                    "id-11134207-8224r-mir025grffns84"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 410075697262733,
                "bundle_deal_label": "Pilih 2, diskon 90%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 818023724810240,
                "price": 15788800000,
                "strikethrough_price": 75600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1322178021048372,
                "discount_text": "-78%",
                "model_id": 325362369832,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1322178021048372,
                  "voucher_code": "8SY6D12",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1767075480,
                    "end_time": 1774937880,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 75600000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Love with children",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40527592368,
            "shopid": 1702254078,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mir025f8ri0w9d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718093079,1718596,298488495,2213765,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":313,\"model_id\":325362369832,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mir025f8ri0w9d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718093079,1718596,298488495,2213765,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":313,\"model_id\":325362369832,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40527592368",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53253817285,
              "shopid": 1224665460,
              "name": "Metal Strap PC Case for Apple Watch IWatch Ultra/Ultra 3 2 SE 3 Series 11 10 9 8 7 1 2 3 4 5 6 49mm 46 45 41 38 40 42 44mm Stainless Steel Band Screen Protector Cover for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                1119699,
                1718596,
                700765096,
                298488495,
                2213765,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81zv2-miqzxvpahm2q98",
              "images": [
                "sg-11134201-81zv2-miqzxvpahm2q98",
                "sg-11134201-81zv3-miqzxwa6j3sw48",
                "sg-11134201-81zul-miqzxwkmmm8782",
                "sg-11134201-81zvn-miqzxwtp4uf476",
                "sg-11134201-81zue-miqzxx5rer5va7",
                "sg-11134201-81zv9-miqzxxkrxlvq87",
                "sg-11134201-81zvj-miqzxy5vl0cge8",
                "sg-11134201-81zvw-miqzxyo2l3pd31",
                "sg-11134201-81zvs-miqzxz1dcbuoc3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766818944,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5530000000,
              "price_min": 5530000000,
              "price_max": 5530000000,
              "price_min_before_discount": 17400000000,
              "price_max_before_discount": 17400000000,
              "hidden_price_display": null,
              "price_before_discount": 17400000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-68%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                  "thumb_url": "sg-11110106-7rbk7-lq8wjhcokltw28",
                  "duration": 10,
                  "version": 2,
                  "vid": "sg-11110106-6khwg-lq8wjb83dfai8d",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600393,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600264,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600266,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600658,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600265,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600394,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600395,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600267,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600268,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600396,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600566,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black+Clear",
                    "Starlight+Clear",
                    "Silver+Clear",
                    "Blue",
                    "Rose Red",
                    "Black",
                    "Starlight",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134201-81zuv-miqzxzhlrcaod5",
                    "sg-11134201-81zus-miqzxzylsxz510",
                    "sg-11134201-81ztu-miqzy0enqs5d0d",
                    "sg-11134201-81ztm-miqzy0ucrrib84",
                    "sg-11134201-81zth-miqzy1es5gqsb1",
                    "sg-11134201-81zuc-miqzy1vhqj2eea",
                    "sg-11134201-81zwa-miqzy2bbvitj68",
                    "sg-11134201-81zwu-miqzy2rdw64n44"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "38mm",
                    "40mm",
                    "41mm",
                    "42mm",
                    "44mm",
                    "45mm",
                    "49mm",
                    "42mm Series 11 10",
                    "46mm Series 11 10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 389383022981984,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5530000000,
                "strikethrough_price": 17400000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-68%",
                "model_id": 370362264732,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 17400000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 55.300",
                      "hidden_promotion_price": "Rp ?5.300",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BELLARUBI  PERHIASAN",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53253817285,
            "shopid": 1224665460,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zv2-miqzxvpahm2q98\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1119699,1718596,700765096,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":314,\"model_id\":370362264732,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zv2-miqzxvpahm2q98\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1119699,1718596,700765096,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":314,\"model_id\":370362264732,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53253817285",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44503827295,
              "shopid": 385104110,
              "name": "LIGE Jam Tangan Pintar Pria Panggilan Bluetooth Wallpaper Kustom IP68 Tahan Air Jam Tangan Pintar Denyut Jantung Tekanan Darah",
              "label_ids": [
                2018619,
                2023641,
                298888358,
                298938357,
                1718087960,
                1428713,
                844931064601283,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                298488495,
                2213765,
                1015914,
                700190087
              ],
              "image": "id-11134207-8224x-miqu2cmjq9zb78",
              "images": [
                "id-11134207-8224x-miqu2cmjq9zb78",
                "id-11134207-8224u-miqu2cmiiqdk3f",
                "id-11134207-8224w-miqu2cmik4y060",
                "id-11134207-8224y-miqu2cmieio8b2",
                "id-11134207-8224t-miqu2cmimy2wbe",
                "id-11134207-82250-miqu2cmipr7s36",
                "id-11134207-82250-miqu2cmiljigb1",
                "id-11134207-8224z-miqu2cmifx8occ",
                "id-11134207-8224p-miqu2cmihbt44f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766809492,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Lige",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 26900000000,
              "price_min": 26900000000,
              "price_max": 26900000000,
              "price_min_before_discount": 72300000000,
              "price_max_before_discount": 72300000000,
              "hidden_price_display": null,
              "price_before_discount": 72300000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-63%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven4-miqy8dsh3myp48.16000081766816081.mp4",
                  "thumb_url": "id-11110105-6ven4-miqy8dsh3myp48_cover",
                  "duration": 42,
                  "version": 2,
                  "vid": "id-11110105-6ven4-miqy8dsh3myp48",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven4-miqy8dsh3myp48.16000081766816081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-miqy8dsh3myp48.16000081766816081.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-miqy8dsh3myp48.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "BW0908",
                  "options": [
                    "Black",
                    "Silver",
                    "Steel black+Strap",
                    "Steel silver+Strap"
                  ],
                  "images": [
                    "id-11134207-8224t-miqu2cmir5s8bf",
                    "id-11134207-8224v-miqu8z6augaq5a",
                    "id-11134207-82250-miqu8z6buz2e00",
                    "id-11134207-8224v-miqu8z6bwdmu0a"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 388339933135145,
                "bundle_deal_label": "Pilih 2, diskon Rp5.000"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp44RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 752635364311040,
                "price": 26900000000,
                "strikethrough_price": 72300000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-63%",
                "model_id": 224632707443,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 72300000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp44RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "LIGE_Watch",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44503827295,
            "shopid": 385104110,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-miqu2cmjq9zb78\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298888358,298938357,1718087960,1428713,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,2213765,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":172,\"model_id\":224632707443,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-miqu2cmjq9zb78\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298888358,298938357,1718087960,1428713,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,2213765,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":172,\"model_id\":224632707443,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44503827295",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26743900384,
              "shopid": 1702254078,
              "name": "[100% ORIGINAL]Smart Band M8 Pria Smartband Smartwatch Wanita Jam Tangan Smartwatch Bluetooth Smartband Fitness Tracker",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1718596,
                1718093079,
                298488495,
                2213765,
                298933384
              ],
              "image": "id-11134207-82250-mipj1129qdjce0",
              "images": [
                "id-11134207-82250-mipj1129qdjce0",
                "id-11134207-8224z-mipw05sx8gsnc1",
                "id-11134207-8224x-mipw05t42a6b7d",
                "id-11134207-8224w-mipw05vcr4lg08",
                "id-11134207-8224y-mipw05t43oqrdb",
                "id-11134207-8224u-mipw05t2i3gof6",
                "id-11134207-8224t-mipw05t2gow8a7",
                "id-11134207-8224q-mipw05w2cl4y89",
                "id-11134207-8224v-mipw05ssii2p6e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766752697,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 9188800000,
              "price_min": 9188800000,
              "price_max": 9188800000,
              "price_min_before_discount": 30240000000,
              "price_max_before_discount": 30240000000,
              "hidden_price_display": null,
              "price_before_discount": 30240000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-70%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvn-mipw49t64dmw36.16000101766751981.mp4",
                  "thumb_url": "id-11110105-6vdvn-mipw49t64dmw36_cover",
                  "duration": 34,
                  "version": 2,
                  "vid": "id-11110105-6vdvn-mipw49t64dmw36",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvn-mipw49t64dmw36.16000101766751981.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvn-mipw49t64dmw36.16000101766751981.mp4",
                      "width": 960,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvn-mipw49t64dmw36.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Midnight Black",
                    "Elegant Pink",
                    "Vitality Red",
                    "Dark Blue",
                    "acak"
                  ],
                  "images": [
                    "id-11134207-8224u-mipw05wfqdxd08",
                    "id-11134207-8224o-mipw05wfrshtaf",
                    "id-11134207-8224v-mipw05wft729c5",
                    "id-11134207-8224w-mipw05wfulmp22",
                    "id-11134207-8224y-mipw05wfw075cd"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 410075697262733,
                "bundle_deal_label": "Pilih 2, diskon 90%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 817980741582848,
                "price": 8688800000,
                "strikethrough_price": 30240000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1322178021048372,
                "discount_text": "-70%",
                "model_id": 420359865912,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1322178021048372,
                  "voucher_code": "8SY6D12",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1767075480,
                    "end_time": 1774937880,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 30240000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Love with children",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26743900384,
            "shopid": 1702254078,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mipj1129qdjce0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1718596,1718093079,298488495,2213765,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":317,\"model_id\":420359865912,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mipj1129qdjce0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1718596,1718093079,298488495,2213765,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":317,\"model_id\":420359865912,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26743900384",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55753785350,
              "shopid": 1592077131,
              "name": "Slim Stainless Steel Strap for Iwatch Apple Watch Ultra 3 2 49mm Series 11 10 9 8 7 6 SE 3 2 44 45 46 42 41 40 38mm Metal Adjustable Bracelet Belt Band Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018618,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                1718093079,
                1119699,
                1718596,
                700765096,
                2213652,
                298488495,
                2213765,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81zva-mipr8lyr8bnq23",
              "images": [
                "sg-11134201-81zva-mipr8lyr8bnq23",
                "sg-11134201-81zug-mipr8mkqhi4h3f",
                "sg-11134201-81zwh-mipr8n1kvfgm47",
                "sg-11134201-81ztw-mipr8nk27rb5b0",
                "sg-11134201-81ztk-mipr8o2uisqv0f",
                "sg-11134201-81ztg-mipr8oi6pk3sae",
                "sg-11134201-81zv9-mipr8oxju494f6",
                "sg-11134201-81zup-mipr8pdsn7yba6",
                "sg-11134201-81ztt-mioi4olq9eknd5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766743777,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 6578000000,
              "price_min": 6578000000,
              "price_max": 6578000000,
              "price_min_before_discount": 14300000000,
              "price_max_before_discount": 14300000000,
              "hidden_price_display": null,
              "price_before_discount": 14300000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v992-miba0amjiq69e3.16000081765867316.mp4",
                  "thumb_url": "sg-11110106-6v992-miba0amjiq69e3_cover",
                  "duration": 17,
                  "version": 2,
                  "vid": "sg-11110106-6v992-miba0amjiq69e3",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v992-miba0amjiq69e3.16000081765867316.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v992-miba0amjiq69e3.16000081765867316.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v992-miba0amjiq69e3.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "siliver(strap)",
                    "black(strap)",
                    "star(strap)",
                    "roes pink (strap)",
                    "rose gold(strap)",
                    "gold(strap)",
                    "siliver rose(strap)",
                    "siliver gold(strap)"
                  ],
                  "images": [
                    "sg-11134201-81zuf-mipr8q60n7yf6e",
                    "sg-11134201-81zts-mipr8qmj3big05",
                    "sg-11134201-81zv8-mio7pgx24r2ce3",
                    "sg-11134201-81zw8-mipr8rh8ofewf5",
                    "sg-11134201-81ztm-mipr8rxn9gqrf0",
                    "sg-11134201-81zw7-mipr8sjvc1z5b4",
                    "sg-11134201-81zvh-mipr8sz0xgxu98",
                    "sg-11134201-81ztq-mipr8teidwjl02"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 408925812048028,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 6578000000,
                "strikethrough_price": 14300000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 292291107489,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 14300000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 65.780",
                      "hidden_promotion_price": "Rp ?5.780",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55753785350,
            "shopid": 1592077131,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zva-mipr8lyr8bnq23\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1718093079,1119699,1718596,700765096,2213652,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":320,\"model_id\":292291107489,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zva-mipr8lyr8bnq23\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1718093079,1119699,1718596,700765096,2213652,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":320,\"model_id\":292291107489,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55753785350",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48853794982,
              "shopid": 1592077131,
              "name": "Silicone Strap + Tempered Glass Film for Redmi Watch 3 Active Silikon Repalcement Rubber Soft Sport Bracelet Band Screen Protector Accessories For Tali Jam Tangan Smartwatch Xiaomi Mi Watch 3 Lite",
              "label_ids": [
                2018618,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059154,
                1059152,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                1718596,
                700765096,
                2213652,
                298488495,
                2213765,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-81zvv-mipr8ly5jbwief",
              "images": [
                "sg-11134201-81zvv-mipr8ly5jbwief",
                "sg-11134201-81zvq-mipr8mlakwld9d",
                "sg-11134201-81zvc-mipr8n0tboxs02",
                "sg-11134201-81zv2-mipr8nggtw5g4b",
                "sg-11134201-81ztl-mipr8nyc7coxea",
                "sg-11134201-81zv1-mipr8ofe04ci40",
                "sg-11134201-81zte-mipr8oy0qc5j2e",
                "sg-11134201-81zwa-mipr8pj0bnk8a4",
                "sg-11134201-81zuk-mipr8pzgp9fl6a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766743779,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2330000000,
              "price_min": 2330000000,
              "price_max": 2330000000,
              "price_min_before_discount": 4660000000,
              "price_max_before_discount": 4660000000,
              "hidden_price_display": null,
              "price_before_discount": 4660000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8ho-mgc0bwmx8zrg68.16000081761553105.mp4",
                  "thumb_url": "sg-11110106-6v8ho-mgc0bwmx8zrg68_cover",
                  "duration": 10,
                  "version": 2,
                  "vid": "sg-11110106-6v8ho-mgc0bwmx8zrg68",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8ho-mgc0bwmx8zrg68.16000081761553105.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8ho-mgc0bwmx8zrg68.16000081761553105.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8ho-mgc0bwmx8zrg68.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "black(strap+film)",
                    "white(strap+film)",
                    "ivory(strap+film)",
                    "green(strap+film)",
                    "purple(strap+film)",
                    "red(strap+film)",
                    "pink(strap+film)",
                    "orange(strap+film)",
                    "teal(strap+film)",
                    "navy(strap+film)",
                    "mint(strap+film)",
                    "blue(strap+film)"
                  ],
                  "images": [
                    "sg-11134201-81zwb-mipr8qe2qwaof9",
                    "sg-11134201-81zw6-mipr8qsys64k0a",
                    "sg-11134201-81zvq-mipr8r37gu8104",
                    "sg-11134201-81zwe-mipr8rc6f8qu0e",
                    "sg-11134201-81zul-mipr8rrd5frbb9",
                    "sg-11134201-81zuk-mipr8sejaccid2",
                    "sg-11134201-81zuw-mipr8stlsqvba5",
                    "sg-11134201-81zuw-mipr8tb3h98i29",
                    "sg-11134201-81zu6-mipr8ts4av4081",
                    "sg-11134201-81zuw-mipr8u7uf6dgda",
                    "sg-11134201-81zw8-mipr8umzxs7cb7",
                    "sg-11134201-81zvm-mipr8v2t260y4b"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi watch 3 active",
                    "Redmi watch 3 Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359072125956385,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718143136251904,
                "price": 2330000000,
                "strikethrough_price": 4660000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 277291104017,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4660000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48853794982,
            "shopid": 1592077131,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zvv-mipr8ly5jbwief\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059154,1059152,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,1718093079,1119699,1718596,700765096,2213652,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":319,\"model_id\":277291104017,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zvv-mipr8ly5jbwief\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059154,1059152,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,1718093079,1119699,1718596,700765096,2213652,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":319,\"model_id\":277291104017,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48853794982",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40527573451,
              "shopid": 1592077131,
              "name": "Anti Gores Silicone Soft Case Strap for Amazfit Bip 6 Sport Rubber Cover Band Breathable Repalcement Belt Bumper Screen Protector Accessories Tali Jam Tangan Smartwatch for Smart Watch Amazfit Bip 6",
              "label_ids": [
                2018618,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                1718596,
                700765096,
                2213652,
                298488495,
                2213765,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81zws-mipr92vrp0xwad",
              "images": [
                "sg-11134201-81zws-mipr92vrp0xwad",
                "sg-11134201-81zu7-mipr93hqtzpcb0",
                "sg-11134201-81zwx-mipr93xt1pfm1d",
                "sg-11134201-81zvf-mipr94dov20y00",
                "sg-11134201-81zuy-mipr94wf7theae",
                "sg-11134201-81ztc-mipr95d3pn2b98",
                "sg-11134201-81zww-mipr95usdjifc0",
                "sg-11134201-81zv4-mipr96b2tn2b60",
                "sg-11134201-81zwe-mipr96s2v75v6e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766743801,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 6612000000,
              "price_min": 6612000000,
              "price_max": 6612000000,
              "price_min_before_discount": 13920000000,
              "price_max_before_discount": 13920000000,
              "hidden_price_display": null,
              "price_before_discount": 13920000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9a3-mgf6wfwh1826d8.16000081761745756.mp4",
                  "thumb_url": "sg-11110106-6v9a3-mgf6wfwh1826d8_cover",
                  "duration": 44,
                  "version": 2,
                  "vid": "sg-11110106-6v9a3-mgf6wfwh1826d8",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9a3-mgf6wfwh1826d8.16000081761745756.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9a3-mgf6wfwh1826d8.16000081761745756.mp4",
                      "width": 1366,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9a3-mgf6wfwh1826d8.default.mp4",
                    "width": 1024,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black(case strap)",
                    "White(case strap)",
                    "Blue(case strap)",
                    "Pink(case strap)",
                    "Orange(case strap)",
                    "Green(case strap)",
                    "Star(case strap)",
                    "Gray(case strap)",
                    "Red(case strap)",
                    "Ivory(case strap)",
                    "2*film"
                  ],
                  "images": [
                    "sg-11134201-81ztd-mipr973acs8z8c",
                    "sg-11134201-81zur-mipr97lj1blu2a",
                    "sg-11134201-81zwv-mipr9819i6tj72",
                    "sg-11134201-81zuf-mipr98j0l81s3b",
                    "sg-11134201-81zuo-mipr98uzs5xf91",
                    "sg-11134201-81zv2-mipr99945hj52d",
                    "sg-11134201-81zvg-mipr99j8cmbkf6",
                    "sg-11134201-81ztl-mipr99uoi4n811",
                    "sg-11134201-81ztv-mipr9a9z4pa84f",
                    "sg-11134201-81zwj-mipr9am1vguaad",
                    "sg-11134201-81zu8-mipr9axuza4h26"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "for Amazfit Bip 6"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359072125956385,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 6612000000,
                "strikethrough_price": 13920000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 307291107644,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 13920000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 66.120",
                      "hidden_promotion_price": "Rp ?6.120",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40527573451,
            "shopid": 1592077131,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zws-mipr92vrp0xwad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931086908638,844931064601283,298463379,1718093079,1059152,1059154,822059908662278,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,1119699,1718596,700765096,2213652,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":318,\"model_id\":307291107644,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zws-mipr92vrp0xwad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931086908638,844931064601283,298463379,1718093079,1059152,1059154,822059908662278,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,1119699,1718596,700765096,2213652,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":318,\"model_id\":307291107644,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40527573451",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48053798355,
              "shopid": 1654308838,
              "name": "[Baru COD ORI] smart watch 7 (44mm) AMOLED Layar sentuh definisi tinggi Pemantauan detak jantung Oksigen darah Mengukur tekanan darah Data olahraga Jam Tangan Pintar Pria Wanita Waterproof IP68 Koneksi Bluetooth call Pengingat pesa",
              "label_ids": [
                844931064601283,
                822059908662278,
                825465608499232,
                1119699,
                1718596,
                825465608497696,
                700005490,
                700005495,
                1718093079,
                298488495,
                700810080,
                2213765,
                298463379,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224y-mipmvgbq89hd96",
              "images": [
                "id-11134207-8224y-mipmvgbq89hd96",
                "id-11134207-8224q-mipmvgbpyfic39",
                "id-11134207-82250-mipmvgbpq03o29",
                "id-11134207-82250-mipmvgbpx0xw92",
                "id-11134207-82252-mipmvgbpzu2s43",
                "id-11134207-8224s-mipmvgbq18n8a5",
                "id-11134207-8224r-mipmvgbpst8ke7",
                "id-11134207-8224q-mipmvgbpu7t0f4",
                "id-11134207-8224w-mipmvgbpolj82b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766737920,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 53900000000,
              "price_min": 53900000000,
              "price_max": 53900000000,
              "price_min_before_discount": 180000000000,
              "price_max_before_discount": 180000000000,
              "hidden_price_display": null,
              "price_before_discount": 180000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-70%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvb-mipn1i848g7726.16000081766736789.mp4",
                  "thumb_url": "id-11110105-6vdvb-mipn1i848g7726_cover",
                  "duration": 47,
                  "version": 2,
                  "vid": "id-11110105-6vdvb-mipn1i848g7726",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvb-mipn1i848g7726.16000081766736789.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvb-mipn1i848g7726.16000081766736789.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvb-mipn1i848g7726.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Variation1",
                  "options": [
                    "Green-watch 7",
                    "Black-watch 7",
                    "Silver-watch 7",
                    "Purple-watch 7",
                    "Starlight-watch 7",
                    "White-watch 7",
                    "Pink-watch 7",
                    "Dark blue-watch 7",
                    "Green_watch 7",
                    "Black_watch 7",
                    "Silver_watch 7",
                    "Starlight_watch 7"
                  ],
                  "images": [
                    "id-11134207-8224s-mipnkbqt924k07",
                    "id-11134207-8224r-mipnkbqvebczff",
                    "id-11134207-8224z-mipnkbqvfpxfdf",
                    "id-11134207-82250-mipnkbqvh4hv7c",
                    "id-11134207-8224o-mipnkbqvij2b5c",
                    "id-11134207-8224y-mipnkbqvjxmr0d",
                    "id-11134207-82251-mipnqrcgmlts7a",
                    "id-11134207-8224z-mipnkbqvmqrn40",
                    "id-11134207-8224u-mipnkbqvo5c37b",
                    "id-11134207-8224s-mipnkbqvpjwjbe",
                    "id-11134207-82252-mipnkbqvqygz50",
                    "id-11134207-8224y-mipnqrcgtmo172"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227947453886464,
                "price": 52700000000,
                "strikethrough_price": 180000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1319360347258896,
                "discount_text": "-70%",
                "model_id": 330358912384,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1319360347258896,
                  "voucher_code": "WG1ALLLLW",
                  "voucher_discount": 1200000000,
                  "time_info": {
                    "start_time": 1766739780,
                    "end_time": 1774778580,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 180000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Galaxy Watch Hub",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48053798355,
            "shopid": 1654308838,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mipmvgbq89hd96\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,822059908662278,825465608499232,1119699,1718596,825465608497696,700005490,700005495,1718093079,298488495,700810080,2213765,298463379,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":321,\"model_id\":330358912384,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mipmvgbq89hd96\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,822059908662278,825465608499232,1119699,1718596,825465608497696,700005490,700005495,1718093079,298488495,700810080,2213765,298463379,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":321,\"model_id\":330358912384,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48053798355",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46253764958,
              "shopid": 1589172126,
              "name": "Elastic Braided Nylon Strap For Apple Watch IWatch Series 11 10 9 8 7 6 5 4 3 Ultra/SE 3 2 49 46 45 41 44 40 42 38mm Soft Sport Band Belt Bracelet Wristbands Accessories for Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1119699,
                1718596,
                298488495,
                2213765,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-81zu3-mipe86rehla8dd",
              "images": [
                "sg-11134201-81zu3-mipe86rehla8dd",
                "sg-11134201-81zvh-mipe87g7i4ub8b",
                "sg-11134201-81zub-mipe87vvpm9t12",
                "sg-11134201-81zv4-mipe88n5zzlz89",
                "sg-11134201-81zuh-mipe895hswebf0",
                "sg-11134201-81zua-mipe6k0hkg75d3",
                "sg-11134201-81ztf-mipe89zavx8kae",
                "sg-11134201-81zws-mipe8af2u96s9f",
                "sg-11134201-81zuv-mipe8b0hapdt39"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766721902,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1520000000,
              "price_min": 1520000000,
              "price_max": 1520000000,
              "price_min_before_discount": 3200000000,
              "price_max_before_discount": 3200000000,
              "hidden_price_display": null,
              "price_before_discount": 3200000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khxb-lqls7nvuwfut92.16000081705484544.mp4",
                  "thumb_url": "sg-11110106-7rbl4-lqls7rqba6fs98",
                  "duration": 33,
                  "version": 2,
                  "vid": "sg-11110106-6khxb-lqls7nvuwfut92",
                  "formats": [
                    {
                      "format": 1600264,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqls7nvuwfut92.16002641717364304.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqls7nvuwfut92.16002641717364304.mp4",
                      "width": 360,
                      "height": 640
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqls7nvuwfut92.16004081717359498.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqls7nvuwfut92.16004081717359498.mp4",
                      "width": 360,
                      "height": 640
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqls7nvuwfut92.16004091717359485.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqls7nvuwfut92.16004091717359485.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqls7nvuwfut92.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black",
                    "Mate Black",
                    "Black Gray",
                    "Cherry",
                    "Milk white",
                    "Dark green",
                    "Charcoal",
                    "Peach",
                    "Beige",
                    "Rainbow",
                    "Dark blue",
                    "Pink Sand"
                  ],
                  "images": [
                    "sg-11134201-81zu5-mipe8bm2qoe805",
                    "sg-11134201-81zud-mipe8c77bsi06c",
                    "sg-11134201-81zue-mipe8ckypekh83",
                    "sg-11134201-81zum-mipe8d2p4iki19",
                    "sg-11134201-81zww-mipe8dl9csg493",
                    "sg-11134201-81zus-mipe8e2g2i2w18",
                    "sg-11134201-81zuw-mipe8el9xrswf6",
                    "sg-11134201-81zw3-mipe8fb423uuec",
                    "sg-11134201-81zuy-mipe8fsljldwc8",
                    "sg-11134201-81zvs-mipe8gb2m1ok50",
                    "sg-11134201-81zuy-mipe8gtp81s23f",
                    "sg-11134201-81zti-mipe8hf2bdokc8"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "M 41/40/38/42mm",
                    "M 49/46/45/44/42mm",
                    "S 41/40/38/42mm",
                    "S 49/46/45/44/42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359070448239000,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 1520000000,
                "strikethrough_price": 3200000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 302289829730,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3200000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 15.200",
                      "hidden_promotion_price": "Rp ?5.200",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Fulsaxad",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46253764958,
            "shopid": 1589172126,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zu3-mipe86rehla8dd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,1119699,1718596,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":322,\"model_id\":302289829730,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zu3-mipe86rehla8dd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,1119699,1718596,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":322,\"model_id\":302289829730,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46253764958",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49203692564,
              "shopid": 1344414745,
              "name": "Soft Case Silicone Strap for Samsung Galaxy Fit 2 Screen Protector Cover Sport Rubber Band Replacement Bracelet Belt Accessories Wristbands Tali Jam Tangan Smartwatch for Samsung Fit 2",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1718093079,
                1119699,
                1718596,
                700765096,
                700810080,
                298488495,
                2213765,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81zuv-mio7oukboh6qb2",
              "images": [
                "sg-11134201-81zuv-mio7oukboh6qb2",
                "sg-11134201-81zv1-mio7oxsbh0jleb",
                "sg-11134201-81ztj-mio7ozl9gh6r5c",
                "sg-11134201-81ztm-mio7p39emgoy62",
                "sg-11134201-81zts-mio7p5ywrh8i35",
                "sg-11134201-81zwk-mio7p9xge0w76e",
                "sg-11134201-81zwi-mio7peb2vqx390",
                "sg-11134201-81zwd-mio7pid67sw41e",
                "sg-11134201-81zvw-mio7plkd7p52b2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766650427,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1250000000,
              "price_min": 1250000000,
              "price_max": 1250000000,
              "price_min_before_discount": 2500000000,
              "price_max_before_discount": 2500000000,
              "hidden_price_display": null,
              "price_before_discount": 2500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "black",
                    "white",
                    "pink",
                    "khaki",
                    "light gray",
                    "deep gray",
                    "wine red",
                    "green ",
                    "purple"
                  ],
                  "images": [
                    "sg-11134201-81zwt-mio7pni3kx6pd5",
                    "sg-11134201-81zwl-mio7ppxq10qs17",
                    "sg-11134201-81zts-mio7ptywjr4761",
                    "sg-11134201-81ztf-mio6t4umeps71d",
                    "sg-11134201-81zuy-mio7pyadwd8j4e",
                    "sg-11134201-81ztt-mio7q1fyzqpvdb",
                    "sg-11134201-81zu1-mio7q3s67v9dcb",
                    "sg-11134201-81zv4-mio7q6eaups13b",
                    "sg-11134201-81zw3-mio7q892w9vne2"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "samsung fit 2"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 374886765965807,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 749772776980480,
                "price": 1250000000,
                "strikethrough_price": 2500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 440350158881,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "LCAPLE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49203692564,
            "shopid": 1344414745,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zuv-mio7oukboh6qb2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,1119699,1718596,700765096,700810080,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":330,\"model_id\":440350158881,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zuv-mio7oukboh6qb2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,1119699,1718596,700765096,700810080,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":330,\"model_id\":440350158881,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49203692564",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47003696665,
              "shopid": 1344444411,
              "name": "Strap for Apple Watch SE Ultra 3 2 Series 11 10 9 8 7 6 5 4 3 IWatch 49mm 46 45 44 42 41 40 38mm Sport Genuine Leather Replacement Band Belt Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                2023641,
                2018619,
                298463379,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1015914,
                700190087,
                1119699,
                1718596,
                700765096,
                298488495,
                2213765,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-81zwq-mio7095dpd6w55",
              "images": [
                "sg-11134201-81zwq-mio7095dpd6w55",
                "sg-11134201-81zup-mio70cepyhvo4e",
                "sg-11134201-81zvd-mio70g14ywaw00",
                "sg-11134201-81zv0-mio70hz25zb6b4",
                "sg-11134201-81zvo-mio70kakt7nqcf",
                "sg-11134201-81zwt-mio70nasub5u7b",
                "sg-11134201-81zwi-mio70pbxue4k7a",
                "sg-11134201-81zvh-mio6svcm50jnab",
                "sg-11134201-81zv1-mio70tf2d3b4a6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766649269,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4940000000,
              "price_min": 4940000000,
              "price_max": 4940000000,
              "price_min_before_discount": 10400000000,
              "price_max_before_discount": 10400000000,
              "hidden_price_display": null,
              "price_before_discount": 10400000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9b7-mi74pvwqcmpt85.16000081765616283.mp4",
                  "thumb_url": "sg-11110106-6v9b7-mi74pvwqcmpt85_cover",
                  "duration": 18,
                  "version": 2,
                  "vid": "sg-11110106-6v9b7-mi74pvwqcmpt85",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9b7-mi74pvwqcmpt85.16000081765616283.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9b7-mi74pvwqcmpt85.16000081765616283.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9b7-mi74pvwqcmpt85.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "black(strap)",
                    "star(strap)",
                    "brown(strap)",
                    "beige(strap)",
                    "beige brown(strap)"
                  ],
                  "images": [
                    "sg-11134201-81zwr-mio70vdhqqyo1b",
                    "sg-11134201-81zw3-mio70z1uioso01",
                    "sg-11134201-81zvk-mio711t2ji0w67",
                    "sg-11134201-81zuc-mio714epdtl296",
                    "sg-11134201-81zwe-mio71f9hbqiw59"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "42/41/40/38mm",
                    "42(S3)/44/45/46/49mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 374890880581698,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 4940000000,
                "strikethrough_price": 10400000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 435349946828,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 10400000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 49.400",
                      "hidden_promotion_price": "Rp ?9.400",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RMUTANE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47003696665,
            "shopid": 1344444411,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwq-mio7095dpd6w55\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,2023641,2018619,298463379,1718093079,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1015914,700190087,1119699,1718596,700765096,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":331,\"model_id\":435349946828,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwq-mio7095dpd6w55\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,2023641,2018619,298463379,1718093079,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1015914,700190087,1119699,1718596,700765096,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":331,\"model_id\":435349946828,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47003696665",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42477514769,
              "shopid": 840738148,
              "name": "Actual COD Mini Wallet Tracker Card Wireless Charging Smart Tag Waterproof Gps Locator Ultra Thin",
              "label_ids": [
                700700063,
                1668726,
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1718596,
                298488495,
                1015914,
                700190087,
                1400285055,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224q-mio5nrpak0zodf",
              "images": [
                "id-11134207-8224q-mio5nrpak0zodf",
                "id-11134207-8224t-mio5nrpao8p0bd",
                "id-11134207-8224y-mio5nrpalfk498",
                "id-11134207-82252-mio5nrpamu4k30",
                "id-11134207-8224z-mio5nrpapn9gd2",
                "id-11134207-8224x-mio5nrpatuys03",
                "id-11134207-82251-mio5nrpav9j8d9",
                "id-11134207-82250-mio5nrpar1tw20",
                "id-11134207-8224y-mio5nrpasgecfd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766648935,
              "sold": 7,
              "historical_sold": 7,
              "liked": false,
              "liked_count": 21,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 18900000000,
              "price_min": 18900000000,
              "price_max": 18900000000,
              "price_min_before_discount": 62900000000,
              "price_max_before_discount": 62900000000,
              "hidden_price_display": null,
              "price_before_discount": 62900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-70%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Model",
                  "options": [
                    "42*30*3mm",
                    "84*52*1.5mm"
                  ],
                  "images": [
                    "id-11134207-8224r-mio5nrpawo3o8a",
                    "id-11134207-8224w-mio5nrpay2o459"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228243848577027,
                "price": 17900000000,
                "strikethrough_price": 62900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1332932166172672,
                "discount_text": "-70%",
                "model_id": 385349886095,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1332932166172672,
                  "voucher_code": "ACTU65165",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1768357140,
                    "end_time": 1768388400,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 4000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 62900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 7,
                "rounded_local_monthly_sold_count": 7,
                "local_monthly_sold_count_text": "7",
                "rounded_display_sold_count": 7,
                "display_sold_count_text": "7"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Actual brand Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42477514769,
            "shopid": 840738148,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mio5nrpak0zodf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,1668726,2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,298488495,1015914,700190087,1400285055,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":332,\"model_id\":385349886095,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mio5nrpak0zodf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,1668726,2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,298488495,1015914,700190087,1400285055,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":332,\"model_id\":385349886095,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42477514769",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41927523849,
              "shopid": 1344444411,
              "name": "Sport Genuine Leather Strap for Xiaomi Mi Band 10 9 8 NFC Replacement Band Wristband Belt Bracelet Accessories Tali Jam Tangan Smartwatch for Miband 10 9 8",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                1718596,
                700765096,
                298488495,
                2213765,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-81zvb-mio6sdkq7210b5",
              "images": [
                "sg-11134201-81zvb-mio6sdkq7210b5",
                "sg-11134201-81zva-mio6shgrf1fmc0",
                "sg-11134201-81ztm-mio6sk1ljj0j43",
                "sg-11134201-81zuk-mio6slsms0lkfa",
                "sg-11134201-81zvv-mio6spp6eygy32",
                "sg-11134201-81zug-mio6srw3fchy8c",
                "sg-11134201-81zti-mio6sv2i4v0g7f",
                "sg-11134201-81zu8-mio6swv783r8f5",
                "sg-11134201-81zu3-mio6sz5f1ngo66"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766648909,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4275000000,
              "price_min": 4275000000,
              "price_max": 4275000000,
              "price_min_before_discount": 9000000000,
              "price_max_before_discount": 9000000000,
              "hidden_price_display": null,
              "price_before_discount": 9000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9ak-mi734ln162o6e9.16000081765613608.mp4",
                  "thumb_url": "sg-11110106-6v9ak-mi734ln162o6e9_cover",
                  "duration": 16,
                  "version": 2,
                  "vid": "sg-11110106-6v9ak-mi734ln162o6e9",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9ak-mi734ln162o6e9.16000081765613608.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9ak-mi734ln162o6e9.16000081765613608.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9ak-mi734ln162o6e9.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "black(strap)",
                    "white(strap)",
                    "brown(strap)",
                    "pink(strap)",
                    "blue(strap)",
                    "coffee(strap)",
                    "star(strap)"
                  ],
                  "images": [
                    "sg-11134201-81zw2-mio6t2gq9wqved",
                    "sg-11134201-81zup-mio6t4nk4h6v3b",
                    "sg-11134201-81zu6-mio6t9r4r9c00e",
                    "sg-11134201-81zwj-mio6tgbeurcze8",
                    "sg-11134201-81ztg-mio6tkkodipzb7",
                    "sg-11134201-81zvu-mio6tol9sa9yb2",
                    "sg-11134201-81zu2-mio6tr2up5vlb2"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Mi band 10 9 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 374890880581698,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 4275000000,
                "strikethrough_price": 9000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 390349885110,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 9000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 42.750",
                      "hidden_promotion_price": "Rp ?2.750",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RMUTANE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41927523849,
            "shopid": 1344444411,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zvb-mio6sdkq7210b5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,1718596,700765096,298488495,2213765,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":333,\"model_id\":390349885110,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zvb-mio6sdkq7210b5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,1718596,700765096,298488495,2213765,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":333,\"model_id\":390349885110,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41927523849",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27943881437,
              "shopid": 1484087853,
              "name": "Soft Film Metal Strap for Apple Watch SE Ultra 3 2 Series 11 10 9 8 7 6 5 4 3 IWatch 49mm 46 45 44 42 41 40 38mm Stainless Steel Band Belt Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2153644,
                298888358,
                2018618,
                298938357,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                1718596,
                700765096,
                2213652,
                298488495,
                2213765,
                2103651,
                2143613,
                2098629,
                1718088045,
                298468389,
                2098628,
                298938368
              ],
              "image": "sg-11134201-81zv1-mio5ghc81pmq9c",
              "images": [
                "sg-11134201-81zv1-mio5ghc81pmq9c",
                "sg-11134201-81zwp-mio5gi2vpgqv5d",
                "sg-11134201-81zu0-mio5gimz3w1wee",
                "sg-11134201-81zui-mio5gjhbmha9d3",
                "sg-11134201-81zuc-mio5gk1sdceb84",
                "sg-11134201-81zvx-mio5gkxyploi76",
                "sg-11134201-81zvi-mio5gm17x62s27",
                "sg-11134201-81zwj-mio5gn1doxe02d",
                "sg-11134201-81zwu-mio5gnp9kwsg86"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766646618,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5662000000,
              "price_min": 5662000000,
              "price_max": 5662000000,
              "price_min_before_discount": 17140000000,
              "price_max_before_discount": 17140000000,
              "hidden_price_display": null,
              "price_before_discount": 17140000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-67%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                  "thumb_url": "sg-11110106-7rbk7-lq8wjhcokltw28",
                  "duration": 10,
                  "version": 2,
                  "vid": "sg-11110106-6khwg-lq8wjb83dfai8d",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003221713890123.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600264,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002641714405135.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004081714404461.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002401714405095.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600393,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003931752254783.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006711722628022.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006731724174701.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600658,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006581752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600394,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003941752254782.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600265,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002651714405128.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600266,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002661714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002411714405101.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16006591723075427.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004091714404454.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16000081704704870.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003241708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003251708274081.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004111714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600268,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002681714405135.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16004101714404461.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600267,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16002671714405135.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600395,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003951752254782.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600396,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16003961752254781.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005581708274081.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600566,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005661752254783.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.16005681714404461.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwg-lq8wjb83dfai8d.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Black(strap+film)",
                    "Star(strap+film)",
                    "Silver(strap+film)",
                    "Gold(strap+film)",
                    "RoseGold(strap+film)",
                    "Blue(strap+film)",
                    "Rose red(strap+film)"
                  ],
                  "images": [
                    "sg-11134201-81zvc-mio5go2ts2dj18",
                    "sg-11134201-81zwv-mio5goc86ps2ba",
                    "sg-11134201-81zup-mio5gon4fsw8a3",
                    "sg-11134201-81zte-mio5gowp4nb43e",
                    "sg-11134201-81zu1-mio5gp6sjoqs6c",
                    "sg-11134201-81zwt-mio5gphbklc6ed",
                    "sg-11134201-81zvg-mio5gprmk3d36a"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "smartwear_size",
                  "options": [
                    "38mm",
                    "40mm",
                    "41mm",
                    "42mm",
                    "44mm",
                    "45mm",
                    "49mm",
                    "Series 11 10 42mm",
                    "Series 11 10 46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 401078478975345,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5662000000,
                "strikethrough_price": 17140000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-67%",
                "model_id": 395349450758,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 17140000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 56.620",
                      "hidden_promotion_price": "Rp ?6.620",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EIHAIHIS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 27943881437,
            "shopid": 1484087853,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zv1-mio5ghc81pmq9c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,298888358,2018618,298938357,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1718093079,1119699,1718596,700765096,2213652,298488495,2213765,2103651,2143613,2098629,1718088045,298468389,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":239,\"model_id\":395349450758,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zv1-mio5ghc81pmq9c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,298888358,2018618,298938357,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1718093079,1119699,1718596,700765096,2213652,298488495,2213765,2103651,2143613,2098629,1718088045,298468389,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":239,\"model_id\":395349450758,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27943881437",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56303646336,
              "shopid": 1118224551,
              "name": "Silicone Leather 22mm 20mm Quick Release Strap for Samsung Watch Galaxy Watch 7 6 5 4 FE Soft Magnetic Buckle Rubber Band Tali Jam Tangan Smartwatch for Garmin /Huawei Watch GT 6 5 /Amazfit Bip 6 /Xiaomi /Redmi Watch 5 Active/Lite/Itel 011 12/Aolon/Advan",
              "label_ids": [
                298888358,
                2018619,
                2023641,
                298938357,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059154,
                1059152,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1718093079,
                1119699,
                1718596,
                700765096,
                298488495,
                2213765,
                298938368,
                2098629,
                1718088045,
                2098628,
                298468389
              ],
              "image": "sg-11134201-81ztq-minydwqpn1fsf3",
              "images": [
                "sg-11134201-81ztq-minydwqpn1fsf3",
                "sg-11134201-81zw3-minydxh2yigxa9",
                "sg-11134201-81zvj-minydynvzpqf53",
                "sg-11134201-81zvb-minye00pdqf5ea",
                "sg-11134201-81zv1-minye12ljlds92",
                "sg-11134201-81ztp-minye27nhhxee2",
                "sg-11134201-81ztl-minye3jg5q8224",
                "sg-11134201-81ztg-minye45r75s625",
                "sg-11134201-81zwe-minye4wi915408"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766634734,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5890000000,
              "price_min": 5890000000,
              "price_max": 5890000000,
              "price_min_before_discount": 12400000000,
              "price_max_before_discount": 12400000000,
              "hidden_price_display": null,
              "price_before_discount": 12400000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black (Strap)",
                    "Apricot (Strap)",
                    "Beige (Strap)",
                    "Dark Brown (Strap)",
                    "Midnight Blue(Strap)",
                    "Brown (Strap)",
                    "Light Brown (Strap)",
                    "Green (Strap)",
                    "Grey (Strap)"
                  ],
                  "images": [
                    "sg-11134201-81zux-minye5j38lxkae",
                    "sg-11134201-81zu7-minye64pp24gae",
                    "sg-11134201-81zvv-minye6psomipe1",
                    "sg-11134201-81zvl-minye79rtxxk70",
                    "sg-11134201-81zwf-minye7vg77y9fd",
                    "sg-11134201-81zu1-minye8grt7uv39",
                    "sg-11134201-81zua-minye92egnbcfd",
                    "sg-11134201-81zux-minye9lcs0772f",
                    "sg-11134201-81zw9-minyea2wydc310"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm",
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 390465501544583,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5890000000,
                "strikethrough_price": 12400000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 262284614058,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 12400000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 58.900",
                      "hidden_promotion_price": "Rp ?8.900",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "APBAND",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56303646336,
            "shopid": 1118224551,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztq-minydwqpn1fsf3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298888358,2018619,2023641,298938357,1428713,1718087960,844931086908638,844931064601283,298463379,1059154,1059152,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1718093079,1119699,1718596,700765096,298488495,2213765,298938368,2098629,1718088045,2098628,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":335,\"model_id\":262284614058,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztq-minydwqpn1fsf3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298888358,2018619,2023641,298938357,1428713,1718087960,844931086908638,844931064601283,298463379,1059154,1059152,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1718093079,1119699,1718596,700765096,298488495,2213765,298938368,2098629,1718088045,2098628,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":335,\"model_id\":262284614058,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56303646336",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49003586047,
              "shopid": 1427799985,
              "name": "COLMI i28Ultra Pengamatan Doa smartwatch 1.43-inch AMOLED screen Always-on display AI voice assistant",
              "label_ids": [
                1012729,
                2153644,
                2018618,
                298888358,
                298938357,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1049120,
                700005490,
                822059908662278,
                2048661,
                2048660,
                1718093079,
                1119699,
                1718596,
                700765096,
                2213652,
                298488495,
                1015914,
                700190087,
                2213765,
                298463379,
                298468389,
                298938368,
                1718088045,
                2098629,
                2098628
              ],
              "image": "id-11134207-82251-mimqi7bh0hz4d5",
              "images": [
                "id-11134207-82251-mimqi7bh0hz4d5",
                "id-11134207-8224y-mimqi7bww74112",
                "id-11134207-8224t-mimqi7crd8n597",
                "id-11134207-8224o-mimqi7bezgg33d",
                "id-11134207-8224w-mimqi7c0g0so56",
                "id-11134207-8224w-mimqi7bdi2vb59",
                "id-11134207-8224o-mimqi7bewnb6c6",
                "id-11134207-8224r-mimqi7bd416u0e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766562336,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "Colmi",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 43900000000,
              "price_min": 43900000000,
              "price_max": 43900000000,
              "price_min_before_discount": 90000000000,
              "price_max_before_discount": 90000000000,
              "hidden_price_display": null,
              "price_before_discount": 90000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-51%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "black",
                    "gold",
                    "grey"
                  ],
                  "images": [
                    "id-11134207-82252-mimqi7cug7igc1",
                    "id-11134207-8224v-mimqi7cuhm2w16",
                    "id-11134207-8224s-mimqi7cuj0ncea"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp71RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 789059815931904,
                "price": 42900000000,
                "strikethrough_price": 90000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1301256866906112,
                "discount_text": "-51%",
                "model_id": 400341573467,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1301256866906112,
                  "voucher_code": "COLMDWEWS",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1764581580,
                    "end_time": 1772361180,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 90000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp71RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "COLMI Watch Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjEyLjE2Ml97YjExYmEzYWY0ODU1ODAzYTFlODk0MTY3N2Y0M2M5MGE6MDIwMDAwY2I3MWZiMTdhNjowMTAwMDE1Yzc4ZjVjODg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYzMjQ3MDE4OA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49003586047,
            "shopid": 1427799985,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mimqi7bh0hz4d5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2153644,2018618,298888358,298938357,1718087960,1428713,844931064601283,844931086908638,1049120,700005490,822059908662278,2048661,2048660,1718093079,1119699,1718596,700765096,2213652,298488495,1015914,700190087,2213765,298463379,298468389,298938368,1718088045,2098629,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":336,\"model_id\":400341573467,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mimqi7bh0hz4d5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2153644,2018618,298888358,298938357,1718087960,1428713,844931064601283,844931086908638,1049120,700005490,822059908662278,2048661,2048660,1718093079,1119699,1718596,700765096,2213652,298488495,1015914,700190087,2213765,298463379,298468389,298938368,1718088045,2098629,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":336,\"model_id\":400341573467,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49003586047",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45903585617,
              "shopid": 1592030327,
              "name": "Hollow PC Case for Xiaomi Mi Band 9 Active / Redmi Band 3 Hard Bumper Screen Protector Protective Matte Cover Frame Anti Gores Jam Tangan Smartwatch for Mi Smart Band 9 Active / Redmi Band 3",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                1119699,
                1718596,
                700765096,
                298488495,
                2103651,
                2143613,
                2213765,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-81ztt-mimqr97btwch96",
              "images": [
                "sg-11134201-81ztt-mimqr97btwch96",
                "sg-11134201-81zv1-mimqr9fjxw5f35",
                "sg-11134201-81zue-mimqr9sl0t1e35",
                "sg-11134201-81ztc-mimqra503g1t06",
                "sg-11134201-81ztx-mimqrahkmozk31",
                "sg-11134201-81zwe-mimqraq32yv463",
                "sg-11134201-81zu5-mimqravyn0g8c4",
                "sg-11134201-81zuq-mimqrb3uje2u46",
                "sg-11134201-81zun-mimqrb9nek1v71"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766561357,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1449000000,
              "price_min": 1449000000,
              "price_max": 1449000000,
              "price_min_before_discount": 2898000000,
              "price_max_before_discount": 2898000000,
              "hidden_price_display": null,
              "price_before_discount": 2898000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Clear(Case)",
                    "Transparent(Case)",
                    "Black(Case)",
                    "Titanium(Case)",
                    "Pink(Case)",
                    "Silver(Case)",
                    "3D film"
                  ],
                  "images": [
                    "sg-11134201-81zvb-mimqrbeitxc271",
                    "sg-11134201-81zuu-mimqrbjwsgsna2",
                    "sg-11134201-81zwk-mimqrbogmnepb1",
                    "sg-11134201-81zu2-mimqrbt4u77l93",
                    "sg-11134201-81zwn-mimqrbxou03s9f",
                    "sg-11134201-81zue-mimqrc2axm2vfd",
                    "sg-11134201-81zw7-mimqrc8lh4w2d3"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "for Miband 9 Active",
                    "for Redmi Band 3"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359074252468611,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718148739858432,
                "price": 1449000000,
                "strikethrough_price": 2898000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 138452266839,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2898000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANSLOOP Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45903585617,
            "shopid": 1592030327,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztt-mimqr97btwch96\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1119699,1718596,700765096,298488495,2103651,2143613,2213765,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":337,\"model_id\":138452266839,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztt-mimqr97btwch96\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1119699,1718596,700765096,298488495,2103651,2143613,2213765,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":337,\"model_id\":138452266839,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45903585617",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44077480610,
              "shopid": 1592030327,
              "name": "Magnetic Buckle Elastic Nylon Strap for Mi Band 10 / 9 / 8 Nilon Braided Scrunchie Soft Sport Belt Adjustable Replacement Wristband Comfortable Band Bracelet Accessories Tali Jam Tangan Smartwatch for XiaoMi Band 10 9 8 NFC",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059154,
                1059152,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                1718596,
                700765096,
                298488495,
                2103651,
                2143613,
                2213765,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81zwv-mimqafv18kqs29",
              "images": [
                "sg-11134201-81zwv-mimqafv18kqs29",
                "sg-11134201-81zuc-mimqagk5g7pe67",
                "sg-11134201-81zvx-mimqah46tn2a87",
                "sg-11134201-81zuf-mimqahlfzw1ub0",
                "sg-11134201-81zwt-mimqai5go16v13",
                "sg-11134201-81zth-mimqaip9ro5ee2",
                "sg-11134201-81zuz-mimqaj726f4853",
                "sg-11134201-81zw7-mimqajnmujgm73",
                "sg-11134201-81zwf-mimqak3lo1s33a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766560594,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3040000000,
              "price_min": 3040000000,
              "price_max": 3040000000,
              "price_min_before_discount": 6400000000,
              "price_max_before_discount": 6400000000,
              "hidden_price_display": null,
              "price_before_discount": 6400000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kint-mantkrocn1fn5c.16000081749192713.mp4",
                  "thumb_url": "sg-11110106-6kint-mantkrocn1fn5c_cover",
                  "duration": 51,
                  "version": 2,
                  "vid": "sg-11110106-6kint-mantkrocn1fn5c",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kint-mantkrocn1fn5c.16006711753807571.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kint-mantkrocn1fn5c.16006711753807571.mp4",
                      "width": 1028,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kint-mantkrocn1fn5c.16000081749192713.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kint-mantkrocn1fn5c.16000081749192713.mp4",
                      "width": 1280,
                      "height": 672
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kint-mantkrocn1fn5c.16003251753807571.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kint-mantkrocn1fn5c.16003251753807571.mp4",
                      "width": 1280,
                      "height": 672
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kint-mantkrocn1fn5c.default.mp4",
                    "width": 1028,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Green(Strap)",
                    "Pink Star(Strap)",
                    "Blue(Strap)",
                    "Smoky(Strap)",
                    "Mint green(Strap)",
                    "Starlight(Strap)",
                    "Yanqing(Strap)",
                    "Peach(Strap)",
                    "Black(Strap)",
                    "Star black(Strap)",
                    "Black red(Strap)",
                    "Chocalote(Strap)",
                    "White Rainbow(Strap)",
                    "Powder(Strap)",
                    "Denim Blue(Strap)",
                    "Yan Zi(Strap)",
                    "Rainbow(Strap)",
                    "Starry Points(Strap)",
                    "Red(Strap)",
                    "Star Powder(Strap)",
                    "Violet(Strap)",
                    "Cear(Case)"
                  ],
                  "images": [
                    "sg-11134201-81zvl-mimqako7db0kaa",
                    "sg-11134201-81zwf-mimqalenf5dw8d",
                    "sg-11134201-81zvi-mimqam22sykh14",
                    "sg-11134201-81zve-mimqamrjqio7fe",
                    "sg-11134201-81ztp-mimqanfyxt6r82",
                    "sg-11134201-81zvm-mimqao2t0pvr50",
                    "sg-11134201-81zwi-mimqaow2d0xua9",
                    "sg-11134201-81zv6-mimqapox6r5y53",
                    "sg-11134201-81zw9-mimqaqbr89ac4f",
                    "sg-11134201-81zuh-mimqar0sh6o471",
                    "sg-11134201-81ztx-mimqarruq8ljca",
                    "sg-11134201-81zwa-mimqashdvwn437",
                    "sg-11134201-81ztj-mimqat9j8flw06",
                    "sg-11134201-81ztg-mimqatzk9fr789",
                    "sg-11134201-81zuc-mimqauqu5szn25",
                    "sg-11134201-81ztn-mimqavg9hrsxf2",
                    "sg-11134201-81zvs-mimqaw7l14w398",
                    "sg-11134201-81zw1-mimqawzq3vgkbf",
                    "sg-11134201-81zuo-mimqaxx3zqiu49",
                    "sg-11134201-81zup-mimqaynymu4m20",
                    "sg-11134201-81zui-mimqazc5ydxjfe",
                    "sg-11134201-81zva-mimqazwk1s03b8"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "for Mi Band 10",
                    "for Mi Band 9",
                    "for Mi Band 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359074252468611,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 3040000000,
                "strikethrough_price": 6400000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 395341385934,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6400000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 30.400",
                      "hidden_promotion_price": "Rp ?0.400",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANSLOOP Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44077480610,
            "shopid": 1592030327,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwv-mimqafv18kqs29\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059154,1059152,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1718093079,1119699,1718596,700765096,298488495,2103651,2143613,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":338,\"model_id\":395341385934,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwv-mimqafv18kqs29\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059154,1059152,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1718093079,1119699,1718596,700765096,298488495,2103651,2143613,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":338,\"model_id\":395341385934,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44077480610",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45003578911,
              "shopid": 1612442872,
              "name": "Soft Sport Rubber Band Strap for Huawei Watch Fit 4/4 Pro/3 Strap Silicone Polos Warna Silikon Tali Pengganti Wristband Tali Jam Tangan Smartwatch for Huawei Fit 4/4 Pro/3",
              "label_ids": [
                2018618,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608497696,
                2048660,
                2048661,
                1718596,
                700765096,
                2213652,
                298488495,
                840990690654214,
                840955085144628,
                825465608499232,
                2213765,
                298933384,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81zwb-mimpdvh20xkz3c",
              "images": [
                "sg-11134201-81zwb-mimpdvh20xkz3c",
                "sg-11134201-81zuk-mimpdx5e80sma1",
                "sg-11134201-81zvt-mimpdye3jdvoa2",
                "sg-11134201-81zvf-mimpdzswssn832",
                "sg-11134201-81zuv-mimpe10xdn9idf",
                "sg-11134201-81zv4-mimpe24j9on83d",
                "sg-11134201-81zuc-mimpe2y18f7sc8",
                "sg-11134201-81zvn-mimpe40jiolc9e",
                "sg-11134201-81zw7-mimpe5dvk6boe6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766559074,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2508000000,
              "price_min": 2508000000,
              "price_max": 2508000000,
              "price_min_before_discount": 5900000000,
              "price_max_before_discount": 5900000000,
              "hidden_price_display": null,
              "price_before_discount": 5900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-57%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8gz-mev49je4pe688b.16000041758351390.mp4",
                  "thumb_url": "sg-11110106-6v8gz-mev49je4pe688b_cover",
                  "duration": 47,
                  "version": 2,
                  "vid": "sg-11110106-6v8gz-mev49je4pe688b",
                  "formats": [
                    {
                      "format": 1600004,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8gz-mev49je4pe688b.16000041758351390.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8gz-mev49je4pe688b.16000041758351390.mp4",
                      "width": 682,
                      "height": 360
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8gz-mev49je4pe688b.default.mp4",
                    "width": 852,
                    "height": 450
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "light green",
                    "orange",
                    "red",
                    "blue",
                    "midnight",
                    "green",
                    "star",
                    "yellow",
                    "pink",
                    "purple",
                    "light blue",
                    "white",
                    "black",
                    "Light Purple",
                    "Topa blue",
                    "new green"
                  ],
                  "images": [
                    "sg-11134201-81zux-mimpe6i65d6w12",
                    "sg-11134201-81zvg-mimpe7qixvk29a",
                    "sg-11134201-81zvf-mimpe8zqv9jad9",
                    "sg-11134201-81ztl-mimpea0jxngkaa",
                    "sg-11134201-81zu2-mimpealfco3s11",
                    "sg-11134201-81zw3-mimpeb58yiv6d5",
                    "sg-11134201-81ztk-mimpebqpvif49f",
                    "sg-11134201-81zu6-mimpecgwhds25f",
                    "sg-11134201-81zv6-mimped1wxloj8f",
                    "sg-11134201-81zud-mimpedjxgirmf7",
                    "sg-11134201-81ztl-mimpee0uxeyp31",
                    "sg-11134201-81zu3-mimpeefrib5vbe",
                    "sg-11134201-81zur-mimpeevcbl6odd",
                    "sg-11134201-81zu4-mimpeff1bqir8c",
                    "sg-11134201-81zwb-mimpefvhbapt31",
                    "sg-11134201-81zug-mimpeg6qvbwhdb"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 410065853236688,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2508000000,
                "strikethrough_price": 5900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-57%",
                "model_id": 385341192729,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5900000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 25.080",
                      "hidden_promotion_price": "Rp ?5.080",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Leixiuer Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45003578911,
            "shopid": 1612442872,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwb-mimpdvh20xkz3c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608493600,825465608494624,825465608497696,2048660,2048661,1718596,700765096,2213652,298488495,840990690654214,840955085144628,825465608499232,2213765,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":299,\"model_id\":385341192729,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwb-mimpdvh20xkz3c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608493600,825465608494624,825465608497696,2048660,2048661,1718596,700765096,2213652,298488495,840990690654214,840955085144628,825465608499232,2213765,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":299,\"model_id\":385341192729,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45003578911",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45603574103,
              "shopid": 1612442872,
              "name": "Soft Protective Case Shell Nylon Strap for Mi Band 10 Anti Gores TPU Screen Protector Cover Wilderness and Mountain Patterns Band Belt Bracelet Band Accessories Tali Jam Tangan for Smartwatch Xiaomi Miband 10 NFC",
              "label_ids": [
                2018618,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608497696,
                2048660,
                2048661,
                825465608493600,
                1119699,
                1718596,
                700765096,
                2213652,
                298488495,
                840955085144628,
                825465608499232,
                840990690654214,
                2213765,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-81zub-mimpbr0c9wcj1d",
              "images": [
                "sg-11134201-81zub-mimpbr0c9wcj1d",
                "sg-11134201-81zw4-mimpbrgrpr0n6b",
                "sg-11134201-81zu6-mimpbrqtge13b8",
                "sg-11134201-81zwq-mimpbrzj8qo042",
                "sg-11134201-81zul-mimpbs90jaiu5f",
                "sg-11134201-81zw5-mimpbsnuqjnsba",
                "sg-11134201-81zu2-mimpbsy5eupvfe",
                "sg-11134201-81zu5-mimpbt78i5fr81",
                "sg-11134201-81ztm-mimpbtgellvkef"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766558957,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5358000000,
              "price_min": 5358000000,
              "price_max": 5358000000,
              "price_min_before_discount": 11264000000,
              "price_max_before_discount": 11264000000,
              "hidden_price_display": null,
              "price_before_discount": 11264000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-52%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "plum(Strap)",
                    "Starlight(Strap)",
                    "Milk(Strap)",
                    "Purple(Strap)",
                    "Field green(Strap)",
                    "orange(Strap)",
                    "Blue(Strap)",
                    "Water red(Strap)",
                    "Advanced Gray(Strap)",
                    "black(Strap)",
                    "Tender green(Strap)",
                    "Island Blue(Strap)",
                    "Klein Blue(Strap)",
                    "Spruce Green(Strap)"
                  ],
                  "images": [
                    "sg-11134201-81zue-mimpbtq8nj0m42",
                    "sg-11134201-81ztn-mimpbu8530201a",
                    "sg-11134201-81zvt-mimpbuilue4g58",
                    "sg-11134201-81zu6-mimpbuubo9a9f0",
                    "sg-11134201-81zuz-mimpbv4egtmsf9",
                    "sg-11134201-81zvd-mimpbvgufrpi57",
                    "sg-11134201-81ztl-mimpbvqouadeb6",
                    "sg-11134201-81ztj-mimpbw0pam834d",
                    "sg-11134201-81zui-mimpbwanln9jed",
                    "sg-11134201-81zuw-mimpbwjljj0i55",
                    "sg-11134201-81zv5-mimpbwvkhzwg71",
                    "sg-11134201-81zwe-mimpbx57lvy931",
                    "sg-11134201-81zwu-mimpbxgq7uh338",
                    "sg-11134201-81zvp-mimpbxqrlvyf24"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Variation",
                  "options": [
                    "for Mi Band 10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 410065853236688,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5358000000,
                "strikethrough_price": 11264000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-52%",
                "model_id": 310341772581,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 11264000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 53.580",
                      "hidden_promotion_price": "Rp ?3.580",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Leixiuer Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45603574103,
            "shopid": 1612442872,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zub-mimpbr0c9wcj1d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1059152,1059154,822059908662278,825465608494624,825465608497696,2048660,2048661,825465608493600,1119699,1718596,700765096,2213652,298488495,840955085144628,825465608499232,840990690654214,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":339,\"model_id\":310341772581,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zub-mimpbr0c9wcj1d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1059152,1059154,822059908662278,825465608494624,825465608497696,2048660,2048661,825465608493600,1119699,1718596,700765096,2213652,298488495,840955085144628,825465608499232,840990690654214,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":339,\"model_id\":310341772581,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45603574103",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47353536729,
              "shopid": 1589172126,
              "name": "Sport Silicone Case Strap for Redmi Watch 3 Active Soft Rubber Band Belt Bracelet Wristbands Screen Protector Bumper Cover Accessories for Tali Jam Tangan Smartwatch Redmi Watch 3 Lite",
              "label_ids": [
                1059152,
                1059154,
                2018619,
                2023641,
                1428713,
                1718087960,
                298463379,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                844931086908638,
                844931064601283,
                1718093079,
                1119699,
                1718596,
                700810080,
                298488495,
                2213765,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-81zu3-milg3dn4cy6823",
              "images": [
                "sg-11134201-81zu3-milg3dn4cy6823",
                "sg-11134201-81zuc-milg3egcx4av3a",
                "sg-11134201-81zwn-milg3fc311c7f7",
                "sg-11134201-81zwq-milg3fxmhbsy6b",
                "sg-11134201-81zw6-milg3gzxe5fl13",
                "sg-11134201-81zud-milg3i9nkx6ve4",
                "sg-11134201-81zub-milg3j91klqefb",
                "sg-11134201-81zvp-milg3k42o6blc5",
                "sg-11134201-81zuh-milg3ksgnvnl19"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766482906,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2567000000,
              "price_min": 2567000000,
              "price_max": 2567000000,
              "price_min_before_discount": 5990000000,
              "price_max_before_discount": 5990000000,
              "hidden_price_display": null,
              "price_before_discount": 5990000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-57%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "black",
                    "white",
                    "green",
                    "orange",
                    "red",
                    "pink",
                    "navy blue",
                    "ivory"
                  ],
                  "images": [
                    "sg-11134201-8226p-mhg3057zxzb481",
                    "sg-11134201-81zv7-milg3m98qsqr76",
                    "sg-11134201-81zvb-milg3myz2yv5c2",
                    "sg-11134201-81zvy-milg3ns8f9xj50",
                    "sg-11134201-8225a-mhg307hg6h3c8b",
                    "sg-11134201-81zvs-milg3pcznv2g95",
                    "sg-11134201-81ztq-milg3pye4cuc02",
                    "sg-11134201-81zvj-milg3qni7toi6d"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 3 lite",
                    "Redmi Watch 3 active"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359070448239000,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2567000000,
                "strikethrough_price": 5990000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-57%",
                "model_id": 365337057917,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5990000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 25.670",
                      "hidden_promotion_price": "Rp ?5.670",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Fulsaxad",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47353536729,
            "shopid": 1589172126,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zu3-milg3dn4cy6823\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1059154,2018619,2023641,1428713,1718087960,298463379,822059908662278,825465608494624,825465608499232,825465608497696,844931086908638,844931064601283,1718093079,1119699,1718596,700810080,298488495,2213765,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":341,\"model_id\":365337057917,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zu3-milg3dn4cy6823\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1059154,2018619,2023641,1428713,1718087960,298463379,822059908662278,825465608494624,825465608499232,825465608497696,844931086908638,844931064601283,1718093079,1119699,1718596,700810080,298488495,2213765,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":341,\"model_id\":365337057917,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47353536729",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44427439869,
              "shopid": 1702268385,
              "name": "Samsung S10 PRO MAX Smartwatch: Mitra Cerdas untuk Gaya Hidup Aktif dan Sehat",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1718596,
                700810080,
                298488495,
                1400285055,
                2213765,
                1015914,
                700190087
              ],
              "image": "id-11134207-8224p-milbodmmd1qe14",
              "images": [
                "id-11134207-8224p-milbodmmd1qe14",
                "id-11134207-82252-milbodmmegau46",
                "id-11134207-8224q-milbodmmfuva34",
                "id-11134207-8224q-milbodmmio06a9",
                "id-11134207-8224x-milcu7c9f3eo78",
                "id-11134207-8224p-milbodmmh9fq88",
                "id-11134207-82252-milcu7cc2m0z9c",
                "id-11134207-8224s-milcu7cc40lfac",
                "id-11134207-8224u-milcu7cc5f5v39"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766479318,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 13600000000,
              "price_min": 13600000000,
              "price_max": 13600000000,
              "price_min_before_discount": 68000000000,
              "price_max_before_discount": 68000000000,
              "hidden_price_display": null,
              "price_before_discount": 68000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-80%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemy-milcvwbsvs3re7.16000101766477502.mp4",
                  "thumb_url": "id-11110105-6vemy-milcvwbsvs3re7_cover",
                  "duration": 53,
                  "version": 2,
                  "vid": "id-11110105-6vemy-milcvwbsvs3re7",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemy-milcvwbsvs3re7.16000101766477502.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemy-milcvwbsvs3re7.16000101766477502.mp4",
                      "width": 960,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemy-milcvwbsvs3re7.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Biru",
                    "Hitam",
                    "Pink",
                    "grey",
                    "Acak."
                  ],
                  "images": [
                    "id-11134207-82251-milcu7cc6tqbdc",
                    "id-11134207-8224s-milcu7cc88ar21",
                    "id-11134207-8224p-milcu7cc9mv7dc",
                    "id-11134207-82250-milcu7cccg03fc",
                    "id-11134207-82250-milcu7ccb1fne9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 812958951735296,
                "price": 13600000000,
                "strikethrough_price": 68000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-80%",
                "model_id": 297277893551,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 68000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "JamTekno Kids & Adult",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44427439869,
            "shopid": 1702268385,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-milbodmmd1qe14\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,700810080,298488495,1400285055,2213765,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":146,\"model_id\":297277893551,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-milbodmmd1qe14\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,700810080,298488495,1400285055,2213765,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":146,\"model_id\":297277893551,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44427439869",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50803389356,
              "shopid": 1702059148,
              "name": "SmartPods SmartWatch Series 11 Pro MAX 2.11\" AMOLED Large Touch Screen Bluetooth Call",
              "label_ids": [
                844931086908638,
                844931064601283,
                700005495,
                700005490,
                1400066568,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298463379,
                1718596,
                298488495,
                298933384,
                1015914,
                700190087,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224z-mii757p5e9e04f",
              "images": [
                "id-11134207-8224z-mii757p5e9e04f",
                "id-11134207-8224o-micshbkbzkzmd1",
                "id-11134207-82252-micshbkc0zk2af",
                "id-11134207-8224y-micshbkc2e4ib6",
                "id-11134207-8224o-micshbkc3soyb2",
                "id-11134207-8224t-micshbkc579e0d",
                "id-11134207-8224o-micshbkc6ltu58",
                "id-11134207-8224t-micshbkc80eacb",
                "id-11134207-82252-micshbkc9eyqdd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766287213,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 48449900000,
              "price_min": 48449900000,
              "price_max": 48449900000,
              "price_min_before_discount": 199999900000,
              "price_max_before_discount": 199999900000,
              "hidden_price_display": null,
              "price_before_discount": 199999900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-76%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venb-mii7ih0i30na2b.16000101766286862.mp4",
                  "thumb_url": "id-11110105-6venb-mii7ih0i30na2b_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6venb-mii7ih0i30na2b",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venb-mii7ih0i30na2b.16000101766286862.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mii7ih0i30na2b.16000101766286862.mp4",
                      "width": 960,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mii7ih0i30na2b.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Rose Gold",
                    "Silver"
                  ],
                  "images": [
                    "id-11134207-8224x-micshbkcatj69f",
                    "id-11134207-8224z-mii7ob76v0u92a",
                    "id-11134207-8224v-mii7ob76wfepca"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 47449900000,
                "strikethrough_price": 199999900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1328768606552064,
                "discount_text": "-76%",
                "model_id": 430326756350,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1328768606552064,
                  "voucher_code": "SVC-1328768606552064",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1768323600,
                    "end_time": 1768409999,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 20000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 199999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 474.499",
                      "hidden_promotion_price": "Rp 4?4.499",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "smartpods",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50803389356,
            "shopid": 1702059148,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mii757p5e9e04f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,700005495,700005490,1400066568,822059908662278,825465608499232,825465608497696,1718093079,1119699,298463379,1718596,298488495,298933384,1015914,700190087,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":241,\"model_id\":430326756350,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mii757p5e9e04f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,700005495,700005490,1400066568,822059908662278,825465608499232,825465608497696,1718093079,1119699,298463379,1718596,298488495,298933384,1015914,700190087,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":241,\"model_id\":430326756350,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50803389356",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49903388999,
              "shopid": 1702275256,
              "name": "Smartwatch X10 Pro Max, Smartwatch Tahan Air untuk Wanita, Smartwatch Olahraga Bluetooth, Smartwatch Layar Sentuh Definisi Tinggi, Dapat Melakukan Panggilan, Wallpaper Dapat Disesuaikan, Jam Tangan Digital Pria iOS/Android, Pemantauan Detak Jantung.",
              "label_ids": [
                844931064601283,
                1059152,
                1049122,
                822059908662278,
                825465608497696,
                1718093079,
                1718596,
                298488495,
                2213765
              ],
              "image": "id-11134207-8224y-mj6pf0bcj85i82",
              "images": [
                "id-11134207-8224y-mj6pf0bcj85i82",
                "id-11134207-8224q-mitwaulzfpxiac",
                "id-11134207-8224z-mitwauly5d6w11",
                "id-11134207-8224t-mitwaulzij2ed7",
                "id-11134207-82251-mitwaum4qr5z51",
                "id-11134207-82251-mitwaulyktfs06",
                "id-11134207-8224y-mitwaum3c6pw4e",
                "id-11134207-8224w-mitwaum5ogsj45",
                "id-11134207-8224x-mitwaum3hszk3a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766227395,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 17000000000,
              "price_min": 17000000000,
              "price_max": 17000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "biru",
                    "berwarna merah muda",
                    "abu-abu",
                    "hitam",
                    "acak"
                  ],
                  "images": [
                    "id-11134201-8224s-mih82tgjlssoa8",
                    "id-11134207-8224q-mih7uvrbabk336",
                    "id-11134207-82250-mih7uvrbbq4ja2",
                    "id-11134207-82252-mih7uvrbd4ozc6",
                    "id-11134207-8224q-mih7uvrbej9f68"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 17000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 400324658898,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 17000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "vdaro2sc8y",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49903388999,
            "shopid": 1702275256,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mj6pf0bcj85i82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608497696,1718093079,1718596,298488495,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":356,\"model_id\":400324658898,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mj6pf0bcj85i82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608497696,1718093079,1718596,298488495,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":356,\"model_id\":400324658898,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49903388999",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56053362609,
              "shopid": 1704528252,
              "name": "Tempered Glass Hard Plastic Bumper Case for Huawei Watch Fit 3/4/4 Pro Jam Tangan Smartwatch Huawei Fit 3 Full Cover Bumper Accessories Screen Protector Case for Huawei Fit 3 Protection",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                1718596,
                1718093079,
                298488495,
                298463379,
                700810080,
                2213765,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82250-milb7pgofxmu36",
              "images": [
                "id-11134207-82250-milb7pgofxmu36",
                "sg-11134201-81ztk-mih2ru10vxmq88",
                "sg-11134201-81zv9-mih2ru82gw0404",
                "sg-11134201-81zti-mih2rufj16va44",
                "sg-11134201-81zui-mih2rum6sum8cc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766218357,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 990000000,
              "price_min": 990000000,
              "price_max": 990000000,
              "price_min_before_discount": 5600000000,
              "price_max_before_discount": 5600000000,
              "hidden_price_display": null,
              "price_before_discount": 5600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-82%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvd-mild3glvppfk76.16000081766477851.mp4",
                  "thumb_url": "id-11110105-6vdvd-mild3glvppfk76_cover",
                  "duration": 24,
                  "version": 2,
                  "vid": "id-11110105-6vdvd-mild3glvppfk76",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvd-mild3glvppfk76.16000081766477851.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvd-mild3glvppfk76.16000081766477851.mp4",
                      "width": 720,
                      "height": 784
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvd-mild3glvppfk76.default.mp4",
                    "width": 540,
                    "height": 588
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Pink",
                    "Silver",
                    "Rosegold",
                    "Transparan",
                    "Gold",
                    "Navy"
                  ],
                  "images": [
                    "sg-11134201-81zw5-mih2rxpf3w1y42",
                    "sg-11134201-81zwl-mih2rxjnlvy9f0",
                    "sg-11134201-81zuu-mih2rx7rm32e54",
                    "sg-11134201-81zv5-mih2rxuvg5qf5e",
                    "sg-11134201-81ztt-mih2rx29wp3a8e",
                    "sg-11134201-81zwd-mih2ruu01mh3a8",
                    "sg-11134201-81zwf-mih2rxd5qbyeb1"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "Huawei Fit 3",
                    "Huawei Fit 4",
                    "Huawei Fit 4 Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 814329692209152,
                "price": 990000000,
                "strikethrough_price": 5600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-82%",
                "model_id": 400323998423,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5600000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Strap Daily",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56053362609,
            "shopid": 1704528252,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-milb7pgofxmu36\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608497696,825465608499232,1119699,1718596,1718093079,298488495,298463379,700810080,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":357,\"model_id\":400323998423,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-milb7pgofxmu36\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608497696,825465608499232,1119699,1718596,1718093079,298488495,298463379,700810080,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":357,\"model_id\":400323998423,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56053362609",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53653371913,
              "shopid": 1704528252,
              "name": "Silicone Case for Apple Watch Ultra 3/2/1 49mm 46mm 42mm 45 44 40 41 38mm Silikon Rubber Case for Iwatch Series 11 10 9 8 7 6 SE 5 4 3 2 Soft Bumper Material Screen Protector Cover for Jam Tangan Smartwatch",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1718596,
                1718093079,
                298488495,
                298463379,
                700810080,
                2213765,
                1400285055,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224y-mir6mcc37bbc46",
              "images": [
                "id-11134207-8224y-mir6mcc37bbc46",
                "sg-11134201-81zv8-mih2opllm5ts47",
                "sg-11134201-81ztx-mih2os2nrfuvcb",
                "sg-11134201-81zuz-mih2osrgkykn90",
                "sg-11134201-81zte-mih2ot53whkw92",
                "sg-11134201-81zwc-mih2ounzllog68",
                "sg-11134201-81zua-mih2ouy1105cc5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766218216,
              "sold": 3,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 925000000,
              "price_min": 925000000,
              "price_max": 925000000,
              "price_min_before_discount": 3700000000,
              "price_max_before_discount": 3700000000,
              "hidden_price_display": null,
              "price_before_discount": 3700000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-75%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Mint Green",
                    "Hitam",
                    "Putih",
                    "Starlight",
                    "Pink",
                    "Lilac",
                    "Navy",
                    "Abu Abu",
                    "Hijau Army",
                    "Blue Sea"
                  ],
                  "images": [
                    "sg-11134201-81zwx-mih2ov4prs3k4e",
                    "sg-11134201-81zvw-mih2own2cnib73",
                    "sg-11134201-81zuk-mih2ovodu9dt4c",
                    "sg-11134201-81zu5-mih2owg8qc5d59",
                    "sg-11134201-81zvn-mih2ow9mohdy33",
                    "sg-11134201-81zwb-mih2ovvafdhf65",
                    "sg-11134201-81zuy-mih2ow209fr8c2",
                    "sg-11134201-81zv2-mih2owvzmnlv27",
                    "sg-11134201-81ztj-mih2ox36wnb454",
                    "sg-11134201-81zu6-mih2ox9bo8i013"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "38mm",
                    "40mm",
                    "41mm",
                    "42mm",
                    "44mm",
                    "45mm",
                    "S10 46mm",
                    "49mm",
                    "S10 42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 814329692209152,
                "price": 925000000,
                "strikethrough_price": 3700000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-75%",
                "model_id": 345324000837,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3700000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Strap Daily",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53653371913,
            "shopid": 1704528252,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mir6mcc37bbc46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1718596,1718093079,298488495,298463379,700810080,2213765,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":358,\"model_id\":345324000837,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mir6mcc37bbc46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1718596,1718093079,298488495,298463379,700810080,2213765,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":358,\"model_id\":345324000837,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53653371913",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45803382602,
              "shopid": 1704528252,
              "name": "Silicone Sport Strap For Huawei Band 10 9 8 Polos Soft Hematacc Silikon Untuk Gelang Tali Jam Tangan Pintar Huawei Band 8/9/10 Tali Olahraga Asli Watch Accessories",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                1718093079,
                298488495,
                298463379,
                700810080,
                298933384,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224y-mir6mcc38pvsc7",
              "images": [
                "id-11134207-8224y-mir6mcc38pvsc7",
                "sg-11134201-81zux-mih2o9hi366f94",
                "sg-11134201-81zu3-mih2o9w31h4xc5",
                "sg-11134201-81zux-mih2oa59u9dv70",
                "sg-11134201-81zv4-mih2oadvri8844",
                "sg-11134201-81zwr-mih2oalfyebrcc",
                "sg-11134201-81zuc-mih2oat7d729ef",
                "sg-11134201-81zwv-mih2ob6r0op48a",
                "sg-11134201-81zw6-mih2objrcv7m65"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766218194,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1250000000,
              "price_min": 1250000000,
              "price_max": 1250000000,
              "price_min_before_discount": 3100000000,
              "price_max_before_discount": 3100000000,
              "hidden_price_display": null,
              "price_before_discount": 3100000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-60%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "White",
                    "Ash Blue",
                    "Burgundy",
                    "Yellow",
                    "Red",
                    "Navy",
                    "Sky Blue",
                    "Ivory",
                    "Pink",
                    "Tosca",
                    "Purple",
                    "Dark Green",
                    "Grey",
                    "Orange"
                  ],
                  "images": [
                    "sg-11134201-81zvc-mih2ocbhj0ufcd",
                    "sg-11134201-81zw4-mih2oeucvg8w60",
                    "sg-11134201-81zww-mih2og14yxvl26",
                    "sg-11134201-81zuw-mih2oc3f9q864f",
                    "sg-11134201-81zuw-mih2ofhj4iywcc",
                    "sg-11134201-81zvf-mih2odfdafwg7c",
                    "sg-11134201-81zwa-mih2odui7xmw45",
                    "sg-11134201-81zu0-mih2obqog8ow72",
                    "sg-11134201-81zug-mih2ofaimznk3f",
                    "sg-11134201-81zvp-mih2oed8jdoi0a",
                    "sg-11134201-81zwu-mih2obwutf5vdc",
                    "sg-11134201-81zwa-mih2of36eltwf3",
                    "sg-11134201-81zvr-mih2ocw69udkdd",
                    "sg-11134201-81zum-mih2ogg71xq9a8",
                    "sg-11134201-81zvs-mih2ocigkmpz5d"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "Huawei Band 8/9/10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 814329205669888,
                "price": 1250000000,
                "strikethrough_price": 3100000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-60%",
                "model_id": 400323995650,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3100000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Strap Daily",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45803382602,
            "shopid": 1704528252,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mir6mcc38pvsc7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718596,1718093079,298488495,298463379,700810080,298933384,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":359,\"model_id\":400323995650,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mir6mcc38pvsc7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718596,1718093079,298488495,298463379,700810080,298933384,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":359,\"model_id\":400323995650,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45803382602",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44803387679,
              "shopid": 1704528252,
              "name": "Canvas Strap for Huawei Watch Fit 3/4/4 Pro Strap Tali Jam Tangan Smart Watch Huawei Fit 4/4 Pro Adjustable Replacement Band Smartwatch Accessories",
              "label_ids": [
                844931086908638,
                844931064601283,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                1718093079,
                298488495,
                298463379,
                700810080,
                2213765,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224r-mittu4x6ocnce7",
              "images": [
                "id-11134207-8224r-mittu4x6ocnce7",
                "id-11134207-8224y-mittu4x6my2w17",
                "sg-11134201-81zuv-mih2m9s6ttdu97",
                "sg-11134201-81zvu-mih2ma053u2oa4",
                "sg-11134201-81zw2-mih2ma4g0cn5b6",
                "sg-11134201-81zw3-mih2maauq4n606",
                "sg-11134201-81zv2-mih2mahw9mvad3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766218096,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2130000000,
              "price_min": 2130000000,
              "price_max": 2130000000,
              "price_min_before_discount": 4500000000,
              "price_max_before_discount": 4500000000,
              "hidden_price_display": null,
              "price_before_discount": 4500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Army Green",
                    "Red Rainbow",
                    "White Rainbow",
                    "Grey White",
                    "Full Black",
                    "Milky White",
                    "Pink",
                    "Navy Orange",
                    "Black Orange",
                    "Blue",
                    "Dark Navy"
                  ],
                  "images": [
                    "sg-11134201-81zuy-mih2mbygqosm88",
                    "sg-11134201-81ztg-mih2mc5o4w7686",
                    "sg-11134201-81zwn-mih2mau5hkozff",
                    "sg-11134201-81zuy-mih2mck1zjt0a2",
                    "sg-11134201-81zwj-mih2mbjqvcp06e",
                    "sg-11134201-81zwv-mih2mbsaq3uq1b",
                    "sg-11134201-81ztg-mih2mao094p384",
                    "sg-11134201-81zu6-mih2mcctunls71",
                    "sg-11134201-81zwm-mih2mb824v0k87",
                    "sg-11134201-81ztq-mih2mbdmaqrra4",
                    "sg-11134201-81zu5-mih2mb1eslxg59"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "Huawei Fit 3/4/4 Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 814329205669888,
                "price": 2130000000,
                "strikethrough_price": 4500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 307270524453,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Strap Daily",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44803387679,
            "shopid": 1704528252,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mittu4x6ocnce7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718596,1718093079,298488495,298463379,700810080,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":360,\"model_id\":307270524453,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mittu4x6ocnce7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718596,1718093079,298488495,298463379,700810080,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":360,\"model_id\":307270524453,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44803387679",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52553376265,
              "shopid": 1704528252,
              "name": "Nylon Braided Strap for Apple Watch Ultra 3/2/1 SE 3/2/1 Tali Jam Tangan 38mm 40mm 41mm 42mm 44mm 45mm 49mm Smartwatch Sport Adjustable Elastic Belt Bracelet Band For Iwatch Series 11 10 1 2 3 4 5 6 7 8 9 Accessories Logam",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                1718093079,
                298488495,
                298463379,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224x-mitxos724xdw24",
              "images": [
                "id-11134207-8224x-mitxos724xdw24",
                "sg-11134201-81zvu-mih2hy43eako74",
                "sg-11134201-81zu0-mih2hycr1cecfb",
                "sg-11134201-81zwr-mih2hylxzpc477",
                "sg-11134201-81zw5-mih2hyswx53c76",
                "sg-11134201-81ztk-mih2hz0p6sqwb6",
                "sg-11134201-81zwa-mih2hz8jyebm23"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766217895,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3200000000,
              "price_min": 3200000000,
              "price_max": 3200000000,
              "price_min_before_discount": 5300000000,
              "price_max_before_discount": 5300000000,
              "hidden_price_display": null,
              "price_before_discount": 5300000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-40%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Wine Cream",
                    "Green Cream",
                    "Lilac Cream",
                    "Blue Cream",
                    "Smoke Purple Cream",
                    "Grey Cream",
                    "Navy Cream",
                    "Wine Navy",
                    "Coffee Cream",
                    "Unicorn Blue",
                    "Cream Pink",
                    "Green Yellow",
                    "Starlight"
                  ],
                  "images": [
                    "sg-11134201-81zvh-mih2i15w2yo123",
                    "sg-11134201-81zv5-mih2i055fnya70",
                    "sg-11134201-81ztj-mih2i1xdv47804",
                    "sg-11134201-81zts-mih2hzndrncybc",
                    "sg-11134201-81zw8-mih2i1jip7ggf3",
                    "sg-11134201-81zwa-mih2hzg7qk9377",
                    "sg-11134201-81zv7-mih2hzvwoow153",
                    "sg-11134201-81zwo-mih2i1cf0g03f1",
                    "sg-11134201-81zw3-mih2i0yjhxqebe",
                    "sg-11134201-81zug-mih2i0peatxj97",
                    "sg-11134201-81ztf-mih2i1pl7daf54",
                    "sg-11134201-81zvd-mih2i2594xl0e4",
                    "sg-11134201-81zws-mih2i0eb29l401"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "42/44/45/46/49 mm",
                    "38/40/41 mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 814329205669888,
                "price": 3200000000,
                "strikethrough_price": 5300000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-40%",
                "model_id": 282270527062,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5300000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Strap Daily",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52553376265,
            "shopid": 1704528252,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mitxos724xdw24\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718596,1718093079,298488495,298463379,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":361,\"model_id\":282270527062,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mitxos724xdw24\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718596,1718093079,298488495,298463379,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":361,\"model_id\":282270527062,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52553376265",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41777373281,
              "shopid": 1704528252,
              "name": "Silicone Leather Strap for Apple Watch SE Ultra 3 2 49mm Iwatch Series 11 10 9 8 7 6 5 46mm 42 45 44 40 42 38mm Sport Soft Rubber Band Wristband Belt Accessories Tali Jam Tangan for Smartwatch 18 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                1718093079,
                298488495,
                298463379,
                2213765,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224q-mitxos71whz834",
              "images": [
                "id-11134207-8224q-mitxos71whz834",
                "sg-11134201-81zwv-mih2fxhlgzcw1f",
                "sg-11134201-81zw2-mih2fxnxt4auc1",
                "sg-11134201-81zua-mih2fxvueqkkeb",
                "sg-11134201-81zv2-mih2fy4yscg173",
                "sg-11134201-81zwr-mih2fycvfevb30",
                "sg-11134201-81zuh-mih2fymuo5j674"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766217800,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4850000000,
              "price_min": 4850000000,
              "price_max": 4850000000,
              "price_min_before_discount": 15500000000,
              "price_max_before_discount": 15500000000,
              "hidden_price_display": null,
              "price_before_discount": 15500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-69%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Putih",
                    "Abu Tua",
                    "Abu Muda",
                    "Coklat Tua",
                    "Coklat Muda",
                    "Orange",
                    "Navy",
                    "Army"
                  ],
                  "images": [
                    "sg-11134201-81zww-mih2fzu35lon35",
                    "sg-11134201-81zuh-mih2fyscrl6o42",
                    "sg-11134201-81zw3-mih2fzerfnk734",
                    "sg-11134201-81zva-mih2g0aew0eg67",
                    "sg-11134201-81zv9-mih2g02t0pvq74",
                    "sg-11134201-81zvv-mih2fzmlm51f34",
                    "sg-11134201-81zuc-mih2g0he4ooy44",
                    "sg-11134201-81zw7-mih2fz6tl1ja75",
                    "sg-11134201-81zv8-mih2fyypt0cm8a"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "42/44/45/46/49 mm",
                    "38/40/41 mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  1,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 814329205669888,
                "price": 4850000000,
                "strikethrough_price": 15500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-69%",
                "model_id": 234628883008,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 15500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Strap Daily",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41777373281,
            "shopid": 1704528252,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mitxos71whz834\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718596,1718093079,298488495,298463379,2213765,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":362,\"model_id\":234628883008,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mitxos71whz834\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718596,1718093079,298488495,298463379,2213765,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":362,\"model_id\":234628883008,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41777373281",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40627372142,
              "shopid": 1201422986,
              "name": "Jqvitek Smartwatch Full HD 1.39 inch IPS Jam Wanita Pria Full Touch Screen Sports Fitness Tracker Jam Tangan Wanita Anti Casual Tipis Jam Tangan Silikon SW37",
              "label_ids": [
                1012729,
                2153644,
                2018618,
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608492064,
                825465608499232,
                1119699,
                1718596,
                2213652,
                298488495,
                1015914,
                700190087,
                1400285055,
                2213765,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-81zvt-migtldojx7no89",
              "images": [
                "sg-11134201-81zvt-migtldojx7no89",
                "sg-11134201-81zvl-migtle5cl8u9eb",
                "sg-11134201-81zwh-migtledg6ccn68",
                "sg-11134201-81zuo-migtlenndlage5",
                "sg-11134201-81zw6-migtleu3nlkyd9",
                "sg-11134201-81zti-migtlf0a251c47",
                "sg-11134201-81ztp-migtlf5l7mrqf2",
                "sg-11134201-81zv9-migtlfbx00le7b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766202922,
              "sold": 6,
              "historical_sold": 7,
              "liked": false,
              "liked_count": 25,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 4,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 16999000000,
              "price_min": 16999000000,
              "price_max": 16999000000,
              "price_min_before_discount": 49990000000,
              "price_max_before_discount": 49990000000,
              "hidden_price_display": null,
              "price_before_discount": 49990000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-66%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v99n-migquvy40dfme8.16000101766198320.mp4",
                  "thumb_url": "sg-11110106-6v99n-migquvy40dfme8_cover",
                  "duration": 54,
                  "version": 2,
                  "vid": "sg-11110106-6v99n-migquvy40dfme8",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v99n-migquvy40dfme8.16000101766198320.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v99n-migquvy40dfme8.16000101766198320.mp4",
                      "width": 540,
                      "height": 952
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v99n-migquvy40dfme8.default.mp4",
                    "width": 540,
                    "height": 952
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Fitnes Tracker",
                  "options": [
                    "SWatch SW37 - Black"
                  ],
                  "images": [
                    "sg-11134201-81zuk-migtlfkjgyyqf6"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  0,
                  4
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 398432414220807,
                "bundle_deal_label": "Pilih 2, diskon 2%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 807974717685760,
                "price": 16899100000,
                "strikethrough_price": 49990000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1308447355322368,
                "discount_text": "-66%",
                "model_id": 390323020542,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1308447355322368,
                  "voucher_code": "JQVIJJJJJ",
                  "voucher_discount": 99900000,
                  "time_info": {
                    "start_time": 1765438800,
                    "end_time": 1772294340,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 100000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 49990000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 7,
                "rounded_local_monthly_sold_count": 6,
                "local_monthly_sold_count_text": "6",
                "rounded_display_sold_count": 7,
                "display_sold_count_text": "7"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "JQVITEK Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40627372142,
            "shopid": 1201422986,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zvt-migtldojx7no89\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2153644,2018618,1718087960,1428713,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,825465608492064,825465608499232,1119699,1718596,2213652,298488495,1015914,700190087,1400285055,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":363,\"model_id\":390323020542,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zvt-migtldojx7no89\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2153644,2018618,1718087960,1428713,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,825465608492064,825465608499232,1119699,1718596,2213652,298488495,1015914,700190087,1400285055,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":363,\"model_id\":390323020542,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40627372142",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52153350583,
              "shopid": 128133650,
              "name": "Apple Hard Case Airpods Pro Gen 3 Alcantara dengan Desain Elegan dan Tahan Gores",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                1718093079,
                1718596,
                700765096,
                1119699,
                298488495,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224v-mig3yvhwc1s7b0",
              "images": [
                "id-11134207-8224v-mig3yvhwc1s7b0",
                "id-11134207-8224x-mig3yvhweux308",
                "id-11134207-8224q-mifnws9aebk42f",
                "id-11134207-82252-mifnws9afq4k17",
                "id-11134207-8224o-mifnws9aij9g24",
                "id-11134207-8224o-mifnws9ajxtwa3",
                "id-11134207-82251-mig3yvhwdgcndf"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766159924,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 7885000000,
              "price_min": 7885000000,
              "price_max": 7885000000,
              "price_min_before_discount": 9500000000,
              "price_max_before_discount": 9500000000,
              "hidden_price_display": null,
              "price_before_discount": 9500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-17%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Brown",
                    "Gray",
                    "Blue"
                  ],
                  "images": [
                    "id-11134207-8224x-mig3yvhwg9hjc0",
                    "id-11134207-8224p-mig3yvhwho1ze0",
                    "id-11134207-8224p-mig3yvhwj2mfe2"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 799105996079104,
                "price": 7885000000,
                "strikethrough_price": 9500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-17%",
                "model_id": 282269081342,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 9500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Star Shoppe",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52153350583,
            "shopid": 128133650,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mig3yvhwc1s7b0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1059152,1059154,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,2048660,2048661,1718093079,1718596,700765096,1119699,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":365,\"model_id\":282269081342,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mig3yvhwc1s7b0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1059152,1059154,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,2048660,2048661,1718093079,1718596,700765096,1119699,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":365,\"model_id\":282269081342,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52153350583",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48153356737,
              "shopid": 1702272323,
              "name": "[COD] Smartwatch Anak Q19 360ยฐ Rotasi - Anti Air IP67 GPS Video Call Dual Kamera",
              "label_ids": [
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                844931064601283,
                844931086908638,
                1119699,
                1718093079,
                1718596,
                298488495,
                1428713,
                1718087960,
                1400285055,
                2213765
              ],
              "image": "id-11134207-82251-mifnsespkd1k8e",
              "images": [
                "id-11134207-82251-mifnsespkd1k8e",
                "id-11134207-8224t-mifnsesjy39i94",
                "id-11134207-8224u-mifnsesk2ayubf",
                "id-11134207-82252-mifnsesjzhty0e",
                "id-11134207-8224x-mifnsesk0wee30",
                "id-11134207-8224o-mifnsesk3pjaf0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766137517,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 50000000000,
              "price_min": 50000000000,
              "price_max": 50000000000,
              "price_min_before_discount": 136666600000,
              "price_max_before_discount": 136666600000,
              "hidden_price_display": null,
              "price_before_discount": 136666600000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-63%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Spesifikasi",
                  "options": [
                    "green",
                    "blue",
                    "purple",
                    "red",
                    "black",
                    "red."
                  ],
                  "images": [
                    "id-11134207-8224s-mifnsesk6io694",
                    "id-11134207-82250-mifnsesk7x8m5c",
                    "id-11134207-82250-mifnsesk9bt241",
                    "id-11134207-8224v-mifnseskaqdi12",
                    "id-11134207-8224y-mifq8qkk5n2fd8",
                    "id-11134207-82251-mifq8qkccphf52"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227603915223040,
                "price": 30000000000,
                "strikethrough_price": 136666600000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1316468550287360,
                "discount_text": "-63%",
                "model_id": 188790756794,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1316468550287360,
                  "voucher_code": "BDR4ABCDE",
                  "voucher_discount": 20000000000,
                  "time_info": {
                    "start_time": 1766395020,
                    "end_time": 1772273820,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 136666600000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Digital cerdas Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48153356737,
            "shopid": 1702272323,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mifnsespkd1k8e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1049122,822059908662278,825465608499232,825465608497696,844931064601283,844931086908638,1119699,1718093079,1718596,298488495,1428713,1718087960,1400285055,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":366,\"model_id\":188790756794,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mifnsespkd1k8e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1049122,822059908662278,825465608499232,825465608497696,844931064601283,844931086908638,1119699,1718093079,1718596,298488495,1428713,1718087960,1400285055,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":366,\"model_id\":188790756794,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48153356737",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46403332454,
              "shopid": 1702122026,
              "name": "MyPods Watch Series Ultra 2 Pro With Dynamic Island Amoled HD",
              "label_ids": [
                1400066568,
                844931086908638,
                844931064601283,
                298463379,
                1049120,
                700005490,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                298488495,
                1718087960,
                1428713,
                2213765,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224p-mifem41a8x6qb4",
              "images": [
                "id-11134207-8224p-mifem41a8x6qb4",
                "id-11134207-8224o-mifem41aabr672",
                "id-11134207-8224y-mifem41abqbmc2",
                "id-11134207-8224u-mifem41ad4w214",
                "id-11134207-82251-mifem41aejgib7",
                "id-11134207-8224s-mifem41afy0y0d",
                "id-11134207-82252-mifem41a7ima67"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766117619,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "MyPods",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 48999000000,
              "price_min": 48999000000,
              "price_max": 48999000000,
              "price_min_before_discount": 219999900000,
              "price_max_before_discount": 219999900000,
              "hidden_price_display": null,
              "price_before_discount": 219999900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-78%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemy-mifeqhu9yhvob0.16000101766117402.mp4",
                  "thumb_url": "id-11110105-6vemy-mifeqhu9yhvob0_cover",
                  "duration": 27,
                  "version": 2,
                  "vid": "id-11110105-6vemy-mifeqhu9yhvob0",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemy-mifeqhu9yhvob0.16000101766117402.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemy-mifeqhu9yhvob0.16000101766117402.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemy-mifeqhu9yhvob0.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "WARNA",
                  "options": [
                    "BLACK",
                    "TITANIUM"
                  ],
                  "images": [
                    "id-11134207-8224t-mifeu0dsnb445a",
                    "id-11134207-8224x-mifeu0dsvqiq0e"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 47999000000,
                "strikethrough_price": 219999900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1328763598422016,
                "discount_text": "-78%",
                "model_id": 330318346493,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1328763598422016,
                  "voucher_code": "SVC-1328763598422016",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1768323600,
                    "end_time": 1768409999,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 20000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 219999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 479.990",
                      "hidden_promotion_price": "Rp 4?9.990",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MyPods.Id",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46403332454,
            "shopid": 1702122026,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mifem41a8x6qb4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931086908638,844931064601283,298463379,1049120,700005490,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,1718087960,1428713,2213765,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":242,\"model_id\":330318346493,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mifem41a8x6qb4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931086908638,844931064601283,298463379,1049120,700005490,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,1718087960,1428713,2213765,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":242,\"model_id\":330318346493,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46403332454",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50403306586,
              "shopid": 1695699274,
              "name": "Tempered Glass Galaxy Watch 8 ARAREE CORE GLASS 40mm 44mm Classic 46mm Screen Protector Anti Gores HD 9H Hardness Oleophobic Easy Application Screen Guard Pelindung Layar 2 Pack",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1718596,
                298488495,
                2213765,
                1400066568,
                1428713,
                1718087960
              ],
              "image": "sg-11134201-81zwk-mifbkmasndhc05",
              "images": [
                "sg-11134201-81zwk-mifbkmasndhc05",
                "sg-11134201-81zv1-mifbkmyxfmdg49",
                "sg-11134201-81ztm-mifbknl37c3n38",
                "sg-11134201-81zuu-mifbko0c2qro91",
                "sg-11134201-81zu4-mifbkogxn7rcf4",
                "sg-11134201-81zuu-mifbkoxnz0g474",
                "sg-11134201-81ztf-mifbkq1k311c9c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766112086,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Araree",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 23200000000,
              "price_min": 23200000000,
              "price_max": 23200000000,
              "price_min_before_discount": 24000000000,
              "price_max_before_discount": 24000000000,
              "hidden_price_display": null,
              "price_before_discount": 24000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-3%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven4-mj9mlg87ecxycf.16000081767946659.mp4",
                  "thumb_url": "id-11110105-6ven4-mj9mlg87ecxycf_cover",
                  "duration": 55,
                  "version": 2,
                  "vid": "id-11110105-6ven4-mj9mlg87ecxycf",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven4-mj9mlg87ecxycf.16000081767946659.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-mj9mlg87ecxycf.16000081767946659.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-mj9mlg87ecxycf.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "size",
                  "options": [
                    "40MM",
                    "44MM",
                    "Classic 46mm"
                  ],
                  "images": [
                    "sg-11134201-81ztu-mifbkqafn9qf14",
                    "sg-11134201-81zvq-mifbkqqsjthed5",
                    "sg-11134201-81zuz-mifbkrb29vy8d3"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 812797932388352,
                "price": 22504000000,
                "strikethrough_price": 24000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1320690176114688,
                "discount_text": "-3%",
                "model_id": 395317815296,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1320690176114688,
                  "voucher_code": "ARAR3DESS",
                  "voucher_discount": 696000000,
                  "time_info": {
                    "start_time": 1766898240,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 24000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Araree Indonesia",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50403306586,
            "shopid": 1695699274,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwk-mifbkmasndhc05\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1718093079,1718596,298488495,2213765,1400066568,1428713,1718087960],\"matched_keywords\":[\"\"],\"merge_rank\":367,\"model_id\":395317815296,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwk-mifbkmasndhc05\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1718093079,1718596,298488495,2213765,1400066568,1428713,1718087960],\"matched_keywords\":[\"\"],\"merge_rank\":367,\"model_id\":395317815296,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50403306586",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56853274135,
              "shopid": 11868085,
              "name": "ROBOT Kacamata Pintar REA1 Bluetooth Call Music IP67 Tahan Air Design Open Audio Anti UV Water Resistant Lens Replaceable - Garansi 1 Tahun",
              "label_ids": [
                1000110,
                700700063,
                1016119,
                1002164,
                1000119,
                1000549,
                1000579,
                1000381,
                1000230,
                1000109,
                1000167,
                1000653,
                1000544,
                700185029,
                700195015,
                298938357,
                1400095067,
                700195016,
                1400285005,
                1993653,
                1011692,
                1518617,
                1668726,
                2068629,
                2018618,
                2153644,
                2158715,
                37,
                40,
                27,
                58,
                38,
                48,
                1000016,
                1000072,
                1000108,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1718093079,
                700005490,
                1049120,
                822059908662278,
                1119699,
                1718596,
                298488495,
                2213652,
                1015914,
                700190087,
                700810055,
                2213765,
                298933384,
                298938368,
                1718088045,
                2098628,
                2098629,
                298468389
              ],
              "image": "id-11134207-8224w-mieaaowb98ubc2",
              "images": [
                "id-11134207-8224w-mieaaowb98ubc2",
                "id-11134207-82250-miea08caetqgd8",
                "id-11134207-82252-miea08cag8awfe",
                "id-11134207-82252-miea08cahmvcd0",
                "id-11134207-8224p-mieaaow7v1frb2",
                "id-11134207-8224y-miea08caj1fs0e",
                "id-11134207-8224u-miea08cakg0897",
                "id-11134207-8224v-mieaaow1maki90",
                "id-11134207-82252-mieaaowg91ja4d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1766053775,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 7,
              "view_count": null,
              "catid": 100013,
              "brand": "ROBOT",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 27199900000,
              "price_min": 27199900000,
              "price_max": 27199900000,
              "price_min_before_discount": 68000000000,
              "price_max_before_discount": 68000000000,
              "hidden_price_display": null,
              "price_before_discount": 68000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-60%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven2-mifb8fnh9d6s30.16000081766111524.mp4",
                  "thumb_url": "id-11110105-6ven2-mifb8fnh9d6s30_cover",
                  "duration": 23,
                  "version": 2,
                  "vid": "id-11110105-6ven2-mifb8fnh9d6s30",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven2-mifb8fnh9d6s30.16000081766111524.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven2-mifb8fnh9d6s30.16000081766111524.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven2-mifb8fnh9d6s30.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Tipe",
                  "options": [
                    "REA1"
                  ],
                  "images": [
                    "id-11134207-8224w-mieaaowbanerfc"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  1,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 412316541927528,
                "bundle_deal_label": "Pilih 2, diskon 2%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp90RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 767487445090304,
                "price": 26999900000,
                "strikethrough_price": 68000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1317135394291712,
                "discount_text": "-60%",
                "model_id": 355315500288,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1317135394291712,
                  "voucher_code": "ROBO15163",
                  "voucher_discount": 200000000,
                  "time_info": {
                    "start_time": 1766474520,
                    "end_time": 1772266920,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 14000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 68000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp90RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Robot Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56853274135,
            "shopid": 11868085,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mieaaowb98ubc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000110,700700063,1016119,1002164,1000119,1000549,1000579,1000381,1000230,1000109,1000167,1000653,1000544,700185029,700195015,298938357,1400095067,700195016,1400285005,1993653,1011692,1518617,1668726,2068629,2018618,2153644,2158715,37,40,27,58,38,48,1000016,1000072,1000108,1428713,1718087960,844931086908638,844931064601283,298463379,1718093079,700005490,1049120,822059908662278,1119699,1718596,298488495,2213652,1015914,700190087,700810055,2213765,298933384,298938368,1718088045,2098628,2098629,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":369,\"model_id\":355315500288,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mieaaowb98ubc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000110,700700063,1016119,1002164,1000119,1000549,1000579,1000381,1000230,1000109,1000167,1000653,1000544,700185029,700195015,298938357,1400095067,700195016,1400285005,1993653,1011692,1518617,1668726,2068629,2018618,2153644,2158715,37,40,27,58,38,48,1000016,1000072,1000108,1428713,1718087960,844931086908638,844931064601283,298463379,1718093079,700005490,1049120,822059908662278,1119699,1718596,298488495,2213652,1015914,700190087,700810055,2213765,298933384,298938368,1718088045,2098628,2098629,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":369,\"model_id\":355315500288,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56853274135",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47503239554,
              "shopid": 1025397556,
              "name": "SNAPFIT Replacement Ear Tips for AirPods Pro 3 2025 SNAPFIT Eartips Replace Cadangan - Primary Focuss",
              "label_ids": [
                2018619,
                2023641,
                700700063,
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1718093079,
                1718596,
                1119699,
                700765096,
                298488495,
                1059152,
                1059154,
                822059908662278,
                2048661,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                2048660,
                834230400556567,
                2213765,
                298933384,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82250-mil1e6jw6tqce9",
              "images": [
                "id-11134207-82250-mil1e6jw6tqce9",
                "sg-11134201-81zut-micvo2uzgcue35",
                "sg-11134201-81zty-micvo330i3upcf",
                "sg-11134201-81zv4-micvo37wy1hd3f",
                "sg-11134201-81zu1-micvo3cdnt36b8",
                "sg-11134201-81zuh-micvo3gokbnkea",
                "sg-11134201-81ztm-micvnzrqn210c7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765964270,
              "sold": 6,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "SNAPFIT",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 650000000,
              "price_min": 650000000,
              "price_max": 650000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venc-mimi6xsgpwckfb.16000081766546961.mp4",
                  "thumb_url": "id-11110105-6venc-mimi6xsgpwckfb_cover",
                  "duration": 55,
                  "version": 2,
                  "vid": "id-11110105-6venc-mimi6xsgpwckfb",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venc-mimi6xsgpwckfb.16000081766546961.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venc-mimi6xsgpwckfb.16000081766546961.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venc-mimi6xsgpwckfb.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Ukuran",
                  "options": [
                    "S",
                    "M",
                    "L"
                  ],
                  "images": [
                    "sg-11134201-81zte-micvo3q2ns3mb4",
                    "sg-11134201-81zwq-micvo3u9b56sd7",
                    "sg-11134201-81zwm-micvo3yfj3lw7b"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 650000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 320310341070,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 650000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 6,
                "local_monthly_sold_count_text": "6",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Primary Focuss",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47503239554,
            "shopid": 1025397556,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mil1e6jw6tqce9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,700700063,1718087960,1428713,844931064601283,298463379,1718093079,1718596,1119699,700765096,298488495,1059152,1059154,822059908662278,2048661,825465608493600,825465608494624,825465608499232,825465608497696,2048660,834230400556567,2213765,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":373,\"model_id\":320310341070,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mil1e6jw6tqce9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,700700063,1718087960,1428713,844931064601283,298463379,1718093079,1718596,1119699,700765096,298488495,1059152,1059154,822059908662278,2048661,825465608493600,825465608494624,825465608499232,825465608497696,2048660,834230400556567,2213765,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":373,\"model_id\":320310341070,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47503239554",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57503225242,
              "shopid": 1659072746,
              "name": "[Gift Smartwatch]Cityjungle Smartwatch GPS Air | Layar AMOLED 1,32\" | Tahan Air 5ATM | GPS Multi-Satelit & Sensor Detak Jantung | 170+ Mode Olahraga | Sinkronisasi ke Strava | Jam Tangan Pintar Olahraga & Outdoor",
              "label_ids": [
                2018618,
                298888358,
                298938357,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                1049120,
                1718093079,
                822059908662278,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                1718596,
                700765096,
                2213652,
                298488495,
                1015914,
                700190087,
                700810055,
                2213765,
                298933384,
                2098629,
                2098628,
                298468389,
                298938368,
                1718088045
              ],
              "image": "id-11134207-8224y-mict189v7094f9",
              "images": [
                "id-11134207-8224y-mict189v7094f9",
                "id-11134207-8224y-mict189vcmiw48",
                "id-11134207-82251-mict189v9te0d8",
                "id-11134207-8224s-mict189v8etkb1",
                "id-11134207-8224o-mict189vb7ygd7",
                "id-11134207-8224s-mict189vi8so3e",
                "id-11134207-8224t-mhpofehzol51ac",
                "id-11134207-82251-mict189ve13cb9",
                "id-11134207-8224r-mhpu8lwcszr6ee"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765962544,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 12,
              "view_count": null,
              "catid": 100013,
              "brand": "CITYJUNGLE",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 95500000000,
              "price_min": 95500000000,
              "price_max": 95500000000,
              "price_min_before_discount": 330000000000,
              "price_max_before_discount": 330000000000,
              "hidden_price_display": null,
              "price_before_discount": 330000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-71%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvk-miwhnbipd4ar68.16000081767151424.mp4",
                  "thumb_url": "id-11110105-6vdvk-miwhnbipd4ar68_cover",
                  "duration": 53,
                  "version": 2,
                  "vid": "id-11110105-6vdvk-miwhnbipd4ar68",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvk-miwhnbipd4ar68.16000081767151424.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvk-miwhnbipd4ar68.16000081767151424.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvk-miwhnbipd4ar68.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Model",
                  "options": [
                    "GPS Air-Hitam",
                    "GPS Air-Emas mawar"
                  ],
                  "images": [
                    "id-11134207-8224y-mict189v7094f9",
                    "id-11134207-8224x-micuh4as4w77cd"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 405399333516373,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp139RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228244620324865,
                "price": 83500000000,
                "strikethrough_price": 330000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1299792132456448,
                "discount_text": "-71%",
                "model_id": 320310162714,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1299792132456448,
                  "voucher_code": "CITYQD120",
                  "voucher_discount": 12000000000,
                  "time_info": {
                    "start_time": 1764406560,
                    "end_time": 1772470740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 330000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp139RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CITYJUNGLE Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57503225242,
            "shopid": 1659072746,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mict189v7094f9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298888358,298938357,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,1049120,1718093079,822059908662278,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1718596,700765096,2213652,298488495,1015914,700190087,700810055,2213765,298933384,2098629,2098628,298468389,298938368,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":375,\"model_id\":320310162714,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mict189v7094f9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298888358,298938357,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,1049120,1718093079,822059908662278,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1718596,700765096,2213652,298488495,1015914,700190087,700810055,2213765,298933384,2098629,2098628,298468389,298938368,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":375,\"model_id\":320310162714,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57503225242",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44953236991,
              "shopid": 758326353,
              "name": "Wwen Chest Strap Tali Dada Pegangan Handphone Mount Kamera Body Belt Holder HP Clip Clamp 360 Go Pro CAM Dudukan Smartphone Gantungan Elastis",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1059154,
                1059152,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                298463379,
                1718093079,
                1718596,
                1119699,
                298488495,
                2213765,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81zvh-micqmi5o4d8if6",
              "images": [
                "sg-11134201-81zvh-micqmi5o4d8if6",
                "sg-11134201-81zvo-micqmieaxvk778",
                "sg-11134201-81zv1-micqmiq104jrdc",
                "sg-11134201-81ztq-micqmizb2uwyd9",
                "sg-11134201-81ztv-micqmj7b5hqf2e",
                "sg-11134201-81zw1-micqmjf903r89e",
                "sg-11134201-81zwi-micqmjo2x9flea",
                "sg-11134201-81zuw-micqmjveaqrsf8",
                "sg-11134201-81zw4-micqmk2hehae0d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765955791,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 7100000000,
              "price_min": 7100000000,
              "price_max": 7100000000,
              "price_min_before_discount": 13500000000,
              "price_max_before_discount": 13500000000,
              "hidden_price_display": null,
              "price_before_discount": 13500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-47%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9b5-micqm0dpg2ys7f.16000041765955766.mp4",
                  "thumb_url": "sg-11110106-6v9b5-micqm0dpg2ys7f_cover",
                  "duration": 50,
                  "version": 2,
                  "vid": "sg-11110106-6v9b5-micqm0dpg2ys7f",
                  "formats": [
                    {
                      "format": 1600004,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9b5-micqm0dpg2ys7f.16000041765955766.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9b5-micqm0dpg2ys7f.16000041765955766.mp4",
                      "width": 360,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9b5-micqm0dpg2ys7f.default.mp4",
                    "width": 360,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Model",
                  "options": [
                    "5pcs(ordinary)",
                    "5pcs(upgrade)",
                    "SUPER LENGKAP 5pcs",
                    "7pcs",
                    "SUPER LENGKAP 7pcs"
                  ],
                  "images": [
                    "sg-11134201-81zuv-micqmk8trz7s7c",
                    "sg-11134201-81zul-micqmkejvda973",
                    "sg-11134201-81zuv-micqmkl62vwm19",
                    "sg-11134201-81zv3-micqmkvbx0jl30",
                    "sg-11134201-81zvw-micqml0u8vlz8e"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 390176207815394,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 766415322267648,
                "price": 7029000000,
                "strikethrough_price": 13500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1297553229365248,
                "discount_text": "-47%",
                "model_id": 395309312693,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1297553229365248,
                  "voucher_code": "UMAI80000",
                  "voucher_discount": 71000000,
                  "time_info": {
                    "start_time": 1764139860,
                    "end_time": 1772006100,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 13500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Umail.Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44953236991,
            "shopid": 758326353,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zvh-micqmi5o4d8if6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,1059154,1059152,822059908662278,825465608494624,825465608499232,825465608497696,298463379,1718093079,1718596,1119699,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":377,\"model_id\":395309312693,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zvh-micqmi5o4d8if6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,1059154,1059152,822059908662278,825465608494624,825465608499232,825465608497696,298463379,1718093079,1718596,1119699,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":377,\"model_id\":395309312693,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44953236991",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46703236677,
              "shopid": 1481276809,
              "name": "Silicone Protective Case Shell for Garmin Forerunner 165 Music Smart Watch Cover Soft Rubber Screen Protector Case Bumper Accessories Jam Tangan Smartwatch for Garmin Forerunner 165",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059154,
                1059152,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                1119699,
                1718596,
                700765096,
                298488495,
                2213765,
                298933384,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81zvk-micq6bqcewhz10",
              "images": [
                "sg-11134201-81zvk-micq6bqcewhz10",
                "sg-11134201-81zws-micq6c4cynlydf",
                "sg-11134201-81zuq-micq6cfrh4hs0f",
                "sg-11134201-81zwf-micq6dfb083mad",
                "sg-11134201-81ztr-micq6dwmptkxb4",
                "sg-11134201-81zvo-micq6edi1eyrb9",
                "sg-11134201-81zu6-micq6ev70jyac6",
                "sg-11134201-81zto-micq6fms6tq806",
                "sg-11134201-81zvw-micq6g0rrf2c41"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765955045,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2714000000,
              "price_min": 2714000000,
              "price_max": 2714000000,
              "price_min_before_discount": 5900000000,
              "price_max_before_discount": 5900000000,
              "hidden_price_display": null,
              "price_before_discount": 5900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v98p-mibl0r2ivwg016.16000081765885832.mp4",
                  "thumb_url": "sg-11110106-6v98p-mibl0r2ivwg016_cover",
                  "duration": 14,
                  "version": 2,
                  "vid": "sg-11110106-6v98p-mibl0r2ivwg016",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v98p-mibl0r2ivwg016.16000081765885832.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v98p-mibl0r2ivwg016.16000081765885832.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v98p-mibl0r2ivwg016.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Water duck",
                    "Red wine",
                    "Gray",
                    "Yellow",
                    "White",
                    "Black",
                    "Film"
                  ],
                  "images": [
                    "sg-11134201-81ztn-micq6gs8yghu89",
                    "sg-11134201-81zui-micq6hsb9af546",
                    "sg-11134201-81zu1-micq6ihqa0p366",
                    "sg-11134201-81zun-micq6jdxlfrb9c",
                    "sg-11134201-81zwh-micq6k3qmfwh23",
                    "sg-11134201-81zwa-micq6ksuvkli82",
                    "sg-11134201-81zv1-micq6lie5erne2"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Forerunner 165",
                    "Forerunner 165 Music"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372022693871686,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2714000000,
                "strikethrough_price": 5900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 410309235243,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5900000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 27.140",
                      "hidden_promotion_price": "Rp ?7.140",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SOLOLUP",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46703236677,
            "shopid": 1481276809,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zvk-micq6bqcewhz10\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059154,1059152,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1119699,1718596,700765096,298488495,2213765,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":378,\"model_id\":410309235243,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zvk-micq6bqcewhz10\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059154,1059152,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1119699,1718596,700765096,298488495,2213765,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":378,\"model_id\":410309235243,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46703236677",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40877302612,
              "shopid": 1589075157,
              "name": "Anti Gores PC Case Silicone Strap for Apple Watch 49mm IWatch Ultra 3 2 Series 11 10 9 8 7 6 5 4 SE 3 46 45 44 42mm Soft Rubber Bracelet Band Screen Protector Cover Tali Jam Tangan Smartwatch for I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                700765096,
                298488495,
                2213765,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-81zuk-micogsfo7u2q20",
              "images": [
                "sg-11134201-81zuk-micogsfo7u2q20",
                "sg-11134201-81zvk-micogssyns3mc9",
                "sg-11134201-81zut-micogtd3fgg8ce",
                "sg-11134201-81zu4-micogv74l79j0a",
                "sg-11134201-81zvg-micogwwve1vqab",
                "sg-11134201-81zwj-micogynnhukj84",
                "sg-11134201-81zua-micoh04vrpc272",
                "sg-11134201-81zuq-micoh1mudpfq8d",
                "sg-11134201-81zto-micoh2gpdloo19"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765952175,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2730000000,
              "price_min": 2730000000,
              "price_max": 2730000000,
              "price_min_before_discount": 5460000000,
              "price_max_before_discount": 5460000000,
              "hidden_price_display": null,
              "price_before_discount": 5460000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16000081705559534.mp4",
                  "thumb_url": "sg-11110106-7rbn4-lqn0t96nph5k36",
                  "duration": 50,
                  "version": 2,
                  "vid": "sg-11110106-6khyl-lqn0t3zxadyy3b",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16003221713054503.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16003221713054503.mp4",
                      "width": 640,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16004081706466302.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16004081706466302.mp4",
                      "width": 640,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16006711722601150.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16006711722601150.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16006731724120761.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16006731724120761.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16006591722982712.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16006591722982712.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16004091722982712.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16004091722982712.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16000081705559534.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16000081705559534.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16003241706298483.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16003241706298483.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16003251706298483.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16003251706298483.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16004111722982712.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16004111722982712.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16004101706466321.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.16004101706466321.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyl-lqn0t3zxadyy3b.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black(Strap Case)",
                    "White(Strap Case)",
                    "Red(Strap Case)",
                    "Star(Strap Case)",
                    "Pink Sand(Strap Case",
                    "DeepBlue(Strap Case)",
                    "Green(Strap Case)"
                  ],
                  "images": [
                    "sg-11134201-81zwk-micoh3ah69s308",
                    "sg-11134201-81zv0-micoh3sog8ozfb",
                    "sg-11134201-81zwm-micoh4aro2yrfd",
                    "sg-11134201-81zug-micoh4sc8hs380",
                    "sg-11134201-81zvi-micoh587i6fcec",
                    "sg-11134201-81ztc-micoh5ox4ow8ec",
                    "sg-11134201-81zvx-micoh65t2ps794"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "38mm",
                    "42mm",
                    "40mm",
                    "44mm",
                    "41mm",
                    "45mm",
                    "49mm",
                    "Series 11 10 42mm",
                    "Series 11 10 46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359068405608568,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718137130024960,
                "price": 2730000000,
                "strikethrough_price": 5460000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 335308923513,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5460000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MYAPULUA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40877302612,
            "shopid": 1589075157,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zuk-micogsfo7u2q20\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1119699,1718596,700765096,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":380,\"model_id\":335308923513,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zuk-micogsfo7u2q20\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1119699,1718596,700765096,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":380,\"model_id\":335308923513,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40877302612",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56053177229,
              "shopid": 1592077131,
              "name": "Film for Huawei Watch GT 6 5 4 46mm 41mm Tempered Glass Screen Protector / Soft Film All-around Protection Anti Gores Watch Protector Accessories Jam Tangan for Smartwatch Huawei Gt 5 6 Pro 46mm",
              "label_ids": [
                2018618,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                1718093079,
                1718596,
                1119699,
                700765096,
                298488495,
                2213652,
                2103651,
                2143613,
                2213765,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-822zi-mibmwg25dhq977",
              "images": [
                "sg-11134201-822zi-mibmwg25dhq977",
                "sg-11134201-822wn-mibmwgsnc4cj23",
                "sg-11134201-822z9-mibmwh6jzbigd0",
                "sg-11134201-822y7-mibmwhnszzsxae",
                "sg-11134201-822zo-mibmwi77wah3d0",
                "sg-11134201-822xh-mibmwijiisqu74",
                "sg-11134201-822xp-mibmwiycnabk74",
                "sg-11134201-822zl-mibmwjduhq0w4d",
                "sg-11134201-822zu-mibmwjw88v7ncc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765888999,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1316000000,
              "price_min": 1316000000,
              "price_max": 1316000000,
              "price_min_before_discount": 5440000000,
              "price_max_before_discount": 5440000000,
              "hidden_price_display": null,
              "price_before_discount": 5440000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-76%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "size",
                  "options": [
                    "Huawei GT 6 5 41mm",
                    "Huawei  GT 4 41mm",
                    "GT 6/5/4 46mm"
                  ],
                  "images": [
                    "sg-11134201-822x3-mibmwkln2kn700",
                    "sg-11134201-822wi-mibmwlc34dfs97",
                    "sg-11134201-82301-mibmwm3b864of3"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "color",
                  "options": [
                    "1*Tempered Glass",
                    " 1*Soft Film",
                    "2*Tempered Glass",
                    " 2*Soft Film"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359072125956385,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 1316000000,
                "strikethrough_price": 5440000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-76%",
                "model_id": 259120182851,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5440000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 13.160",
                      "hidden_promotion_price": "Rp ?3.160",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56053177229,
            "shopid": 1592077131,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822zi-mibmwg25dhq977\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1718093079,1718596,1119699,700765096,298488495,2213652,2103651,2143613,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":384,\"model_id\":259120182851,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822zi-mibmwg25dhq977\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1718093079,1718596,1119699,700765096,298488495,2213652,2103651,2143613,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":384,\"model_id\":259120182851,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56053177229",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48153178257,
              "shopid": 1207195651,
              "name": "Oudiobop Smart Watch S18 Original 2.01 HD-inch IP67 Waterproof  Curved TFT Screen Bluetooth Call Running Pace Custom Wallpaper Smartwatch Health Monitoring",
              "label_ids": [
                2018619,
                844931086908638,
                844931064601283,
                700005490,
                1049120,
                822059908662278,
                825465608497696,
                1428713,
                1718087960,
                298463379,
                1718093079,
                1718596,
                1119699,
                298488495,
                298933384,
                1015914,
                700190087,
                2213765,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224x-mjgi2ozqo7461f",
              "images": [
                "id-11134207-8224x-mjgi2ozqo7461f",
                "id-11134207-8224t-mjgi2ozj9b7rfc",
                "id-11134207-8224r-mjgi2ozjexhj42",
                "id-11134207-8224w-mjgi2ozjgc1zff",
                "id-11134207-8224p-mjgi2ozjc4cnb0",
                "id-11134207-8224o-mjgi2ozjdix32c",
                "id-11134207-8224u-mjgi2ozjaps714",
                "id-11134207-8224z-mjgi2ozj6i2v8e",
                "id-11134207-82250-mjgi2ozj7wnb07"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765871293,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 24600000000,
              "price_min": 24600000000,
              "price_max": 24600000000,
              "price_min_before_discount": 72000000000,
              "price_max_before_discount": 72000000000,
              "hidden_price_display": null,
              "price_before_discount": 72000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-66%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "S18 perak"
                  ],
                  "images": [
                    "id-11134207-8224o-mjgi2ozjhqmf0e"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 809133192839168,
                "price": 12300000000,
                "strikethrough_price": 72000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1332948306116608,
                "discount_text": "-66%",
                "model_id": 355304259539,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1332948306116608,
                  "voucher_code": "AGUN537",
                  "voucher_discount": 12300000000,
                  "time_info": {
                    "start_time": 1768359540,
                    "end_time": 1768967940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 20000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 72000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "oudiobop Toko Resmi",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48153178257,
            "shopid": 1207195651,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjgi2ozqo7461f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,700005490,1049120,822059908662278,825465608497696,1428713,1718087960,298463379,1718093079,1718596,1119699,298488495,298933384,1015914,700190087,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":385,\"model_id\":355304259539,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjgi2ozqo7461f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,700005490,1049120,822059908662278,825465608497696,1428713,1718087960,298463379,1718093079,1718596,1119699,298488495,298933384,1015914,700190087,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":385,\"model_id\":355304259539,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48153178257",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47653159700,
              "shopid": 297771167,
              "name": "GOOJODOQ 700mAh smart watch 2.01\" HD Large Display 24/7 Health Monitoring 3D Dynamic Cube UI Smart Notifications & Calls",
              "label_ids": [
                1668726,
                2018619,
                700700063,
                2018618,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1718093079,
                1119699,
                1718596,
                298488495,
                2213652,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1015914,
                700190087,
                298888358,
                298938357,
                2213765,
                298933384,
                2098629
              ],
              "image": "id-11134207-8224y-mj519cp635dx30",
              "images": [
                "id-11134207-8224y-mj519cp635dx30",
                "id-11134207-8224w-mj519cp5np5387",
                "id-11134207-8224o-mj519cp2yryb10",
                "id-11134207-8224o-mj519cpc69z8fb",
                "id-11134207-82251-mj519cqu0pon25",
                "id-11134207-8224w-mj519cr058ucca",
                "id-11134207-8224w-mj519cp1d6o219",
                "id-11134207-82252-mj519covmp6v85",
                "id-11134207-8224o-mj519cp306ird2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765853049,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 42,
              "view_count": null,
              "catid": 100013,
              "brand": "Goojodoq",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 27900000000,
              "price_min": 27900000000,
              "price_max": 27900000000,
              "price_min_before_discount": 60000000000,
              "price_max_before_discount": 60000000000,
              "hidden_price_display": null,
              "price_before_discount": 60000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venf-mj517kc6sw79f2.16000081767668565.mp4",
                  "thumb_url": "id-11110105-6venf-mj517kc6sw79f2_cover",
                  "duration": 41,
                  "version": 2,
                  "vid": "id-11110105-6venf-mj517kc6sw79f2",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venf-mj517kc6sw79f2.16000081767668565.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venf-mj517kc6sw79f2.16000081767668565.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venf-mj517kc6sw79f2.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black",
                    "Silver",
                    "Light gold",
                    "Rose gold"
                  ],
                  "images": [
                    "sg-11134201-822y5-mib1ix2m4nwhc0",
                    "sg-11134201-822yc-mib1ixav0r2be4",
                    "sg-11134201-822yh-mib1ixm7w9om75",
                    "sg-11134201-822zm-mib1iy31gnibed"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp45RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228241042587648,
                "price": 27400000000,
                "strikethrough_price": 60000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1322924900761620,
                "discount_text": "-54%",
                "model_id": 244119640220,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1322924900761620,
                  "voucher_code": "GOOJNEW66",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1767164640,
                    "end_time": 1774976340,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 6000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 60000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp45RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GOOJODOQ Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47653159700,
            "shopid": 297771167,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mj519cp635dx30\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1668726,2018619,700700063,2018618,1428713,1718087960,844931064601283,844931086908638,1718093079,1119699,1718596,298488495,2213652,1059152,1059154,822059908662278,825465608499232,825465608497696,1015914,700190087,298888358,298938357,2213765,298933384,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":387,\"model_id\":244119640220,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mj519cp635dx30\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1668726,2018619,700700063,2018618,1428713,1718087960,844931064601283,844931086908638,1718093079,1119699,1718596,298488495,2213652,1059152,1059154,822059908662278,825465608499232,825465608497696,1015914,700190087,298888358,298938357,2213765,298933384,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":387,\"model_id\":244119640220,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47653159700",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56953139284,
              "shopid": 1589172126,
              "name": "Sport Silicone Strap for Apple Watch Ultra/SE 3 2 IWatch Series 11 10 9 8 7 SE 6 5 4 3 2 1 49 46 41 45 40 44 38 42mm Band Belt Bracelet Wristbands Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                1718596,
                298488495,
                2213765,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-822yc-mib0xlb51slg1e",
              "images": [
                "sg-11134201-822yc-mib0xlb51slg1e",
                "sg-11134201-822z6-mib0xmf11n2bef",
                "sg-11134201-822yf-mib0xnz6xvk67c",
                "sg-11134201-822wo-mib0xoithkoxa9",
                "sg-11134201-822wk-mib0xpk08ydk8a",
                "sg-11134201-822xr-mib0xrr92ygx13",
                "sg-11134201-822yo-mib0xu7mrguf3d",
                "sg-11134201-822zs-mib0xwog8v7o85",
                "sg-11134201-822zx-mib0xz7jihhg27"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765852098,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3168000000,
              "price_min": 3168000000,
              "price_max": 3168000000,
              "price_min_before_discount": 4400000000,
              "price_max_before_discount": 4400000000,
              "hidden_price_display": null,
              "price_before_discount": 4400000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-28%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khxp-lry8yc9nddhkdc.16000081708418348.mp4",
                  "thumb_url": "sg-11110106-7rcea-lry8yfze3mx93c",
                  "duration": 13,
                  "version": 2,
                  "vid": "sg-11110106-6khxp-lry8yc9nddhkdc",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxp-lry8yc9nddhkdc.16003251713867567.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxp-lry8yc9nddhkdc.16003251713867567.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxp-lry8yc9nddhkdc.16003241713867567.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxp-lry8yc9nddhkdc.16003241713867567.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxp-lry8yc9nddhkdc.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "silver",
                    "black",
                    "Dark Indigo",
                    "Neon blue",
                    "Black Red Assorted",
                    "Blue Gray",
                    "antique",
                    "black white",
                    "English red",
                    "black gray",
                    "White Stone",
                    "lilac",
                    "Yellow Duck",
                    "Black Blue",
                    "Olive",
                    "Rainbow",
                    "Reactive Rainbow",
                    "midnight",
                    "orange night",
                    "City Green",
                    "Stone"
                  ],
                  "images": [
                    "sg-11134201-822zx-mib0y0mkt98ja3",
                    "sg-11134201-822yg-mib0y1iob0n656",
                    "sg-11134201-822zj-mib0y2x6aivbe7",
                    "sg-11134201-822xa-mib0y50nj9xe65",
                    "sg-11134201-822wl-mib0y5a4lfy8ab",
                    "sg-11134201-822zs-mib0y7y1eyo300",
                    "sg-11134201-822zv-mib0y9t1yqknf5",
                    "sg-11134201-822yb-mib0yarc8gzrf7",
                    "sg-11134201-822zv-mib0ybl5h79j1b",
                    "sg-11134201-822z2-mib0ycnubg1t7c",
                    "sg-11134201-822y3-mib0ydcujuo61f",
                    "sg-11134201-822xh-mib0ydv2euis8c",
                    "sg-11134201-822y8-mib0yeyqiya090",
                    "sg-11134201-822wl-mib0yfn0qhoma9",
                    "sg-11134201-822zr-mib0ygn5zzlwef",
                    "sg-11134201-822xb-mib0yh6mm4ub42",
                    "sg-11134201-822x5-mib0yhs0aj9c3b",
                    "sg-11134201-822wz-mib0yi96b09003",
                    "sg-11134201-822xv-mib0yirb4hdvfe",
                    "sg-11134201-822z4-mib0ykatq6f835",
                    "sg-11134201-822zm-mib0yl8mmu4n06"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 225296657956864,
                "price": 3168000000,
                "strikethrough_price": 4400000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-28%",
                "model_id": 350302786761,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4400000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Fulsaxad",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56953139284,
            "shopid": 1589172126,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822yc-mib0xlb51slg1e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":388,\"model_id\":350302786761,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822yc-mib0xlb51slg1e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":388,\"model_id\":350302786761,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56953139284",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56203136129,
              "shopid": 1538725061,
              "name": "JMotorShop Smart Tracker Mini GPS - Pelacak Posisi Real-time Mobil Motor Anak Hewan",
              "label_ids": [
                2018619,
                844931086908638,
                844931064601283,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1718596,
                298488495,
                298933384,
                1049147,
                1049112,
                700810080,
                1015914,
                700190087,
                1400285055,
                2213765,
                2023641
              ],
              "image": "id-11134207-8224w-miafoymn3apua2",
              "images": [
                "id-11134207-8224w-miafoymn3apua2",
                "id-11134207-8224p-miafoymnzls692",
                "id-11134207-8224p-miafoymmclxcce",
                "id-11134207-8224x-miafoymmxog751",
                "id-11134207-8224z-miafoymp5qtd53",
                "id-11134207-8224q-miafoympl72931"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765816664,
              "sold": 17,
              "historical_sold": 17,
              "liked": false,
              "liked_count": 18,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 12,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 14850000000,
              "price_min": 14850000000,
              "price_max": 14850000000,
              "price_min_before_discount": 33569900000,
              "price_max_before_discount": 33569900000,
              "hidden_price_display": null,
              "price_before_discount": 33569900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-56%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  12,
                  0,
                  0,
                  0,
                  0,
                  12
                ],
                "rcount_with_context": 9,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 809596730523648,
                "price": 14850000000,
                "strikethrough_price": 33569900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-56%",
                "model_id": 335301747652,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 33569900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 17,
                "rounded_local_monthly_sold_count": 17,
                "local_monthly_sold_count_text": "17",
                "rounded_display_sold_count": 17,
                "display_sold_count_text": "17"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "JMotorShop A",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc0LjEwNV97YjExYmEzYWY0ODU1ODA1MmE5Yjc5YzY4NDBjYTk4MDA6MDIwMDAwOTZlMjQ1OThhYTowMTAwMDFlMmFlMjY2ZDRlfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56203136129,
            "shopid": 1538725061,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-miafoymn3apua2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,822059908662278,825465608499232,825465608497696,1718093079,1718596,298488495,298933384,1049147,1049112,700810080,1015914,700190087,1400285055,2213765,2023641],\"matched_keywords\":[\"\"],\"merge_rank\":98,\"model_id\":335301747652,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-miafoymn3apua2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,822059908662278,825465608499232,825465608497696,1718093079,1718596,298488495,298933384,1049147,1049112,700810080,1015914,700190087,1400285055,2213765,2023641],\"matched_keywords\":[\"\"],\"merge_rank\":98,\"model_id\":335301747652,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56203136129",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49853135419,
              "shopid": 1207195651,
              "name": "Oudiobop Smart Watch J10 Original IP67 Waterproof 2.01 HD-inch Curved TFT Screen Bluetooth Call Running Pace Custom Wallpaper Smartwatch Health Monitoring",
              "label_ids": [
                2018619,
                844931086908638,
                844931064601283,
                700005490,
                1049120,
                822059908662278,
                825465608497696,
                1718087960,
                1428713,
                298463379,
                1718093079,
                1119699,
                1718596,
                298488495,
                298933384,
                1015914,
                700190087,
                2213765,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224p-mi9wd6qktp1kdf",
              "images": [
                "id-11134207-8224p-mi9wd6qktp1kdf",
                "id-11134207-8224p-mi9wd6qiheyvef",
                "id-11134207-8224p-mi9wd6qjt69t10",
                "id-11134207-8224z-mi9wd6qhnx1ef0",
                "id-11134207-8224r-mi9wd6qhpbluf4",
                "id-11134207-82250-mi9wd6qnczy857",
                "id-11134207-8224q-mi9wd6qqek8z71",
                "id-11134207-8224s-mi9wd6qosyys29"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765784452,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 35600000000,
              "price_min": 35600000000,
              "price_max": 35600000000,
              "price_min_before_discount": 83500000000,
              "price_max_before_discount": 83500000000,
              "hidden_price_display": null,
              "price_before_discount": 83500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-57%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "J10 hitam",
                    "J10 perak"
                  ],
                  "images": [
                    "id-11134207-8224w-mi9wd6qsxv5z60",
                    "id-11134207-8224z-mi9wd6qsz9qfaf"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 809133192839168,
                "price": 17800000000,
                "strikethrough_price": 83500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1332948306116608,
                "discount_text": "-57%",
                "model_id": 325299525369,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1332948306116608,
                  "voucher_code": "AGUN537",
                  "voucher_discount": 17800000000,
                  "time_info": {
                    "start_time": 1768359540,
                    "end_time": 1768967940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 20000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 83500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "oudiobop Toko Resmi",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49853135419,
            "shopid": 1207195651,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mi9wd6qktp1kdf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,700005490,1049120,822059908662278,825465608497696,1718087960,1428713,298463379,1718093079,1119699,1718596,298488495,298933384,1015914,700190087,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":389,\"model_id\":325299525369,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mi9wd6qktp1kdf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,700005490,1049120,822059908662278,825465608497696,1718087960,1428713,298463379,1718093079,1119699,1718596,298488495,298933384,1015914,700190087,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":389,\"model_id\":325299525369,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49853135419",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44553124762,
              "shopid": 1608190894,
              "name": "Good In Smartwatch Series S11 Pro with 2.3\" HD AMOLED GPS NFC Waterproof Bluetooth Call Jam Smartwatch Wanita Pria Monitor Detak Jantung Tekanan Darah wireless charging Dan Ganti Wallpapper Jam Tangan Wanita Jam Tangan Couple Jam Tangan Digital Wanita",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                700700063,
                2018619,
                298463379,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                1718596,
                298488495,
                1400285055,
                298933384,
                1015914,
                700190087,
                700810080,
                2213765,
                2023641,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224u-mi9v15g0jxfne6",
              "images": [
                "id-11134207-8224u-mi9v15g0jxfne6",
                "id-11134207-8224z-mi9l29xm5kaof9",
                "id-11134207-8224t-mi9l29xlzy0w0d",
                "id-11134207-8224p-mi9l29xlx4w052",
                "id-11134207-8224v-mi9l29xm45q80e",
                "id-11134207-8224v-mi9l29xlvqbkde",
                "id-11134207-8224r-mi9l29xm1clc6a",
                "id-11134207-82250-mi9l29xm2r5s62",
                "id-11134207-8224y-mi9l29xlyjgg4d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765781657,
              "sold": 24,
              "historical_sold": 24,
              "liked": false,
              "liked_count": 35,
              "view_count": null,
              "catid": 100013,
              "brand": "Good In",
              "cmt_count": 18,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 13000000000,
              "price_min": 13000000000,
              "price_max": 13000000000,
              "price_min_before_discount": 120000000000,
              "price_max_before_discount": 120000000000,
              "hidden_price_display": null,
              "price_before_discount": 120000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-89%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvi-mi9tya3zgtfl58.16000081765779782.mp4",
                  "thumb_url": "id-11110105-6vdvi-mi9tya3zgtfl58_cover",
                  "duration": 54,
                  "version": 2,
                  "vid": "id-11110105-6vdvi-mi9tya3zgtfl58",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvi-mi9tya3zgtfl58.16000081765779782.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvi-mi9tya3zgtfl58.16000081765779782.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvi-mi9tya3zgtfl58.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "S11-Black",
                    "S11-White",
                    "S11-Pink",
                    "S11-Blue",
                    "S10-Black",
                    "S10-Sliver",
                    "S10-Pink",
                    "S10-White",
                    "S9-Black",
                    "S9-Sliver",
                    "S9-Pink",
                    "S9-White",
                    "Black.",
                    "Sliver.",
                    "Pink.",
                    "Blue."
                  ],
                  "images": [
                    "id-11134207-8224z-mi9l29xm6yv4d3",
                    "id-11134207-8224y-mi9l29xm8dfka7",
                    "id-11134207-82252-mi9ui07z1erm64",
                    "id-11134207-8224x-mi9ui07z2tc20b",
                    "id-11134207-8224v-mi9ui07z47wi7d",
                    "id-11134207-8224z-mi9ui07z9u6a3c",
                    "id-11134207-82251-mi9ui07z5mgyff",
                    "id-11134207-8224y-mi9ui07z711e25",
                    "id-11134207-8224o-mi9v15fq6adfa2",
                    "id-11134207-8224v-mi9v15g07abnaf",
                    "id-11134207-8224v-mi9v15g08ow3e1",
                    "id-11134207-82251-mi9v15g0a3gj96",
                    "id-11134207-8224u-mi9v15g0bi0zbc",
                    "id-11134207-8224q-mi9v15g0cwlfba",
                    "id-11134207-8224x-mi9v15g0eb5vc6",
                    "id-11134207-8224z-mi9v15g0fpqbb7"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  18,
                  0,
                  0,
                  0,
                  0,
                  18
                ],
                "rcount_with_context": 15,
                "rcount_with_image": 15
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 405413048895350,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227962301726723,
                "price": 12500000000,
                "strikethrough_price": 120000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1332981676785664,
                "discount_text": "-89%",
                "model_id": 425299198982,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1332981676785664,
                  "voucher_code": "GOOD14846",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1768363560,
                    "end_time": 1776481560,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 120000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 24,
                "rounded_local_monthly_sold_count": 24,
                "local_monthly_sold_count_text": "24",
                "rounded_display_sold_count": 24,
                "display_sold_count_text": "24"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GOOD IN Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44553124762,
            "shopid": 1608190894,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mi9v15g0jxfne6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,700700063,2018619,298463379,1059152,1049122,1718093079,822059908662278,825465608497696,825465608499232,1119699,1718596,298488495,1400285055,298933384,1015914,700190087,700810080,2213765,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":390,\"model_id\":425299198982,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mi9v15g0jxfne6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,700700063,2018619,298463379,1059152,1049122,1718093079,822059908662278,825465608497696,825465608499232,1119699,1718596,298488495,1400285055,298933384,1015914,700190087,700810080,2213765,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":390,\"model_id\":425299198982,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44553124762",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51203100610,
              "shopid": 1562428989,
              "name": "Jam Tangan Pintar Pria Asli 100+ Olahraga IP68 Tahan Air Panggilan Bluetooth Deteksi Denyut Jantung Jam Tangan Pintar Militer",
              "label_ids": [
                298513322,
                2023641,
                2018619,
                700025282,
                1718087960,
                1428713,
                298463379,
                844931086908638,
                844931064601283,
                1049120,
                700005490,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                1718596,
                298488495,
                1015914,
                700190087,
                298933384,
                2213765,
                1400285055,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-822y4-mi9uj3zvwjya4e",
              "images": [
                "sg-11134201-822y4-mi9uj3zvwjya4e",
                "sg-11134201-822y1-mi9uj4c6q1hg3a",
                "sg-11134201-822z0-mi9uj4qg7gn784",
                "sg-11134201-822y8-mi9uj5b7ke8468",
                "sg-11134201-822zb-mi9uj5qo1pmrcb",
                "sg-11134201-822zr-mi9uj66rmjnq97",
                "sg-11134201-822zz-mi9uj6qtnuo6ac",
                "sg-11134201-822zb-mi9uj73pbh1gfc",
                "sg-11134201-822yu-mi9uj7ku77k221"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765780757,
              "sold": 41,
              "historical_sold": 42,
              "liked": false,
              "liked_count": 51,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 18,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 20330000000,
              "price_min": 20330000000,
              "price_max": 20330000000,
              "price_min_before_discount": 42800000000,
              "price_max_before_discount": 42800000000,
              "hidden_price_display": null,
              "price_before_discount": 42800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v99h-mi9uhifmearo36.16000081765780682.mp4",
                  "thumb_url": "sg-11110106-6v99h-mi9uhifmearo36_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "sg-11110106-6v99h-mi9uhifmearo36",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v99h-mi9uhifmearo36.16000081765780682.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v99h-mi9uhifmearo36.16000081765780682.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v99h-mi9uhifmearo36.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Hitam Tali karet",
                    "Hitam Tali jam loga"
                  ],
                  "images": [
                    "sg-11134201-822z1-mi9uj7ucpclj64",
                    "sg-11134201-822yq-mi9uj86e8m4hc3"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.944444444444445,
                "rating_count": [
                  18,
                  0,
                  0,
                  0,
                  1,
                  17
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 20330000000,
                "strikethrough_price": 42800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 395299131006,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 42800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 203.300",
                      "hidden_promotion_price": "Rp 2?3.300",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 42,
                "rounded_local_monthly_sold_count": 41,
                "local_monthly_sold_count_text": "41",
                "rounded_display_sold_count": 42,
                "display_sold_count_text": "42"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "FlashDeal Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51203100610,
            "shopid": 1562428989,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822y4-mi9uj3zvwjya4e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298513322,2023641,2018619,700025282,1718087960,1428713,298463379,844931086908638,844931064601283,1049120,700005490,1718093079,822059908662278,825465608499232,1119699,1718596,298488495,1015914,700190087,298933384,2213765,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":391,\"model_id\":395299131006,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822y4-mi9uj3zvwjya4e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298513322,2023641,2018619,700025282,1718087960,1428713,298463379,844931086908638,844931064601283,1049120,700005490,1718093079,822059908662278,825465608499232,1119699,1718596,298488495,1015914,700190087,298933384,2213765,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":391,\"model_id\":395299131006,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51203100610",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40827209756,
              "shopid": 1632555156,
              "name": "Original Samsung Galaxy Watch7 44mm Smartwatch, Sleep Apnea Monitoring Smartwatch for IOS & Android Jam Tangan Waterproof GPS Bluetooth Fitness Blood Pressure Blood Oxygen Sleep Monitoring Sport Garansi Resmi Smartwatch Indonesia",
              "label_ids": [
                2023641,
                844931064601283,
                844931086908638,
                1049112,
                1059151,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                298933384,
                1400285055,
                700810080,
                2018619,
                1015914,
                700190087,
                1428713,
                1718087960
              ],
              "image": "id-11134207-8224z-mi74tncdbwua68",
              "images": [
                "id-11134207-8224z-mi74tncdbwua68",
                "id-11134207-82250-mi74tncooo3le0",
                "id-11134207-82250-mi74tncoq2o1b3",
                "id-11134207-8224z-mi74tncorh8hcb",
                "id-11134207-8224p-mi74tncosvsx5e",
                "id-11134207-8224w-mi74tncouaddac",
                "id-11134207-8224r-mi74tncovoxtee",
                "id-11134207-8224o-mi74tncox3i950",
                "id-11134207-8224x-mi74tncon9j5ca"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765621516,
              "sold": 28,
              "historical_sold": 28,
              "liked": false,
              "liked_count": 36,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 10,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 52500000000,
              "price_min": 52500000000,
              "price_max": 52500000000,
              "price_min_before_discount": 66600000000,
              "price_max_before_discount": 66600000000,
              "hidden_price_display": null,
              "price_before_discount": 66600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-21%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemy-mi77nercrh8odb.16000081765621212.mp4",
                  "thumb_url": "id-11110105-6vemy-mi77nercrh8odb_cover",
                  "duration": 55,
                  "version": 2,
                  "vid": "id-11110105-6vemy-mi77nercrh8odb",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemy-mi77nercrh8odb.16000081765621212.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemy-mi77nercrh8odb.16000081765621212.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemy-mi77nercrh8odb.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Hitam",
                    "Preak",
                    "Hitam."
                  ],
                  "images": [
                    "id-11134207-8224v-mi74tncoyi2p0c",
                    "id-11134207-8224t-mi74tncozwn52e",
                    "id-11134207-8224w-mi77t7vmaqroa7"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  10,
                  0,
                  0,
                  0,
                  0,
                  10
                ],
                "rcount_with_context": 9,
                "rcount_with_image": 9
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228246495178753,
                "price": 50900000000,
                "strikethrough_price": 66600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1322940470018084,
                "discount_text": "-21%",
                "model_id": 282252383113,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1322940470018084,
                  "voucher_code": "GITBZ1933",
                  "voucher_discount": 1600000000,
                  "time_info": {
                    "start_time": 1767166080,
                    "end_time": 1775205300,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50800000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 66600000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 28,
                "rounded_local_monthly_sold_count": 28,
                "local_monthly_sold_count_text": "28",
                "rounded_display_sold_count": 28,
                "display_sold_count_text": "28"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "3C Smart watch Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40827209756,
            "shopid": 1632555156,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mi74tncdbwua68\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,844931064601283,844931086908638,1049112,1059151,1718093079,822059908662278,825465608499232,1119699,298933384,1400285055,700810080,2018619,1015914,700190087,1428713,1718087960],\"matched_keywords\":[\"\"],\"merge_rank\":397,\"model_id\":282252383113,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mi74tncdbwua68\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,844931064601283,844931086908638,1049112,1059151,1718093079,822059908662278,825465608499232,1119699,298933384,1400285055,700810080,2018619,1015914,700190087,1428713,1718087960],\"matched_keywords\":[\"\"],\"merge_rank\":397,\"model_id\":282252383113,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40827209756",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48803057092,
              "shopid": 1472939667,
              "name": "Samsung Smartwatch 4G 5G Rotary Kamera Video Call | RAM 4 / 64GB | Bisa Nonton Youtube TikTok | Wifi | PlayStore | GPS | NFC | Goole Play | AI Voice | Health Monitoring | Wireless Charge Sport Jam Tangan Wanita Smart Watch Pria Jam Tangan Couple",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059151,
                1049112,
                822059908662278,
                825465608499232,
                1718093079,
                1119699,
                1015914,
                700190087,
                298933384,
                1400285055,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224p-mi6zw5mwepdz90",
              "images": [
                "id-11134207-8224p-mi6zw5mwepdz90",
                "id-11134207-8224t-mi6zw5mwlq8754",
                "id-11134207-8224x-mi6zw5mwn4sna4",
                "id-11134207-8224z-mi6zw5mwojd309",
                "id-11134207-8224u-mi6zw5mwpxxj60",
                "id-11134207-8224q-mi6zw5mwg3yf10",
                "id-11134207-82252-mi6zw5mwhiive3",
                "id-11134207-8224w-mi6zw5mwix3b6a",
                "id-11134207-8224r-mi6zw5mwkbnr01"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765615065,
              "sold": 32,
              "historical_sold": 33,
              "liked": false,
              "liked_count": 91,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 17,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 85800000000,
              "price_min": 85800000000,
              "price_max": 85800000000,
              "price_min_before_discount": 169900000000,
              "price_max_before_discount": 169900000000,
              "hidden_price_display": null,
              "price_before_discount": 169900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-49%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv4-mi70nvveou12b8.16000081765609477.mp4",
                  "thumb_url": "id-11110105-6vdv4-mi70nvveou12b8_cover",
                  "duration": 58,
                  "version": 2,
                  "vid": "id-11110105-6vdv4-mi70nvveou12b8",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv4-mi70nvveou12b8.16000081765609477.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mi70nvveou12b8.16000081765609477.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mi70nvveou12b8.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Grey",
                    "black."
                  ],
                  "images": [
                    "id-11134207-82251-mi6zw5mwrchz7e",
                    "id-11134207-82251-mi73ycttjm6bf5",
                    "id-11134207-8224s-mi73ycts28lk73"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  17,
                  0,
                  0,
                  0,
                  0,
                  17
                ],
                "rcount_with_context": 9,
                "rcount_with_image": 9
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228231680901122,
                "price": 83800000000,
                "strikethrough_price": 169900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1301234603278336,
                "discount_text": "-49%",
                "model_id": 380292309646,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1301234603278336,
                  "voucher_code": "98S5Z1889",
                  "voucher_discount": 2000000000,
                  "time_info": {
                    "start_time": 1764578520,
                    "end_time": 1772617800,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 60800000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 169900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 33,
                "rounded_local_monthly_sold_count": 32,
                "local_monthly_sold_count_text": "32",
                "rounded_display_sold_count": 33,
                "display_sold_count_text": "33"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GarudaX Watch",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48803057092,
            "shopid": 1472939667,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mi6zw5mwepdz90\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059151,1049112,822059908662278,825465608499232,1718093079,1119699,1015914,700190087,298933384,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":398,\"model_id\":380292309646,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mi6zw5mwepdz90\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059151,1049112,822059908662278,825465608499232,1718093079,1119699,1015914,700190087,298933384,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":398,\"model_id\":380292309646,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48803057092",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43077201927,
              "shopid": 1136417345,
              "name": "UltraWatch Pro Series 11 Smartwatch Pro11-LED-Display Bluetooth Call Wireless Charging Ganti Wallpaper Jam Tangan",
              "label_ids": [
                2018619,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1015914,
                700190087,
                298933384,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-822yh-mi5tc5p4zdoj4f",
              "images": [
                "sg-11134201-822yh-mi5tc5p4zdoj4f",
                "sg-11134201-822zy-mi5tc60td6o042",
                "sg-11134201-822y0-mi5tc6825yiobd",
                "sg-11134201-822yz-mi5tc6mdejnm94",
                "sg-11134201-822y1-mi5tc6zlxr0m66",
                "sg-11134201-822y4-mi5tc7a9x05g52",
                "sg-11134201-822xx-mi5tc7l3h7nm40"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765536611,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 18800000000,
              "price_min": 18800000000,
              "price_max": 18800000000,
              "price_min_before_discount": 44000000000,
              "price_max_before_discount": 44000000000,
              "hidden_price_display": null,
              "price_before_discount": 44000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-57%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "White",
                    "Black",
                    "Orange"
                  ],
                  "images": [
                    "sg-11134201-822xt-mi5tc7v3b0ub6c",
                    "sg-11134201-822xy-mi5tc83rj3lvb7",
                    "sg-11134201-822yr-mi5tc8bbj0g4b1"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 820889734661120,
                "price": 18300000000,
                "strikethrough_price": 44000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1333116514222080,
                "discount_text": "-57%",
                "model_id": 287250176686,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1333116514222080,
                  "voucher_code": "ALISHZ001",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1768379580,
                    "end_time": 1775640780,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 13000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 44000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Store.Alisha",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43077201927,
            "shopid": 1136417345,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822yh-mi5tc5p4zdoj4f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1015914,700190087,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":403,\"model_id\":287250176686,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822yh-mi5tc5p4zdoj4f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1015914,700190087,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":403,\"model_id\":287250176686,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43077201927",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42677192146,
              "shopid": 1628092647,
              "name": "SAT  IOS GPS Tracker Mini Anti Lost, Pencari Kunci & Barang Hilang untuk Praktis Ringan",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                298463379,
                700005490,
                1049120,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                298933384,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224r-mi5n54du3a4m1b",
              "images": [
                "id-11134207-8224r-mi5n54du3a4m1b",
                "id-11134207-8224r-mi5n54dtz2fa68",
                "id-11134207-8224y-mi5n54du0gzqf7",
                "id-11134207-8224o-mi5n54du1vk6ec",
                "id-11134207-8224r-mi5n54du4op2ad",
                "id-11134207-8224p-mi5n54dtclc0e2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765530883,
              "sold": 3,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 8,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 13736900000,
              "price_min": 13736900000,
              "price_max": 13736900000,
              "price_min_before_discount": 31000000000,
              "price_max_before_discount": 31000000000,
              "hidden_price_display": null,
              "price_before_discount": 31000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-56%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvj-mi5omyvzol538f.16000081765528714.mp4",
                  "thumb_url": "id-11110105-6vdvj-mi5omyvzol538f_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6vdvj-mi5omyvzol538f",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvj-mi5omyvzol538f.16000081765528714.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvj-mi5omyvzol538f.16000081765528714.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvj-mi5omyvzol538f.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "hitam-ios",
                    "Putih-ios",
                    "hitam-Android",
                    "Putih-Android"
                  ],
                  "images": [
                    "id-11134207-8224w-mibdfgbquqkh5f",
                    "id-11134207-8224w-mibdfgbqw54x9e",
                    "id-11134207-8224o-mibdfgbqxjpd88",
                    "id-11134207-8224r-mibdfgbqyy9t04"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 380416993538544,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 13486900000,
                "strikethrough_price": 31000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1329558579331072,
                "discount_text": "-56%",
                "model_id": 380304584582,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1329558579331072,
                  "voucher_code": "SAHA23123",
                  "voucher_discount": 250000000,
                  "time_info": {
                    "start_time": 1767955500,
                    "end_time": 1768409940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 9000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 31000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 134.869",
                      "hidden_promotion_price": "Rp 1?4.869",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "sahabatgelas",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42677192146,
            "shopid": 1628092647,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mi5n54du3a4m1b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,700005490,1049120,1718093079,822059908662278,825465608499232,1119699,298933384,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":125,\"model_id\":380304584582,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mi5n54du3a4m1b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,700005490,1049120,1718093079,822059908662278,825465608499232,1119699,298933384,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":125,\"model_id\":380304584582,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42677192146",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26593789148,
              "shopid": 1207195651,
              "name": "Oudiobop Smart Watch LC18 New IP68 Waterproof 2.01-inch Curved IPS Screen Bluetooth Call Running Pace Custom Wallpaper Health Monitoring Smartwatch Wanita",
              "label_ids": [
                2018619,
                844931064601283,
                844931086908638,
                1718087960,
                1428713,
                298463379,
                1718093079,
                1119699,
                298933384,
                700005490,
                1049120,
                822059908662278,
                825465608497696,
                1400285055,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82251-mj51t35tih36e1",
              "images": [
                "id-11134207-82251-mj51t35tih36e1",
                "id-11134207-8224u-mj58fvuvdhc17a",
                "id-11134207-8224q-mj58fvuvhp1d44",
                "id-11134207-82251-mj58fvuvgagxf2",
                "id-11134207-8224s-mj58fvuvevwhd8",
                "id-11134207-8224y-mj58fvuvj3lt2d",
                "id-11134207-8224o-mj58fvuvki6988",
                "id-11134207-82250-mj5c6cot5urn15",
                "id-11134207-8224w-mj58fvuvlwqp96"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765519768,
              "sold": 8,
              "historical_sold": 8,
              "liked": false,
              "liked_count": 8,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 7,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 39200000000,
              "price_min": 39200000000,
              "price_max": 39200000000,
              "price_min_before_discount": 92000000000,
              "price_max_before_discount": 92000000000,
              "hidden_price_display": null,
              "price_before_discount": 92000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-57%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venf-mj5b5ha8fsw2d4.16000031767685287.mp4",
                  "thumb_url": "id-11110105-6venf-mj5b5ha8fsw2d4_cover",
                  "duration": 16,
                  "version": 2,
                  "vid": "id-11110105-6venf-mj5b5ha8fsw2d4",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venf-mj5b5ha8fsw2d4.16000031767685287.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venf-mj5b5ha8fsw2d4.16000031767685287.mp4",
                      "width": 480,
                      "height": 480
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venf-mj5b5ha8fsw2d4.default.mp4",
                    "width": 480,
                    "height": 480
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "LC18 Hitam",
                    "LC18 perak"
                  ],
                  "images": [
                    "id-11134207-82252-mj5c6cp9tn9eaa",
                    "id-11134207-82251-mj5c6cp9v1tu4f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  7,
                  0,
                  0,
                  0,
                  0,
                  7
                ],
                "rcount_with_context": 6,
                "rcount_with_image": 6
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 809133192839168,
                "price": 19600000000,
                "strikethrough_price": 92000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1332948306116608,
                "discount_text": "-57%",
                "model_id": 380287380213,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1332948306116608,
                  "voucher_code": "AGUN537",
                  "voucher_discount": 19600000000,
                  "time_info": {
                    "start_time": 1768359540,
                    "end_time": 1768967940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 20000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 92000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 8,
                "rounded_local_monthly_sold_count": 8,
                "local_monthly_sold_count_text": "8",
                "rounded_display_sold_count": 8,
                "display_sold_count_text": "8"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "oudiobop Toko Resmi",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26593789148,
            "shopid": 1207195651,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj51t35tih36e1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1718087960,1428713,298463379,1718093079,1119699,298933384,700005490,1049120,822059908662278,825465608497696,1400285055,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":404,\"model_id\":380287380213,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj51t35tih36e1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1718087960,1428713,298463379,1718093079,1119699,298933384,700005490,1049120,822059908662278,825465608497696,1400285055,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":404,\"model_id\":380287380213,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26593789148",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53202976835,
              "shopid": 1589172126,
              "name": "Sport Rubber Strap for Apple Watch IWatch Ultra/SE 3 2 Series 11 10 9 8 7 6 5 4 49 45 46 44 42 41 40 38mm Soft Silicone Belt Bracelet Band Accessories Tali Jam Tangan Smartwatch for I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                700810080,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-822zo-mi5d9b5iu96pae",
              "images": [
                "sg-11134201-822zo-mi5d9b5iu96pae",
                "sg-11134201-822yu-mi5d9bi9urk798",
                "sg-11134201-822xd-mi5d9bvuu0hwf5",
                "sg-11134201-822xf-mi5d9c7prugwaf",
                "sg-11134201-822xu-mi5d9cinmhafed",
                "sg-11134201-822ya-mi5d9cvq3x1d0a",
                "sg-11134201-822zn-mi5d9d74p8nb62",
                "sg-11134201-822zv-mi5d9dfnnqbs51",
                "sg-11134201-822x3-mi5d9dodyarn11"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765509578,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1710000000,
              "price_min": 1710000000,
              "price_max": 1710000000,
              "price_min_before_discount": 4300000000,
              "price_max_before_discount": 4300000000,
              "hidden_price_display": null,
              "price_before_discount": 4300000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-60%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16000081704279754.mp4",
                  "thumb_url": "sg-11110106-7rbms-lq1vq1xsp7oacb",
                  "duration": 43,
                  "version": 2,
                  "vid": "sg-11110106-6khxj-lq1vpu95tgl68f",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16003221712589772.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16003221712589772.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16004081714154017.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16004081714154017.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16002401714154444.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16002401714154444.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600264,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16002641714154542.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16002641714154542.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16006731724180949.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16006731724180949.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16006711722578971.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16006711722578971.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16002411714154460.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16002411714154460.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600265,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16002651714154557.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16002651714154557.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16004091714154033.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16004091714154033.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16006591740570294.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16006591740570294.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600266,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16002661714154557.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16002661714154557.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16000081704279754.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16000081704279754.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16003251709304719.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16003251709304719.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16003241709304719.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16003241709304719.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600267,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16002671714154557.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16002671714154557.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600268,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16002681714154557.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16002681714154557.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16004101714154034.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16004101714154034.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16004111714154033.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16004111714154033.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16005581709304719.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16005581709304719.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16005681714154033.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.16005681714154033.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxj-lq1vpu95tgl68f.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Star",
                    "white",
                    "Black",
                    "Brown",
                    "Chocolate",
                    "purple",
                    "Pine Green",
                    "Wine Red",
                    "Navy Blue",
                    "Lavender",
                    "pink",
                    "grey",
                    "Cherry"
                  ],
                  "images": [
                    "sg-11134201-822xj-mi5d9dx3me4m8a",
                    "sg-11134201-822xc-mi5d6o5g83k2f7",
                    "sg-11134201-822xw-mi5d6obcohs3af",
                    "sg-11134201-822y9-mi5d9eoi5vd30c",
                    "sg-11134201-822zt-mi5d9ewx9cea39",
                    "sg-11134201-822xg-mi5d9f5knx8i2e",
                    "sg-11134201-822xm-mi5d9fez5fd4dd",
                    "sg-11134201-822yl-mi5d9fxhmhoje8",
                    "sg-11134201-822ye-mi5d9g4wxssk72",
                    "sg-11134201-822zk-mi5d9ggfqtqbf5",
                    "sg-11134201-822zm-mi5d9gq8wft2c9",
                    "sg-11134201-822wp-mi5d9gwozdogde",
                    "sg-11134201-822wo-mi5d9h4yhxxf80"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 1710000000,
                "strikethrough_price": 4300000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-60%",
                "model_id": 282248866035,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4300000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 17.100",
                      "hidden_promotion_price": "Rp ?7.100",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Fulsaxad",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53202976835,
            "shopid": 1589172126,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822zo-mi5d9b5iu96pae\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,700810080,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":405,\"model_id\":282248866035,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822zo-mi5d9b5iu96pae\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,700810080,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":405,\"model_id\":282248866035,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53202976835",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50902976394,
              "shopid": 1589172126,
              "name": "Rubber Band Strap + PC Case for Redmi Watch 6 5 4 Silicone Belt Bracelet Anti Gores Screen Protector Bumper Cover Accessories Tali Jam Tangan Smartwatch for Xiaomi Redmi Watch 6 5 4",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                700810080,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-81zue-mifdb2ytfll009",
              "images": [
                "sg-11134201-81zue-mifdb2ytfll009",
                "sg-11134201-822wv-mi5c8vbrs54w55",
                "sg-11134201-822zx-mi5c8vtl4lq9e5",
                "sg-11134201-822wg-mi5c8w3fezuu15",
                "sg-11134201-822wg-mi5c8wfbg45e9d",
                "sg-11134201-822z7-mi5c8wok1gxsdb",
                "sg-11134201-822z9-mi5c8x091u6g20",
                "sg-11134201-822xi-mi5c8x9q172fed",
                "sg-11134201-822y8-mi5c1rejfp4x17"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765507884,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3667000000,
              "price_min": 3667000000,
              "price_max": 3667000000,
              "price_min_before_discount": 5000000000,
              "price_max_before_discount": 5000000000,
              "hidden_price_display": null,
              "price_before_discount": 5000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-27%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.16000081754637246.mp4",
                  "thumb_url": "sg-11110106-6kioc-md5rgbyovjdycb_cover",
                  "duration": 37,
                  "version": 2,
                  "vid": "sg-11110106-6kioc-md5rgbyovjdycb",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.16000081754637246.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.16000081754637246.mp4",
                      "width": 1280,
                      "height": 672
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.default.mp4",
                    "width": 1028,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Clear Lemon",
                    "Transparent teal",
                    "White Transparent",
                    "Purple transparent",
                    "Red Transparent",
                    "green transparent",
                    "Star orange",
                    "Silver Blue stretch",
                    "Silver coconut ash",
                    "Starlight",
                    "Blue ink blue ink",
                    "Black Black",
                    "Light powder",
                    "Lemon",
                    "Blue stretch",
                    "Orange color",
                    "Blue Ink",
                    "teal",
                    "Soft powder",
                    "White color",
                    "Purple color",
                    "Red color",
                    "White Ivory",
                    "Dark green",
                    "grey",
                    "Black color",
                    "Rose powder",
                    "Midnight blue",
                    "Star light color",
                    "Silver color",
                    "Black 1",
                    "Clear Color"
                  ],
                  "images": [
                    "sg-11134201-822y2-mi5c8xysg9hc37",
                    "sg-11134201-822yn-mi5c8ya0datg70",
                    "sg-11134201-822wq-mi5c8ysndb0ge8",
                    "sg-11134201-822zi-mi5c8z2r0tfs67",
                    "sg-11134201-822xy-mi5c8zcip0cnf9",
                    "sg-11134201-822yf-mi5c8zt8a5ts92",
                    "sg-11134201-822wu-mi5c903zm7sx03",
                    "sg-11134201-822z1-mi5c90edx79f02",
                    "sg-11134201-822xe-mi5c90n4omiwc6",
                    "sg-11134201-822xu-mi5c90z3lqfafe",
                    "sg-11134201-822wm-mi5c1u74w6bnb2",
                    "sg-11134201-822xm-mi5c91stvmdga3",
                    "sg-11134201-822zx-mi5c924seolc79",
                    "sg-11134201-822yy-mi5c92ddifie8c",
                    "sg-11134201-822xg-mi5c92orsgzm1b",
                    "sg-11134201-822yo-mi5c92wxhf5u63",
                    "sg-11134201-822zb-mi5c9376vdhc73",
                    "sg-11134201-822yi-mi5c93guivwn43",
                    "sg-11134201-822zv-mi5c93qt0xs4ed",
                    "sg-11134201-822xl-mi5c1wkl6n7n7a",
                    "sg-11134201-822xu-mi5c94cfzoxz3f",
                    "sg-11134201-822yy-mi5c94klvmdcda",
                    "sg-11134201-822y6-mi5c1x97onif5a",
                    "sg-11134201-822wi-mi5c952xg0le3f",
                    "sg-11134201-822y9-mi5c95awjj7r68",
                    "sg-11134201-822zn-mi5c95jmvi838f",
                    "sg-11134201-822wk-mi5c95tahp8m59",
                    "sg-11134201-822zp-mi5c9664pclkcb",
                    "sg-11134201-822xe-mi5c96esyvi9a7",
                    "sg-11134201-822wk-mi5c96nwj11f5a",
                    "sg-11134201-822zf-mi5c96wnpwjq61",
                    "sg-11134201-822yi-mi5c976zwzr558"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 6",
                    "Redmi Watch 5",
                    "Redmi Watch 4"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 3667000000,
                "strikethrough_price": 5000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-27%",
                "model_id": 380286500776,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 36.670",
                      "hidden_promotion_price": "Rp ?6.670",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Fulsaxad",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50902976394,
            "shopid": 1589172126,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zue-mifdb2ytfll009\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,700810080,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":406,\"model_id\":380286500776,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zue-mifdb2ytfll009\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,700810080,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":406,\"model_id\":380286500776,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50902976394",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49602995826,
              "shopid": 1589172126,
              "name": "Anti Gores Tempered Glass PC /TPU/ Hollow PC Case for Huawei Wacth Fit 4 / Huawei Watch Fit 4 Pro Screen Protector Bumper Cover Accessories Jam Tangan Smartwatch for Huawei Fit 4/4Pro",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1119699,
                700810080,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-822z0-mi5akwyimdjcb6",
              "images": [
                "sg-11134201-822z0-mi5akwyimdjcb6",
                "sg-11134201-822wx-mi5akxyatcsjb0",
                "sg-11134201-822wh-mi5akymdhr0hd0",
                "sg-11134201-822xw-mi5akz9c0pa9be",
                "sg-11134201-822ws-mi5akzth7tvnf9",
                "sg-11134201-822zn-mi5al0bllt6r6b",
                "sg-11134201-822zl-mi5al0w951j8d1",
                "sg-11134201-822yx-mi5al1fakruod6",
                "sg-11134201-822zi-mi5al1s4fton40"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765505101,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2530000000,
              "price_min": 2530000000,
              "price_max": 2530000000,
              "price_min_before_discount": 5500000000,
              "price_max_before_discount": 5500000000,
              "hidden_price_display": null,
              "price_before_discount": 5500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Transparent 1",
                    "Silver color 1",
                    "Black 1",
                    "Black plated 1",
                    "White Ivory 1",
                    "Pink sakura 1",
                    "Green Pine needle 1",
                    "Blue 1",
                    "Titanium steel 2",
                    "Starlight 2",
                    "Sampanye emas 2",
                    "Green Pine needle 2",
                    "Midnight blue 2",
                    "Black 2",
                    "Transparent 3",
                    "Silver color 3",
                    "Black 3",
                    "Gold rose gold 3",
                    "Gold 3",
                    "Starlight 3",
                    "Rose powder 3",
                    "Transparent 4",
                    "Black 4",
                    "Silver color 4",
                    "Rose powder 4",
                    "Midnight blue 4",
                    "Starlight 4",
                    "Clear white 5",
                    "Black transparent 5",
                    "Orange bening 5",
                    "Clear Blue 5",
                    "Purple Bening 5",
                    "Transparent 6",
                    "Silver color 6",
                    "Black 6",
                    "Space Gray 6",
                    "Gold rose gold 6",
                    "Pink 6",
                    "Gold 6",
                    "Midnight blue 6",
                    "Red 7",
                    "Pink 7",
                    "Purple 7",
                    "Starlights 7",
                    "Gold 7",
                    "Gold rose gold 7",
                    "Black 7",
                    "Silver color 7",
                    "Film 8"
                  ],
                  "images": [
                    "sg-11134201-822x3-mi5al29h5wci31",
                    "sg-11134201-8225n-mhlmrh62ct1eb1",
                    "sg-11134201-822x4-mi5al35h0zd37a",
                    "sg-11134201-822xu-mi5al3ms5gqw3c",
                    "sg-11134201-822ys-mi5al42f84jo2c",
                    "sg-11134201-822y9-mi5al4geoi6f5c",
                    "sg-11134201-822wt-mi5al4zndjpe74",
                    "sg-11134201-822y7-mi5al5dlkz5w2d",
                    "sg-11134201-82300-mi5al61lu8ljc3",
                    "sg-11134201-822x6-mi5al6dr04y09e",
                    "sg-11134201-822wg-mi5al6rjmp6se9",
                    "sg-11134201-822xc-mi5al76ohds6bd",
                    "sg-11134201-822wl-mi5al7nhi3nm32",
                    "sg-11134201-822wn-mi5al8157ocg5d",
                    "sg-11134201-82284-mhvlbpu3aneo10",
                    "sg-11134201-822yb-mi5al8wm9pmr7e",
                    "sg-11134201-822xb-mi5al9c0j09480",
                    "sg-11134201-8225v-mhvlbr7bpibkfa",
                    "sg-11134201-822z1-mi5ala49kz5y64",
                    "sg-11134201-8224w-mhlmrlugc7b62f",
                    "sg-11134201-82267-mhvlbse2zi0w68",
                    "sg-11134201-822xg-mi5albayd2iq67",
                    "sg-11134201-822wx-mi5albjthrsy09",
                    "sg-11134201-822wy-mi5albu4ei9s88",
                    "sg-11134201-8226c-mhlmro452ww313",
                    "sg-11134201-822yu-mi5alciyqt4y40",
                    "sg-11134201-822xb-mi5alcykc6iwd0",
                    "sg-11134201-8227h-mhlmrpax6eipcf",
                    "sg-11134201-822x0-mi5aldqjaccn6d",
                    "sg-11134201-822z7-mi5aldz5k6pu58",
                    "sg-11134201-822yx-mi5aledxf5s307",
                    "sg-11134201-822xn-mi5alesow4qo72",
                    "sg-11134201-822zx-mi5alf61prepdd",
                    "sg-11134201-822x6-mi5alfp5rnd0fc",
                    "sg-11134201-822xk-mi2g792z0jyc58",
                    "sg-11134201-822zo-mi5algkyc26c1f",
                    "sg-11134201-822wu-mi5algynn6kj33",
                    "sg-11134201-822zf-mi5alhf13fuu41",
                    "sg-11134201-822y5-mi5alhx683yf56",
                    "sg-11134201-822xu-mi5ali5wioe851",
                    "sg-11134201-822ws-mi5aliopzuvc13",
                    "sg-11134201-822xp-mi5alj18qkuf41",
                    "sg-11134201-822zr-mi5aljkklb7r90",
                    "sg-11134201-822wx-mi5aljzp0mpy22",
                    "sg-11134201-822ya-mi5alkeamuwwd4",
                    "sg-11134201-822y6-mi5alkt2dkoz7c",
                    "sg-11134201-822wh-mi5all8wv7k8f2",
                    "sg-11134201-822zl-mi5alluiql8jbd",
                    "sg-11134201-822zn-mi5almcx8dmp71"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei Fit 4",
                    "Huawei Fit 4 Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2530000000,
                "strikethrough_price": 5500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 385286307785,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 25.300",
                      "hidden_promotion_price": "Rp ?5.300",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Fulsaxad",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49602995826,
            "shopid": 1589172126,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822z0-mi5akwyimdjcb6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,1119699,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":407,\"model_id\":385286307785,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822z0-mi5akwyimdjcb6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,1119699,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":407,\"model_id\":385286307785,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49602995826",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52352958123,
              "shopid": 1086626313,
              "name": "Luxe + CE5 + Custom Watchface + Spunbond JETE",
              "label_ids": [
                1400066568,
                700700063,
                2018618,
                2153644,
                298463379,
                1049141,
                700005499,
                1049127,
                1059156,
                1049130,
                700005506,
                1049156,
                1049117,
                1059152,
                1049116,
                1049112,
                1049126,
                1049135,
                700005507,
                700005489,
                700005503,
                822059908662278,
                825465608494624,
                825465608499232,
                834403089593352,
                825465608497696,
                2048660,
                2048661,
                825465608493600,
                1718093079,
                844931064601283,
                1718087960,
                1428713,
                1119699,
                700765096,
                2213652,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224s-mhx1g55d1u6ae9",
              "images": [
                "id-11134207-8224s-mhx1g55d1u6ae9",
                "id-11134207-8224x-mi4rn6j6z0n7b4",
                "id-11134207-8224u-mi4rn6j4pjpj57"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765473378,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "JETE",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 70990000000,
              "price_min": 70990000000,
              "price_max": 70990000000,
              "price_min_before_discount": 145980000000,
              "price_max_before_discount": 145980000000,
              "hidden_price_display": null,
              "price_before_discount": 145980000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-51%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 778696756102144,
                "price": 68990000000,
                "strikethrough_price": 145980000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1328653733085184,
                "discount_text": "-51%",
                "model_id": 440285424845,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1328653733085184,
                  "voucher_code": "JETEJNR4",
                  "voucher_discount": 2000000000,
                  "time_info": {
                    "start_time": 1767847200,
                    "end_time": 1770742740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 30000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 145980000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "JETE Authorized Store Bandung",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52352958123,
            "shopid": 1086626313,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhx1g55d1u6ae9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,700700063,2018618,2153644,298463379,1049141,700005499,1049127,1059156,1049130,700005506,1049156,1049117,1059152,1049116,1049112,1049126,1049135,700005507,700005489,700005503,822059908662278,825465608494624,825465608499232,834403089593352,825465608497696,2048660,2048661,825465608493600,1718093079,844931064601283,1718087960,1428713,1119699,700765096,2213652,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":409,\"model_id\":440285424845,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhx1g55d1u6ae9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,700700063,2018618,2153644,298463379,1049141,700005499,1049127,1059156,1049130,700005506,1049156,1049117,1059152,1049116,1049112,1049126,1049135,700005507,700005489,700005503,822059908662278,825465608494624,825465608499232,834403089593352,825465608497696,2048660,2048661,825465608493600,1718093079,844931064601283,1718087960,1428713,1119699,700765096,2213652,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":409,\"model_id\":440285424845,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52352958123",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49302966907,
              "shopid": 1592077131,
              "name": "3D Tempered Glass/ Soft Hydrogel Film for Mi Band 9 Active / Mi Band 8 Active Anti Gores Screen Protector Acceesories for Jam Tangan Smartwatch Xiaomi Mi Smart Band 9 8 Active / Redmi Band 2 / Redmi Band 3 Film Accessories",
              "label_ids": [
                2018618,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                1119699,
                700765096,
                2213652,
                2103651,
                2143613,
                298933384,
                298623321,
                998091078,
                1993623,
                1400285055,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-822yz-mi4gu8npu9dy99",
              "images": [
                "sg-11134201-822yz-mi4gu8npu9dy99",
                "sg-11134201-822zb-mi4gu94iidqb08",
                "sg-11134201-822wy-mi4gu9zw1ybobf",
                "sg-11134201-822yx-mi4guakmv7ygd8",
                "sg-11134201-822x1-mi4gub4p3le048",
                "sg-11134201-822xs-mi4guboegc8z30",
                "sg-11134201-822yv-mi4guc0o56gxfe",
                "sg-11134201-822y7-mi4gucanrx8kc2",
                "sg-11134201-822x1-mi4gucjfii9w5c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765455063,
              "sold": 8,
              "historical_sold": 8,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1090000000,
              "price_min": 1090000000,
              "price_max": 1090000000,
              "price_min_before_discount": 1520000000,
              "price_max_before_discount": 1520000000,
              "hidden_price_display": null,
              "price_before_discount": 1520000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-28%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Soft",
                    "3D"
                  ],
                  "images": [
                    "sg-11134201-822x6-mi4gucqbec5i78",
                    "sg-11134201-822wg-mi4gucyykj5td1"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "for Mi Band 8 Active",
                    "for Mi Band 9 Active",
                    "for Redmi band 2",
                    "for Redmi band 3"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359072125956385,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718143136251904,
                "price": 1090000000,
                "strikethrough_price": 1520000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-28%",
                "model_id": 370284502757,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1520000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 8,
                "rounded_local_monthly_sold_count": 8,
                "local_monthly_sold_count_text": "8",
                "rounded_display_sold_count": 8,
                "display_sold_count_text": "8"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL Official Store",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49302966907,
            "shopid": 1592077131,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822yz-mi4gu8npu9dy99\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059152,1059154,822059908662278,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1119699,700765096,2213652,2103651,2143613,298933384,298623321,998091078,1993623,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":410,\"model_id\":370284502757,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822yz-mi4gu8npu9dy99\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059152,1059154,822059908662278,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1119699,700765096,2213652,2103651,2143613,298933384,298623321,998091078,1993623,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":410,\"model_id\":370284502757,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49302966907",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51952941985,
              "shopid": 1592077131,
              "name": "22mm 20mm Nylon Braided Magnetic Buckle Strap for Redmi Watch 5 Active / Lite Quick Release Strap Band Tali Jam Tangan Smartwatch for Samsung Glaxy Watch FE 7 6 5 4 /Huawei GT 6 5 2 3 4 /Aolon /Garmin/Amazfit Bip 6 GTS GTR/ Itel 011/ Xiaomi Watch Strap",
              "label_ids": [
                2018618,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                700765096,
                2213652,
                1015914,
                700190087,
                2103651,
                2143613,
                298933384,
                1400285055,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-822wr-mi4gcqyh42rn0c",
              "images": [
                "sg-11134201-822wr-mi4gcqyh42rn0c",
                "sg-11134201-822wg-mi4gcrdzwb9cfe",
                "sg-11134201-822xp-mi4gcrn8u9kx14",
                "sg-11134201-822z9-mi4gcry41gxv12",
                "sg-11134201-822wk-mi4gcs7d0ttw67",
                "sg-11134201-822wm-mi4gcsfptds381",
                "sg-11134201-822zd-mi4g5o0p258ic4",
                "sg-11134201-822zv-mi4gct18n8qvc9",
                "sg-11134201-822yb-mi4gct9ypc76a8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765454250,
              "sold": 28,
              "historical_sold": 29,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 21,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3745000000,
              "price_min": 3745000000,
              "price_max": 3745000000,
              "price_min_before_discount": 8140000000,
              "price_max_before_discount": 8140000000,
              "hidden_price_display": null,
              "price_before_discount": 8140000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16000081704175734.mp4",
                  "thumb_url": "sg-11110106-7rbml-lq05v26sb4wocc",
                  "duration": 31,
                  "version": 2,
                  "vid": "sg-11110106-6khya-lq05u52iq4bkbe",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16003221712196620.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16003221712196620.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16004081714311236.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16004081714311236.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16006711722648734.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16006711722648734.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16006731724146687.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16006731724146687.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16004091723037168.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16004091723037168.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16006591723037165.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16006591723037165.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16000081704175734.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16000081704175734.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16003241708219885.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16003241708219885.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16003251708219885.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16003251708219885.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16004101714311236.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16004101714311236.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16004111723037156.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16004111723037156.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16005581708219885.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16005581708219885.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16005681723037182.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.16005681723037182.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khya-lq05u52iq4bkbe.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Brown(strap)",
                    "Black(strap)",
                    "Blue(strap)",
                    "Ash black(strap)",
                    "Grey(strap)",
                    "Green(strap)",
                    "Star(strap)",
                    "Pink Sand(strap)",
                    "Olive(strap)",
                    "Multicolor(strap)",
                    "Smoke Grey(strap)",
                    "Cherry(strap)",
                    "Pink star(strap)",
                    "Navy blue(strap)",
                    "lilac(strap)"
                  ],
                  "images": [
                    "sg-11134201-822xg-mi4gctj88g7738",
                    "sg-11134201-822y3-mi4gcttuvy128c",
                    "sg-11134201-822wn-mi4gcu3w9xxi81",
                    "sg-11134201-822yu-mi4gcuegtmo15f",
                    "sg-11134201-822yx-mi4gcunerifa6e",
                    "sg-11134201-822yo-mi4gcuy6vpc79e",
                    "sg-11134201-822wk-mi4gcv8f25msa7",
                    "sg-11134201-822zc-mi4gcvh7xdza76",
                    "sg-11134201-822wm-mi4gcvqq9wqr4f",
                    "sg-11134201-822ye-mi4gcw2htkw1a2",
                    "sg-11134201-822zi-mi4gcwbqgao21b",
                    "sg-11134201-822zy-mi4gcwkelngm9d",
                    "sg-11134201-822wn-mi4g5u74w4qq32",
                    "sg-11134201-822yi-mi4gcx3yq7sz82",
                    "sg-11134201-822zl-mi4gcxdwvmko60"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm",
                    "22mm",
                    "Redmi 5 Active/Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.857142857142857,
                "rating_count": [
                  21,
                  0,
                  0,
                  0,
                  3,
                  18
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359072125956385,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 3745000000,
                "strikethrough_price": 8140000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 325284447824,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 8140000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 37.450",
                      "hidden_promotion_price": "Rp ?7.450",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 29,
                "rounded_local_monthly_sold_count": 28,
                "local_monthly_sold_count_text": "28",
                "rounded_display_sold_count": 29,
                "display_sold_count_text": "29"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51952941985,
            "shopid": 1592077131,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822wr-mi4gcqyh42rn0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,1718093079,1119699,700765096,2213652,1015914,700190087,2103651,2143613,298933384,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":411,\"model_id\":325284447824,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822wr-mi4gcqyh42rn0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,1718093079,1119699,700765096,2213652,1015914,700190087,2103651,2143613,298933384,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":411,\"model_id\":325284447824,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51952941985",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47802957179,
              "shopid": 607081961,
              "name": "Tali Magnet untuk Jam Anak IMOO Z1/Z6/Z7/X10 - Tali Sport Breathable Anti Iritasi, Mudah Pasang (Bonus Alat Lepas)",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                1049120,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-822zt-mi49w6st4w08ec",
              "images": [
                "sg-11134201-822zt-mi49w6st4w08ec",
                "sg-11134201-822yp-mi49w7th6138a8",
                "sg-11134201-822z3-mi49w8dfc9vm07",
                "sg-11134201-822wy-mi49w8vhwa2o52",
                "sg-11134201-822wv-mi49w9nf7g1u7a",
                "sg-11134201-82301-mi49wa7rw83sab",
                "sg-11134201-822wh-mi49warppts0b0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765443387,
              "sold": 3,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 7999900000,
              "price_min": 7999900000,
              "price_max": 7999900000,
              "price_min_before_discount": 14800000000,
              "price_max_before_discount": 14800000000,
              "hidden_price_display": null,
              "price_before_discount": 14800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-46%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black&Purple",
                    "Black&Gray",
                    "Black&Pink",
                    "Black&Blue",
                    "White&Beige"
                  ],
                  "images": [
                    "sg-11134201-822ze-mi49wb9j3ncx0e",
                    "sg-11134201-822xg-mi49wbs7z4eea8",
                    "sg-11134201-822zx-mi49wc7ktszr09",
                    "sg-11134201-822x4-mi49wcobqo7bcc",
                    "sg-11134201-822wg-mi49wd7r3v9c8a"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 377064419242135,
                "bundle_deal_label": "Pilih 2, diskon Rp3.000"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 796245245886464,
                "price": 7599900000,
                "strikethrough_price": 14800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1298274573893632,
                "discount_text": "-46%",
                "model_id": 430282959243,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1298274573893632,
                  "voucher_code": "IEEN0704",
                  "voucher_discount": 400000000,
                  "time_info": {
                    "start_time": 1764521940,
                    "end_time": 1772297940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 7000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 14800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ieens smartwatch",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47802957179,
            "shopid": 607081961,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822zt-mi49w6st4w08ec\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,700005490,1049120,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":412,\"model_id\":430282959243,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822zt-mi49w6st4w08ec\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,700005490,1049120,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":412,\"model_id\":430282959243,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47802957179",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46702923303,
              "shopid": 1337826401,
              "name": "Citijungle Smartwatch GPS SE | Layar AMOLED 1.43\" Jernih & Warna Hidup | Tahan Air 3ATM untuk Aktivitas Sehari-hari | Bluetooth 5.3 Stabil & Hemat Energi | Kompas & Barometer Akurat | Jam Tangan Pintar Multifungsi & Stylish",
              "label_ids": [
                2023641,
                2018619,
                298888358,
                298938357,
                844931086908638,
                844931064601283,
                298463379,
                700005490,
                1049120,
                1718093079,
                822059908662278,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                700765096,
                1015914,
                700190087,
                1428713,
                1718087960,
                298933384,
                1400285055,
                298468389,
                2098629,
                298938368,
                2098628,
                1718088045
              ],
              "image": "id-11134207-82251-mi3xn3a1tjb705",
              "images": [
                "id-11134207-82251-mi3xn3a1tjb705",
                "id-11134207-82250-mi3xn3a4phc0d3",
                "id-11134207-8224p-mi3xn3a4ighs5d",
                "id-11134207-8224t-mi3xn3a4mo74e4",
                "id-11134207-8224s-mi3xn3a4o2rk18",
                "id-11134207-8224u-mi3xn3a4qvwg41",
                "id-11134207-8224t-mi3xn3a4sagwc7",
                "id-11134207-8224p-mi3xn3a4jv28b1",
                "id-11134207-8224q-mi3xn3a4l9mo1a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765425567,
              "sold": 21,
              "historical_sold": 22,
              "liked": false,
              "liked_count": 45,
              "view_count": null,
              "catid": 100013,
              "brand": "CITIJUNGLE",
              "cmt_count": 9,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 62800000000,
              "price_min": 62800000000,
              "price_max": 62800000000,
              "price_min_before_discount": 200000000000,
              "price_max_before_discount": 200000000000,
              "hidden_price_display": null,
              "price_before_discount": 200000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-69%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemw-mi3z9eux9p1je5.16000081765425546.mp4",
                  "thumb_url": "id-11110105-6vemw-mi3z9eux9p1je5_cover",
                  "duration": 57,
                  "version": 2,
                  "vid": "id-11110105-6vemw-mi3z9eux9p1je5",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemw-mi3z9eux9p1je5.16000081765425546.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemw-mi3z9eux9p1je5.16000081765425546.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemw-mi3z9eux9p1je5.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Abu-abu muda",
                    "Hitam"
                  ],
                  "images": [
                    "id-11134207-8224w-mi3xn3a4tp1c47",
                    "id-11134207-82252-mi3xn3a4v3ls19"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.888888888888889,
                "rating_count": [
                  9,
                  0,
                  0,
                  0,
                  1,
                  8
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 402979933141427,
                "add_on_deal_label": "Kombo Hemat",
                "sub_type": 0,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp103RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 61800000000,
                "strikethrough_price": 200000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1332553287352320,
                "discount_text": "-69%",
                "model_id": 430280871745,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1332553287352320,
                  "voucher_code": "SVC-1332553287352320",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1768323600,
                    "end_time": 1768409999,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 30000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 200000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 618.000",
                      "hidden_promotion_price": "Rp 6?8.000",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 22,
                "rounded_local_monthly_sold_count": 21,
                "local_monthly_sold_count_text": "21",
                "rounded_display_sold_count": 22,
                "display_sold_count_text": "22"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp103RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CitiJungle",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46702923303,
            "shopid": 1337826401,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mi3xn3a1tjb705\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,298888358,298938357,844931086908638,844931064601283,298463379,700005490,1049120,1718093079,822059908662278,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,700765096,1015914,700190087,1428713,1718087960,298933384,1400285055,298468389,2098629,298938368,2098628,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":415,\"model_id\":430280871745,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mi3xn3a1tjb705\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,298888358,298938357,844931086908638,844931064601283,298463379,700005490,1049120,1718093079,822059908662278,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,700765096,1015914,700190087,1428713,1718087960,298933384,1400285055,298468389,2098629,298938368,2098628,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":415,\"model_id\":430280871745,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46702923303",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55952890130,
              "shopid": 1495053614,
              "name": "Rubber Soft Silicone Case for Huawei Band 10 9 8 Frame Anti Gores Bumper Replacement Hollow Cover Frame Screen Protector Accessories Jam Tangan Smartwatch for Huawei Band 8 9 10 NFC",
              "label_ids": [
                2023641,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                700765096,
                2018619,
                298933384,
                2103651,
                2143613,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-822yl-mi3395a3qw3q94",
              "images": [
                "sg-11134201-822yl-mi3395a3qw3q94",
                "sg-11134201-822yq-mi33966skykg3f",
                "sg-11134201-822zb-mi3396gmhb0jad",
                "sg-11134201-822yq-mi3396pfxngkd6",
                "sg-11134201-822ys-mi3396yrj4ee13",
                "sg-11134201-822yq-mi33976uvshy38",
                "sg-11134201-822y4-mi3397gqqa6f9e",
                "sg-11134201-822wv-mi3397ozdzie78",
                "sg-11134201-822zq-mi3397v69ds038"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765371686,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1216000000,
              "price_min": 1216000000,
              "price_max": 1216000000,
              "price_min_before_discount": 2560000000,
              "price_max_before_discount": 2560000000,
              "hidden_price_display": null,
              "price_before_discount": 2560000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Grey green",
                    "Yellow",
                    "Lilac",
                    "Pink",
                    "Sky Blue",
                    "Navy Blue",
                    "Orange",
                    "Red",
                    "Green",
                    "White",
                    "Black",
                    "Film"
                  ],
                  "images": [
                    "sg-11134201-822yx-mi33981pp4ht33",
                    "sg-11134201-822xd-mi33989ltvya8c",
                    "sg-11134201-822wk-mi3398hxnbpk4b",
                    "sg-11134201-822x5-mi3398pgv56see",
                    "sg-11134201-822wz-mi3398x9kao294",
                    "sg-11134201-822zc-mi339949wav62f",
                    "sg-11134201-822xs-mi3399eaz28172",
                    "sg-11134201-822wn-mi3399ms7qx4b6",
                    "sg-11134201-822zg-mi3399tmf6dd57",
                    "sg-11134201-822x1-mi339a3en2ted0",
                    "sg-11134201-822yq-mi339adnbpc0b7",
                    "sg-11134201-822yt-mi339aw172838e"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei Band 10 9 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 393085536454641,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 1216000000,
                "strikethrough_price": 2560000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 249114999361,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2560000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 12.160",
                      "hidden_promotion_price": "Rp ?2.160",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BRADCET",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55952890130,
            "shopid": 1495053614,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822yl-mi3395a3qw3q94\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1718093079,1119699,700765096,2018619,298933384,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":420,\"model_id\":249114999361,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822yl-mi3395a3qw3q94\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1718093079,1119699,700765096,2018619,298933384,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":420,\"model_id\":249114999361,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55952890130",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41427141642,
              "shopid": 1191507022,
              "name": "Soft TPU / Tempered Glass Film for Redmiย watchย 6 5 4 3D Anti Gores Screen Protector Acceesories Jam Tangan Smartwatch for Xiaomi Redmi Watch 5 3 Active / Redmi Watch 5 3 Lite / Mi Band 9 8 Active",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                700765096,
                298933384,
                700810080,
                298623321,
                1993623,
                998091078,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-822y4-mi2v8mxvs2rq82",
              "images": [
                "sg-11134201-822y4-mi2v8mxvs2rq82",
                "sg-11134201-822yu-mi2v8noo2xvq59",
                "sg-11134201-822zs-mi2v8odli7ltc8",
                "sg-11134201-822yx-mi2v8owbjs3n8a",
                "sg-11134201-822yk-mi2v8pit3qx2ae",
                "sg-11134201-822zz-mi2v8q0sgiyrfe",
                "sg-11134201-822y8-mi2v8qu2ql8je3",
                "sg-11134201-822xz-mi2v6wz81iiuc1",
                "sg-11134201-822yd-mi2v8s7g80e98b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765358212,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1995000000,
              "price_min": 1995000000,
              "price_max": 1995000000,
              "price_min_before_discount": 3600000000,
              "price_max_before_discount": 3600000000,
              "hidden_price_display": null,
              "price_before_discount": 3600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-45%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color ",
                  "options": [
                    "Soft",
                    "3D"
                  ],
                  "images": [
                    "sg-11134201-822y8-mi2v8sq4z85d4e",
                    "sg-11134201-822yb-mi2v8t61vy8650"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 6",
                    "Redmi Watch 5",
                    "Redmi Watch 4",
                    "Redmi Watch 5 Active",
                    "Redmi Watch 5 Lite",
                    "Redmi Watch 3 Active",
                    "Redmi Watch 3 Lite",
                    "mi band 9 active",
                    "mi band 8 active"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 1995000000,
                "strikethrough_price": 3600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-45%",
                "model_id": 355276935718,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3600000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 19.950",
                      "hidden_promotion_price": "Rp ?9.950",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RCAT STORE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41427141642,
            "shopid": 1191507022,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822y4-mi2v8mxvs2rq82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059152,1059154,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,298933384,700810080,298623321,1993623,998091078,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":421,\"model_id\":355276935718,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822y4-mi2v8mxvs2rq82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059152,1059154,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,298933384,700810080,298623321,1993623,998091078,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":421,\"model_id\":355276935718,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41427141642",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50852875767,
              "shopid": 1656090564,
              "name": "NeoGadget Smartwatch Jam Tangan Pintar Olahraga Fitness Health Monitoring IP67 Tahan Air Sentuh Penuh 1,39 Inci Original Fasion Design Fashion Wanita Pria Cocok untuk Android dan iOS",
              "label_ids": [
                1718087960,
                1428713,
                298463379,
                844931064601283,
                844931086908638,
                700005570,
                700000530,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                1015914,
                700190087,
                298933384,
                2023641,
                1400285055,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82252-mi2t592i9ame7a",
              "images": [
                "id-11134207-82252-mi2t592i9ame7a",
                "id-11134207-8224p-mi2qlj08amf4b1",
                "id-11134207-82252-mi2qlj08c0zk6c",
                "id-11134207-8224p-mi2t592ha6f89b",
                "id-11134207-82251-mi1ifphdx81v35",
                "id-11134207-82251-mi2qlj08dfk005",
                "id-11134207-8224z-mi2qlj08eu4g26",
                "id-11134207-82250-mi1ifphe48w3a2",
                "id-11134207-8224q-mi2qlj08g8owe4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765354746,
              "sold": 3,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 32900000000,
              "price_min": 32900000000,
              "price_max": 32900000000,
              "price_min_before_discount": 59900000000,
              "price_max_before_discount": 59900000000,
              "hidden_price_display": null,
              "price_before_discount": 59900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-45%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven7-mi2t561ekyyo83.16000081765354695.mp4",
                  "thumb_url": "id-11110105-6ven7-mi2t561ekyyo83_cover",
                  "duration": 45,
                  "version": 2,
                  "vid": "id-11110105-6ven7-mi2t561ekyyo83",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven7-mi2t561ekyyo83.16000081765354695.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven7-mi2t561ekyyo83.16000081765354695.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven7-mi2t561ekyyo83.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Hitam",
                    "oren"
                  ],
                  "images": [
                    "id-11134207-8224t-mi2t592hbkzo51",
                    "id-11134207-8224s-mi2t592hczk48f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Manado",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 820979350160384,
                "price": 30900000000,
                "strikethrough_price": 59900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1327141427232768,
                "discount_text": "-45%",
                "model_id": 320276562726,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1327141427232768,
                  "voucher_code": "QI94HNJU",
                  "voucher_discount": 2000000000,
                  "time_info": {
                    "start_time": 1767667320,
                    "end_time": 1769830920,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 59900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "NeoGadget Indo",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50852875767,
            "shopid": 1656090564,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mi2t592i9ame7a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,298463379,844931064601283,844931086908638,700005570,700000530,1718093079,822059908662278,825465608499232,1119699,1015914,700190087,298933384,2023641,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":422,\"model_id\":320276562726,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mi2t592i9ame7a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,298463379,844931064601283,844931086908638,700005570,700000530,1718093079,822059908662278,825465608499232,1119699,1015914,700190087,298933384,2023641,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":422,\"model_id\":320276562726,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50852875767",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57952861818,
              "shopid": 317027900,
              "name": "Anti Gores Huawei Watch GT 6 46mm / GT 6 PRO / GT 5 / GT 5 PRO 46mm  Tempered Glass Huawei Watch GT 4 46mm Bahan TPU Hydrogel Model Skala",
              "label_ids": [
                2018619,
                700700063,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-822y7-mi2sw7oi19fkcc",
              "images": [
                "sg-11134201-822y7-mi2sw7oi19fkcc",
                "sg-11134201-822wv-mi2sw7uxj37m1a",
                "sg-11134201-822wo-mi2sw819jy1416",
                "sg-11134201-822wi-mi2sw86jjapz1d",
                "sg-11134201-822xz-mi2sw8d28cn43a",
                "sg-11134201-822wk-mi2sw8l8gvlte3",
                "sg-11134201-822zn-mi2sw8rxrbic30",
                "sg-11134201-822yp-mi2sw8yz591j7b",
                "sg-11134201-822yn-mi2sw97ujsaoee"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765354264,
              "sold": 25,
              "historical_sold": 25,
              "liked": false,
              "liked_count": 6,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1960000000,
              "price_min": 1960000000,
              "price_max": 1960000000,
              "price_min_before_discount": 2000000000,
              "price_max_before_discount": 2000000000,
              "hidden_price_display": null,
              "price_before_discount": 2000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-2%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Jenis",
                  "options": [
                    "Skala Biru GT 5",
                    "Skala Biru Merah",
                    "Skala Hijau",
                    "Skala Brown",
                    "Skala Hitam Angka",
                    "Skala Hitam",
                    "2D",
                    "3D",
                    "Tempered Glass"
                  ],
                  "images": [
                    "sg-11134201-822yo-mi2sw9gkc4xwc3",
                    "sg-11134201-822yb-mi2sw9ntep6w20",
                    "sg-11134201-822xe-mi2sw9w70r2b40",
                    "sg-11134201-822zg-mi2swaqlzvnmeb",
                    "sg-11134201-822wv-mi2swax12armb3",
                    "sg-11134201-822wq-mi2swb20035w2e",
                    "sg-11134201-822wj-mi2swaa73ls77b",
                    "sg-11134201-822xb-mi2swahqzci036",
                    "sg-11134201-822xj-mi2swa3cb3t046"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tipe",
                  "options": [
                    "GT5 PRO 46mm",
                    "GT5 PRO 42mm",
                    "GT5 46mm",
                    "GT5 41mm",
                    "GT4 46mm",
                    "GT4 41mm",
                    "GT 6 46mm",
                    "GT 6 PRO 46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  0,
                  4
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 824656177725440,
                "price": 1960000000,
                "strikethrough_price": 2000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-2%",
                "model_id": 420276504603,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 25,
                "rounded_local_monthly_sold_count": 25,
                "local_monthly_sold_count_text": "25",
                "rounded_display_sold_count": 25,
                "display_sold_count_text": "25"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GuangHouse",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57952861818,
            "shopid": 317027900,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822y7-mi2sw7oi19fkcc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700700063,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,298933384,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":423,\"model_id\":420276504603,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822y7-mi2sw7oi19fkcc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700700063,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,298933384,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":423,\"model_id\":420276504603,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57952861818",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40227109349,
              "shopid": 1589075157,
              "name": "Soft Sport Silicone Band Strap for ADVAN Watch S3/3 Pro S2/2 Pro S1 SE 1 W2/Samsung Galaxy Watch/Huawei GT 6 20mm/22mm Rubber Bracelet Belt Accessories Tali Jam Smartwatch for Garmin/Redmi Watch 5 Active/5 Lite/Amazfit Bip 6/Aolon/Xiaomi/Itel 011 12",
              "label_ids": [
                2023641,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                1119699,
                2018619,
                700765096,
                298933384,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-822yu-mi1nz1qkz1tva2",
              "images": [
                "sg-11134201-822yu-mi1nz1qkz1tva2",
                "sg-11134201-822xy-mi1nz2bxird30d",
                "sg-11134201-822x6-mi1nz2qmexoj46",
                "sg-11134201-822y3-mi1nz373ng1v58",
                "sg-11134201-822y5-mi1nz3fnjncy42",
                "sg-11134201-822yo-mi1nz3w20gzmcd",
                "sg-11134201-822yv-mi1nz4fuvojoc1",
                "sg-11134201-822xo-mi1nz51iclxce4",
                "sg-11134201-822yt-mi1nz5jzaw3n1a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765285460,
              "sold": 3,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1509000000,
              "price_min": 1509000000,
              "price_max": 1509000000,
              "price_min_before_discount": 3018000000,
              "price_max_before_discount": 3018000000,
              "hidden_price_display": null,
              "price_before_discount": 3018000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16000081705915134.mp4",
                  "thumb_url": "sg-11110106-7rcc2-lqswae7h3t43c6",
                  "duration": 27,
                  "version": 2,
                  "vid": "sg-11110106-6khy4-lqswa7dn0e2t7d",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16003221718126133.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16003221718126133.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002401708629178.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002401708629178.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004081708629119.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004081708629119.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16006711723606724.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16006711723606724.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16006731724462989.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16006731724462989.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600266,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002661723338884.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002661723338884.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002411708629189.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002411708629189.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16006591723338936.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16006591723338936.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600265,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002651723338874.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002651723338874.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004091708629131.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004091708629131.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16000081705915134.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16000081705915134.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16003241710556974.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16003241710556974.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16003251710556974.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16003251710556974.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600267,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002671723338884.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002671723338884.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004101708629131.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004101708629131.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004111708629131.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004111708629131.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16005581710556974.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16005581710556974.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16005681708629131.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16005681708629131.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black(strap)",
                    "Orange(strap)",
                    "Yellow(strap)",
                    "White(strap)",
                    "Pink Sands(strap)",
                    "Midnight blue(strap)",
                    "Indigo(strap)",
                    "Grey(strap)",
                    "Light blue(strap)",
                    "Red(strap)"
                  ],
                  "images": [
                    "sg-11134201-822wi-mi1nz5uohs03c7",
                    "sg-11134201-822za-mi1nz67uvmyv88",
                    "sg-11134201-822zq-mi1nz6prcgzq9f",
                    "sg-11134201-822xt-mi1nz6zrixa921",
                    "sg-11134201-822zp-mi1nz7ho5dkwbf",
                    "sg-11134201-822zm-mi1nz7xxmcxv16",
                    "sg-11134201-822y5-mi1nz89f98ue1c",
                    "sg-11134201-822yd-mi1nz8r5prer3d",
                    "sg-11134201-82301-mi1nz91khiirae",
                    "sg-11134201-822z7-mi1nz9k0urr896"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm Watch Band",
                    "22mm Watch Band",
                    "ADVAN Watch Band"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359068405608568,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718137130024960,
                "price": 1509000000,
                "strikethrough_price": 3018000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 360272851957,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3018000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MYAPULUA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40227109349,
            "shopid": 1589075157,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822yu-mi1nz1qkz1tva2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1119699,2018619,700765096,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":426,\"model_id\":360272851957,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822yu-mi1nz1qkz1tva2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1119699,2018619,700765096,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":426,\"model_id\":360272851957,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40227109349",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26843763706,
              "shopid": 350552797,
              "name": "HOWN Tempered Glass for Huawei GT6 Pro 46 41 mm Anti Gores Screen Protector untuk GT 6 41MM 46MM PRO Watch",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                1400285055,
                1015914,
                700190087,
                825465608493600,
                298933384
              ],
              "image": "sg-11134201-822yk-mi1eak4no8hx90",
              "images": [
                "sg-11134201-822yk-mi1eak4no8hx90",
                "sg-11134201-822wv-mi1cxn4f4npce3",
                "sg-11134201-822yr-mi1cxn6b26fa9d",
                "sg-11134201-822xf-mi1cxnft3i82f2",
                "sg-11134201-822yr-mi1cxn4ji0w53b",
                "sg-11134201-822z7-mi1cxn482ghw08",
                "sg-11134201-822y7-mi1cxn607q4h00",
                "sg-11134201-822x5-mi1cxn5nvt3742",
                "sg-11134201-822yh-mi1cxn67pf5xb9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765269253,
              "sold": 10,
              "historical_sold": 10,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 4,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1250000000,
              "price_min": 1250000000,
              "price_max": 1250000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vena-mi1icxmtaq6a36.16000081765276014.mp4",
                  "thumb_url": "id-11110105-6vena-mi1icxmtaq6a36_cover",
                  "duration": 30,
                  "version": 2,
                  "vid": "id-11110105-6vena-mi1icxmtaq6a36",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vena-mi1icxmtaq6a36.16000081765276014.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vena-mi1icxmtaq6a36.16000081765276014.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vena-mi1icxmtaq6a36.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Size Variant",
                  "options": [
                    "GT6 41MM",
                    "GT6 46MM",
                    "GT6 46MM PRO"
                  ],
                  "images": [
                    "sg-11134201-822xo-mi1cxmk51zpk57",
                    "sg-11134201-822yq-mi1cxmk8hn9d17",
                    "sg-11134201-822zs-mi1cxmin65flea"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  0,
                  4
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1250000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 254113796837,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1250000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10,
                "rounded_local_monthly_sold_count": 10,
                "local_monthly_sold_count_text": "10",
                "rounded_display_sold_count": 10,
                "display_sold_count_text": "10"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HOP Market",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26843763706,
            "shopid": 350552797,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822yk-mi1eak4no8hx90\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699,1400285055,1015914,700190087,825465608493600,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":165,\"model_id\":254113796837,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822yk-mi1eak4no8hx90\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699,1400285055,1015914,700190087,825465608493600,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":165,\"model_id\":254113796837,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26843763706",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54902803386,
              "shopid": 1242322,
              "name": "HOWN Anti Gores TPU (isi 2) for Huawei GT6 Pro 46 41 mm Screen Protector Hydrogel TPU Cover Layar untuk GT 6 41MM 46MM PRO Watch",
              "label_ids": [
                700700063,
                13,
                47,
                57,
                27,
                1000211,
                1000498,
                36,
                38,
                39,
                1000509,
                1000544,
                2018619,
                1000550,
                2023641,
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718087960,
                1428713,
                825465608493600
              ],
              "image": "sg-11134201-822ys-mi1e2s7xdekoec",
              "images": [
                "sg-11134201-822ys-mi1e2s7xdekoec",
                "sg-11134201-822xw-mi1e2s6rjls1ba",
                "sg-11134201-822xj-mi1e2s7p27lw53",
                "sg-11134201-822yu-mi1e2s5xgkch9c",
                "sg-11134201-822zx-mi1e2s7ncemgd4",
                "sg-11134201-822zs-mi1e2s5nz9xi4f",
                "sg-11134201-822wy-mi1e2s2w1vydbd",
                "sg-11134201-822wv-mi1e2s7c59mu8f",
                "sg-11134201-822z5-mi1e2lobkx6p40"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765268839,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1250000000,
              "price_min": 1250000000,
              "price_max": 1250000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Size Variant",
                  "options": [
                    "GT6 41MM",
                    "GT6 46MM",
                    "GT6 46MM PRO"
                  ],
                  "images": [
                    "sg-11134201-822xw-mi1e2rtckoat26",
                    "sg-11134201-822yx-mi1e2rtyxi4l70",
                    "sg-11134201-822y8-mi1e2rvb72mg1a"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1250000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 335271525889,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1250000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "G-Store Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54902803386,
            "shopid": 1242322,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822ys-mi1e2s7xdekoec\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,13,47,57,27,1000211,1000498,36,38,39,1000509,1000544,2018619,1000550,2023641,844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718087960,1428713,825465608493600],\"matched_keywords\":[\"\"],\"merge_rank\":424,\"model_id\":335271525889,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822ys-mi1e2s7xdekoec\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,13,47,57,27,1000211,1000498,36,38,39,1000509,1000544,2018619,1000550,2023641,844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718087960,1428713,825465608493600],\"matched_keywords\":[\"\"],\"merge_rank\":424,\"model_id\":335271525889,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54902803386",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53852802957,
              "shopid": 350552797,
              "name": "Auto Install Tempered for Huawei GT6 Pro 46 41 mm Anti Gores Glass FIT ALIGN Screen Layar Protector untuk Huawei GT 6 41MM 46MM PRO Watch",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                1015914,
                700190087,
                825465608493600,
                298933384,
                1400285055
              ],
              "image": "sg-11134201-822wl-mi1cxn8tutxd06",
              "images": [
                "sg-11134201-822wl-mi1cxn8tutxd06",
                "sg-11134201-822wv-mi1cxn4f4npce3",
                "sg-11134201-822yr-mi1cxn6b26fa9d",
                "sg-11134201-822xf-mi1cxnft3i82f2",
                "sg-11134201-822yr-mi1cxn4ji0w53b",
                "sg-11134201-822z7-mi1cxn482ghw08",
                "sg-11134201-822y7-mi1cxn607q4h00",
                "sg-11134201-822x5-mi1cxn5nvt3742",
                "sg-11134201-822yh-mi1cxn67pf5xb9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765267124,
              "sold": 20,
              "historical_sold": 21,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 5,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1990000000,
              "price_min": 1990000000,
              "price_max": 1990000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven4-mi1hvnpznmdf76.16000081765275207.mp4",
                  "thumb_url": "id-11110105-6ven4-mi1hvnpznmdf76_cover",
                  "duration": 30,
                  "version": 2,
                  "vid": "id-11110105-6ven4-mi1hvnpznmdf76",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven4-mi1hvnpznmdf76.16000081765275207.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-mi1hvnpznmdf76.16000081765275207.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-mi1hvnpznmdf76.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Size Variant",
                  "options": [
                    "GT6 41MM",
                    "GT6 46MM",
                    "GT6 46MM PRO"
                  ],
                  "images": [
                    "sg-11134201-822xo-mi1cxmk51zpk57",
                    "sg-11134201-822yq-mi1cxmk8hn9d17",
                    "sg-11134201-822zs-mi1cxmin65flea"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.4,
                "rating_count": [
                  5,
                  0,
                  1,
                  0,
                  0,
                  4
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1990000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 350271296217,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1990000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 21,
                "rounded_local_monthly_sold_count": 20,
                "local_monthly_sold_count_text": "20",
                "rounded_display_sold_count": 21,
                "display_sold_count_text": "21"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HOP Market",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53852802957,
            "shopid": 350552797,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822wl-mi1cxn8tutxd06\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1059154,1059152,1718093079,822059908662278,825465608497696,825465608499232,1119699,1015914,700190087,825465608493600,298933384,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":6,\"model_id\":350271296217,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822wl-mi1cxn8tutxd06\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1059154,1059152,1718093079,822059908662278,825465608497696,825465608499232,1119699,1015914,700190087,825465608493600,298933384,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":6,\"model_id\":350271296217,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53852802957",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51752784849,
              "shopid": 1484087853,
              "name": "Anti Gores Tempered Glass PC Case for Garmin Forerunner 165/165 Music High Quality Screen Protector Cover Frame Bumper Accessories Jam Tangan Smartwatch for Garmin Forerunner 165/Garmin Forerunner 165 Music",
              "label_ids": [
                2153644,
                2018618,
                298888358,
                298938357,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                1119699,
                700765096,
                2213652,
                298933384,
                1400285055,
                1015914,
                700190087,
                2103651,
                2143613,
                1718088045,
                298468389,
                298938368,
                2098629,
                2098628
              ],
              "image": "sg-11134201-82300-mi14it0yzl6s31",
              "images": [
                "sg-11134201-82300-mi14it0yzl6s31",
                "sg-11134201-822yp-mi14itsihgjkc6",
                "sg-11134201-822za-mi14iuiuftab75",
                "sg-11134201-822ym-mi14iv5d32f653",
                "sg-11134201-822ym-mi14ivv0atj670",
                "sg-11134201-822zb-mi14iwk0gf0h04",
                "sg-11134201-822zz-mi14ix57jfgl56",
                "sg-11134201-822xj-mi14ixnmchz7bb",
                "sg-11134201-822yg-mi14iy8rwq9wfd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765252753,
              "sold": 45,
              "historical_sold": 45,
              "liked": false,
              "liked_count": 7,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 20,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2990000000,
              "price_min": 2990000000,
              "price_max": 2990000000,
              "price_min_before_discount": 6490000000,
              "price_max_before_discount": 6490000000,
              "hidden_price_display": null,
              "price_before_discount": 6490000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Ivory white(Case)",
                    "Ink blue(Case)",
                    "Cherry pink(Case)",
                    "Pine green(Case)",
                    "black(Case)",
                    "Transparent(Case)",
                    "glass film"
                  ],
                  "images": [
                    "sg-11134201-822y9-mi14iyjab5s6a0",
                    "sg-11134201-822x2-mi14iz05mpl15f",
                    "sg-11134201-822xa-mi14izheosg43d",
                    "sg-11134201-822zs-mi14izwqyeio9c",
                    "sg-11134201-822zq-mi14j0cve51e36",
                    "sg-11134201-822zy-mi14j0ucu80829",
                    "sg-11134201-822zz-mi14j14ia9dsaa"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Forerunner 165",
                    "Forerunner 165 Music"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.95,
                "rating_count": [
                  20,
                  0,
                  0,
                  0,
                  1,
                  19
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 401078478975345,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2990000000,
                "strikethrough_price": 6490000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 320270052548,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6490000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 29.900",
                      "hidden_promotion_price": "Rp ?9.900",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 45,
                "rounded_local_monthly_sold_count": 45,
                "local_monthly_sold_count_text": "45",
                "rounded_display_sold_count": 45,
                "display_sold_count_text": "45"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EIHAIHIS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51752784849,
            "shopid": 1484087853,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82300-mi14it0yzl6s31\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,298888358,298938357,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1119699,700765096,2213652,298933384,1400285055,1015914,700190087,2103651,2143613,1718088045,298468389,298938368,2098629,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":428,\"model_id\":320270052548,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82300-mi14it0yzl6s31\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,298888358,298938357,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1119699,700765096,2213652,298933384,1400285055,1015914,700190087,2103651,2143613,1718088045,298468389,298938368,2098629,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":428,\"model_id\":320270052548,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51752784849",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41427087427,
              "shopid": 98947984,
              "name": "JAM HP PINTAR IMOO ANAK 4G ANTI AIR SMARTWATCH ANDROID 4G T500 Y68 IP67 Q12 Z6  kids ANTI AIR  jam pintar anak GPS SIM TELEPHONE GAME MATEMATIKA",
              "label_ids": [
                700700063,
                1000167,
                2018619,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059156,
                700000502,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224q-mi0452uzu1vn2a",
              "images": [
                "id-11134207-8224q-mi0452uzu1vn2a",
                "id-11134207-8224q-mi0452v7slq93e",
                "id-11134207-8224o-mi0452v7u0ap40",
                "id-11134207-8224v-mi0452v7vev5da",
                "id-11134207-8224o-mi0452v7wtfl61",
                "id-11134207-8224v-mi0452v7zmkh77",
                "id-11134207-82252-mi0452v8114x5a",
                "id-11134207-8224s-mi0452v82fpdc4",
                "id-11134207-8224x-mi0452v7y801a2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765191909,
              "sold": 16,
              "historical_sold": 16,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 5,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 6400000000,
              "price_min": 6400000000,
              "price_max": 6400000000,
              "price_min_before_discount": 20000000000,
              "price_max_before_discount": 20000000000,
              "hidden_price_display": null,
              "price_before_discount": 20000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-68%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Y68 PINK",
                    "Y68 PUTIH",
                    "Y68 hitam",
                    "T500 hitam",
                    "T500 putih",
                    "T500 pink"
                  ],
                  "images": [
                    "id-11134207-82251-mi0452v83u9t0e",
                    "id-11134207-82251-mi0452v858u9f5",
                    "id-11134207-8224x-mi032gghhon671",
                    "id-11134207-8224z-mi032gghj37m81",
                    "id-11134207-8224z-mi032gghkhs225",
                    "id-11134207-8224w-mi032gghlwci82"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ukuran",
                  "options": [
                    "ANAK ORIGINAL"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 3.6,
                "rating_count": [
                  5,
                  1,
                  0,
                  1,
                  1,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Kebumen",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228123505606656,
                "price": 6200000000,
                "strikethrough_price": 20000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1328119630413824,
                "discount_text": "-68%",
                "model_id": 395267339299,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1328119630413824,
                  "voucher_code": "FJMA5COSU",
                  "voucher_discount": 200000000,
                  "time_info": {
                    "start_time": 1767783472,
                    "end_time": 1775904900,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 6000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 20000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 16,
                "rounded_local_monthly_sold_count": 16,
                "local_monthly_sold_count_text": "16",
                "rounded_display_sold_count": 16,
                "display_sold_count_text": "16"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "FJmarket",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41427087427,
            "shopid": 98947984,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mi0452uzu1vn2a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,1000167,2018619,1428713,1718087960,844931086908638,844931064601283,298463379,1059156,700000502,822059908662278,825465608499232,825465608497696,1718093079,1119699,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":430,\"model_id\":395267339299,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mi0452uzu1vn2a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,1000167,2018619,1428713,1718087960,844931086908638,844931064601283,298463379,1059156,700000502,822059908662278,825465608499232,825465608497696,1718093079,1119699,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":430,\"model_id\":395267339299,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41427087427",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56602762432,
              "shopid": 1592077131,
              "name": "22mm Watch Band Silicone Strap for Redmi Watch 5 Active/ Mi Watch 5 Lite Replacement Sport Rubber Wristband Bracelet Smartwatch for Jam Tangan Smartwatch Huawei Watch GT 6 5 4 3 /Samsung Watch/Aolon/ITEL/Amazfit GTS GTR /Xiaomi Watch S4 S1 S2 S3 Active",
              "label_ids": [
                2018618,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                700765096,
                2213652,
                298933384,
                700810055,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-822z6-mi03k84jcmiob8",
              "images": [
                "sg-11134201-822z6-mi03k84jcmiob8",
                "sg-11134201-822y9-mi03oqd8cphfa3",
                "sg-11134201-822zt-mi03or6gem8315",
                "sg-11134201-822ww-mi03orv6562p48",
                "sg-11134201-822y7-mi03oskhf3eua8",
                "sg-11134201-822zo-mi03otghinew9c",
                "sg-11134201-822zk-mi03otv7mdc2b3",
                "sg-11134201-822yo-mi03oua23i0z01",
                "sg-11134201-822xd-mi03ouolkfew83"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765190817,
              "sold": 7,
              "historical_sold": 7,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2170000000,
              "price_min": 2170000000,
              "price_max": 2170000000,
              "price_min_before_discount": 4340000000,
              "price_max_before_discount": 4340000000,
              "hidden_price_display": null,
              "price_before_discount": 4340000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black color(strap)",
                    "White Ivory(strap)",
                    "Dark green(strap)",
                    "Red color(strap)",
                    "Orange(strap)",
                    "Light pink(strap)",
                    "Light Blue(strap)",
                    "Dark Blue(strap)",
                    "Lemon color(strap)",
                    "Purple color(strap)",
                    "Teal color(strap)",
                    "Gray color(strap)",
                    "White(strap)"
                  ],
                  "images": [
                    "sg-11134201-822yt-mi03ovdcv7k2e9",
                    "sg-11134201-822yb-mi03ovtyjuo3ac",
                    "sg-11134201-822xv-mi03kisa9ds4ef",
                    "sg-11134201-822zy-mi03ox5ibv283c",
                    "sg-11134201-822zx-mi03oxpdavpcee",
                    "sg-11134201-822yc-mi03oy0lge0zc2",
                    "sg-11134201-822zt-mi03kk2eq9dt20",
                    "sg-11134201-822xo-mi03oywwh91f0b",
                    "sg-11134201-822wg-mi03oz90tkar34",
                    "sg-11134201-82300-mi03ozpcbmrl84",
                    "sg-11134201-822ya-mi03p0gt1rsx57",
                    "sg-11134201-822zz-mi03kmwjlczl10",
                    "sg-11134201-822xg-mi03p1dcds7ada"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi watch 5 active",
                    "Mi watch 5 lite",
                    "22mm Watch Band"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.75,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  1,
                  3
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359072125956385,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718143136251904,
                "price": 2170000000,
                "strikethrough_price": 4340000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 440267252033,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4340000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 7,
                "rounded_local_monthly_sold_count": 7,
                "local_monthly_sold_count_text": "7",
                "rounded_display_sold_count": 7,
                "display_sold_count_text": "7"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56602762432,
            "shopid": 1592077131,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822z6-mi03k84jcmiob8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,2213652,298933384,700810055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":431,\"model_id\":440267252033,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822z6-mi03k84jcmiob8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,2213652,298933384,700810055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":431,\"model_id\":440267252033,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56602762432",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50802765238,
              "shopid": 1344414745,
              "name": "Anti Gores PC Case for Redmi Watch 6 5 4 Case Hard All-Around Tempered Glass Screen Protector with Film Bumper Frame Cover Accessories for Jam Tangan Smartwatch Redmi Watch 6 5 4",
              "label_ids": [
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1428713,
                1718087960,
                298463379,
                1718093079,
                2018619,
                2023641,
                844931086908638,
                844931064601283,
                1119699,
                700765096,
                700810080,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-822yd-mhzynp4h0nieef",
              "images": [
                "sg-11134201-822yd-mhzynp4h0nieef",
                "sg-11134201-822zf-mhzynpzrlgy07c",
                "sg-11134201-822ys-mhzynr03m0p1fc",
                "sg-11134201-822x8-mhzynrv7632811",
                "sg-11134201-822xx-mhzyns7af2f440",
                "sg-11134201-822ww-mhzynss402di78",
                "sg-11134201-822wk-mhzyntjvxfk606",
                "sg-11134201-822wo-mhzynu0lv6kg92",
                "sg-11134201-822yn-mhzynubvm8lcfd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765182354,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2660000000,
              "price_min": 2660000000,
              "price_max": 2660000000,
              "price_min_before_discount": 6000000000,
              "price_max_before_discount": 6000000000,
              "hidden_price_display": null,
              "price_before_discount": 6000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-56%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Transparent(Case)",
                    "Black(Case)",
                    "Green(Case)",
                    "Pink (Case)",
                    "Blue(Case)",
                    "Ivory(Case)",
                    "3D Film"
                  ],
                  "images": [
                    "sg-11134201-822yu-mhzyoiqu0hs593",
                    "sg-11134201-822yj-mhzyoj47ywhx9a",
                    "sg-11134201-822wz-mhzyojhiyk1scc",
                    "sg-11134201-822x2-mhzyojtcj85hf7",
                    "sg-11134201-822yu-mhzyok62dlhi76",
                    "sg-11134201-822xw-mhzyokjodd6t81",
                    "sg-11134201-822xu-mhzyokw58kqt58"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 6",
                    "Redmi Watch 5",
                    "Redmi Watch 4"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 374886765965807,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2660000000,
                "strikethrough_price": 6000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-56%",
                "model_id": 420266347701,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 26.600",
                      "hidden_promotion_price": "Rp ?6.600",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "LCAPLE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50802765238,
            "shopid": 1344414745,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822yd-mhzynp4h0nieef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1428713,1718087960,298463379,1718093079,2018619,2023641,844931086908638,844931064601283,1119699,700765096,700810080,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":433,\"model_id\":420266347701,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822yd-mhzynp4h0nieef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1428713,1718087960,298463379,1718093079,2018619,2023641,844931086908638,844931064601283,1119699,700765096,700810080,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":433,\"model_id\":420266347701,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50802765238",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41577086370,
              "shopid": 1589132922,
              "name": "Silicone Strap for Apple Watch Ultra 3 2 SE 3 2 IWatch Series 11 10 9 8 7 6 5 4 3 2 1 49mm 46mm 45mm 44mm 42mm 41mm 40mm 38mm Sport Rubber Band Replacement Wristbands Tali Jam Tangan for Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                298463379,
                1718093079,
                844931086908638,
                844931064601283,
                1119699,
                2023641,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-822x7-mhzyjmw1nitk42",
              "images": [
                "sg-11134201-822x7-mhzyjmw1nitk42",
                "sg-11134201-822y1-mhzyjnjdyd4x7b",
                "sg-11134201-822zm-mhzxfcrnf30me9",
                "sg-11134201-822xs-mhzyjo74ulfnfb",
                "sg-11134201-822z2-mhzyjomscr2b6a",
                "sg-11134201-822zw-mhzyjp2zbu2r80",
                "sg-11134201-822zk-mhzxfend4v7s62",
                "sg-11134201-822z6-mhzyjq12ja4j78",
                "sg-11134201-822z9-mhzyjqgvdvk88c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1765182162,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3200000000,
              "price_min": 3200000000,
              "price_max": 3200000000,
              "price_min_before_discount": 5200000000,
              "price_max_before_discount": 5200000000,
              "hidden_price_display": null,
              "price_before_discount": 5200000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-38%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khxp-lry8yc9nddhkdc.16000081708418348.mp4",
                  "thumb_url": "sg-11110106-7rcea-lry8yfze3mx93c",
                  "duration": 13,
                  "version": 2,
                  "vid": "sg-11110106-6khxp-lry8yc9nddhkdc",
                  "formats": [
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxp-lry8yc9nddhkdc.16003241713867567.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxp-lry8yc9nddhkdc.16003241713867567.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxp-lry8yc9nddhkdc.16003251713867567.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxp-lry8yc9nddhkdc.16003251713867567.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxp-lry8yc9nddhkdc.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "silver(Strap)",
                    "black(Strap)",
                    "Dark Indigo(Strap)",
                    "Neon blue(Strap)",
                    "Black Red (Strap)",
                    "Blue Gray(Strap)",
                    "antique(Strap)",
                    "black white(Strap)",
                    "English red(Strap)",
                    "black gray(Strap)",
                    "White Stone(Strap)",
                    "lilac(Strap)",
                    "Yellow Duck(Strap)",
                    "Black Blue(Strap)",
                    "Olive(Strap)",
                    "Rainbow(Strap)",
                    "Reactive(Strap)",
                    "midnight(Strap)",
                    "orange night(Strap)",
                    "City Green(Strap)",
                    "Stone(Strap)"
                  ],
                  "images": [
                    "sg-11134201-822y0-mhzykesn124g1e",
                    "sg-11134201-822yd-mhzykf8juvwo78",
                    "sg-11134201-822yi-mhzykfoa915145",
                    "sg-11134201-822y1-mhzykg63k35wf5",
                    "sg-11134201-822yx-mhzykgkvvx1k29",
                    "sg-11134201-822yp-mhzykh2ctngm9b",
                    "sg-11134201-822xz-mhzykhcpg8huca",
                    "sg-11134201-822z8-mhzykht6q5fl22",
                    "sg-11134201-822xx-mhzykiacb66c9e",
                    "sg-11134201-822xx-mhzykiqf9kow42",
                    "sg-11134201-822wl-mhzykj340kjo98",
                    "sg-11134201-822wj-mhzykjgt0hz9b1",
                    "sg-11134201-822xk-mhzykjxuceth4f",
                    "sg-11134201-82301-mhzykkac5c05bd",
                    "sg-11134201-822xe-mhzykkoimlfmfa",
                    "sg-11134201-822z5-mhzykl989og2b6",
                    "sg-11134201-822zb-mhzyklrc5fya9c",
                    "sg-11134201-822x6-mhzykm6kpkhs95",
                    "sg-11134201-822x4-mhzykmqvyf4621",
                    "sg-11134201-822yt-mhzykna3in0od6",
                    "sg-11134201-822yr-mhzyknvir85ffe"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "42/41/40/38mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718139076165632,
                "price": 3200000000,
                "strikethrough_price": 5200000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-38%",
                "model_id": 390266334159,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5200000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "FEGLYNN",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41577086370,
            "shopid": 1589132922,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822x7-mhzyjmw1nitk42\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,298463379,1718093079,844931086908638,844931064601283,1119699,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":434,\"model_id\":390266334159,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822x7-mhzyjmw1nitk42\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,298463379,1718093079,844931086908638,844931064601283,1119699,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":434,\"model_id\":390266334159,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41577086370",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50952663761,
              "shopid": 1646504234,
              "name": "100%Original SAMSUNG Smartband M8 Waterproof Touch Screen Heartbeat DIY Wallpaper,Android IOS,Pelacak Jarak,Monitor Denyut Jantung,Monitor Denyut Jantung,Pemantau Kalori,Jam Tangan Pria/Wanita,Jam Tangan Olahraga",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1400285055,
                2018619,
                1015914,
                700190087
              ],
              "image": "id-11134207-82251-mhwrow8w5b7sfd",
              "images": [
                "id-11134207-82251-mhwrow8w5b7sfd",
                "id-11134207-8224v-mhwt4bhmc26b76",
                "id-11134207-82251-mhwt4bhgzmde6f",
                "id-11134207-8224p-mhwt4bhwr3szb2",
                "id-11134207-8224w-mhwt4bhor5dw85",
                "id-11134207-8224z-mhwrow8w6ps82e",
                "id-11134207-8224o-mhwt4bhlzf2817",
                "id-11134207-8224y-mhwt4bhrlougec",
                "id-11134207-8224t-mhwt4bhnfe2u50"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764992251,
              "sold": 42,
              "historical_sold": 45,
              "liked": false,
              "liked_count": 29,
              "view_count": null,
              "catid": 100013,
              "brand": "Samsung",
              "cmt_count": 21,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 8800000000,
              "price_min": 8800000000,
              "price_max": 8800000000,
              "price_min_before_discount": 120000000000,
              "price_max_before_discount": 120000000000,
              "hidden_price_display": null,
              "price_before_discount": 120000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": ">90% off",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Dark Blue",
                    "Pink",
                    "Light Blue",
                    "Orange red",
                    "BIack"
                  ],
                  "images": [
                    "id-11134207-8224t-mhwt4bhwegowe8",
                    "id-11134207-8224y-mhwt4bhwfv9c72",
                    "id-11134207-8224q-mhwt4bhwh9ts7d",
                    "id-11134207-8224r-mhwt4bhwioe842",
                    "id-11134207-82251-mhwt4bhwk2yo0a",
                    "id-11134207-82252-mhwt4bhwlhj4ef"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.380952380952381,
                "rating_count": [
                  21,
                  3,
                  0,
                  0,
                  1,
                  17
                ],
                "rcount_with_context": 16,
                "rcount_with_image": 14
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 402131719042981,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227961064402944,
                "price": 8300000000,
                "strikethrough_price": 120000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1272990093295616,
                "discount_text": ">90% off",
                "model_id": 360257774932,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1272990093295616,
                  "voucher_code": "QXGG26916",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1761211980,
                    "end_time": 1769329980,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 120000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 45,
                "rounded_local_monthly_sold_count": 42,
                "local_monthly_sold_count_text": "42",
                "rounded_display_sold_count": 45,
                "display_sold_count_text": "45"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SAMSUNC Toko Utama Resmi",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODA2YWJlMzc3ZjUzODc4MmM4MDA6MDIwMDAwMDdlOTcyYzVhNTowMTAwMDFlNzc3OTFmMmE5fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50952663761,
            "shopid": 1646504234,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mhwrow8w5b7sfd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699,1400285055,2018619,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":439,\"model_id\":360257774932,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mhwrow8w5b7sfd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699,1400285055,2018619,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":439,\"model_id\":360257774932,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50952663761",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42777037885,
              "shopid": 1592077131,
              "name": "Magnetic Wireless Fast Charging Charger Cable for Jam Tangan Smartwatch Iwatch Apple Watch Charger Ultra 3 2 SE 3 2 Series 11 10 9 8 7 6 5 4 3 2 1 49mm 46mm 45mm 42mm 41mm 44mm 40mm 38mm 2 IN 1/3 In 1 Type C/USB Wireless Charging Cable",
              "label_ids": [
                2018618,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                700765096,
                2213652,
                298933384,
                1015914,
                700190087,
                700810055,
                1400285055,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-822z3-mhwpjo42fcox62",
              "images": [
                "sg-11134201-822z3-mhwpjo42fcox62",
                "sg-11134201-822yg-mhwpjomgyjno29",
                "sg-11134201-822yi-mhwpjow8pla888",
                "sg-11134201-822ym-mhwpjp7hreo229",
                "sg-11134201-822yj-mhwpjpg7xszld8",
                "sg-11134201-822z0-mhwpjpm6cflsf9",
                "sg-11134201-822x3-mhwpbc9s1mgzc6",
                "sg-11134201-822y5-mhwpjq32eo762a",
                "sg-11134201-822yi-mhwpbcwn7rwm35"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764985425,
              "sold": 74,
              "historical_sold": 78,
              "liked": false,
              "liked_count": 11,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 25,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4290000000,
              "price_min": 4290000000,
              "price_max": 4290000000,
              "price_min_before_discount": 7260000000,
              "price_max_before_discount": 7260000000,
              "hidden_price_display": null,
              "price_before_discount": 7260000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-41%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "size",
                  "options": [
                    "1 in 1-USB",
                    "2 in 1-USB",
                    "3 in 1-USB",
                    "1 in 1-Type C"
                  ],
                  "images": [
                    "sg-11134201-822x6-mhwpkejcbuo07b",
                    "sg-11134201-822xp-mhwpkf0c972g35",
                    "sg-11134201-822yb-mhwpkfa4lb7kc8",
                    "sg-11134201-822yp-mhwpkfn2bc3mcc"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.52,
                "rating_count": [
                  25,
                  3,
                  0,
                  0,
                  0,
                  22
                ],
                "rcount_with_context": 5,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "sg-11134201-822z3-mhwpjo42fcox62",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 302,
                "promotion_id": 219959745851393,
                "price": 4290000000,
                "strikethrough_price": 7260000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-41%",
                "model_id": 380257303902,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7260000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 78,
                "rounded_local_monthly_sold_count": 74,
                "local_monthly_sold_count_text": "74",
                "rounded_display_sold_count": 78,
                "display_sold_count_text": "78"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42777037885,
            "shopid": 1592077131,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822z3-mhwpjo42fcox62\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,1718093079,1119699,700765096,2213652,298933384,1015914,700190087,700810055,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":147,\"model_id\":380257303902,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822z3-mhwpjo42fcox62\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,1718093079,1119699,700765096,2213652,298933384,1015914,700190087,700810055,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":147,\"model_id\":380257303902,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42777037885",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53152676201,
              "shopid": 1592077131,
              "name": "Silicone Strap with Magnetic Buckle for IWatch Apple Watch Strap Ultra 3 2 49mm 46 45 41 44 40 42mm Series 11 10 9 8 7 6 SE 3 2 Sport Rubber Band Bracelet Belt Accessories Tali Jam Tangan Smartwatch T900 T800 Ultra I8 Pro Max S8 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018618,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1119699,
                700765096,
                2213652,
                298933384,
                2103651,
                2143613,
                1015914,
                700190087,
                700810055,
                1400285055,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-822ze-mhwpbacgkxs003",
              "images": [
                "sg-11134201-822ze-mhwpbacgkxs003",
                "sg-11134201-822x7-mhwpbawgcq9w4b",
                "sg-11134201-822zh-mhwpbb8tjzlxeb",
                "sg-11134201-822zb-mhwpbbjowq2r01",
                "sg-11134201-822xd-mhwpbbt0s2kl03",
                "sg-11134201-822yi-mhwpbc3aipkw4c",
                "sg-11134201-822xm-mhwpbciecwzs98",
                "sg-11134201-822zf-mhwpbd2tusclc7",
                "sg-11134201-822yi-mhwpbde3yknac7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764985034,
              "sold": 16,
              "historical_sold": 18,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 9,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2750000000,
              "price_min": 2750000000,
              "price_max": 2750000000,
              "price_min_before_discount": 4660000000,
              "price_max_before_discount": 4660000000,
              "hidden_price_display": null,
              "price_before_discount": 4660000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-41%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16000081704706511.mp4",
                  "thumb_url": "sg-11110106-7rbmx-lq8xim9ld82m96",
                  "duration": 29,
                  "version": 2,
                  "vid": "sg-11110106-6khy4-lq8xiceptldw8e",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16003221722507511.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16003221722507511.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16004081743085921.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16004081743085921.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16006731743872596.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16006731743872596.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16006711723379270.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16006711723379270.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16006591721664219.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16006591721664219.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16004091721664212.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16004091721664212.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16000081704706511.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16000081704706511.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16003251712752886.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16003251712752886.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16003241712752886.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16003241712752886.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16004101743085921.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16004101743085921.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16004111721664219.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16004111721664219.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16005581712752886.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16005581712752886.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16005681721664219.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16005681721664219.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Black",
                    "Starlight",
                    "Pink",
                    "Red",
                    "Midnight",
                    "Grey",
                    "White",
                    "Burgundy",
                    "Orange",
                    "Green",
                    "Star Blue",
                    "Pine Green"
                  ],
                  "images": [
                    "sg-11134201-822z7-mhwpc1orrjt297",
                    "sg-11134201-822yl-mhwpc26ziadf55",
                    "sg-11134201-822zf-mhwpc2v97kegb9",
                    "sg-11134201-822zm-mhwpc3d58y6ba3",
                    "sg-11134201-822x4-mhwpc3sj5iipef",
                    "sg-11134201-822ye-mhwpc4bu169ya3",
                    "sg-11134201-822wg-mhwpc4q9wykjb4",
                    "sg-11134201-822wj-mhwpc54zmoee24",
                    "sg-11134201-822x3-mhwpc5ktynes14",
                    "sg-11134201-822y6-mhwpc5yjqo7571",
                    "sg-11134201-822ze-mhwpc6hh1gqt2a",
                    "sg-11134201-822zs-mhwpc6z9q39k90"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "smartwear_size",
                  "options": [
                    "49/46/45/44/(S3)42mm",
                    "41/40/38/42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.888888888888889,
                "rating_count": [
                  9,
                  0,
                  0,
                  0,
                  1,
                  8
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359072125956385,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718143136251904,
                "price": 2750000000,
                "strikethrough_price": 4660000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-41%",
                "model_id": 420257282165,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4660000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 18,
                "rounded_local_monthly_sold_count": 16,
                "local_monthly_sold_count_text": "16",
                "rounded_display_sold_count": 18,
                "display_sold_count_text": "18"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53152676201,
            "shopid": 1592077131,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822ze-mhwpbacgkxs003\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,700765096,2213652,298933384,2103651,2143613,1015914,700190087,700810055,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":440,\"model_id\":420257282165,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822ze-mhwpbacgkxs003\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,700765096,2213652,298933384,2103651,2143613,1015914,700190087,700810055,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":440,\"model_id\":420257282165,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53152676201",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51702675846,
              "shopid": 30760143,
              "name": "Smartwatch Meta S2 1.83\" HD Screen 1000mAh Sync Strava IP68 Tahan Air Healt & Sport Monitoring  ( 0like - Pstore)",
              "label_ids": [
                1400066568,
                2018619,
                1000211,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1059152,
                700005487,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                298933384,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224x-mhw91gedx5og79",
              "images": [
                "id-11134207-8224x-mhw91gedx5og79"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764982266,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 25900000000,
              "price_min": 25900000000,
              "price_max": 25900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 25900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 325257160366,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 25900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "P S T 0 R E",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51702675846,
            "shopid": 30760143,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mhw91gedx5og79\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,1000211,2023641,1718087960,1428713,844931064601283,298463379,1059152,700005487,1718093079,822059908662278,825465608499232,1119699,298933384,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":441,\"model_id\":325257160366,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mhw91gedx5og79\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,1000211,2023641,1718087960,1428713,844931064601283,298463379,1059152,700005487,1718093079,822059908662278,825465608499232,1119699,298933384,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":441,\"model_id\":325257160366,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51702675846",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29343742733,
              "shopid": 17394097,
              "name": "Case Bumper Samsung Galaxy Watch 8 40 44mm / Galaxy Watch 8 Classic Softcase Bahan TPU Glossy",
              "label_ids": [
                2018619,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                2023641,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8227y-mhvnsopabk0547",
              "images": [
                "sg-11134201-8227y-mhvnsopabk0547",
                "sg-11134201-8226y-mhvnsoxowq2p2e",
                "sg-11134201-8227c-mhvnsp6e15hd6d",
                "sg-11134201-82259-mhvnspiikj5wb5",
                "sg-11134201-8224r-mhvnspt5nitgd6",
                "sg-11134201-8224v-mhvnsq06x5hg05",
                "sg-11134201-82253-mhvnsq8krmrmbd",
                "sg-11134201-8225p-mhvnsqhjkf0j10"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764921951,
              "sold": 10,
              "historical_sold": 10,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2975000000,
              "price_min": 2975000000,
              "price_max": 2975000000,
              "price_min_before_discount": 3500000000,
              "price_max_before_discount": 3500000000,
              "hidden_price_display": null,
              "price_before_discount": 3500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-15%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "TPU Transparan",
                    "TPU Black",
                    "TPU Silver",
                    "TPU Pink",
                    "TPU Rosegold",
                    "TPU Gold",
                    "TPU Green",
                    "TPU Blue"
                  ],
                  "images": [
                    "sg-11134201-8225z-mhvnsqsf9u6ee7",
                    "sg-11134201-8225t-mhvnsr18ndhcf0",
                    "sg-11134201-8225u-mhvnsr93t0qsf0",
                    "sg-11134201-8227n-mhvnsrgyc8hxe6",
                    "sg-11134201-8227g-mhvnsro7q2v9f5",
                    "sg-11134201-82275-mhvnsrv5txj6d4",
                    "sg-11134201-8227z-mhvnss3cm7lx2c",
                    "sg-11134201-8224q-mhvnssaizuo40d"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tipe",
                  "options": [
                    "Galaxy Watch 8 40mm",
                    "Galaxy Watch 8 44mm",
                    "GalaxyWatch 8Classic"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.333333333333333,
                "rating_count": [
                  3,
                  0,
                  0,
                  1,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 788242119589888,
                "price": 2975000000,
                "strikethrough_price": 3500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-15%",
                "model_id": 445254093158,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10,
                "rounded_local_monthly_sold_count": 10,
                "local_monthly_sold_count_text": "10",
                "rounded_display_sold_count": 10,
                "display_sold_count_text": "10"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KROX.ID",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 29343742733,
            "shopid": 17394097,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227y-mhvnsopabk0547\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,1718093079,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,2023641,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":444,\"model_id\":445254093158,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227y-mhvnsopabk0547\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,1718093079,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,2023641,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":444,\"model_id\":445254093158,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29343742733",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57852637136,
              "shopid": 1606678681,
              "name": "Bumper Case Samsung Galaxy Watch 8 40 44mm / Galaxy Watch 8 Classic Softcase Bahan TPU Glossy",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384,
                1400285055,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-82287-mhvns0z2y5tx00",
              "images": [
                "sg-11134201-82287-mhvns0z2y5tx00",
                "sg-11134201-8224o-mhvns16x7i1143",
                "sg-11134201-8226h-mhvns1h0qsqt3d",
                "sg-11134201-8226f-mhvns1ufzk7770",
                "sg-11134201-8226e-mhvns21xu7swcd",
                "sg-11134201-82273-mhvns2cs7u2q17",
                "sg-11134201-82262-mhvns2l6j66a47",
                "sg-11134201-8226w-mhvns2upjklked"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764921920,
              "sold": 25,
              "historical_sold": 28,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 6,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2940000000,
              "price_min": 2940000000,
              "price_max": 2940000000,
              "price_min_before_discount": 3500000000,
              "price_max_before_discount": 3500000000,
              "hidden_price_display": null,
              "price_before_discount": 3500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-16%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "TPU Transparan",
                    "TPU Black",
                    "TPU Silver",
                    "TPU Pink",
                    "TPU Rosegold",
                    "TPU Gold",
                    "TPU Green",
                    "TPU Blue"
                  ],
                  "images": [
                    "sg-11134201-82278-mhvns31xpvcy5a",
                    "sg-11134201-82250-mhvns3anl14w60",
                    "sg-11134201-8224s-mhvns3nos45ia1",
                    "sg-11134201-8227i-mhvns3wjaccm72",
                    "sg-11134201-82273-mhvns44oju9ua5",
                    "sg-11134201-8227s-mhvns4chfz0m36",
                    "sg-11134201-82256-mhvns4kklma09f",
                    "sg-11134201-8227b-mhvns4ubdjph61"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tipe",
                  "options": [
                    "Galaxy Watch 8 40mm",
                    "Galaxy Watch 8 44mm",
                    "GalaxyWatch 8Classic"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  6,
                  0,
                  0,
                  0,
                  0,
                  6
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 722961326194688,
                "price": 2940000000,
                "strikethrough_price": 3500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-16%",
                "model_id": 385254088250,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 28,
                "rounded_local_monthly_sold_count": 25,
                "local_monthly_sold_count_text": "25",
                "rounded_display_sold_count": 28,
                "display_sold_count_text": "28"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Loopline",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57852637136,
            "shopid": 1606678681,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82287-mhvns0z2y5tx00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1119699,298933384,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":445,\"model_id\":385254088250,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82287-mhvns0z2y5tx00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1119699,298933384,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":445,\"model_id\":385254088250,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57852637136",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46002656413,
              "shopid": 1606678681,
              "name": "Strap Samsung Galaxy Watch 8/8 Classic Silicone Tali Galaxy Watch 8 40mm 44mm Series Model Sportband",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8227e-mhvmins9sqv484",
              "images": [
                "sg-11134201-8227e-mhvmins9sqv484",
                "sg-11134201-8227i-mhvmio0jtm2w44",
                "sg-11134201-82286-mhvmioa8houbcf",
                "sg-11134201-8224z-mhvmioh4hqfa80",
                "sg-11134201-8226v-mhvmiorivfuw7a",
                "sg-11134201-8227p-mhvmioyady4j9c",
                "sg-11134201-8225u-mhvmip83uubl23"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764919801,
              "sold": 3,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3520000000,
              "price_min": 3520000000,
              "price_max": 3520000000,
              "price_min_before_discount": 4000000000,
              "price_max_before_discount": 4000000000,
              "hidden_price_display": null,
              "price_before_discount": 4000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-12%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Navy",
                    "Army",
                    "Starlight",
                    "Pink",
                    "Grey",
                    "Soft Violet",
                    "Yellow",
                    "Orange",
                    "White",
                    "Soft Blue",
                    "Dark Grey"
                  ],
                  "images": [
                    "sg-11134201-8227f-mhvmipdv1kaq81",
                    "sg-11134201-8226l-mhvmipjeguf9f6",
                    "sg-11134201-8226f-mhvmipp4d98ge0",
                    "sg-11134201-82275-mhvmipvufqwz8b",
                    "sg-11134201-8227j-mhvmiq1lxr0g72",
                    "sg-11134201-8227k-mhvmiq868e86a5",
                    "sg-11134201-82277-mhvmiqe2ht6w14",
                    "sg-11134201-82278-mhvmiqnsrh8ga3",
                    "sg-11134201-8224r-mhvmiqv77xfp7e",
                    "sg-11134201-8226b-mhvmir1y5blt0c",
                    "sg-11134201-8227t-mhvmir8s4bnqfb",
                    "sg-11134201-8225q-mhvmireel62pcc"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tipe",
                  "options": [
                    "GalaxyWatch8/8Classi"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 722961326194688,
                "price": 3520000000,
                "strikethrough_price": 4000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-12%",
                "model_id": 307229827945,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Loopline",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46002656413,
            "shopid": 1606678681,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227e-mhvmins9sqv484\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":446,\"model_id\":307229827945,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227e-mhvmins9sqv484\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":446,\"model_id\":307229827945,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46002656413",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44602611025,
              "shopid": 1344444411,
              "name": "Transparent Anti Gores TPU Case for Garmin Forerunner 165/Forerunner 165 Music Shell Soft Screen Protector Frame Bumper Cover Accessories Jam Tangan Smartwatch for Smart Watch Garmin Forerunner 165/Garmin Forerunner 165 Music",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                700765096,
                298933384,
                700810080,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8225l-mhud8ah0bymdd5",
              "images": [
                "sg-11134201-8225l-mhud8ah0bymdd5",
                "sg-11134201-82264-mhud8auhdam9bd",
                "sg-11134201-82289-mhud8b7m1e69b3",
                "sg-11134201-8227f-mhty1b89fu9v26",
                "sg-11134201-82276-mhud8bwidc0396",
                "sg-11134201-82269-mhud8c9diqkicd",
                "sg-11134201-8225u-mhud8clegufcad",
                "sg-11134201-8226o-mhud8cvkm96r2c",
                "sg-11134201-82250-mhud8d5bmm10a4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764843647,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2714000000,
              "price_min": 2714000000,
              "price_max": 2714000000,
              "price_min_before_discount": 5900000000,
              "price_max_before_discount": 5900000000,
              "hidden_price_display": null,
              "price_before_discount": 5900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "clear purple(case)",
                    "clear orange(case)",
                    "clear blue(case)",
                    "clear black(case)",
                    "Clear(case)",
                    "glass film",
                    "Transparent(case)",
                    "black(case)",
                    "pine green(case)",
                    "pink(case)",
                    "blue(case)",
                    "ivory(case)"
                  ],
                  "images": [
                    "sg-11134201-8226x-mhud8q0vury85b",
                    "sg-11134201-82259-mhud8qbo1qf7a7",
                    "sg-11134201-82266-mhud8qvvgxdy2a",
                    "sg-11134201-8226r-mhud8rn4035v03",
                    "sg-11134201-8227r-mhud8s1yed4y52",
                    "sg-11134201-82270-mhud8savwsn602",
                    "sg-11134201-8226b-mhud8sj428lk92",
                    "sg-11134201-8225d-mhu4jtjm4v0o85",
                    "sg-11134201-82289-mhud8th1vvuob6",
                    "sg-11134201-8227o-mhud8udt97no5b",
                    "sg-11134201-8224r-mhud8upjihhg9b",
                    "sg-11134201-82271-mhud8uzqk7b787"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Forerunner 165",
                    "Forerunner 165 Music"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 374890880581698,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2714000000,
                "strikethrough_price": 5900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 385249967752,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5900000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 27.140",
                      "hidden_promotion_price": "Rp ?7.140",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RMUTANE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44602611025,
            "shopid": 1344444411,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225l-mhud8ah0bymdd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,298933384,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":448,\"model_id\":385249967752,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225l-mhud8ah0bymdd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,298933384,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":448,\"model_id\":385249967752,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44602611025",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41277000719,
              "shopid": 1543302642,
              "name": "H9 pro MAX Jam Tangan Pintar Pria dan Wanita Jam Tangan Olahraga 2.01โ€ HD Layar Sentuh Permainan Bluetooth Musik Menerima/Melakukan Panggilan",
              "label_ids": [
                700700063,
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                700005490,
                1049120,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-82283-mhu82ajw3nycb7",
              "images": [
                "sg-11134201-82283-mhu82ajw3nycb7",
                "sg-11134201-82269-mhu82ax9jrph8b",
                "sg-11134201-8225p-mhu82bb55341a3",
                "sg-11134201-82289-mhu82bqjfsarca",
                "sg-11134201-8227f-mhu82c9jjrb5de",
                "sg-11134201-8225x-mhu82cp41pmrb4",
                "sg-11134201-8226d-mhu82d2fclq899"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764834959,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 10400000000,
              "price_min": 10400000000,
              "price_max": 10400000000,
              "price_min_before_discount": 26000000000,
              "price_max_before_discount": 26000000000,
              "hidden_price_display": null,
              "price_before_discount": 26000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-60%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "hitam",
                    "abu-abu",
                    "berwarna merah muda"
                  ],
                  "images": [
                    "sg-11134201-8226c-mhu82ppsip6s0d",
                    "sg-11134201-8225c-mhu82q2ld88yd7",
                    "sg-11134201-82258-mhu82qfrr37n06"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 401074024624794,
                "bundle_deal_label": "Pilih 2, diskon 2%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 778869687238656,
                "price": 10192000000,
                "strikethrough_price": 26000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1306296464982016,
                "discount_text": "-60%",
                "model_id": 370248986367,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1306296464982016,
                  "voucher_code": "Y0XD91941",
                  "voucher_discount": 208000000,
                  "time_info": {
                    "start_time": 1765181880,
                    "end_time": 1769847960,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 100000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 26000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Asal556",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41277000719,
            "shopid": 1543302642,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82283-mhu82ajw3nycb7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,700005490,1049120,1718093079,822059908662278,825465608499232,825465608497696,1119699,298933384,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":450,\"model_id\":370248986367,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82283-mhu82ajw3nycb7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,700005490,1049120,1718093079,822059908662278,825465608499232,825465608497696,1119699,298933384,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":450,\"model_id\":370248986367,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41277000719",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43827000374,
              "shopid": 1224688845,
              "name": "Silicone Rubber Strap for Tali Jam Tangan Smartwatch Mi Band 10 9 8 NFC Sport Soft Band Polos Warna Bracelet Belt Repalcement Belt Accessories for Xiaomi Miband 10",
              "label_ids": [
                2018618,
                2153644,
                298888358,
                298938357,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                1718093079,
                1119699,
                700765096,
                2213652,
                1400285055,
                1015914,
                700190087,
                700810055,
                298468389,
                1718088045,
                2098628,
                2098629,
                298938368
              ],
              "image": "sg-11134201-8226t-mhu6hfitxtdydd",
              "images": [
                "sg-11134201-8226t-mhu6hfitxtdydd",
                "sg-11134201-8227q-mhu6hfwx6eiufc",
                "sg-11134201-8226f-mhu6hgc1kbgob9",
                "sg-11134201-82267-mhu6hgt666f79c",
                "sg-11134201-8224z-mhu6hh9svcap6b",
                "sg-11134201-82266-mhu6hho6vpc275",
                "sg-11134201-8227p-mhu6hi5zivpi9b",
                "sg-11134201-82273-mhu6him4e2gz39",
                "sg-11134201-8225z-mhu6hj2bzo5dcf"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764832305,
              "sold": 31,
              "historical_sold": 31,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 9,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1310000000,
              "price_min": 1310000000,
              "price_max": 1310000000,
              "price_min_before_discount": 2618000000,
              "price_max_before_discount": 2618000000,
              "hidden_price_display": null,
              "price_before_discount": 2618000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khxm-lsmksixlj03f19.16000081709891080.mp4",
                  "thumb_url": "sg-11110106-7rcdd-lsmkslqvhype6a",
                  "duration": 36,
                  "version": 2,
                  "vid": "sg-11110106-6khxm-lsmksixlj03f19",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxm-lsmksixlj03f19.16000081709891080.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxm-lsmksixlj03f19.16000081709891080.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxm-lsmksixlj03f19.16003251751983358.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxm-lsmksixlj03f19.16003251751983358.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxm-lsmksixlj03f19.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "star(strap)",
                    "black(strap)",
                    "white(strap)",
                    "yellow(strap)",
                    "orange(strap)",
                    "light pink(strap)",
                    "midnight blue(strap)",
                    "light blue(strap)",
                    "deep green(strap)",
                    "red(strap)",
                    "gray(strap)",
                    "pink(strap)",
                    "rice white(strap)",
                    "blue(strap)",
                    "yellow 2(strap)",
                    "light green(strap)",
                    "green(strap)",
                    "light gray(strap)",
                    "wine red(strap)",
                    "purple(strap)",
                    "gray1(strap)",
                    "Film"
                  ],
                  "images": [
                    "sg-11134201-8224o-mhu6hwkmton9ac",
                    "sg-11134201-82278-mhu6hxvi25tu66",
                    "sg-11134201-8225a-mhu6hz0tfwna2d",
                    "sg-11134201-82251-mhu6i051hu6gcd",
                    "sg-11134201-8227x-mhu6i11q0o3q6c",
                    "sg-11134201-82278-mhu6i1xa01za27",
                    "sg-11134201-8224p-mhu6i2n4ju9te5",
                    "sg-11134201-82277-mhu6i38ellvsa2",
                    "sg-11134201-8225f-mhu6i3vxngg28b",
                    "sg-11134201-82283-mhu6i4idc0049a",
                    "sg-11134201-8227j-mhu6i578klxc7e",
                    "sg-11134201-8225x-mhu6i60t18uc69",
                    "sg-11134201-8227l-mhu6i6lmrwnadb",
                    "sg-11134201-8227j-mhu6i79fb1ms85",
                    "sg-11134201-8226u-mhu6i7rv7egz67",
                    "sg-11134201-8226m-mhu6i8dlg3ra3f",
                    "sg-11134201-8225i-mhu6i8z9b5z92d",
                    "sg-11134201-8227k-mhu6i9l28sg8d6",
                    "sg-11134201-8225a-mhu6ia9bzdvk83",
                    "sg-11134201-8225t-mhu6iayfq7ls67",
                    "sg-11134201-8226g-mhu6ibjvtp8m14",
                    "sg-11134201-82286-mhu6ic3p7668bb"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "mi band 10 9 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  9,
                  0,
                  0,
                  0,
                  0,
                  9
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 392412463907329,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 784824206409728,
                "price": 1310000000,
                "strikethrough_price": 2618000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 320248704177,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2618000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 31,
                "rounded_local_monthly_sold_count": 31,
                "local_monthly_sold_count_text": "31",
                "rounded_display_sold_count": 31,
                "display_sold_count_text": "31"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KMAIXA Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43827000374,
            "shopid": 1224688845,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226t-mhu6hfitxtdydd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,298888358,298938357,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1718093079,1119699,700765096,2213652,1400285055,1015914,700190087,700810055,298468389,1718088045,2098628,2098629,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":451,\"model_id\":320248704177,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226t-mhu6hfitxtdydd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,298888358,298938357,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1718093079,1119699,700765096,2213652,1400285055,1015914,700190087,700810055,298468389,1718088045,2098628,2098629,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":451,\"model_id\":320248704177,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43827000374",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48602592258,
              "shopid": 1224688845,
              "name": "Anti Gores Tempered Glass PC Case Silicone Band Strap for Redmi Watch 6 5 4 Soft Sport Rubber Bracelet Hard Screen Protector Cover Accessories Tali Jam Tangan for Smartwatch Xiaomi Redmi Watch 6 5 4",
              "label_ids": [
                2018618,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298938357,
                2153644,
                298888358,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                1119699,
                700765096,
                2213652,
                1015914,
                700190087,
                298938368,
                2098629,
                2098628,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8224u-mhu5ois0b5du4b",
              "images": [
                "sg-11134201-8224u-mhu5ois0b5du4b",
                "sg-11134201-8226r-mhu5oj7y5l375d",
                "sg-11134201-8227k-mhu5ojmqek8x6f",
                "sg-11134201-8226y-mhu5okcrpfycb1",
                "sg-11134201-8224q-mhu5ol4irv2d86",
                "sg-11134201-8226j-mhu5ollj37k40b",
                "sg-11134201-8224u-mhu5om4rxvd1fa",
                "sg-11134201-8225d-mhu5omuacumc6c",
                "sg-11134201-8227b-mhu5ong1yps8a4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764830956,
              "sold": 20,
              "historical_sold": 21,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 7,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5320000000,
              "price_min": 5320000000,
              "price_max": 5320000000,
              "price_min_before_discount": 6600000000,
              "price_max_before_discount": 6600000000,
              "hidden_price_display": null,
              "price_before_discount": 6600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-19%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                  "thumb_url": "sg-11110106-6kiny-m9uaa30wleaq84_cover",
                  "duration": 30,
                  "version": 2,
                  "vid": "sg-11110106-6kiny-m9uaa30wleaq84",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Gray transparent",
                    "Clear yellow",
                    "Purple washed",
                    "Wash Red",
                    "Clear Teal",
                    "White Transparent",
                    "Midnight blue 1",
                    "Black Black",
                    "Black 1",
                    "Green Green",
                    "Pink Pink",
                    "Starlight&Starlight",
                    "grey",
                    "Yellow Power",
                    "Gray",
                    "Deep Purple",
                    "pink",
                    "Midnight blue",
                    "Dark green",
                    "Red color",
                    "teal",
                    "Starlight",
                    "White color",
                    "Black 2",
                    "Transparent",
                    "Black 3",
                    "Green Pine Needle",
                    "Pink ",
                    "Blue Ink",
                    "White Ivory"
                  ],
                  "images": [
                    "sg-11134201-8227t-mhu5p15j7rwkf0",
                    "sg-11134201-8224v-mhu5p250pvk8b9",
                    "sg-11134201-8225w-mhu5p33drcat15",
                    "sg-11134201-82269-mhu5p3zqru9t9d",
                    "sg-11134201-8225q-mhu5p4txze9wd6",
                    "sg-11134201-8225n-mhu5p5koeu4m38",
                    "sg-11134201-8226b-mhu5p6ck0746e5",
                    "sg-11134201-82267-mhu5p7154zyd99",
                    "sg-11134201-82265-mhu5p7r2ccg34d",
                    "sg-11134201-82267-mhu5p8kxrncy64",
                    "sg-11134201-8225y-mhu5p9encao367",
                    "sg-11134201-82284-mhu5pa5zw83lda",
                    "sg-11134201-8225x-mhu5paqpm5ty52",
                    "sg-11134201-8224x-mhu5pbnr3apxc6",
                    "sg-11134201-8225k-mhu5pcg4r284a4",
                    "sg-11134201-82251-mhu5pd5ddgxt2e",
                    "sg-11134201-8224u-mhu5pdwymjurdd",
                    "sg-11134201-82263-mhu5peo9yw3sd4",
                    "sg-11134201-82286-mhu5pfb6jp4x39",
                    "sg-11134201-8224o-mhu5pg30p1j90e",
                    "sg-11134201-82283-mhu5pgx5n4lk88",
                    "sg-11134201-8225w-mhu5phna9czk82",
                    "sg-11134201-8227t-mhu5pievh2wyef",
                    "sg-11134201-82289-mhu5pj2vjd3566",
                    "sg-11134201-82267-mhu5pjtyrj7o53",
                    "sg-11134201-8225c-mhu5pkf5xedd9b",
                    "sg-11134201-8226q-mhu5plae5xq8d7",
                    "sg-11134201-8226e-mhu5pm7p79c3a9",
                    "sg-11134201-82281-mhu5pn0la0w1d4",
                    "sg-11134201-8227y-mhu5pnxhpyiod8"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 6",
                    "Redmi Watch 5",
                    "Redmi Watch 4"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  7,
                  0,
                  0,
                  0,
                  0,
                  7
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 392412463907329,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 784824206409728,
                "price": 5320000000,
                "strikethrough_price": 6600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-19%",
                "model_id": 340248571106,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6600000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 21,
                "rounded_local_monthly_sold_count": 20,
                "local_monthly_sold_count_text": "20",
                "rounded_display_sold_count": 21,
                "display_sold_count_text": "21"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KMAIXA Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48602592258,
            "shopid": 1224688845,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8224u-mhu5ois0b5du4b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931064601283,844931086908638,298938357,2153644,298888358,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1119699,700765096,2213652,1015914,700190087,298938368,2098629,2098628,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":452,\"model_id\":340248571106,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8224u-mhu5ois0b5du4b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931064601283,844931086908638,298938357,2153644,298888358,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1119699,700765096,2213652,1015914,700190087,298938368,2098629,2098628,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":452,\"model_id\":340248571106,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48602592258",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44226988233,
              "shopid": 1663405339,
              "name": "Smartwatch iWatch S10 mini 42mm Apple watch S10 46mm Desain Smartwatch Wanita Pria Tipis Bingkai Sempit, Monitor Detak Jantung, Panggilan Bluetooth, Daya Tahan Baterai Panjang",
              "label_ids": [
                1400066568,
                844931064601283,
                844931086908638,
                822059908662278,
                825465608499232,
                1119699,
                1718093079,
                1049124,
                1059152,
                298463379,
                298933384,
                1400285055,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224p-mj3l4l2kunt02f",
              "images": [
                "id-11134207-8224p-mj3l4l2kunt02f",
                "id-11134207-8224w-miv7g3y379qe39",
                "id-11134207-8224x-miv7g3y31ngm96",
                "id-11134207-8224x-miv7g3y3321239",
                "id-11134207-8224z-miv7g3y34gli19",
                "id-11134207-82250-miv7g3y35v5y08",
                "id-11134207-8224w-miv7g3y38oau36",
                "id-11134207-8224r-mil8q222gmiva6",
                "id-11134207-8224w-mil8q222f7yf7e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764830168,
              "sold": 8,
              "historical_sold": 8,
              "liked": false,
              "liked_count": 18,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 7,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 50700000000,
              "price_min": 50700000000,
              "price_max": 50700000000,
              "price_min_before_discount": 78000000000,
              "price_max_before_discount": 78000000000,
              "hidden_price_display": null,
              "price_before_discount": 78000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-35%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemx-mhvdyjfwri11c6.16000081764905492.mp4",
                  "thumb_url": "id-11110105-6vemx-mhvdyjfwri11c6_cover",
                  "duration": 37,
                  "version": 2,
                  "vid": "id-11110105-6vemx-mhvdyjfwri11c6",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemx-mhvdyjfwri11c6.16000081764905492.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemx-mhvdyjfwri11c6.16000081764905492.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemx-mhvdyjfwri11c6.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Size&Warna",
                  "options": [
                    "42mm Pink",
                    "46mm Pink 2Tali Jam",
                    "46mm Hitam 2Tali Jam",
                    "46mm Starlight 2Tail",
                    "46mm Hitam",
                    "46mm Starlight",
                    "46mm Pink"
                  ],
                  "images": [
                    "id-11134207-8224s-mhu37dunt5he47",
                    "id-11134207-8224q-mhu37dunvyma9f",
                    "id-11134207-8224x-mhu37dunxd6q17",
                    "id-11134207-8224v-mhu37dunyrr6d7",
                    "id-11134207-8224z-mixvf04zq8ebc9",
                    "id-11134207-8224q-mixvf0572b5zc9",
                    "id-11134207-8224x-mixvf0573pqf83"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  7,
                  0,
                  0,
                  0,
                  0,
                  7
                ],
                "rcount_with_context": 7,
                "rcount_with_image": 7
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228202685673472,
                "price": 49700000000,
                "strikethrough_price": 78000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1303934920835072,
                "discount_text": "-35%",
                "model_id": 425248495933,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1303934920835072,
                  "voucher_code": "TZJ0666",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1764900780,
                    "end_time": 1772334780,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 20000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 78000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 8,
                "rounded_local_monthly_sold_count": 8,
                "local_monthly_sold_count_text": "8",
                "rounded_display_sold_count": 8,
                "display_sold_count_text": "8"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SmartZone  ID",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44226988233,
            "shopid": 1663405339,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mj3l4l2kunt02f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,844931086908638,822059908662278,825465608499232,1119699,1718093079,1049124,1059152,298463379,298933384,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":453,\"model_id\":425248495933,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mj3l4l2kunt02f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,844931086908638,822059908662278,825465608499232,1119699,1718093079,1049124,1059152,298463379,298933384,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":453,\"model_id\":425248495933,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44226988233",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26293745758,
              "shopid": 1517798273,
              "name": "Kiumo 4G Jam Tangan Anak Perempuan T59 Kids Smart Watch GPS Wifi Video Call Kids Watchphone Cewek Anti Air IP65 Hadiah Natal Anak Hadiah Ulang Tahun Hadiah Tahun Baru",
              "label_ids": [
                2018618,
                298513322,
                2068629,
                298938357,
                1012729,
                700025282,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                1049120,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                2213652,
                1015914,
                700190087,
                700810055,
                298938368,
                1718088045,
                2098628,
                298468389,
                2098629
              ],
              "image": "id-11134207-8224y-mi9np6qo6hvsad",
              "images": [
                "id-11134207-8224y-mi9np6qo6hvsad",
                "id-11134207-82250-mifjjix26n0mf0",
                "id-11134207-8224z-mhu4e0i282di60",
                "id-11134207-8224s-mhu4e0i2hwcm93",
                "id-11134207-8224u-mhu4e0i2f37q71",
                "id-11134207-82252-mhu4e0i2dona1d",
                "id-11134207-8224x-mhu4e0i29gxy12",
                "id-11134207-8224w-mhu4e0i2aviee7",
                "id-11134207-8224y-mhu4e0i2jax2b0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764830164,
              "sold": 6,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 13,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 59800000000,
              "price_min": 59800000000,
              "price_max": 59800000000,
              "price_min_before_discount": 139000000000,
              "price_max_before_discount": 139000000000,
              "hidden_price_display": null,
              "price_before_discount": 139000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-57%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemw-mifm1z80g3yed3.16000031766129709.mp4",
                  "thumb_url": "id-11110105-6vemw-mifm1z80g3yed3_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6vemw-mifm1z80g3yed3",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemw-mifm1z80g3yed3.16000031766129709.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemw-mifm1z80g3yed3.16000031766129709.mp4",
                      "width": 480,
                      "height": 854
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemw-mifm1z80g3yed3.default.mp4",
                    "width": 480,
                    "height": 854
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "T59-Biru",
                    "Merah Muda + Biru",
                    "Biru+Mainan",
                    "T66-Merah muda",
                    "T66-Biru",
                    "T66-Hitam",
                    "Merah Muda+Mainan",
                    "T59-Merah Muda"
                  ],
                  "images": [
                    "id-11134207-82251-mhsy6biza96we7",
                    "id-11134207-8224s-mhu52xi3l3ib14",
                    "id-11134207-8224u-mifjjix29g5ie4",
                    "id-11134207-8224v-mifjjix2ja4m83",
                    "id-11134207-82252-mifjjix2kop2c4",
                    "id-11134207-8224o-mifk7oj0aosif0",
                    "id-11134207-8224w-mj23pjuz6329d8",
                    "id-11134207-8224w-mj23pjuz6329d8"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 409714735464484,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp197RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227975320842244,
                "price": 59300000000,
                "strikethrough_price": 139000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1291629269893120,
                "discount_text": "-57%",
                "model_id": 410248483924,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1291629269893120,
                  "voucher_code": "KIUM50009",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1763436900,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 9900000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 139000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 6,
                "local_monthly_sold_count_text": "6",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp197RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Kiumo Official ",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26293745758,
            "shopid": 1517798273,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mi9np6qo6hvsad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298513322,2068629,298938357,1012729,700025282,1428713,1718087960,844931064601283,844931086908638,298463379,700005490,1049120,1718093079,822059908662278,825465608499232,825465608497696,1119699,2213652,1015914,700190087,700810055,298938368,1718088045,2098628,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":427,\"model_id\":410248483924,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mi9np6qo6hvsad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298513322,2068629,298938357,1012729,700025282,1428713,1718087960,844931064601283,844931086908638,298463379,700005490,1049120,1718093079,822059908662278,825465608499232,825465608497696,1119699,2213652,1015914,700190087,700810055,298938368,1718088045,2098628,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":427,\"model_id\":410248483924,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26293745758",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51652560586,
              "shopid": 1174572300,
              "name": "Anti Gores TPU Case Silicone Band Strap for Redmi Watch 6 5 4 Soft Sport Rubber Belt Screen Protector Cover Bumper Accessories Tali Jam Tangan for Smartwatch Xiaomi Redmi Watch 6 5 4",
              "label_ids": [
                2018619,
                298888358,
                2023641,
                298938357,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1718093079,
                1119699,
                700765096,
                298933384,
                298938368,
                2098629,
                2098628,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8226g-mhtymgy3f7r968",
              "images": [
                "sg-11134201-8226g-mhtymgy3f7r968",
                "sg-11134201-82260-mhtymhikd3pkce",
                "sg-11134201-8225x-mhtymickcsn473",
                "sg-11134201-8227z-mhtymjdzxptv5c",
                "sg-11134201-8226z-mhtymjx46l1gce",
                "sg-11134201-8224v-mhtymkpdjshva1",
                "sg-11134201-8227q-mhtymlfvwgsj8c",
                "sg-11134201-82262-mhtymlx4ketk72",
                "sg-11134201-8226x-mhtymmpzfl6o2e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764819091,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5220000000,
              "price_min": 5220000000,
              "price_max": 5220000000,
              "price_min_before_discount": 6000000000,
              "price_max_before_discount": 6000000000,
              "hidden_price_display": null,
              "price_before_discount": 6000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-13%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                  "thumb_url": "sg-11110106-6kiny-m9uaa30wleaq84_cover",
                  "duration": 30,
                  "version": 2,
                  "vid": "sg-11110106-6kiny-m9uaa30wleaq84",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Clear & teal",
                    "Clear & Dark green",
                    "Clear & Red",
                    "Clear & White",
                    "Clear &  Deep Purple",
                    "Rose Gold & ivory",
                    "Dark gray & Black",
                    "Black Black",
                    "Midnight & midnight",
                    "Pink & Pink",
                    "Golden & yellow",
                    "Silver & Gray",
                    "grey",
                    "Yellow Power",
                    "Gray ",
                    "Deep Purple",
                    "pink",
                    "Midnight blue",
                    "Dark green",
                    "Red color",
                    "Water duck",
                    "Starlight",
                    "White color",
                    "Black color",
                    "Clear White",
                    "Black 1",
                    "Silver color",
                    "Gold",
                    "Gold rose gold",
                    "Midnight blue 1",
                    "Pink color"
                  ],
                  "images": [
                    "sg-11134201-8225i-mhtyn0auqp6t70",
                    "sg-11134201-8226b-mhtyn14lzpc125",
                    "sg-11134201-82250-mhtyn1qpdtl0e5",
                    "sg-11134201-82274-mhtyn29gd3pida",
                    "sg-11134201-82258-mhtyn2ujdzid93",
                    "sg-11134201-8224p-mhtyn3d7mxvk2a",
                    "sg-11134201-82259-mhtyn3yxvoqo97",
                    "sg-11134201-8225w-mhtyn4kl8g06e4",
                    "sg-11134201-82262-mhtyn57b96gw3e",
                    "sg-11134201-82251-mhtyn5tc5edebc",
                    "sg-11134201-8227u-mhtyn6fgv6rn18",
                    "sg-11134201-82264-mhtyn70a0s1wd4",
                    "sg-11134201-82285-mhtyn7ktdpmt9b",
                    "sg-11134201-8225n-mhtyn8aor30m1e",
                    "sg-11134201-82284-mhtyn8ys7klga6",
                    "sg-11134201-82260-mhtyn9pkmltyad",
                    "sg-11134201-82275-mhtynaf85n2cf0",
                    "sg-11134201-8225t-mhtynb5ehmv421",
                    "sg-11134201-8224o-mhtynbz3turnfd",
                    "sg-11134201-82258-mhtyncra1a835b",
                    "sg-11134201-82283-mhtyndi042yo7a",
                    "sg-11134201-8225p-mhtyne62eh3c9f",
                    "sg-11134201-82261-mhtynet1pipw47",
                    "sg-11134201-8224u-mhtynfjyf401eb",
                    "sg-11134201-82263-mhtyngcb7xfo4a",
                    "sg-11134201-82262-mhtynhcohfcx89",
                    "sg-11134201-82251-mhtyni4og5j828",
                    "sg-11134201-8225r-mhtynix35r7q62",
                    "sg-11134201-8226w-mhtynjui0s1s6e",
                    "sg-11134201-8227s-mhtynkovzcaocd",
                    "sg-11134201-8225k-mhtynliriwhu42"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 6",
                    "Redmi Watch 5",
                    "Redmi Watch 4"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 403879611347075,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 807760187424768,
                "price": 5220000000,
                "strikethrough_price": 6000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-13%",
                "model_id": 79598270670,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KMAIXA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51652560586,
            "shopid": 1174572300,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226g-mhtymgy3f7r968\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298888358,2023641,298938357,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1718093079,1119699,700765096,298933384,298938368,2098629,2098628,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":454,\"model_id\":79598270670,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226g-mhtymgy3f7r968\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298888358,2023641,298938357,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1718093079,1119699,700765096,298933384,298938368,2098629,2098628,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":454,\"model_id\":79598270670,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51652560586",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40476976462,
              "shopid": 1174572300,
              "name": "Tempered Glass PC Case Cover for Redmi Watch 6 5 4 Case Anti Gores Hard All-Around Screen Protector with Film Bumper Frame Accessories for Jam Tangan Smartwatch Redmi Watch 6 5 4",
              "label_ids": [
                2023641,
                2018619,
                298888358,
                298938357,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1718093079,
                1119699,
                700765096,
                298468389,
                1718088045,
                2098628,
                2098629,
                298938368
              ],
              "image": "sg-11134201-8227u-mht66y3l1slfd9",
              "images": [
                "sg-11134201-8227u-mht66y3l1slfd9",
                "sg-11134201-8224w-mht66ypbn4zm3d",
                "sg-11134201-8226x-mht66zhezzeq88",
                "sg-11134201-8226n-mht66zzhh6h485",
                "sg-11134201-82279-mht670j64n4467",
                "sg-11134201-82269-mht671bd45xg26",
                "sg-11134201-8227l-mht6721uc3r636",
                "sg-11134201-8227l-mht672k8obgmb0",
                "sg-11134201-82288-mht6732spiwwb0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764771282,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2660000000,
              "price_min": 2660000000,
              "price_max": 2660000000,
              "price_min_before_discount": 6000000000,
              "price_max_before_discount": 6000000000,
              "hidden_price_display": null,
              "price_before_discount": 6000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-56%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Transparent(Case)",
                    "Black(Case)",
                    "Green(Case)",
                    "Pink (Case)",
                    "Blue(Case)",
                    "Ivory(Case)",
                    "3D Film"
                  ],
                  "images": [
                    "sg-11134201-8226t-mht67gvtphxiad",
                    "sg-11134201-8227o-mht67i5js3k341",
                    "sg-11134201-8226m-mht67jmfn9q815",
                    "sg-11134201-8226t-mht67ktjsr9ca8",
                    "sg-11134201-82274-mht67lp1y4g332",
                    "sg-11134201-8225i-mht67mbo2fpc25",
                    "sg-11134201-8226v-mht67mxnzjetff"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 6",
                    "Redmi Watch 5",
                    "Redmi Watch 4"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 403879611347075,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2660000000,
                "strikethrough_price": 6000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-56%",
                "model_id": 315246021905,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 26.600",
                      "hidden_promotion_price": "Rp ?6.600",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KMAIXA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40476976462,
            "shopid": 1174572300,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227u-mht66y3l1slfd9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,298888358,298938357,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,1119699,700765096,298468389,1718088045,2098628,2098629,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":455,\"model_id\":315246021905,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227u-mht66y3l1slfd9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,298888358,298938357,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,1119699,700765096,298468389,1718088045,2098628,2098629,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":455,\"model_id\":315246021905,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40476976462",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46102548659,
              "shopid": 1671315189,
              "name": "Original OPPO Watch 4 Bluetooth Play Music SmartWatch For IOS Android Full Touch Screen Phone Call IP68 Waterproof Jam Tangan Wanita/Pria Olahraga Calories Pedometer Multifunction Mainkan Musik Watch",
              "label_ids": [
                844931064601283,
                844931086908638,
                1049122,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                298933384,
                298463379,
                1428713,
                1718087960,
                1400285055,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224o-mht4ut7zsd1kb0",
              "images": [
                "id-11134207-8224o-mht4ut7zsd1kb0",
                "id-11134207-8224v-mht4ut7zxzbc29",
                "id-11134207-8224z-mht4ut7ztrm0fe",
                "id-11134207-8224p-mht4ut7zwkqwa7",
                "id-11134207-8224s-mht4yi08myh4ba",
                "id-11134207-8224w-mht4yi06aoedd5",
                "id-11134207-8224q-mht4yi05ttkz9c",
                "id-11134207-8224t-mht4ut7zzdvs18",
                "id-11134207-8224p-mht4ut7zv66gf9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764769499,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 26800000000,
              "price_min": 26800000000,
              "price_max": 26800000000,
              "price_min_before_discount": 99800000000,
              "price_max_before_discount": 99800000000,
              "hidden_price_display": null,
              "price_before_discount": 99800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-73%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv7-mht4zenwak1x34.16000081764769262.mp4",
                  "thumb_url": "id-11110105-6vdv7-mht4zenwak1x34_cover",
                  "duration": 47,
                  "version": 2,
                  "vid": "id-11110105-6vdv7-mht4zenwak1x34",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv7-mht4zenwak1x34.16000081764769262.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv7-mht4zenwak1x34.16000081764769262.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv7-mht4zenwak1x34.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black",
                    "Silver",
                    "Back-Watch"
                  ],
                  "images": [
                    "id-11134207-82252-mht4yi07clq916",
                    "id-11134207-82251-mht4yi07e0apfd",
                    "id-11134207-82251-mht4yi07fev586"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228045067923456,
                "price": 26100000000,
                "strikethrough_price": 99800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1310825969369088,
                "discount_text": "-73%",
                "model_id": 435245324341,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1310825969369088,
                  "voucher_code": "M20BV2",
                  "voucher_discount": 700000000,
                  "time_info": {
                    "start_time": 1765722300,
                    "end_time": 1773838800,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 20000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 99800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Up 3C Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46102548659,
            "shopid": 1671315189,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mht4ut7zsd1kb0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049122,1059152,1718093079,822059908662278,825465608499232,298933384,298463379,1428713,1718087960,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":456,\"model_id\":435245324341,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mht4ut7zsd1kb0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049122,1059152,1718093079,822059908662278,825465608499232,298933384,298463379,1428713,1718087960,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":456,\"model_id\":435245324341,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46102548659",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51102537396,
              "shopid": 1679115711,
              "name": "Original Samsung AH21 Paket mini Smartwatch & Gelang Pandora Gift Tahan Air IP67 AMOLED Bluetooth smartwatch",
              "label_ids": [
                844931086908638,
                844931064601283,
                1049122,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384,
                1400285055
              ],
              "image": "id-11134207-8224y-mi6rju17typsd5",
              "images": [
                "id-11134207-8224y-mi6rju17typsd5",
                "sg-11134201-82264-mht4rtek1amccb",
                "sg-11134201-8226r-mht4rt5m3ev806",
                "sg-11134201-8226d-mht4rvcr0y6938",
                "sg-11134201-8225g-mht4rvl6fklkdb",
                "sg-11134201-8225c-mht4rto0mk8z01",
                "sg-11134201-82289-mht4rvx0o5xed5",
                "sg-11134201-8224q-mht4rw7vzjewec",
                "sg-11134201-82286-mht4rwl6cpvo6f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764769116,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 22080000000,
              "price_min": 22080000000,
              "price_max": 22080000000,
              "price_min_before_discount": 82800000000,
              "price_max_before_discount": 82800000000,
              "hidden_price_display": null,
              "price_before_discount": 82800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-73%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9b7-mht4wukz4mx470.16000101764769128.mp4",
                  "thumb_url": "sg-11110106-6v9b7-mht4wukz4mx470_cover",
                  "duration": 43,
                  "version": 2,
                  "vid": "sg-11110106-6v9b7-mht4wukz4mx470",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9b7-mht4wukz4mx470.16000101764769128.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9b7-mht4wukz4mx470.16000101764769128.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9b7-mht4wukz4mx470.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "gold",
                    "black",
                    "black."
                  ],
                  "images": [
                    "sg-11134201-8226r-mht4rt5m3ev806",
                    "sg-11134201-82264-mht4rtek1amccb",
                    "sg-11134201-8225c-mht4rto0mk8z01"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 800840533737472,
                "price": 21730000000,
                "strikethrough_price": 82800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1325768311717888,
                "discount_text": "-73%",
                "model_id": 415245315201,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1325768311717888,
                  "voucher_code": "7PTIAZ3",
                  "voucher_discount": 350000000,
                  "time_info": {
                    "start_time": 1767503640,
                    "end_time": 1768716840,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 82800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "NeoSound Tech",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51102537396,
            "shopid": 1679115711,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mi6rju17typsd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049122,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699,298933384,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":201,\"model_id\":415245315201,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mi6rju17typsd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049122,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699,298933384,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":201,\"model_id\":415245315201,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51102537396",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45652548585,
              "shopid": 1671315189,
              "name": "[COD] ORI OPPO Watch 10 Smartwatch fullScreen 2.3-inch IP68 Waterproof Bisa Telponan Dan Ganti Wallpapper Monitor Detak Jantung Tekanan Darah Smart Watch",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                1718093079,
                1119699,
                298463379,
                1718087960,
                1428713,
                1400285055,
                298933384,
                1015914,
                700190087,
                2103651,
                2143613,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224o-mht4qet4zwn54f",
              "images": [
                "id-11134207-8224o-mht4qet4zwn54f",
                "id-11134207-8224z-mht4qet5b56p80",
                "id-11134207-8224z-mht4qet5dybld7",
                "id-11134207-82250-mht4qet52ps1f1",
                "id-11134207-8224t-mht4qet544chbc",
                "id-11134207-82251-mht4qet55iwx2e",
                "id-11134207-8224z-mht4qet56xhda6",
                "id-11134207-8224x-mht4qet59qm977",
                "id-11134207-8224q-mht4qet51b7l81"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764769106,
              "sold": 21,
              "historical_sold": 21,
              "liked": false,
              "liked_count": 32,
              "view_count": null,
              "catid": 100013,
              "brand": "Oppo",
              "cmt_count": 8,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 11800000000,
              "price_min": 11800000000,
              "price_max": 11800000000,
              "price_min_before_discount": 79800000000,
              "price_max_before_discount": 79800000000,
              "hidden_price_display": null,
              "price_before_discount": 79800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-85%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvi-mht4ro3ywxky5b.16000031764768884.mp4",
                  "thumb_url": "id-11110105-6vdvi-mht4ro3ywxky5b_cover",
                  "duration": 34,
                  "version": 2,
                  "vid": "id-11110105-6vdvi-mht4ro3ywxky5b",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvi-mht4ro3ywxky5b.16000031764768884.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvi-mht4ro3ywxky5b.16000031764768884.mp4",
                      "width": 960,
                      "height": 480
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvi-mht4ro3ywxky5b.default.mp4",
                    "width": 960,
                    "height": 480
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black",
                    "Pink",
                    "White",
                    "Blue",
                    "Black-watch10"
                  ],
                  "images": [
                    "id-11134207-82252-mht4ut874fszc0",
                    "id-11134207-8224t-mht4ut7zmqrs0e",
                    "id-11134207-8224z-mht4ut7zo5c825",
                    "id-11134207-82250-mht4ut7zpjwo8b",
                    "id-11134207-8224r-mht4ut7zqyh492"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.75,
                "rating_count": [
                  8,
                  0,
                  0,
                  1,
                  0,
                  7
                ],
                "rcount_with_context": 6,
                "rcount_with_image": 6
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228045067923456,
                "price": 11600000000,
                "strikethrough_price": 79800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1310825156591616,
                "discount_text": "-85%",
                "model_id": 228214834489,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1310825156591616,
                  "voucher_code": "M20BV1",
                  "voucher_discount": 200000000,
                  "time_info": {
                    "start_time": 1765722240,
                    "end_time": 1773838800,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 79800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 21,
                "rounded_local_monthly_sold_count": 21,
                "local_monthly_sold_count_text": "21",
                "rounded_display_sold_count": 21,
                "display_sold_count_text": "21"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Up 3C Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45652548585,
            "shopid": 1671315189,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mht4qet4zwn54f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,1718093079,1119699,298463379,1718087960,1428713,1400285055,298933384,1015914,700190087,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":457,\"model_id\":228214834489,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mht4qet4zwn54f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,1718093079,1119699,298463379,1718087960,1428713,1400285055,298933384,1015914,700190087,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":457,\"model_id\":228214834489,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45652548585",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50652503859,
              "shopid": 1347110061,
              "name": "WavLO18 Wave Strap 18mm for Huawei GT6 GT5 GT4 41mm 42mm, Garmin Forerunner 265S 255s Venu 2S 3S Move 3s dll (Tali Jam Silicone 18 MM)",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1428713,
                1718087960,
                298463379,
                825465608493600,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-822z2-mi1de11vk4qpee",
              "images": [
                "sg-11134201-822z2-mi1de11vk4qpee",
                "sg-11134201-822wh-mi1de12zo4jl72",
                "sg-11134201-822xp-mi1de17t6mfcd2",
                "sg-11134201-822xi-mi1de15y9o1w49",
                "sg-11134201-822xz-mi1de12btvk099",
                "sg-11134201-82301-mi1de10erksge7",
                "sg-11134201-822yg-mi1de139883m0e",
                "sg-11134201-822wj-mi1de11w2cjpd7",
                "sg-11134201-822yr-mi1de11rrvnk68"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764748133,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1990000000,
              "price_min": 1990000000,
              "price_max": 1990000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color Variant",
                  "options": [
                    "Black",
                    "Pink",
                    "Blue",
                    "Purple",
                    "Cream",
                    "White",
                    "Red"
                  ],
                  "images": [
                    "sg-11134201-822z5-mi1de0jcp0qq2e",
                    "sg-11134201-822x8-mi1de0jnxkas5d",
                    "sg-11134201-822xc-mi1de0jvqhvq66",
                    "sg-11134201-822yl-mi1de0p1xibo18",
                    "sg-11134201-822yu-mi1de0jib8xt17",
                    "sg-11134201-822yf-mi1de0jy2rycb8",
                    "sg-11134201-822xi-mi1de0kjoykj51"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1990000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 302223795921,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1990000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "gLogy",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50652503859,
            "shopid": 1347110061,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822z2-mi1de11vk4qpee\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699,1428713,1718087960,298463379,825465608493600,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":392,\"model_id\":302223795921,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822z2-mi1de11vk4qpee\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699,1428713,1718087960,298463379,825465608493600,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":392,\"model_id\":302223795921,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50652503859",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57002500124,
              "shopid": 1679187046,
              "name": "Smartwatch anak Q19 |SOS| Panggilan dua arah | dan pengambilan foto | Layar tahan air HD 1,44 inci | Baterai super | Pagar pengaman | jam tangan anak | Jam Tangan Anak Laki-laki | jam tangan gad",
              "label_ids": [
                844931086908638,
                844931064601283,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                298463379,
                1400285055,
                1015914,
                700190087,
                298933384,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224t-mhul5zcwt5aa55",
              "images": [
                "id-11134207-8224t-mhul5zcwt5aa55",
                "sg-11134201-8224r-mhsjhs78ixvnd0",
                "sg-11134201-8225q-mhsjhunz1mo066",
                "sg-11134201-8225l-mhsjhzg6yih094",
                "sg-11134201-8226v-mhsji1iwjcw3d6",
                "sg-11134201-82269-mhsji5wlbwucb3",
                "sg-11134201-82263-mhsji9palyit0d",
                "sg-11134201-8225e-mhsjibam50jk65",
                "sg-11134201-8226o-mhsjici31vd4cc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764733133,
              "sold": 5,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 17699900000,
              "price_min": 17699900000,
              "price_max": 17699900000,
              "price_min_before_discount": 45000000000,
              "price_max_before_discount": 45000000000,
              "hidden_price_display": null,
              "price_before_discount": 45000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-61%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vene-mj5lwxq1ughy74.16000101767703374.mp4",
                  "thumb_url": "id-11110105-6vene-mj5lwxq1ughy74_cover",
                  "duration": 25,
                  "version": 2,
                  "vid": "id-11110105-6vene-mj5lwxq1ughy74",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vene-mj5lwxq1ughy74.16000101767703374.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vene-mj5lwxq1ughy74.16000101767703374.mp4",
                      "width": 960,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vene-mj5lwxq1ughy74.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "purple",
                    "green",
                    "redblue",
                    "black",
                    "pink",
                    "blue"
                  ],
                  "images": [
                    "id-11134207-8224p-mhul5zczyxab0f",
                    "id-11134207-8224z-mhul5zd00bur42",
                    "id-11134207-8224w-mhul5zd01qf703",
                    "id-11134207-8224q-mhul5zd034znb6",
                    "id-11134207-8224y-mhul5zd04jk389",
                    "id-11134207-8224q-mhul5zd05y4j0f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228058124795904,
                "price": 17199900000,
                "strikethrough_price": 45000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1322446037598224,
                "discount_text": "-61%",
                "model_id": 350250966447,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1322446037598224,
                  "voucher_code": "EK6GA02",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1767107640,
                    "end_time": 1774973640,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 17000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 45000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Smartwatch Anak Sekolah",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57002500124,
            "shopid": 1679187046,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mhul5zcwt5aa55\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,298463379,1400285055,1015914,700190087,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":179,\"model_id\":350250966447,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mhul5zcwt5aa55\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,298463379,1400285055,1015914,700190087,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":179,\"model_id\":350250966447,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57002500124",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41026948681,
              "shopid": 1344420450,
              "name": "Rubber Strap Tempered Glass Case for Redmi Watch 6 5 4 Soft Sport Silicone Band Hard PC Screen Protector Cover Accessories for Tali Jam Tangan Smartwatch Xiaomi Redmi Watch 6 5 4",
              "label_ids": [
                2023641,
                2018619,
                844931064601283,
                1428713,
                1718087960,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1119699,
                700765096,
                700810080,
                298933384,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8226a-mhseux1qyc5ga7",
              "images": [
                "sg-11134201-8226a-mhseux1qyc5ga7",
                "sg-11134201-82274-mhseuxsld1xc48",
                "sg-11134201-82282-mhseuyc7a8ebaa",
                "sg-11134201-8227p-mhseuywark0040",
                "sg-11134201-8225y-mhseuzccnzlwc8",
                "sg-11134201-8227c-mhseuzvmgd1g7e",
                "sg-11134201-8226e-mhsev061ayvc8b",
                "sg-11134201-8226a-mhsev0lf3bic22",
                "sg-11134201-8225u-mhsev106vhfp1b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764725319,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5070000000,
              "price_min": 5070000000,
              "price_max": 5070000000,
              "price_min_before_discount": 6000000000,
              "price_max_before_discount": 6000000000,
              "hidden_price_display": null,
              "price_before_discount": 6000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-16%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                  "thumb_url": "sg-11110106-6kiny-m9uaa30wleaq84_cover",
                  "duration": 30,
                  "version": 2,
                  "vid": "sg-11110106-6kiny-m9uaa30wleaq84",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Gray transparent",
                    "Clear yellow",
                    "Purple washed",
                    "Wash Red",
                    "Clear Teal",
                    "White Transparent",
                    "Midnight blue 1",
                    "Black Black",
                    "Black 1",
                    "Green Green",
                    "Pink Pink",
                    "Starlight&Starlight",
                    "grey",
                    "Yellow Power",
                    "Gray",
                    "Deep Purple",
                    "pink",
                    "Midnight blue",
                    "Dark green",
                    "Red color",
                    "teal",
                    "Starlight",
                    "White color",
                    "Black 2",
                    "Transparent",
                    "Black 3",
                    "Green Pine Needle",
                    "Pink ",
                    "Blue Ink",
                    "White Ivory"
                  ],
                  "images": [
                    "sg-11134201-82260-mhseveedbk7498",
                    "sg-11134201-8224q-mhseven4xxj76c",
                    "sg-11134201-8227d-mhseveytpts32b",
                    "sg-11134201-8225n-mhsevf6whc790c",
                    "sg-11134201-8226i-mhsevflrqio837",
                    "sg-11134201-8225v-mhsevfvm29s181",
                    "sg-11134201-82267-mhsevg7gq9s85b",
                    "sg-11134201-8225n-mhsevgj29mgzd3",
                    "sg-11134201-82265-mhsevh3dh0xv01",
                    "sg-11134201-8226z-mhsevhgg9p8j18",
                    "sg-11134201-8225x-mhsevhwruj9kca",
                    "sg-11134201-8226y-mhsevien3toka4",
                    "sg-11134201-82289-mhsevisijh8hc3",
                    "sg-11134201-82279-mhsevj980dfn88",
                    "sg-11134201-8225v-mhsevjhpd9ts98",
                    "sg-11134201-8224z-mhsevjxg5gqse9",
                    "sg-11134201-8224t-mhsevk6eabra4a",
                    "sg-11134201-82270-mhsevke3sao249",
                    "sg-11134201-8227f-mhsevkqdqxabe0",
                    "sg-11134201-8224p-mhsevl0dhxc19b",
                    "sg-11134201-82284-mhsevldcfjeo47",
                    "sg-11134201-82264-mhsevllizchu52",
                    "sg-11134201-82281-mhsevlxnvda8a3",
                    "sg-11134201-8226v-mhsevm4zy4uc88",
                    "sg-11134201-82279-mhsevmcwl79i5d",
                    "sg-11134201-8225s-mhsevmlq2wox79",
                    "sg-11134201-8226t-mhsevmy8l79cb7",
                    "sg-11134201-8225k-mhsevn853klc0d",
                    "sg-11134201-82288-mhsevnfb395230",
                    "sg-11134201-82266-mhsevnsbs16p5b"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 6",
                    "Redmi Watch 5",
                    "Redmi Watch 4"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 374887344785170,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5070000000,
                "strikethrough_price": 6000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-16%",
                "model_id": 425241324447,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 50.700",
                      "hidden_promotion_price": "Rp ?0.700",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "I LOVE LUO",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41026948681,
            "shopid": 1344420450,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226a-mhseux1qyc5ga7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,844931064601283,1428713,1718087960,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,700765096,700810080,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":460,\"model_id\":425241324447,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226a-mhseux1qyc5ga7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,844931064601283,1428713,1718087960,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,700765096,700810080,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":460,\"model_id\":425241324447,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41026948681",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54552496723,
              "shopid": 1174585117,
              "name": "Silicone Strap Anti Gores Case for Redmi Watch 6 5 4 Sport TPU Screen Protector Bumper Cover Rubber Band Belt Accessories Tali Jam Tangan Smartwatch for Xiaomi Redmi Watch 6 5 4",
              "label_ids": [
                2023641,
                2018619,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                700765096,
                298933384,
                1400285055,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-822wg-mhvsqdczpb7n11",
              "images": [
                "sg-11134201-822wg-mhvsqdczpb7n11",
                "sg-11134201-822xl-mhvsqeuo8wsmc5",
                "sg-11134201-822xz-mhvsqfflcbuwf6",
                "sg-11134201-822ze-mhvsqfsq1tzc51",
                "sg-11134201-822zx-mhvsqgetfv2c99",
                "sg-11134201-82301-mhvsqgszzw1y38",
                "sg-11134201-822zz-mhvsqhp5ob9i4a",
                "sg-11134201-8226p-mhvlaalok4jk15",
                "sg-11134201-822zt-mhvsqisz92iod1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764725190,
              "sold": 11,
              "historical_sold": 13,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3090000000,
              "price_min": 3090000000,
              "price_max": 3090000000,
              "price_min_before_discount": 4000000000,
              "price_max_before_discount": 4000000000,
              "hidden_price_display": null,
              "price_before_discount": 4000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-23%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.16000081754637246.mp4",
                  "thumb_url": "sg-11110106-6kioc-md5rgbyovjdycb_cover",
                  "duration": 37,
                  "version": 2,
                  "vid": "sg-11110106-6kioc-md5rgbyovjdycb",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.16000081754637246.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.16000081754637246.mp4",
                      "width": 1280,
                      "height": 672
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.default.mp4",
                    "width": 1028,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Blue stretch Silver",
                    "White Transparent",
                    "Rose gold Orange",
                    "Transparent duck",
                    "Purple washed",
                    "Wash Red",
                    "White Ivory gold",
                    "Silver army green",
                    "Silver Gray",
                    "Black Black",
                    "Midnight blue",
                    "Golden Lemon",
                    "Pink Pink",
                    "Lemon",
                    "Blue stretch",
                    "White Ivory",
                    "Orange color",
                    "Red color",
                    "Purple color",
                    "Water duck",
                    "Gray color",
                    "Midnight blue 1",
                    "Army Green",
                    "Black color",
                    "White color",
                    "Pink color",
                    "Transparent",
                    "Silver color",
                    "Black 1",
                    "Midnight blue 2",
                    "Gold rose gold",
                    "Gold",
                    "Rose powder"
                  ],
                  "images": [
                    "sg-11134201-8225u-mhsesn896r5t62",
                    "sg-11134201-82289-mhsesnp1nric8b",
                    "sg-11134201-82269-mhsesoan0vszec",
                    "sg-11134201-8225q-mhsesovdn66c55",
                    "sg-11134201-82255-mhsespbo39qb84",
                    "sg-11134201-82284-mhsespt4wsg108",
                    "sg-11134201-8226j-mhsesq85l7uwa2",
                    "sg-11134201-8226h-mhsesqoi57no08",
                    "sg-11134201-8224p-mhrmmqw4faq041",
                    "sg-11134201-8227z-mhsesrsa2z2c79",
                    "sg-11134201-8226k-mhsessio7y0yca",
                    "sg-11134201-8226k-mhsestpommmg86",
                    "sg-11134201-8227w-mhrmmrx2wxl00f",
                    "sg-11134201-8226b-mhsesu891vr67a",
                    "sg-11134201-82267-mhsesulk1kw495",
                    "sg-11134201-8226p-mhsesv29v47850",
                    "sg-11134201-82286-mhsesvej3210f7",
                    "sg-11134201-8225z-mhsesvz0otmq5f",
                    "sg-11134201-8227r-mhseswbic4js61",
                    "sg-11134201-82261-mhseswo8or9c3c",
                    "sg-11134201-82260-mhseswzvxvd1ee",
                    "sg-11134201-8225j-mhsesxa8aku8d8",
                    "sg-11134201-82281-mhsesxjpbcaoa6",
                    "sg-11134201-8226j-mhsesxsxbmkha5",
                    "sg-11134201-8226c-mhsesy4mkc1s26",
                    "sg-11134201-82288-mhsesyd8zvup57",
                    "sg-11134201-82265-mhsesynt2o788d",
                    "sg-11134201-8226e-mhsesyvxd0cmea",
                    "sg-11134201-8225x-mhsesz6mmnsz49",
                    "sg-11134201-8226m-mhseszsg3y8245",
                    "sg-11134201-8225z-mhset00lc008ca",
                    "sg-11134201-8226z-mhset0ciujgld9",
                    "sg-11134201-82276-mhset0km4efac2"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 4",
                    "Redmi Watch 5",
                    "Redmi Watch 6"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4,
                "rating_count": [
                  3,
                  0,
                  1,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 807852856360960,
                "price": 3090000000,
                "strikethrough_price": 4000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-23%",
                "model_id": 345241308082,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 13,
                "rounded_local_monthly_sold_count": 11,
                "local_monthly_sold_count_text": "11",
                "rounded_display_sold_count": 13,
                "display_sold_count_text": "13"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Lbiaodai",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54552496723,
            "shopid": 1174585117,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822wg-mhvsqdczpb7n11\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1119699,700765096,298933384,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":463,\"model_id\":345241308082,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822wg-mhvsqdczpb7n11\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1119699,700765096,298933384,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":463,\"model_id\":345241308082,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54552496723",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45402507823,
              "shopid": 1191507022,
              "name": "Soft Clear Case Silicone Strap for Apple Watch Ultra/SE 3 2 49mm IWatch Series 11 10 9 8 7 6 5 4 3 46 45 44 42 41 40 38mm Transparent Screen Protector Cover Rubber Band for Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059154,
                1059152,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1718093079,
                1119699,
                700765096,
                1400285055,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8226k-mhsesqayncao56",
              "images": [
                "sg-11134201-8226k-mhsesqayncao56",
                "sg-11134201-8224u-mhsesrujl9twbe",
                "sg-11134201-82267-mhsestb1rg8yd1",
                "sg-11134201-82275-mhsesu8v7qbpa8",
                "sg-11134201-8227z-mhsesvbbtmvcaa",
                "sg-11134201-8226a-mhsesw9idywxc2",
                "sg-11134201-8226e-mhseswsif37l9e",
                "sg-11134201-8226x-mhsesxtrn08w73",
                "sg-11134201-8225h-mhsesyoxvzsxd7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764725222,
              "sold": 23,
              "historical_sold": 29,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 8,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2230000000,
              "price_min": 2230000000,
              "price_max": 2230000000,
              "price_min_before_discount": 4280000000,
              "price_max_before_discount": 4280000000,
              "hidden_price_display": null,
              "price_before_discount": 4280000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-48%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16000081749696144.mp4",
                  "thumb_url": "sg-11110106-6kio8-maw4ytflch9ed3_cover",
                  "duration": 15,
                  "version": 2,
                  "vid": "sg-11110106-6kio8-maw4ytflch9ed3",
                  "formats": [
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004081756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004081756725327.mp4",
                      "width": 640,
                      "height": 360
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006731756726107.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006731756726107.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006711756726107.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006711756726107.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004091756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004091756725327.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16000081749696144.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16000081749696144.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16003251756726107.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16003251756726107.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600724,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007241766639118.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007241766639118.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600725,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007251766639118.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007251766639118.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004101756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004101756725327.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004111756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004111756725327.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black",
                    "White",
                    "pink sand",
                    "Midnight",
                    "light purple",
                    "Yellow",
                    "Lavender",
                    "Starlight",
                    "pistachio",
                    "dark blue",
                    "Cherry"
                  ],
                  "images": [
                    "sg-11134201-8224t-mhsetbn2bc3obc",
                    "sg-11134201-8225t-mhsetcity2v6ee",
                    "sg-11134201-8224z-mhsetdgyk3d4c0",
                    "sg-11134201-82266-mhsetebco9vpb2",
                    "sg-11134201-82271-mhsetf99k93af2",
                    "sg-11134201-82282-mhsetg4r1p1d9c",
                    "sg-11134201-82281-mhsetgxxtameea",
                    "sg-11134201-82260-mhsethvabzt43e",
                    "sg-11134201-8225g-mhsetip2llvo54",
                    "sg-11134201-8225a-mhsetjhfh6v858",
                    "sg-11134201-8226x-mhsetkdz318lb1"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "38mm",
                    "40mm",
                    "41mm",
                    "42mm",
                    "44mm",
                    "45mm",
                    "49mm",
                    "Series 11 10 42mm",
                    "Series 11 10 46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.875,
                "rating_count": [
                  8,
                  0,
                  0,
                  0,
                  1,
                  7
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 370310260212244,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 740616519090176,
                "price": 2230000000,
                "strikethrough_price": 4280000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-48%",
                "model_id": 350241308812,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4280000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 29,
                "rounded_local_monthly_sold_count": 23,
                "local_monthly_sold_count_text": "23",
                "rounded_display_sold_count": 29,
                "display_sold_count_text": "29"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RCAT STORE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45402507823,
            "shopid": 1191507022,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226k-mhsesqayncao56\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059154,1059152,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,1119699,700765096,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":461,\"model_id\":350241308812,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226k-mhsesqayncao56\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059154,1059152,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,1119699,700765096,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":461,\"model_id\":350241308812,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45402507823",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40376953764,
              "shopid": 1174585117,
              "name": "Silicone Rubber Strap for Xiaomi Mi Band 10 9 8 NFC Polos Warna Soft Sport Band Bracelet Belt Repalcement Belt Accessories for Tali Jam Tangan Smartwatch Miband 10 9 8",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                844931086908638,
                1718087960,
                1428713,
                298463379,
                1718093079,
                1059154,
                1059152,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                700765096,
                298933384,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-82279-mhses7c6o2df00",
              "images": [
                "sg-11134201-82279-mhses7c6o2df00",
                "sg-11134201-8225y-mhses7to5gqsef",
                "sg-11134201-8227f-mhses89wkirk39",
                "sg-11134201-8226y-mhlnsgbayn7k48",
                "sg-11134201-82286-mhr8tgzuwzyc63",
                "sg-11134201-8227l-mhses9ld3y0yee",
                "sg-11134201-8226z-mhses9xdzabn33",
                "sg-11134201-82284-mhsesaax5ypy4e",
                "sg-11134201-8226a-mhsesas0n37pa3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764725191,
              "sold": 4,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1179000000,
              "price_min": 1179000000,
              "price_max": 1179000000,
              "price_min_before_discount": 2380000000,
              "price_max_before_discount": 2380000000,
              "hidden_price_display": null,
              "price_before_discount": 2380000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khxm-lsmksixlj03f19.16000081709891080.mp4",
                  "thumb_url": "sg-11110106-7rcdd-lsmkslqvhype6a",
                  "duration": 36,
                  "version": 2,
                  "vid": "sg-11110106-6khxm-lsmksixlj03f19",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxm-lsmksixlj03f19.16000081709891080.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxm-lsmksixlj03f19.16000081709891080.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxm-lsmksixlj03f19.16003251751983358.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxm-lsmksixlj03f19.16003251751983358.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxm-lsmksixlj03f19.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "star(strap)",
                    "black(strap)",
                    "white(strap)",
                    "yellow(strap)",
                    "orange(strap)",
                    "light pink(strap)",
                    "midnight blue(strap)",
                    "light blue(strap)",
                    "deep green(strap)",
                    "red(strap)",
                    "gray(strap)",
                    "pink(strap)",
                    "rice white(strap)",
                    "blue(strap)",
                    "yellow 2(strap)",
                    "light green(strap)",
                    "green(strap)",
                    "light gray(strap)",
                    "wine red(strap)",
                    "purple(strap)",
                    "gray1(strap)",
                    "Film"
                  ],
                  "images": [
                    "sg-11134201-8226u-mhsesndbwsn680",
                    "sg-11134201-8226b-mhsesnux3myt52",
                    "sg-11134201-82264-mhseso6bf30i4f",
                    "sg-11134201-82283-mhsesoiqndvn51",
                    "sg-11134201-8226y-mhsesou7fbpea0",
                    "sg-11134201-8227a-mhsesp5z4iyo34",
                    "sg-11134201-8227i-mhsespihy0hsf7",
                    "sg-11134201-8225x-mhsespwpa4u8be",
                    "sg-11134201-8225z-mhrmmcbfin0j23",
                    "sg-11134201-8224y-mhrmmcizo64j35",
                    "sg-11134201-82251-mhsesr4ekzr4dc",
                    "sg-11134201-8227j-mhsesrgwjkslf0",
                    "sg-11134201-82253-mhsesrte5kas66",
                    "sg-11134201-8226m-mhsess7hpfk3dd",
                    "sg-11134201-8226i-mhsesslkms5c1a",
                    "sg-11134201-82267-mhsesswz826c4b",
                    "sg-11134201-8224o-mhrmmdzxvnyad1",
                    "sg-11134201-8227v-mhsestp2p7gl8d",
                    "sg-11134201-8224q-mhsesu6n5czo8f",
                    "sg-11134201-8227v-mhsesuj3tlaadb",
                    "sg-11134201-82254-mhsesuvf2m8670",
                    "sg-11134201-8226r-mhsesv6u7k7ce3"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "mi band 10 9 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 225576095072256,
                "price": 1179000000,
                "strikethrough_price": 2380000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 380241312586,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2380000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Lbiaodai",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40376953764,
            "shopid": 1174585117,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82279-mhses7c6o2df00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,844931086908638,1718087960,1428713,298463379,1718093079,1059154,1059152,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":462,\"model_id\":380241312586,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82279-mhses7c6o2df00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,844931086908638,1718087960,1428713,298463379,1718093079,1059154,1059152,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":462,\"model_id\":380241312586,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40376953764",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44752474689,
              "shopid": 1686633980,
              "name": "Elastic Braided Nylon Strap for Apple Watch Ultra 3/2/1 SE 3/2/1 Magnetic Buckle Adjustable Band For Watch Series 11 10 9 8 7 6 5 4 3 21 49mm 45mm 44mm 42mm 41mm 40mm 38mm Smartwatch(No Watch)",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                298933384,
                1718087960,
                1428713,
                298463379,
                2023641,
                2018619,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224q-mifdjbbvuz2c40",
              "images": [
                "id-11134207-8224q-mifdjbbvuz2c40",
                "id-11134207-8224p-mhrfnras0t8h82",
                "id-11134207-8224x-mhrfnras27sx15",
                "id-11134207-8224t-migw7akr17nn53",
                "id-11134207-8224t-migw7akr40sj83",
                "id-11134207-8224p-migw7akr2m83fe"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764674136,
              "sold": 4,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3100000000,
              "price_min": 3100000000,
              "price_max": 3100000000,
              "price_min_before_discount": 6900000000,
              "price_max_before_discount": 6900000000,
              "hidden_price_display": null,
              "price_before_discount": 6900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-55%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvd-migwai1tombn69.16000081766207456.mp4",
                  "thumb_url": "id-11110105-6vdvd-migwai1tombn69_cover",
                  "duration": 22,
                  "version": 2,
                  "vid": "id-11110105-6vdvd-migwai1tombn69",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvd-migwai1tombn69.16000081766207456.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvd-migwai1tombn69.16000081766207456.mp4",
                      "width": 720,
                      "height": 784
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvd-migwai1tombn69.default.mp4",
                    "width": 540,
                    "height": 588
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Cowboy Rainbow",
                    "Monochrome",
                    "Bright Rainbow",
                    "Full Black",
                    "Olive",
                    "Sea Blue",
                    "Radiant Rainbow",
                    "Violet",
                    "Pearl",
                    "Starlight",
                    "Smoke Purple",
                    "Pink",
                    "Black White",
                    "Black Red",
                    "Black Rainbow",
                    "Milky White",
                    "Blue White",
                    "Green",
                    "Baby Blue",
                    "White Rainbow"
                  ],
                  "images": [
                    "id-11134207-8224t-mi2sjz2vy41vd0",
                    "id-11134207-8224p-mi2sjz2vzimb7a",
                    "id-11134207-8224u-mi2siuxqv37k87",
                    "id-11134207-8224w-mi2siuxqwhs052",
                    "id-11134207-82252-mi2siuxqxwcgda",
                    "id-11134207-8224p-mi2siuxqzaww89",
                    "id-11134207-8224w-mi2siuxr0phc55",
                    "id-11134207-8224u-mi2siuxr241s2c",
                    "id-11134207-8224q-mi2siuxr3im832",
                    "id-11134207-8224x-mi2siuxr4x6obe",
                    "id-11134207-82252-mi2siuxr6br467",
                    "id-11134207-8224v-mi2sjz2wkl4yac",
                    "id-11134207-8224v-mi2sjz2vmvib7d",
                    "id-11134207-8224x-mi2sjz2voa2r56",
                    "id-11134207-8224t-mi2sjz2vpon7ee",
                    "id-11134207-8224t-mi2sjz2vr37nbd",
                    "id-11134207-8224o-mi2sjz2vshs331",
                    "id-11134207-8224s-mi2sjz2vtwcjc6",
                    "id-11134207-8224x-mi2sjz2vvawz01",
                    "id-11134207-82252-mi2sjz2vwphf03"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "42/44/45/46/49mm",
                    "38/40/41mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 805779016302592,
                "price": 3100000000,
                "strikethrough_price": 6900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-55%",
                "model_id": 400238556116,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6900000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "StrapXpert",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44752474689,
            "shopid": 1686633980,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mifdjbbvuz2c40\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,298933384,1718087960,1428713,298463379,2023641,2018619,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":464,\"model_id\":400238556116,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mifdjbbvuz2c40\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,298933384,1718087960,1428713,298463379,2023641,2018619,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":464,\"model_id\":400238556116,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44752474689",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55602457170,
              "shopid": 954663716,
              "name": "Aolon Smartwatch Type-C Charging Adapter",
              "label_ids": [
                2153644,
                298888358,
                2018618,
                298938357,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                700005490,
                700005495,
                1718093079,
                822059908662278,
                825465608497696,
                2048660,
                2048661,
                825465608499232,
                700765096,
                2213652,
                1400285055,
                844931086908638,
                1015914,
                700190087,
                298938368,
                1718088045,
                298468389,
                2098628,
                2098629
              ],
              "image": "id-11134207-8224w-mhrghch7hukk31",
              "images": [
                "id-11134207-8224w-mhrghch7hukk31",
                "id-11134207-8224z-mhrghchba3np1b",
                "id-11134207-8224v-mhrghchbbi8546",
                "id-11134207-8224t-mhrghchbcwsl70"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764667852,
              "sold": 8,
              "historical_sold": 10,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100013,
              "brand": "Aolon",
              "cmt_count": 7,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 9900000000,
              "price_min": 9900000000,
              "price_max": 9900000000,
              "price_min_before_discount": 29900000000,
              "price_max_before_discount": 29900000000,
              "hidden_price_display": null,
              "price_before_discount": 29900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-67%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vena-mhrgju3rahvl1e.16000081764667637.mp4",
                  "thumb_url": "id-11110105-6vena-mhrgju3rahvl1e_cover",
                  "duration": 17,
                  "version": 2,
                  "vid": "id-11110105-6vena-mhrgju3rahvl1e",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vena-mhrgju3rahvl1e.16000081764667637.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vena-mhrgju3rahvl1e.16000081764667637.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vena-mhrgju3rahvl1e.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black",
                    "White"
                  ],
                  "images": [
                    "id-11134207-8224t-mhrghchbebd15c",
                    "id-11134207-8224w-mhrghchbfpxhb1"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  7,
                  0,
                  0,
                  0,
                  0,
                  7
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 797081539772416,
                "price": 9900000000,
                "strikethrough_price": 29900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-67%",
                "model_id": 415238061109,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 29900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10,
                "rounded_local_monthly_sold_count": 8,
                "local_monthly_sold_count_text": "8",
                "rounded_display_sold_count": 10,
                "display_sold_count_text": "10"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": " Aolon Authorized Store Bekasi",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55602457170,
            "shopid": 954663716,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mhrghch7hukk31\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,298888358,2018618,298938357,1428713,1718087960,844931064601283,298463379,700005490,700005495,1718093079,822059908662278,825465608497696,2048660,2048661,825465608499232,700765096,2213652,1400285055,844931086908638,1015914,700190087,298938368,1718088045,298468389,2098628,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":465,\"model_id\":415238061109,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mhrghch7hukk31\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,298888358,2018618,298938357,1428713,1718087960,844931064601283,298463379,700005490,700005495,1718093079,822059908662278,825465608497696,2048660,2048661,825465608499232,700765096,2213652,1400285055,844931086908638,1015914,700190087,298938368,1718088045,298468389,2098628,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":465,\"model_id\":415238061109,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55602457170",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41326931180,
              "shopid": 1686633980,
              "name": "Milanese Metal Stainless Steel Strap for Apple Watch Ultra 3/2/1 49mm 41mm 45mm 44mm 40mm 38mm 42mm for Tali Jam Tangan Strap for IWatch Series 11 10 9 8 7 SE 6 5 4 3 2 1 Watchbands Bracelet Band Smartwatch Accessories",
              "label_ids": [
                844931064601283,
                844931086908638,
                1049122,
                1059152,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                1718087960,
                1428713,
                298463379,
                2023641,
                2018619,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224q-mife4tgq9amc38",
              "images": [
                "id-11134207-8224q-mife4tgq9amc38",
                "id-11134207-8224x-mhrevhwqd43n14",
                "id-11134207-8224u-mi5l23rpvbbb1e",
                "id-11134207-8224t-mi5l23rpsi6f6a",
                "id-11134207-8224p-mi5l23rpr3lz2c",
                "id-11134207-8224z-mhrevhwq7htva7",
                "id-11134207-8224t-mhrevhwq8web5c",
                "id-11134207-82250-mhrevhwqaayr92"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764665854,
              "sold": 3,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2350000000,
              "price_min": 2350000000,
              "price_max": 2350000000,
              "price_min_before_discount": 6600000000,
              "price_max_before_discount": 6600000000,
              "hidden_price_display": null,
              "price_before_discount": 6600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-64%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvc-migvdkqcd3pf2f.16000081766205918.mp4",
                  "thumb_url": "id-11110105-6vdvc-migvdkqcd3pf2f_cover",
                  "duration": 24,
                  "version": 2,
                  "vid": "id-11110105-6vdvc-migvdkqcd3pf2f",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvc-migvdkqcd3pf2f.16000081766205918.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvc-migvdkqcd3pf2f.16000081766205918.mp4",
                      "width": 720,
                      "height": 784
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvc-migvdkqcd3pf2f.default.mp4",
                    "width": 540,
                    "height": 588
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Silver",
                    "Black",
                    "Grey",
                    "Rainbow",
                    "Old Gold",
                    "Gold",
                    "Pink",
                    "Brown",
                    "Blue",
                    "Red",
                    "Green",
                    "Purple",
                    "Light Pink",
                    "Porcelain Blue"
                  ],
                  "images": [
                    "id-11134207-8224z-mi5latzwtqmb78",
                    "id-11134207-82251-mi5latzusp3617",
                    "id-11134207-8224x-mi5latzuvi8297",
                    "id-11134207-82252-mi5latzuybcy76",
                    "id-11134207-8224z-mi5latzv14hu3e",
                    "id-11134207-8224x-mi5latzv3xmqf9",
                    "id-11134207-8224t-mi5lihbd7bpf14",
                    "id-11134207-8224s-mi5lihbdpl3cb2",
                    "id-11134207-8224p-mi5lihbdtssof2",
                    "id-11134207-8224y-mi5lihbdwlxk19",
                    "id-11134207-8224y-mi5lihbdzf2gfb",
                    "id-11134207-8224u-mi5lmgneuuisfc",
                    "id-11134207-8224o-mi5lmgnm6xa86e",
                    "id-11134207-82252-mipmdvv59lvr1f"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "42/44/45/46/49mm",
                    "38/40/41mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 805779016302592,
                "price": 2350000000,
                "strikethrough_price": 6600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-64%",
                "model_id": 325237850913,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6600000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "StrapXpert",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41326931180,
            "shopid": 1686633980,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mife4tgq9amc38\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049122,1059152,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,1718087960,1428713,298463379,2023641,2018619,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":467,\"model_id\":325237850913,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mife4tgq9amc38\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049122,1059152,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,1718087960,1428713,298463379,2023641,2018619,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":467,\"model_id\":325237850913,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41326931180",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46652461980,
              "shopid": 280628135,
              "name": "[Free 3 straps] Aolon Prime 3 Jam Smartwatch Pria 46mm 1.43โ€˜โ€™ Amoled Tahan Air 1ATM Cover Lock Metal Case Telepon Bluetooth Pengukuran Olahraga Smart Watch Original Branded",
              "label_ids": [
                298938357,
                700700063,
                1002164,
                1000653,
                1011692,
                1518617,
                1000314,
                1016119,
                2153644,
                2018618,
                298888358,
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                700005495,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                825465608494624,
                1119699,
                700765096,
                2213652,
                1718087960,
                1428713,
                1015914,
                700190087,
                1400285055,
                298933384,
                298468389,
                2098628,
                298938368,
                1718088045,
                2098629
              ],
              "image": "id-11134207-8224v-mi315imt1uyw93",
              "images": [
                "id-11134207-8224v-mi315imt1uyw93",
                "id-11134207-8224s-mhrcvdm7qltx22",
                "id-11134207-8224y-mhrcvdm81udh01",
                "id-11134207-8224v-mhrcvdm7s0ed87",
                "id-11134207-8224y-mhrcvdm7teyt99",
                "id-11134207-8224u-mhrcvdm7w83p1e",
                "id-11134207-8224o-mhrcvdm7utj9d9",
                "id-11134207-8224w-mhrcvdm7z18lca",
                "id-11134207-82251-mhrcvdm838xx62"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764662727,
              "sold": 18,
              "historical_sold": 18,
              "liked": false,
              "liked_count": 27,
              "view_count": null,
              "catid": 100013,
              "brand": "Aolon",
              "cmt_count": 9,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 59900000000,
              "price_min": 59900000000,
              "price_max": 59900000000,
              "price_min_before_discount": 229900000000,
              "price_max_before_discount": 229900000000,
              "hidden_price_display": null,
              "price_before_discount": 229900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-74%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vena-mhrdl2g7p8ue91.16000081764662645.mp4",
                  "thumb_url": "id-11110105-6vena-mhrdl2g7p8ue91_cover",
                  "duration": 54,
                  "version": 2,
                  "vid": "id-11110105-6vena-mhrdl2g7p8ue91",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vena-mhrdl2g7p8ue91.16000081764662645.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vena-mhrdl2g7p8ue91.16000081764662645.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vena-mhrdl2g7p8ue91.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Perak",
                    "Logam Hitam",
                    "Milan Hitam",
                    "Kulit Cokelat",
                    "Magnetik Hitam",
                    "Logam Perak",
                    "Milan Perak"
                  ],
                  "images": [
                    "id-11134207-82250-mi315imt39jc0b",
                    "id-11134207-8224u-mi315imsqmfc89",
                    "id-11134207-82251-mi315imsw8p4ef",
                    "id-11134207-8224q-mi315imsz1u0b8",
                    "id-11134207-8224w-mi319q1afq4kab",
                    "id-11134207-8224z-mi319q1hw0lk74",
                    "id-11134207-8224t-mi319q1hxf604a",
                    "id-11134207-8224r-mi319q1hytqgbf"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  9,
                  0,
                  0,
                  0,
                  0,
                  9
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 407600424563294,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp98RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227983113863168,
                "price": 58900000000,
                "strikethrough_price": 229900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1332891314700288,
                "discount_text": "-74%",
                "model_id": 360237511598,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1332891314700288,
                  "voucher_code": "SVC-1332891314700288",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1768323600,
                    "end_time": 1768409999,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 229900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 18,
                "rounded_local_monthly_sold_count": 18,
                "local_monthly_sold_count_text": "18",
                "rounded_display_sold_count": 18,
                "display_sold_count_text": "18"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp98RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Aolon Indonesia Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46652461980,
            "shopid": 280628135,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mi315imt1uyw93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298938357,700700063,1002164,1000653,1011692,1518617,1000314,1016119,2153644,2018618,298888358,844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608494624,1119699,700765096,2213652,1718087960,1428713,1015914,700190087,1400285055,298933384,298468389,2098628,298938368,1718088045,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":469,\"model_id\":360237511598,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mi315imt1uyw93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298938357,700700063,1002164,1000653,1011692,1518617,1000314,1016119,2153644,2018618,298888358,844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608494624,1119699,700765096,2213652,1718087960,1428713,1015914,700190087,1400285055,298933384,298468389,2098628,298938368,1718088045,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":469,\"model_id\":360237511598,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46652461980",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54952451290,
              "shopid": 1628289636,
              "name": "Case 2in1 Bumper for Huawei Watch GT6 46mm with Tempered Glass Screen Protector (Hard Casing PC Anti Gores untuk GT 6 46 MM)",
              "label_ids": [
                700700063,
                2023641,
                2018619,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                825465608493600,
                298933384,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8224v-mhrdkd5jgwle2c",
              "images": [
                "sg-11134201-8224v-mhrdkd5jgwle2c",
                "sg-11134201-82260-mhrditsk5wjla2",
                "sg-11134201-8227l-mhrdituvgtfk9b",
                "sg-11134201-8224v-mhrditwb7g1y02",
                "sg-11134201-82288-mhrditpxuscla5",
                "sg-11134201-8225o-mhrditr7e2o2b3",
                "sg-11134201-8226h-mhrditpddc7a64",
                "sg-11134201-82278-mhrditrhgh6q44",
                "sg-11134201-8224w-mhrdits6jmrpe2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764662608,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2750000000,
              "price_min": 2750000000,
              "price_max": 2750000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color Variant",
                  "options": [
                    "Transparent",
                    "Black",
                    "Green",
                    "Midnight Blue"
                  ],
                  "images": [
                    "sg-11134201-8225p-mhrdit9zkzk8c8",
                    "sg-11134201-82254-mhrdit8fzcaqf8",
                    "sg-11134201-8224u-mhrdit9p8phfba",
                    "sg-11134201-8225c-mhrdit7vxceaad"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 2750000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 325237488935,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2750000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gloopz",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54952451290,
            "shopid": 1628289636,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8224v-mhrdkd5jgwle2c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2023641,2018619,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699,825465608493600,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":470,\"model_id\":325237488935,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8224v-mhrdkd5jgwle2c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2023641,2018619,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699,825465608493600,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":470,\"model_id\":325237488935,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54952451290",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51602439053,
              "shopid": 1670622889,
              "name": "Jam Tangan Smartwatch SAMSUNG T900 Ultra ORI 100% โ€“ Layar Full Touch 2.09\", Panggilan Bluetooth, Monitor Detak Jantung, IP68 Anti Air, Fitness Tracker",
              "label_ids": [
                844931086908638,
                844931064601283,
                298463379,
                1049112,
                700005517,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                1428713,
                1718087960,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82251-mhrafab9w8hs54",
              "images": [
                "id-11134207-82251-mhrafab9w8hs54",
                "id-11134207-8224s-mhrafabj0xdt95",
                "id-11134207-8224w-mhrafabivb41d1",
                "id-11134207-8224s-mhrafabj2by952",
                "id-11134207-8224v-mhrafabiwpohd6",
                "id-11134207-8224x-mhrafabj3qip31",
                "id-11134207-8224z-mhrafabiy48xf8",
                "id-11134207-8224z-mhrafabizitd30",
                "id-11134207-8224w-mhrafabitwjl7a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764657927,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 9900000000,
              "price_min": 9900000000,
              "price_max": 9900000000,
              "price_min_before_discount": 48000000000,
              "price_max_before_discount": 48000000000,
              "hidden_price_display": null,
              "price_before_discount": 48000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-79%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvi-mhrafubst3pg2b.16000101764657355.mp4",
                  "thumb_url": "id-11110105-6vdvi-mhrafubst3pg2b_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6vdvi-mhrafubst3pg2b",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvi-mhrafubst3pg2b.16000101764657355.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvi-mhrafubst3pg2b.16000101764657355.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvi-mhrafubst3pg2b.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "white",
                    "orange",
                    "black",
                    "random"
                  ],
                  "images": [
                    "id-11134207-8224v-mhrafabj55353e",
                    "id-11134207-8224v-mhrafabj6jnlf2",
                    "id-11134207-8224t-mhraqo8of6roe3",
                    "id-11134207-8224q-mhraqo8oglc410"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 794977517502464,
                "price": 9900000000,
                "strikethrough_price": 48000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-79%",
                "model_id": 360236918842,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 48000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "JamAnak Smart Tekno",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51602439053,
            "shopid": 1670622889,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mhrafab9w8hs54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1049112,700005517,1718093079,822059908662278,825465608499232,825465608497696,1119699,298933384,1428713,1718087960,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":85,\"model_id\":360236918842,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mhrafab9w8hs54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1049112,700005517,1718093079,822059908662278,825465608499232,825465608497696,1119699,298933384,1428713,1718087960,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":85,\"model_id\":360236918842,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51602439053",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47102465134,
              "shopid": 1687402076,
              "name": "COD CAVAO Jam Tangan Smartwatch Cerdas Pria Wanita 5 Tali Ganti | Kotak Hadiah  Panggilan Bluetooth Anti Air GPS | Wireless Charge Pemantauan Kesehatan Wireless Charge Android iOS Free Ongkir",
              "label_ids": [
                844931064601283,
                844931086908638,
                700005495,
                700005490,
                822059908662278,
                825465608499232,
                1119699,
                1718093079,
                1428713,
                1718087960,
                825465608497696,
                1400285055,
                1015914,
                700190087,
                298933384,
                2023641
              ],
              "image": "id-11134207-8224y-mipmn3t5ekg822",
              "images": [
                "id-11134207-8224y-mipmn3t5ekg822",
                "id-11134207-8224w-mhra6prokh6r77",
                "id-11134207-8224v-mhra6prolvr7a0",
                "id-11134207-8224u-mhra6pronabn5c",
                "id-11134207-8224z-mhra6prooow393",
                "id-11134207-8224u-mhra6proq3gj96",
                "id-11134207-8224t-mhra6prori0z56",
                "id-11134207-8224y-mhra6proswlfc0",
                "id-11134207-8224x-mhra6proj2mb49"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764657420,
              "sold": 11,
              "historical_sold": 16,
              "liked": false,
              "liked_count": 25,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 12,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 12900000000,
              "price_min": 12900000000,
              "price_max": 12900000000,
              "price_min_before_discount": 35600000000,
              "price_max_before_discount": 35600000000,
              "hidden_price_display": null,
              "price_before_discount": 35600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-64%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvm-mhra7szndjpfd6.16000081764656978.mp4",
                  "thumb_url": "id-11110105-6vdvm-mhra7szndjpfd6_cover",
                  "duration": 18,
                  "version": 2,
                  "vid": "id-11110105-6vdvm-mhra7szndjpfd6",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvm-mhra7szndjpfd6.16000081764656978.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvm-mhra7szndjpfd6.16000081764656978.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvm-mhra7szndjpfd6.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Pink",
                    "Grey",
                    "W10"
                  ],
                  "images": [
                    "id-11134207-8224q-mhra6proub5v48",
                    "id-11134207-8224p-mhra6provpqb07",
                    "id-11134207-8224p-mhra6provpqb07",
                    "id-11134207-8224y-mj7v363w9laf3c"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  12,
                  0,
                  0,
                  0,
                  0,
                  12
                ],
                "rcount_with_context": 9,
                "rcount_with_image": 10
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227863148380160,
                "price": 12800000000,
                "strikethrough_price": 35600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1301196443762688,
                "discount_text": "-64%",
                "model_id": 370236880639,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1301196443762688,
                  "voucher_code": "6SVYA1",
                  "voucher_discount": 100000000,
                  "time_info": {
                    "start_time": 1764574320,
                    "end_time": 1772297940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10600000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 35600000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 16,
                "rounded_local_monthly_sold_count": 11,
                "local_monthly_sold_count_text": "11",
                "rounded_display_sold_count": 16,
                "display_sold_count_text": "16"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CAVAO Mall",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTg0LjkzX3tiMTFiYTNhZjQ4NTU4MDg1MjYzMDE5MDkwNTZiOTkwMDowMjAwMDBkZjUyOTljODA4OjAxMDAwMTJiMThmMzAzMzh9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTU1MDAyNTYxMzcx",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47102465134,
            "shopid": 1687402076,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mipmn3t5ekg822\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,700005495,700005490,822059908662278,825465608499232,1119699,1718093079,1428713,1718087960,825465608497696,1400285055,1015914,700190087,298933384,2023641],\"matched_keywords\":[\"\"],\"merge_rank\":471,\"model_id\":370236880639,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mipmn3t5ekg822\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,700005495,700005490,822059908662278,825465608499232,1119699,1718093079,1428713,1718087960,825465608497696,1400285055,1015914,700190087,298933384,2023641],\"matched_keywords\":[\"\"],\"merge_rank\":471,\"model_id\":370236880639,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47102465134",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48302457313,
              "shopid": 346000752,
              "name": "Strap Samsung Galaxy Watch 8 44mm 40mm 8 Classic / Tali Pengganti Samsung Galaxy Watch 8 Bahan Silicone",
              "label_ids": [
                700700063,
                2023641,
                2018619,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1119699,
                298933384,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224v-mhr2ebgly96w72",
              "images": [
                "id-11134207-8224v-mhr2ebgly96w72",
                "id-11134207-8224u-mhr2ebglwumg87",
                "id-11134207-82252-mhr2ebglu1hkb8",
                "id-11134207-8224x-mhr2ebglsmx4b3",
                "id-11134207-8224r-mhr2ebglvg209a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764647733,
              "sold": 24,
              "historical_sold": 31,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4000000000,
              "price_min": 4000000000,
              "price_max": 4000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Midnight",
                    "Army",
                    "Space Grey",
                    "Starlight",
                    "Soft Grey",
                    "Yellow",
                    "Purple",
                    "Official Blue",
                    "Pink",
                    "White",
                    "Orange"
                  ],
                  "images": [
                    "id-11134207-8224t-mhr2ebglznrc75",
                    "id-11134207-8224o-mhr2ebgm12bsa8",
                    "id-11134207-82250-mhr2ebgm2gw86d",
                    "id-11134207-82250-mhr2ebgm3vgo49",
                    "id-11134207-8224r-mhr4ovi9jj0jec",
                    "id-11134207-8224q-mhr4ovih5fr466",
                    "id-11134207-8224u-mhr4ovih6ubkf2",
                    "id-11134207-8224w-mhr4ovih88w0d2",
                    "id-11134207-8224p-mhr4ovih9nggd0",
                    "id-11134207-8224o-mhr4ovihb20w34",
                    "id-11134207-82250-mhr4ovihcglc83",
                    "id-11134207-8224s-mhr4ovihdv5sbf"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.666666666666667,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  1,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 399940820156630,
                "bundle_deal_label": "Pilih 3, diskon 2%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 3975000000,
                "strikethrough_price": 4000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1280161723727872,
                "discount_text": null,
                "model_id": 355236174771,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1280161723727872,
                  "voucher_code": "MANDNOV25",
                  "voucher_discount": 25000000,
                  "time_info": {
                    "start_time": 1762066800,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 4000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 31,
                "rounded_local_monthly_sold_count": 24,
                "local_monthly_sold_count_text": "24",
                "rounded_display_sold_count": 31,
                "display_sold_count_text": "31"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Mandiri Mart Online",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48302457313,
            "shopid": 346000752,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mhr2ebgly96w72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2023641,2018619,844931064601283,844931086908638,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699,298933384,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1656,\"model_id\":355236174771,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mhr2ebgly96w72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2023641,2018619,844931064601283,844931086908638,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699,298933384,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1656,\"model_id\":355236174771,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48302457313",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49902425885,
              "shopid": 317027900,
              "name": "Strap Redmi Watch 5 Active / Lite Silicone Transparan Xiaomi Redmi Watch 5 Lite Strap Model Tint",
              "label_ids": [
                700700063,
                2023641,
                2018619,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                1119699,
                298933384,
                1400285055,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8227x-mhq65kx0d5ac83",
              "images": [
                "sg-11134201-8227x-mhq65kx0d5ac83",
                "sg-11134201-82266-mhq65l7nss1w64",
                "sg-11134201-8224y-mhq65lecusjqad",
                "sg-11134201-82274-mhq65ljb4qv841",
                "sg-11134201-8227c-mhq65lp0u4udda",
                "sg-11134201-82254-mhq65lud026gda",
                "sg-11134201-8226o-mhq65m0erj7n9a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764589611,
              "sold": 45,
              "historical_sold": 56,
              "liked": false,
              "liked_count": 34,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 27,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3863200000,
              "price_min": 3863200000,
              "price_max": 3863200000,
              "price_min_before_discount": 4599000000,
              "price_max_before_discount": 4599000000,
              "hidden_price_display": null,
              "price_before_discount": 4599000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-16%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Tint Black",
                    "Tint Purple",
                    "Tint Blue",
                    "Tint Green",
                    "Tint Grey",
                    "Tint Yellow",
                    "Tint Red"
                  ],
                  "images": [
                    "sg-11134201-8227l-mhq65m5v55vl89",
                    "sg-11134201-8224v-mhq65maw6sxwa9",
                    "sg-11134201-82258-mhq65mfxcnpdab",
                    "sg-11134201-82252-mhq65mlc3c3k9a",
                    "sg-11134201-8224r-mhq65msngv0h43",
                    "sg-11134201-82263-mhq65mya1vk5f3",
                    "sg-11134201-82266-mhq65n3e991i2e"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tipe",
                  "options": [
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.851851851851852,
                "rating_count": [
                  27,
                  1,
                  0,
                  0,
                  0,
                  26
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 824656177725440,
                "price": 3863200000,
                "strikethrough_price": 4599000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-16%",
                "model_id": 157988422178,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4599000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 56,
                "rounded_local_monthly_sold_count": 45,
                "local_monthly_sold_count_text": "45",
                "rounded_display_sold_count": 56,
                "display_sold_count_text": "56"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GuangHouse",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49902425885,
            "shopid": 317027900,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227x-mhq65kx0d5ac83\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2023641,2018619,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,1119699,298933384,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":94,\"model_id\":157988422178,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227x-mhq65kx0d5ac83\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2023641,2018619,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,1119699,298933384,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":94,\"model_id\":157988422178,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49902425885",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46552418551,
              "shopid": 1344414745,
              "name": "PC Hard Case for Smart Watch Amazfit Bip 6 Anti Gores All-Around Tempered Glass Screen Protector Protective Bumper Cover Accessories Jam Tangan Smartwatch for Amazfit Bip 6",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1718093079,
                1119699,
                700765096,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8225e-mhq1lf6bpcsib3",
              "images": [
                "sg-11134201-8225e-mhq1lf6bpcsib3",
                "sg-11134201-82288-mhq1lgchitq9fe",
                "sg-11134201-8225w-mhq1lhoeg7i854",
                "sg-11134201-82259-mhq1lii84avc1a",
                "sg-11134201-82254-mhq1lj3hfdoo78",
                "sg-11134201-8225e-mhq1ljmzhji912",
                "sg-11134201-8225k-mhq1lk48qk1y2a",
                "sg-11134201-8227k-mhq1lkrmd79cdd",
                "sg-11134201-8225p-mhq1ll17g1s844"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764581949,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3220000000,
              "price_min": 3220000000,
              "price_max": 3220000000,
              "price_min_before_discount": 7000000000,
              "price_max_before_discount": 7000000000,
              "hidden_price_display": null,
              "price_before_discount": 7000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Ink blue(case)",
                    "Pine green(case)",
                    "Ivory white(case)",
                    "Cherry pink(case)",
                    "silver(case)",
                    "Glossy black(case)",
                    "Matte black(case)",
                    "Transparent(case)",
                    "Film",
                    "TPU Clear(case)",
                    "TPU Silver(case)",
                    "TPU Black(case)",
                    "TPU Grey(case)",
                    "TPU Pink(case)",
                    "TPU Rose(case)",
                    "TPU Gold(case)",
                    "TPU Blue(case)"
                  ],
                  "images": [
                    "sg-11134201-82285-mhq1lxpr2dj5e0",
                    "sg-11134201-82275-mhq1ly1dyw3paf",
                    "sg-11134201-8224q-mhq1lyaljojnfc",
                    "sg-11134201-8227f-mhq1lyna2akkd7",
                    "sg-11134201-82288-mhq1lyw4q6mef7",
                    "sg-11134201-8225i-mhq1lz8uucco49",
                    "sg-11134201-82270-mhq1lzhpqnt2fa",
                    "sg-11134201-8227n-mhq1lzvrhwxv83",
                    "sg-11134201-8226k-mhq1m06hmgw265",
                    "sg-11134201-8226x-mhq1m0hwvmkg21",
                    "sg-11134201-8225g-mhq1m0r5l5hk37",
                    "sg-11134201-82274-mhq1m108og74d4",
                    "sg-11134201-8226q-mhq1m19o52io6e",
                    "sg-11134201-82264-mhq1m1m1ovt084",
                    "sg-11134201-8225n-mhq1m1xnp3bc4b",
                    "sg-11134201-8225d-mhq1m292lkar87",
                    "sg-11134201-8226n-mhq1m2k3gg05a5"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 374886765965807,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 3220000000,
                "strikethrough_price": 7000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 262217591197,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 32.200",
                      "hidden_promotion_price": "Rp ?2.200",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "LCAPLE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46552418551,
            "shopid": 1344414745,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225e-mhq1lf6bpcsib3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1718093079,1119699,700765096,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1692,\"model_id\":262217591197,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225e-mhq1lf6bpcsib3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1718093079,1119699,700765096,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1692,\"model_id\":262217591197,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46552418551",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45552413665,
              "shopid": 1686633980,
              "name": "Canvas Strap for Huawei Watch Fit 3/4/4 Pro Strap Tali Jam Tangan Smart Watch Huawei Fit 4/4 Pro Adjustable Replacement Band Smartwatch Accessories",
              "label_ids": [
                844931064601283,
                844931086908638,
                1049122,
                1059152,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1428713,
                1718087960,
                298463379,
                700810080,
                2023641,
                2018619,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224r-mifdjbbw0lc435",
              "images": [
                "id-11134207-8224r-mifdjbbw0lc435",
                "id-11134207-8224z-mhpz29i1cdfk40",
                "id-11134207-8224o-mhpz29i1ksu8cf",
                "id-11134207-8224s-mhpzw96n4fsye1",
                "id-11134207-8224o-mhpzw96n5ude8c",
                "id-11134207-8224p-mhpzw96n78xud8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764579477,
              "sold": 3,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2130000000,
              "price_min": 2130000000,
              "price_max": 2130000000,
              "price_min_before_discount": 4500000000,
              "price_max_before_discount": 4500000000,
              "hidden_price_display": null,
              "price_before_discount": 4500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvg-migvmoxt7xty6d.16000081766206346.mp4",
                  "thumb_url": "id-11110105-6vdvg-migvmoxt7xty6d_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6vdvg-migvmoxt7xty6d",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvg-migvmoxt7xty6d.16000081766206346.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvg-migvmoxt7xty6d.16000081766206346.mp4",
                      "width": 736,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvg-migvmoxt7xty6d.default.mp4",
                    "width": 552,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Army Green",
                    "Red Rainbow",
                    "White Rainbow",
                    "Grey White",
                    "Full Black",
                    "Milky White",
                    "Pink",
                    "Navy Orange",
                    "Black Orange",
                    "Blue",
                    "Dark Navy"
                  ],
                  "images": [
                    "id-11134207-8224t-mhpzw96n8niad3",
                    "id-11134207-8224u-mhpzw96na22qb4",
                    "id-11134207-8224r-mhpzw96nbgn6a3",
                    "id-11134207-8224o-mhpzw96ncv7m31",
                    "id-11134207-8224t-mhpzw96ne9s246",
                    "id-11134207-82251-mhpzw96nfoci81",
                    "id-11134207-8224w-mhpzw96nh2wy13",
                    "id-11134207-8224v-mhq03ahv4jrac8",
                    "id-11134207-8224r-mhq03ahvwn40f6",
                    "id-11134207-8224y-mhq03ahvy1og8b",
                    "id-11134207-82250-mhq03ahvzg8we9"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "Huawei Fit 3/4/4 Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 805779016302592,
                "price": 2130000000,
                "strikethrough_price": 4500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 360232114120,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "StrapXpert",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45552413665,
            "shopid": 1686633980,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mifdjbbw0lc435\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049122,1059152,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,1428713,1718087960,298463379,700810080,2023641,2018619,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1158,\"model_id\":360232114120,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mifdjbbw0lc435\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049122,1059152,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,1428713,1718087960,298463379,700810080,2023641,2018619,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1158,\"model_id\":360232114120,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45552413665",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57752388694,
              "shopid": 1628289636,
              "name": "HOWN Silicone Strap for Amazfit T-Rex 3 PRO 48mm Tali Jam Silikon TREX 3 Pro Version bahan Rubber untuk Smartwatch REX3 48 MM",
              "label_ids": [
                700700063,
                2018619,
                2023641,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                825465608493600,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8227l-mhpzy9nvuhoofc",
              "images": [
                "sg-11134201-8227l-mhpzy9nvuhoofc",
                "sg-11134201-82288-mhpzxi43mpz591",
                "sg-11134201-8224q-mhpzxi204p3a1d",
                "sg-11134201-82266-mhpztwqtrxmq1b",
                "sg-11134201-8225i-mhpzxi3yk45k28",
                "sg-11134201-8227c-mhpzxi0qh8n834",
                "sg-11134201-82255-mhpzxhyrusqsd5",
                "sg-11134201-8226p-mhpzxhyop2bm5f",
                "sg-11134201-8225e-mhpzxi0qfu2s0f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764579181,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3900000000,
              "price_min": 3900000000,
              "price_max": 3900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color Variant",
                  "options": [
                    "Black",
                    "Green",
                    "Red",
                    "Blue"
                  ],
                  "images": [
                    "sg-11134201-82269-mhpzxhjxhxc1b3",
                    "sg-11134201-82266-mhpzxhjsutc3a7",
                    "sg-11134201-8226w-mhpzxhjxvz0k19",
                    "sg-11134201-8227e-mhpzxhjcp8n9cc"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 3900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 325232100900,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3900000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gloopz",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57752388694,
            "shopid": 1628289636,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227l-mhpzy9nvuhoofc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,2023641,844931064601283,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699,825465608493600,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2197,\"model_id\":325232100900,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227l-mhpzy9nvuhoofc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,2023641,844931064601283,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699,825465608493600,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2197,\"model_id\":325232100900,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57752388694",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53902383634,
              "shopid": 350552797,
              "name": "HOWN Silicone Strap for Amazfit T-Rex 3 PRO 48mm Tali Jam Silikon TREX 3 Pro Version bahan Rubber untuk Smartwatch REX3 48 MM",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                825465608493600,
                1400285055,
                1015914,
                700190087
              ],
              "image": "sg-11134201-8225j-mhpztwu3djpda1",
              "images": [
                "sg-11134201-8225j-mhpztwu3djpda1",
                "sg-11134201-8225b-mhpztwtl9s774a",
                "sg-11134201-82289-mhpztwy0z2ma32",
                "sg-11134201-82256-mhpztwyv4vlu1e",
                "sg-11134201-82266-mhpztwqtrxmq1b",
                "sg-11134201-82252-mhpztwssfs3pc3",
                "sg-11134201-8227v-mhpztwq7kmx28f",
                "sg-11134201-82273-mhpztwq6vcox82",
                "sg-11134201-8226w-mhpztwsi4y6c46"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764579049,
              "sold": 23,
              "historical_sold": 24,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 5,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3900000000,
              "price_min": 3900000000,
              "price_max": 3900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven3-mi6r6aorstmsab.16000081765593511.mp4",
                  "thumb_url": "id-11110105-6ven3-mi6r6aorstmsab_cover",
                  "duration": 46,
                  "version": 2,
                  "vid": "id-11110105-6ven3-mi6r6aorstmsab",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven3-mi6r6aorstmsab.16000081765593511.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven3-mi6r6aorstmsab.16000081765593511.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven3-mi6r6aorstmsab.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color Variant",
                  "options": [
                    "Black",
                    "Green",
                    "Red",
                    "Blue"
                  ],
                  "images": [
                    "sg-11134201-8226e-mhpztwet7tvqfb",
                    "sg-11134201-82285-mhpztwg1dwqw49",
                    "sg-11134201-8227r-mhpztwfr7aiw94",
                    "sg-11134201-82256-mhpztwff11c159"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.8,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  1,
                  4
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 3900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 340232077671,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3900000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 24,
                "rounded_local_monthly_sold_count": 23,
                "local_monthly_sold_count_text": "23",
                "rounded_display_sold_count": 24,
                "display_sold_count_text": "24"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HOP Market",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53902383634,
            "shopid": 350552797,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225j-mhpztwu3djpda1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699,825465608493600,1400285055,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":2146,\"model_id\":340232077671,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225j-mhpztwu3djpda1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699,825465608493600,1400285055,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":2146,\"model_id\":340232077671,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53902383634",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40026908554,
              "shopid": 1176840059,
              "name": "Anti Gores TPU Case for Garmin Forerunner 165/Forerunner 165 Music Shell Transparent Soft Screen Protector Frame Bumper Cover Accessories Jam Tangan Smartwatch for Smart Watch Garmin Forerunner 165/Garmin Forerunner 165 Music",
              "label_ids": [
                2018619,
                2023641,
                844931086908638,
                844931064601283,
                1718087960,
                1428713,
                298463379,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1119699,
                700765096,
                298933384,
                1015914,
                700190087,
                2103651,
                2143613,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8226d-mhpnelcx2gat9c",
              "images": [
                "sg-11134201-8226d-mhpnelcx2gat9c",
                "sg-11134201-8227v-mhpnelyj3hu0d2",
                "sg-11134201-82285-mhpnemc4fcaq1e",
                "sg-11134201-82281-mhpnemyajsar1b",
                "sg-11134201-8226d-mhpnenkas1dye4",
                "sg-11134201-8226a-mhpnenurnqbqdb",
                "sg-11134201-8225k-mhpneo8tt14z76",
                "sg-11134201-8225a-mhpneojrjg8w37",
                "sg-11134201-8226o-mhpnep6eoa9wc9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764558086,
              "sold": 0,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2714000000,
              "price_min": 2714000000,
              "price_max": 2714000000,
              "price_min_before_discount": 5900000000,
              "price_max_before_discount": 5900000000,
              "hidden_price_display": null,
              "price_before_discount": 5900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "clear purple(case)",
                    "clear orange(case)",
                    "clear blue(case)",
                    "clear black(case)",
                    "Clear(case)",
                    "glass film",
                    "Transparent(case)",
                    "black(case)",
                    "pine green(case)",
                    "pink(case)",
                    "blue(case)",
                    "ivory(case)"
                  ],
                  "images": [
                    "sg-11134201-8227i-mhpnf5an5r7kd2",
                    "sg-11134201-8226d-mhpnf5wh6pkxe7",
                    "sg-11134201-8227s-mhpnf69h4sud78",
                    "sg-11134201-82250-mhpnf6s39y4k4f",
                    "sg-11134201-8225p-mhpnf72t7h8ha0",
                    "sg-11134201-82268-mhpnf7lozhmq5c",
                    "sg-11134201-8227y-mhpnf7zipfcy1c",
                    "sg-11134201-8226d-mhpnf8fo9xxe82",
                    "sg-11134201-8227t-mhpnf8wsym0z90",
                    "sg-11134201-8227x-mhpnf9dl5tz6b3",
                    "sg-11134201-8226h-mhpnf9s6uww449",
                    "sg-11134201-8226q-mhpnfa764ruqed"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Forerunner 165",
                    "Forerunner 165 Music"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 403933596234286,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2714000000,
                "strikethrough_price": 5900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 340230307175,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5900000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 27.140",
                      "hidden_promotion_price": "Rp ?7.140",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almnvo Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40026908554,
            "shopid": 1176840059,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226d-mhpnelcx2gat9c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931086908638,844931064601283,1718087960,1428713,298463379,1059154,1059152,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,700765096,298933384,1015914,700190087,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1940,\"model_id\":340230307175,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226d-mhpnelcx2gat9c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931086908638,844931064601283,1718087960,1428713,298463379,1059154,1059152,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,700765096,298933384,1015914,700190087,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1940,\"model_id\":340230307175,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40026908554",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44802396110,
              "shopid": 1411796138,
              "name": "Gpsmap Garmin 64sc Bekas Normal",
              "label_ids": [
                844931086908638,
                844931064601283,
                700005489,
                1059152,
                822059908662278,
                825465608499232,
                1718093079,
                1119699,
                298933384
              ],
              "image": "id-11134207-8224z-mhp3rzbbfmrk28",
              "images": [
                "id-11134207-8224z-mhp3rzbbfmrk28",
                "id-11134207-8224r-mhp3rzbb5ssg65",
                "id-11134207-8224t-mhp3rzbb8lxc02",
                "id-11134207-82252-mhp3rzbba0hs51",
                "id-11134207-8224z-mhp3rzbbbf28a7",
                "id-11134207-82250-mhp3rzbbctmof4",
                "id-11134207-82250-mhp3rzbbe87406"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764535406,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 450000000000,
              "price_min": 450000000000,
              "price_max": 450000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 450000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 262215941758,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 450000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Geologissurvey",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44802396110,
            "shopid": 1411796138,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhp3rzbbfmrk28\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,700005489,1059152,822059908662278,825465608499232,1718093079,1119699,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":2110,\"model_id\":262215941758,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhp3rzbbfmrk28\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,700005489,1059152,822059908662278,825465608499232,1718093079,1119699,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":2110,\"model_id\":262215941758,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44802396110",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52552361271,
              "shopid": 1411796138,
              "name": "Gpsmap Garmin 64sc Berkamera Original",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                700005489,
                822059908662278,
                825465608499232,
                1718093079,
                1119699,
                298933384
              ],
              "image": "id-11134207-8224o-mhp3rzaqskcgad",
              "images": [
                "id-11134207-8224o-mhp3rzaqskcgad",
                "id-11134207-82250-mhp3rzapgt1i69",
                "id-11134207-8224w-mhp3rzarq9zc98",
                "id-11134207-8224w-mhp3rzbb77cy50",
                "id-11134207-82250-mhp3rzaqocn459",
                "id-11134207-8224x-mhp3rzaqpr7kdb",
                "id-11134207-8224s-mhp3rzaqr5s078",
                "id-11134207-8224o-mhp3rzaqtywwb2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764526118,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 700000000000,
              "price_min": 700000000000,
              "price_max": 700000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 700000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 400229261782,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 700000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Geologissurvey",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52552361271,
            "shopid": 1411796138,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mhp3rzaqskcgad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,700005489,822059908662278,825465608499232,1718093079,1119699,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":1933,\"model_id\":400229261782,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mhp3rzaqskcgad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,700005489,822059908662278,825465608499232,1718093079,1119699,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":1933,\"model_id\":400229261782,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52552361271",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57202360860,
              "shopid": 444976998,
              "name": "12.12 NEW OTAG - Android GPS Tracker Mini Anti Lost, Motor, Mobil, Pencari Kunci & Barang Hilang untuk Praktis Ringan Promo",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                298463379,
                2018619,
                1059152,
                700005487,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                1718093079,
                1119699,
                700765096,
                298888358,
                298938357,
                298933384,
                298938368,
                2098628,
                298468389,
                2098629,
                1718088045
              ],
              "image": "sg-11134201-8225e-mhp21vq1q0w45b",
              "images": [
                "sg-11134201-8225e-mhp21vq1q0w45b",
                "sg-11134201-82275-mhp21vxvzeo1cc",
                "sg-11134201-8227l-mhp21w8apr7pe4",
                "sg-11134201-8227l-mhp21whcskquca",
                "sg-11134201-8225d-mhp21wsrm8lke1",
                "sg-11134201-8226x-mhp21x15z0ue30",
                "sg-11134201-82277-mhp21xba7k7545",
                "sg-11134201-8225a-mhp21xkp5tzad8",
                "sg-11134201-8225d-mhp21xu1p3peb3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764522178,
              "sold": 9,
              "historical_sold": 9,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 15000000000,
              "price_min": 15000000000,
              "price_max": 15000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9an-mhelnkaox1xma8.16000101763889260.mp4",
                  "thumb_url": "sg-11110106-6v9an-mhelnkaox1xma8_cover",
                  "duration": 33,
                  "version": 2,
                  "vid": "sg-11110106-6v9an-mhelnkaox1xma8",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9an-mhelnkaox1xma8.16000101763889260.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9an-mhelnkaox1xma8.16000101763889260.mp4",
                      "width": 952,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9an-mhelnkaox1xma8.default.mp4",
                    "width": 952,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": true,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 15000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 282215453961,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 15000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 9,
                "rounded_local_monthly_sold_count": 9,
                "local_monthly_sold_count_text": "9",
                "rounded_display_sold_count": 9,
                "display_sold_count_text": "9"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Transgo Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57202360860,
            "shopid": 444976998,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225e-mhp21vq1q0w45b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,298463379,2018619,1059152,700005487,822059908662278,825465608499232,825465608497696,2048660,2048661,840955085144628,825465608493600,825465608494624,1718093079,1119699,700765096,298888358,298938357,298933384,298938368,2098628,298468389,2098629,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2198,\"model_id\":282215453961,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225e-mhp21vq1q0w45b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,298463379,2018619,1059152,700005487,822059908662278,825465608499232,825465608497696,2048660,2048661,840955085144628,825465608493600,825465608494624,1718093079,1119699,700765096,298888358,298938357,298933384,298938368,2098628,298468389,2098629,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2198,\"model_id\":282215453961,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57202360860",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51102345991,
              "shopid": 1679113036,
              "name": "Smartwatch Anak-anak X1-4G  Video Call Telepon GPS Anti Air HD Camera Smart Watch Kids Jam Tangan Model uniseks",
              "label_ids": [
                844931064601283,
                844931086908638,
                1718093079,
                1119699,
                298463379,
                1428713,
                1718087960,
                2023641,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224v-mjft6p9eae4j09",
              "images": [
                "id-11134207-8224v-mjft6p9eae4j09",
                "sg-11134201-82275-mhmwetb9b94y3f",
                "sg-11134201-8225i-mhmwetni7yf64a",
                "sg-11134201-8227o-mhmweu1ewk5c55",
                "sg-11134201-8227j-mhmweuiwxo1va9",
                "sg-11134201-8224t-mhmweuxjooar09",
                "sg-11134201-8226b-mhmwevyvbmys3b",
                "sg-11134201-82250-mhmwewan0vt403",
                "sg-11134201-8226l-mhmwewkmyy9sc0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764478292,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 26680000000,
              "price_min": 26680000000,
              "price_max": 26680000000,
              "price_min_before_discount": 142000000000,
              "price_max_before_discount": 142000000000,
              "hidden_price_display": null,
              "price_before_discount": 142000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-81%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9al-mhobyjcdwxs5f5.16000101764478303.mp4",
                  "thumb_url": "sg-11110106-6v9al-mhobyjcdwxs5f5_cover",
                  "duration": 49,
                  "version": 2,
                  "vid": "sg-11110106-6v9al-mhobyjcdwxs5f5",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9al-mhobyjcdwxs5f5.16000101764478303.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9al-mhobyjcdwxs5f5.16000101764478303.mp4",
                      "width": 960,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9al-mhobyjcdwxs5f5.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "blue",
                    "black",
                    "pink",
                    "black."
                  ],
                  "images": [
                    "sg-11134201-82262-mhmwerkourr998",
                    "sg-11134201-82262-mhmwerv8meps1a",
                    "sg-11134201-8227c-mhmwes315wcia8",
                    "sg-11134201-8226d-mhmwescdb4ecda"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 796868200693760,
                "price": 26180000000,
                "strikethrough_price": 142000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1298940151480320,
                "discount_text": "-81%",
                "model_id": 259105518791,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1298940151480320,
                  "voucher_code": "S853A01",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1764305460,
                    "end_time": 1769838660,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 15000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 142000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KidSmart Watch ID",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51102345991,
            "shopid": 1679113036,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mjft6p9eae4j09\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,1119699,298463379,1428713,1718087960,2023641,1059152,1049122,822059908662278,825465608499232,825465608497696,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1106,\"model_id\":259105518791,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mjft6p9eae4j09\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,1119699,298463379,1428713,1718087960,2023641,1059152,1049122,822059908662278,825465608499232,825465608497696,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1106,\"model_id\":259105518791,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51102345991",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48902345125,
              "shopid": 1589172126,
              "name": "Tempered Glass PC Case for Redmi Watch 6 5 4 Anti Gores All-Around Screen Protector Bumper Frame Cover Accessories for Jam Tangan Smartwatch Redmi Watch 6 5 4",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1718093079,
                1119699,
                1400285055,
                298933384,
                700810080,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-82268-mhn92cuq5vd2d5",
              "images": [
                "sg-11134201-82268-mhn92cuq5vd2d5",
                "sg-11134201-8226o-mhn92eeairye74",
                "sg-11134201-8226q-mhn92fr5ju2p23",
                "sg-11134201-82259-mhn92gku9mh484",
                "sg-11134201-8227s-mhn92hj2e22r4f",
                "sg-11134201-82268-mhn92ixp95ac8b",
                "sg-11134201-82253-mhn92jz1lhc1c9",
                "sg-11134201-8226s-mhn92l4cxtkzc7",
                "sg-11134201-8225r-mhn92lv6lukoe3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764412911,
              "sold": 1,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2100000000,
              "price_min": 2100000000,
              "price_max": 2100000000,
              "price_min_before_discount": 6000000000,
              "price_max_before_discount": 6000000000,
              "hidden_price_display": null,
              "price_before_discount": 6000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-65%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v99s-mhgfpygvrytg6a.16000081764000353.mp4",
                  "thumb_url": "sg-11110106-6v99s-mhgfpygvrytg6a_cover",
                  "duration": 19,
                  "version": 2,
                  "vid": "sg-11110106-6v99s-mhgfpygvrytg6a",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v99s-mhgfpygvrytg6a.16000081764000353.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v99s-mhgfpygvrytg6a.16000081764000353.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v99s-mhgfpygvrytg6a.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Transparent(Case)",
                    "Black(Case)",
                    "Green(Case)",
                    "Pink (Case)",
                    "Blue(Case)",
                    "Ivory(Case)",
                    "3D Film"
                  ],
                  "images": [
                    "sg-11134201-8226g-mhn92yopzjsxcc",
                    "sg-11134201-8227s-mhn92yx363upd8",
                    "sg-11134201-8225s-mhn92z9m598l5f",
                    "sg-11134201-82274-mhn92ziioiyr84",
                    "sg-11134201-8226b-mhmu2de0f20y27",
                    "sg-11134201-82256-mhn9303cun0j45",
                    "sg-11134201-8226l-mhn930c4l6gwaf"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 6",
                    "Redmi Watch 5",
                    "Redmi Watch 4"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359070448239000,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2100000000,
                "strikethrough_price": 6000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-65%",
                "model_id": 360225032062,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 21.000",
                      "hidden_promotion_price": "Rp ?1.000",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Fulsaxad",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48902345125,
            "shopid": 1589172126,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82268-mhn92cuq5vd2d5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,1400285055,298933384,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":442,\"model_id\":360225032062,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82268-mhn92cuq5vd2d5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,1400285055,298933384,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":442,\"model_id\":360225032062,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48902345125",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45402337203,
              "shopid": 1629046872,
              "name": "Strap Huawei Watch GT 4  /GT 5 / GT 6 46mm Quick Release 22mm Strap Huawei Watch GT 6 46mm Warna Tint",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-82267-mhn2xkkfwphdd8",
              "images": [
                "sg-11134201-82267-mhn2xkkfwphdd8",
                "sg-11134201-8227r-mhn2xkq5ngg339",
                "sg-11134201-8224v-mhn2xl2bva4ga0",
                "sg-11134201-82254-mhn2xl7u756p2a",
                "sg-11134201-8227z-mhn2xlczgj5t9f",
                "sg-11134201-8227h-mhn2xljkt24k6d",
                "sg-11134201-8227r-mhn2xlpn1dz7cc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764402589,
              "sold": 8,
              "historical_sold": 13,
              "liked": false,
              "liked_count": 7,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3863200000,
              "price_min": 3863200000,
              "price_max": 3863200000,
              "price_min_before_discount": 4599000000,
              "price_max_before_discount": 4599000000,
              "hidden_price_display": null,
              "price_before_discount": 4599000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-16%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Tint Black",
                    "Tint Purple",
                    "Tint Blue",
                    "Tint Green",
                    "Tint Grey",
                    "Tint Yellow",
                    "Tint Red"
                  ],
                  "images": [
                    "sg-11134201-8226u-mhn2xlx63jlv76",
                    "sg-11134201-8226m-mhn2xm3ne2o570",
                    "sg-11134201-8226i-mhn2xm8yi48z95",
                    "sg-11134201-82277-mhn2xme93wg853",
                    "sg-11134201-8224p-mhn2xmja6y2wa2",
                    "sg-11134201-8226f-mhn2xmod5ddy91",
                    "sg-11134201-8226b-mhn2xmuhdc7c38"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tipe",
                  "options": [
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  1,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 740407617585152,
                "price": 3863200000,
                "strikethrough_price": 4599000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-16%",
                "model_id": 435224305432,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4599000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 13,
                "rounded_local_monthly_sold_count": 8,
                "local_monthly_sold_count_text": "8",
                "rounded_display_sold_count": 13,
                "display_sold_count_text": "13"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Baggioo",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45402337203,
            "shopid": 1629046872,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82267-mhn2xkkfwphdd8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1119699,298933384,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1305,\"model_id\":435224305432,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82267-mhn2xkkfwphdd8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1119699,298933384,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1305,\"model_id\":435224305432,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45402337203",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49652332889,
              "shopid": 978748732,
              "name": "Strap Huawei Watch Fit 3 / Fit 4 / Fit 4 PRO Transparan Huawei Watch Fit 4 Silicone Warna Tint",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1718093079,
                1119699,
                298933384,
                1015914,
                700190087,
                1400285055,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-82289-mhn24vgbdwco1d",
              "images": [
                "sg-11134201-82289-mhn24vgbdwco1d",
                "sg-11134201-8225g-mhn24vnw34zq2f",
                "sg-11134201-82255-mhn24vw9ci6dbd",
                "sg-11134201-82276-mhn24w4zg3cz22",
                "sg-11134201-8225a-mhn24wcw7abkd1",
                "sg-11134201-8225t-mhn24wnl2xog5f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764401250,
              "sold": 42,
              "historical_sold": 58,
              "liked": false,
              "liked_count": 37,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 24,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3863200000,
              "price_min": 3863200000,
              "price_max": 3863200000,
              "price_min_before_discount": 4599000000,
              "price_max_before_discount": 4599000000,
              "hidden_price_display": null,
              "price_before_discount": 4599000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-16%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemw-mhn25q3l1ede53.16000081764401288.mp4",
                  "thumb_url": "id-11110105-6vemw-mhn25q3l1ede53_cover",
                  "duration": 26,
                  "version": 2,
                  "vid": "id-11110105-6vemw-mhn25q3l1ede53",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemw-mhn25q3l1ede53.16000081764401288.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemw-mhn25q3l1ede53.16000081764401288.mp4",
                      "width": 720,
                      "height": 1036
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemw-mhn25q3l1ede53.default.mp4",
                    "width": 540,
                    "height": 776
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Tint Black",
                    "Tint Purple",
                    "Tint Blue",
                    "Tint Green",
                    "Tint Grey",
                    "Tint Yellow",
                    "Tint Red"
                  ],
                  "images": [
                    "sg-11134201-8227a-mhn24wx3mhac6f",
                    "id-11134207-8224p-mhn21s61bz7k06",
                    "id-11134207-8224t-mhn21s61dds050",
                    "id-11134207-8224p-mhn21s61escg94",
                    "id-11134207-8224o-mhn21s61g6wwbc",
                    "id-11134207-8224p-mhn21s61hlhc7a",
                    "id-11134207-82252-mhn21s61j01s54"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tipe",
                  "options": [
                    "Huawei Fit 3/4/4RO"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.916666666666667,
                "rating_count": [
                  24,
                  0,
                  0,
                  0,
                  2,
                  22
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 5
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 789185645036544,
                "price": 3863200000,
                "strikethrough_price": 4599000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-16%",
                "model_id": 297212573644,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4599000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 58,
                "rounded_local_monthly_sold_count": 42,
                "local_monthly_sold_count_text": "42",
                "rounded_display_sold_count": 58,
                "display_sold_count_text": "58"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANDIFY",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49652332889,
            "shopid": 978748732,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82289-mhn24vgbdwco1d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1718093079,1119699,298933384,1015914,700190087,1400285055,1059152,1049122,822059908662278,825465608499232,825465608497696,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":966,\"model_id\":297212573644,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82289-mhn24vgbdwco1d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1718093079,1119699,298933384,1015914,700190087,1400285055,1059152,1049122,822059908662278,825465608499232,825465608497696,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":966,\"model_id\":297212573644,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49652332889",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42576859157,
              "shopid": 317027900,
              "name": "Strap Huawei Watch Fit 3 / Fit 4 / Fit 4 PRO Silicone Transparan Huawei Watch Fit 4 Warna Tint",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                700700063,
                2018619,
                2023641,
                1718093079,
                1119699,
                298933384,
                1015914,
                700190087,
                1049122,
                1059152,
                822059908662278,
                840955085144628,
                825465608499232,
                825465608497696,
                840990690654214,
                1400285055,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82252-mhn0ljuhgd8k2d",
              "images": [
                "id-11134207-82252-mhn0ljuhgd8k2d",
                "id-11134207-8224u-mhn0ljueg7ig4e",
                "id-11134207-8224q-mhn0ljuhkkxw0f",
                "id-11134207-82251-mhn0ljuhj6dgfe",
                "id-11134207-8224o-mhn0ljuehm2w7e",
                "id-11134207-8224y-mhn0riunn4zq6c",
                "id-11134207-8224x-mhn0ljupc3yge7",
                "id-11134207-8224t-mhn0ljuhhrt07d",
                "id-11134207-8224t-mhn0lju8bocj6f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764398957,
              "sold": 48,
              "historical_sold": 53,
              "liked": false,
              "liked_count": 33,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 16,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3863200000,
              "price_min": 3863200000,
              "price_max": 3863200000,
              "price_min_before_discount": 4599000000,
              "price_max_before_discount": 4599000000,
              "hidden_price_display": null,
              "price_before_discount": 4599000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-16%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venb-mhn0lxg4qmfccb.16000081764398685.mp4",
                  "thumb_url": "id-11110105-6venb-mhn0lxg4qmfccb_cover",
                  "duration": 26,
                  "version": 2,
                  "vid": "id-11110105-6venb-mhn0lxg4qmfccb",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venb-mhn0lxg4qmfccb.16000081764398685.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mhn0lxg4qmfccb.16000081764398685.mp4",
                      "width": 720,
                      "height": 1036
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mhn0lxg4qmfccb.default.mp4",
                    "width": 540,
                    "height": 776
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Tint Black",
                    "Tint Purple",
                    "Tint Blue",
                    "Tint Green",
                    "Tint Grey",
                    "Tint Yellow",
                    "Tint Red"
                  ],
                  "images": [
                    "id-11134207-8224u-mhn0ljuhlzic41",
                    "id-11134207-8224s-mhn0ljuhne2sb4",
                    "id-11134207-8224y-mhn0ljuhosn86d",
                    "id-11134207-8224w-mhn0ljuhq77o8f",
                    "id-11134207-8224u-mhn0ljuhrls406",
                    "id-11134207-8224t-mhn0ljuht0ck9c",
                    "id-11134207-82251-mhn0riurnthkd1"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tipe",
                  "options": [
                    "Huawei Fit 3/4/4RO"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  16,
                  0,
                  0,
                  0,
                  0,
                  16
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 352509327836186,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 824656177725440,
                "price": 3863200000,
                "strikethrough_price": 4599000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-16%",
                "model_id": 238212565445,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4599000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 53,
                "rounded_local_monthly_sold_count": 48,
                "local_monthly_sold_count_text": "48",
                "rounded_display_sold_count": 53,
                "display_sold_count_text": "53"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GuangHouse",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42576859157,
            "shopid": 317027900,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mhn0ljuhgd8k2d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,298463379,700700063,2018619,2023641,1718093079,1119699,298933384,1015914,700190087,1049122,1059152,822059908662278,840955085144628,825465608499232,825465608497696,840990690654214,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":53,\"model_id\":238212565445,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mhn0ljuhgd8k2d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,298463379,700700063,2018619,2023641,1718093079,1119699,298933384,1015914,700190087,1049122,1059152,822059908662278,840955085144628,825465608499232,825465608497696,840990690654214,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":53,\"model_id\":238212565445,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42576859157",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46702336458,
              "shopid": 1611729847,
              "name": "100%ORI Samsung Galaxy watch 7 44mm Baru Smart Watch AMOLED Layar Sentuh Definisi Tinggi Pemantauan Detak Jantung Pemantauan Jantung Pemantauan Tidur Data Olahraga Pernah Dipakai Tahan air Koneksi Bluetooth Wallpaper Khusus Watch Samsung Smartwatch",
              "label_ids": [
                298938357,
                2068629,
                2018619,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                1049122,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                1015914,
                700190087,
                298463379,
                298933384,
                1400285055,
                1718088045,
                2098628,
                298468389,
                2098629,
                298938368
              ],
              "image": "id-11134207-8224u-mhn0ig7i6lfn9d",
              "images": [
                "id-11134207-8224u-mhn0ig7i6lfn9d",
                "id-11134207-8224u-mhn0ig7l14w144",
                "id-11134207-8224w-mhn0ig7kybr583",
                "id-11134207-8224v-mhn0ig7kzqbl1e",
                "id-11134207-8224q-mhn0ig7l2jgha2",
                "id-11134207-8224x-mhn0ig7l5cld31",
                "id-11134207-8224q-mhn0ig7l3y0x52",
                "id-11134207-8224p-mhn0ig7l6r5tc7",
                "id-11134207-8224z-mhn0ig7layv581"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764398807,
              "sold": 67,
              "historical_sold": 74,
              "liked": false,
              "liked_count": 97,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 42,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 47625000000,
              "price_min": 47625000000,
              "price_max": 47625000000,
              "price_min_before_discount": 479900000000,
              "price_max_before_discount": 479900000000,
              "hidden_price_display": null,
              "price_before_discount": 479900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-90%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venf-mhn0jp8o0pag7d.16000081764398584.mp4",
                  "thumb_url": "id-11110105-6venf-mhn0jp8o0pag7d_cover",
                  "duration": 30,
                  "version": 2,
                  "vid": "id-11110105-6venf-mhn0jp8o0pag7d",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venf-mhn0jp8o0pag7d.16000081764398584.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venf-mhn0jp8o0pag7d.16000081764398584.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venf-mhn0jp8o0pag7d.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Green",
                    "Black",
                    "Grey",
                    "Purple",
                    "Pink",
                    "Starlight",
                    "Green."
                  ],
                  "images": [
                    "id-11134207-8224s-mhn0e3p9dkw053",
                    "id-11134207-8224u-mhn0e3p9c6bk77",
                    "id-11134207-8224w-mhn0e3p9arr4e9",
                    "id-11134207-8224s-mhn0e3p9ezggf3",
                    "id-11134207-8224r-mhn0e3p9ge0w44",
                    "id-11134207-8224w-mhn0e3p9hslc29",
                    "id-11134207-8224s-mhn0e3p9dkw053"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.333333333333333,
                "rating_count": [
                  42,
                  3,
                  1,
                  3,
                  7,
                  28
                ],
                "rcount_with_context": 12,
                "rcount_with_image": 11
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp152RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227931385507841,
                "price": 45847300000,
                "strikethrough_price": 479900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1328814450688000,
                "discount_text": "-90%",
                "model_id": 360223942432,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1328814450688000,
                  "voucher_code": "TZB7AAAAA",
                  "voucher_discount": 1777700000,
                  "time_info": {
                    "start_time": 1767866280,
                    "end_time": 1775905560,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 20000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 479900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 74,
                "rounded_local_monthly_sold_count": 67,
                "local_monthly_sold_count_text": "67",
                "rounded_display_sold_count": 74,
                "display_sold_count_text": "74"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp152RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "YOKO Audio Zone",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46702336458,
            "shopid": 1611729847,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mhn0ig7i6lfn9d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298938357,2068629,2018619,1718087960,1428713,844931086908638,844931064601283,1049122,1059152,1718093079,822059908662278,825465608499232,1119699,1015914,700190087,298463379,298933384,1400285055,1718088045,2098628,298468389,2098629,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":1722,\"model_id\":360223942432,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mhn0ig7i6lfn9d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298938357,2068629,2018619,1718087960,1428713,844931086908638,844931064601283,1049122,1059152,1718093079,822059908662278,825465608499232,1119699,1015914,700190087,298463379,298933384,1400285055,1718088045,2098628,298468389,2098629,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":1722,\"model_id\":360223942432,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46702336458",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55652301225,
              "shopid": 1482478368,
              "name": "Silicone Strap + PC Case for Redmi Watch 6 5 4 Rubber Band Belt Bracelet Anti Gores Bumper Screen Protector Cover Accessories Tali Jam Tangan Smartwatch for Xiaomi Redmi Watch 6 5 4",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                1718087960,
                844931086908638,
                1428713,
                298463379,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                1119699,
                700765096,
                298933384,
                1400285055,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8225q-mhmu1ttq72tc17",
              "images": [
                "sg-11134201-8225q-mhmu1ttq72tc17",
                "sg-11134201-8225v-mhmu1u6sda10ca",
                "sg-11134201-8224t-mhmu1ujp2s5f5a",
                "sg-11134201-8225x-mhmu1uuy603pf7",
                "sg-11134201-8227k-mhmu1v7x52bq08",
                "sg-11134201-8224u-mhmu1vhwm8ea24",
                "sg-11134201-82259-mhmu1vsjkyrnca",
                "sg-11134201-82281-mhmu1w3mtj48b7",
                "sg-11134201-8225v-mhmu1wjx6tj5d1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764387657,
              "sold": 6,
              "historical_sold": 13,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2936000000,
              "price_min": 2936000000,
              "price_max": 2936000000,
              "price_min_before_discount": 8100000000,
              "price_max_before_discount": 8100000000,
              "hidden_price_display": null,
              "price_before_discount": 8100000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-64%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.16000081754637246.mp4",
                  "thumb_url": "sg-11110106-6kioc-md5rgbyovjdycb_cover",
                  "duration": 37,
                  "version": 2,
                  "vid": "sg-11110106-6kioc-md5rgbyovjdycb",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.16000081754637246.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.16000081754637246.mp4",
                      "width": 1280,
                      "height": 672
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.default.mp4",
                    "width": 1028,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Clear Lemon",
                    "Transparent teal",
                    "White Transparent",
                    "Purple transparent",
                    "Red Transparent",
                    "green transparent",
                    "Transparent orange",
                    "Silver Blue stretch",
                    "Silver coconut ash",
                    "Starlight",
                    "Blue ink blue ink",
                    "Black Black",
                    "Light powder",
                    "Lemon",
                    "Blue stretch",
                    "Orange color",
                    "Blue Ink",
                    "teal",
                    "Soft powder",
                    "White color",
                    "Purple color",
                    "Red color",
                    "White Ivory",
                    "Dark green",
                    "grey",
                    "Black color",
                    "Rose powder",
                    "Midnight blue",
                    "Star light color",
                    "Silver color",
                    "Black 1",
                    "Clear Color"
                  ],
                  "images": [
                    "sg-11134201-82260-mhmu2a6nyia0a1",
                    "sg-11134201-82267-mhmu2au1gxs080",
                    "sg-11134201-82265-mhmu2b56xhc290",
                    "sg-11134201-82255-mhmu2biqrzt0a3",
                    "sg-11134201-8227w-mhmu2c4lgttt4f",
                    "sg-11134201-8227q-mhmu2cif5czs44",
                    "sg-11134201-8226s-mhmu2cz8ipz696",
                    "sg-11134201-8226v-mhmu2de1l8n5fa",
                    "sg-11134201-82278-mhmu2dts4wzp0c",
                    "sg-11134201-8226z-mhmu2e8t7e2tf1",
                    "sg-11134201-82264-mhmu2em1mdqc36",
                    "sg-11134201-8225w-mhmu2ezk2br7b7",
                    "sg-11134201-8224v-mhmu2ffr007cbe",
                    "sg-11134201-8225b-mhmu2fw120hta7",
                    "sg-11134201-8226h-mhmu2g9yir60d8",
                    "sg-11134201-8225r-mhmu2gomh9fk26",
                    "sg-11134201-8225v-mhmu2h987x8ge4",
                    "sg-11134201-8226l-mhmu2honudq8c4",
                    "sg-11134201-8226w-mhmu2i495vk6fd",
                    "sg-11134201-82273-mhmu2ihi8npc47",
                    "sg-11134201-8225e-mhmu2iv941z683",
                    "sg-11134201-8225v-mhmu2j627d3ca5",
                    "sg-11134201-8226u-mhmu2jd8uu4k62",
                    "sg-11134201-8227o-mhmu2jk4nwg187",
                    "sg-11134201-8226l-mhmu2jz95xxc21",
                    "sg-11134201-8226l-mhmu2k6xt1xc9e",
                    "sg-11134201-82275-mhmu2kduxseg65",
                    "sg-11134201-82255-mhmu2l11w6x227",
                    "sg-11134201-8227y-mhmu2lfytrsx7a",
                    "sg-11134201-82276-mhmu2ltfzd3ace",
                    "sg-11134201-82258-mhmu2m08mltw6b",
                    "sg-11134201-8226e-mhmu2mg76br6b2"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 6",
                    "Redmi Watch 5",
                    "Redmi Watch 4"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.75,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  1,
                  3
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2936000000,
                "strikethrough_price": 8100000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-64%",
                "model_id": 282212090723,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 8100000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 29.360",
                      "hidden_promotion_price": "Rp ?9.360",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 13,
                "rounded_local_monthly_sold_count": 6,
                "local_monthly_sold_count_text": "6",
                "rounded_display_sold_count": 13,
                "display_sold_count_text": "13"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Wowstrap",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55652301225,
            "shopid": 1482478368,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225q-mhmu1ttq72tc17\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1718087960,844931086908638,1428713,298463379,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1119699,700765096,298933384,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1756,\"model_id\":282212090723,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225q-mhmu1ttq72tc17\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1718087960,844931086908638,1428713,298463379,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1119699,700765096,298933384,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1756,\"model_id\":282212090723,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55652301225",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54702270525,
              "shopid": 1176840059,
              "name": "Anti Gores TPU Case Rubber Band for Redmi Watch 6 5 4 Soft Sport Silicone Strap Belt Screen Protector Cover Bumper Accessories Tali Jam Tangan for Smartwatch Xiaomi Redmi Watch 6 5 4",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1119699,
                700765096,
                700810080,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-82273-mhlmevznotttf8",
              "images": [
                "sg-11134201-82273-mhlmevznotttf8",
                "sg-11134201-8225k-mhlmewir2sjsef",
                "sg-11134201-82256-mhlmewytpyio36",
                "sg-11134201-8227l-mhlmexk0vs3sb8",
                "sg-11134201-82280-mhlmexv6je2p53",
                "sg-11134201-8224q-mhlmey9swb2ba6",
                "sg-11134201-82276-mhlmeyof6ewydb",
                "sg-11134201-8227k-mhlmeyznq0i047",
                "sg-11134201-8226d-mhlmez8vm32952"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764314280,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5220000000,
              "price_min": 5220000000,
              "price_max": 5220000000,
              "price_min_before_discount": 6000000000,
              "price_max_before_discount": 6000000000,
              "hidden_price_display": null,
              "price_before_discount": 6000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-13%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                  "thumb_url": "sg-11110106-6kiny-m9uaa30wleaq84_cover",
                  "duration": 30,
                  "version": 2,
                  "vid": "sg-11110106-6kiny-m9uaa30wleaq84",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Clear & teal",
                    "Clear & Dark green",
                    "Clear & Red",
                    "Clear & White",
                    "Clear &  Deep Purple",
                    "Clear & ivory",
                    "Dark gray & Black",
                    "Black Black",
                    "Midnight & midnight",
                    "Pink & Pink",
                    "Golden & yellow",
                    "Silver & Gray",
                    "grey",
                    "Yellow Power",
                    "Gray ",
                    "Deep Purple",
                    "pink",
                    "Midnight blue",
                    "Dark green",
                    "Red color",
                    "Water duck",
                    "Starlight",
                    "White color",
                    "Black color",
                    "Clear White",
                    "Black 1",
                    "Silver color",
                    "Gold",
                    "Gold rose gold",
                    "Midnight blue 1",
                    "Pink color"
                  ],
                  "images": [
                    "sg-11134201-8225g-mhlmfd64fk790c",
                    "sg-11134201-8225z-mhlmfe7t7xts58",
                    "sg-11134201-8227d-mhlmff0yz0n6ea",
                    "sg-11134201-8227l-mhlmffrkd98g7d",
                    "sg-11134201-8225q-mhlmfgijhzb7db",
                    "sg-11134201-82266-mhlmfhaiyeir9b",
                    "sg-11134201-8225w-mhlmfi0kx2psae",
                    "sg-11134201-8226o-mhlmfiusoc8zf8",
                    "sg-11134201-82262-mhlmfjja3nk3c6",
                    "sg-11134201-82257-mhlmfkbkd62r5e",
                    "sg-11134201-82276-mhlmfl4iwdtufe",
                    "sg-11134201-82269-mhlmflu6tf5s5f",
                    "sg-11134201-8226y-mhlmfmguhypx54",
                    "sg-11134201-8225v-mhlmfn8vseme93",
                    "sg-11134201-8227z-mhlmfnze52wz28",
                    "sg-11134201-82263-mhlmfwhpotfp57",
                    "sg-11134201-82276-mhlmfxaa3i0w15",
                    "sg-11134201-82262-mhlmfxzlkhs432",
                    "sg-11134201-8227r-mhlmfyppiuiq6a",
                    "sg-11134201-8225r-mhlmfzjlkmiu5b",
                    "sg-11134201-8227b-mhlmg0e3lbet3d",
                    "sg-11134201-8226a-mhlmg11rve2pbc",
                    "sg-11134201-8224t-mhlmg1w1dtl24b",
                    "sg-11134201-8225w-mhlmg2n7hxqe7b",
                    "sg-11134201-8227v-mhlmg3h9si6bc4",
                    "sg-11134201-8227y-mhlmg4eywwsmb9",
                    "sg-11134201-8224v-mhlmg5gollhha1",
                    "sg-11134201-8225a-mhlmg6gdttkya9",
                    "sg-11134201-8226p-mhlmg7g3afic31",
                    "sg-11134201-8224y-mhlmg8bwfyf7ea",
                    "sg-11134201-8227r-mhlmg9fqvm6dd9"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 6",
                    "Redmi Watch 5",
                    "Redmi Watch 4"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 403933596234286,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 807868299805696,
                "price": 5220000000,
                "strikethrough_price": 6000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-13%",
                "model_id": 380219369164,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almnvo Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54702270525,
            "shopid": 1176840059,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82273-mhlmevznotttf8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,700765096,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1533,\"model_id\":380219369164,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82273-mhlmevznotttf8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,700765096,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1533,\"model_id\":380219369164,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54702270525",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55202259795,
              "shopid": 1344427364,
              "name": "Silicone Strap for ADVAN Watch S3/3 Pro S2/2 Pro S1 SE 1 W2/Samsung Watch Galaxy Watch FE 7 6 5 Polos Silikon Quick Release 20mm 22mm Rubber Band Tali Jam Smartwatch for Garmin/Huawei GT 6 5 4/Amazfit Bip 6 /Xiaomi /Redmi Watch 5 Active/5 Lite/Itel/Aolon",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1718093079,
                1119699,
                700765096,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8224p-mhlmbu9ftqti14",
              "images": [
                "sg-11134201-8224p-mhlmbu9ftqti14",
                "sg-11134201-8225m-mhlmbus2earm14",
                "sg-11134201-82272-mhlmbvbpkfep79",
                "sg-11134201-8226c-mhlmbvyysav588",
                "sg-11134201-8225i-mhlmbwe1j7yc7c",
                "sg-11134201-82273-mhlmby2uuww29c",
                "sg-11134201-8226v-mhlmbzq1m7eoc3",
                "sg-11134201-8224o-mhlmbzxrutj86d",
                "sg-11134201-8227s-mhlmc0exwqo2d0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764314141,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1500000000,
              "price_min": 1500000000,
              "price_max": 1500000000,
              "price_min_before_discount": 3000000000,
              "price_max_before_discount": 3000000000,
              "hidden_price_display": null,
              "price_before_discount": 3000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kipj-m9sss57q8a76ab.16000081747314810.mp4",
                  "thumb_url": "sg-11110106-6kipj-m9sss57q8a76ab_cover",
                  "duration": 44,
                  "version": 2,
                  "vid": "sg-11110106-6kipj-m9sss57q8a76ab",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kipj-m9sss57q8a76ab.16000081747314810.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kipj-m9sss57q8a76ab.16000081747314810.mp4",
                      "width": 1280,
                      "height": 672
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kipj-m9sss57q8a76ab.16003251749727510.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kipj-m9sss57q8a76ab.16003251749727510.mp4",
                      "width": 1280,
                      "height": 672
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kipj-m9sss57q8a76ab.default.mp4",
                    "width": 1028,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Smoke Purple(strap)",
                    "Starlight(strap)",
                    "Midnight Blue(strap)",
                    "dark green(strap)",
                    "light blue(strap)",
                    "Milk tea (strap)",
                    "Wine Red(strap)",
                    "grey(strap)",
                    "red(strap)",
                    "black(strap)",
                    "pink(strap)",
                    "lilac(strap)",
                    "orange(strap)",
                    "white(strap)"
                  ],
                  "images": [
                    "sg-11134201-8226j-mhlmcd6knldt09",
                    "sg-11134201-8225c-mhlmcdpl45xc25",
                    "sg-11134201-8227u-mhlmceh6ycxt72",
                    "sg-11134201-82250-mhlmcfgxbbicef",
                    "sg-11134201-8226m-mhlmcggh9yiq7f",
                    "sg-11134201-82266-mhlmchddd91cc4",
                    "sg-11134201-82251-mhlmci5g0wegc7",
                    "sg-11134201-82275-mhlmcj3ee7lx02",
                    "sg-11134201-82273-mhlmcrexzzlxef",
                    "sg-11134201-8227a-mhlmcryuq9e07c",
                    "sg-11134201-8227i-mhlmcsfno4jkb9",
                    "sg-11134201-8224v-mhlmcswy1ypu17",
                    "sg-11134201-82280-mhlmctdecrgm34",
                    "sg-11134201-8224o-mhlmctygsmbka6"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm Watch Band",
                    "22mm Watch Band",
                    "ADVAN Watch Band"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 374889290936906,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 749779244613632,
                "price": 1500000000,
                "strikethrough_price": 3000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 395219348819,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "eameasca",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55202259795,
            "shopid": 1344427364,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8224p-mhlmbu9ftqti14\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1718093079,1119699,700765096,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2144,\"model_id\":395219348819,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8224p-mhlmbu9ftqti14\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1718093079,1119699,700765096,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2144,\"model_id\":395219348819,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55202259795",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 58052265504,
              "shopid": 1592030327,
              "name": "Anti Gores Diamond PC Case for Huawei Band 10 / Huawei Band 9 / Huawei Band 8 Biling Hard Hollow Screen Protector Full Bumper Cover Frame Accessories Tali Jam Tangan Smartwatch for Huawei Band 10 9 8 NFC",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                298463379,
                844931064601283,
                844931086908638,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1718093079,
                1119699,
                700765096,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8224t-mhllgyw16o0506",
              "images": [
                "sg-11134201-8224t-mhllgyw16o0506",
                "sg-11134201-8226x-mhllgzw3g3cze6",
                "sg-11134201-8226b-mhllh0x5yd54a2",
                "sg-11134201-82270-mhllh27ap2pwfb",
                "sg-11134201-8227h-mhllh39asum9b0",
                "sg-11134201-8225d-mhllh43pfair09",
                "sg-11134201-82253-mhllh4t609367f",
                "sg-11134201-8225y-mhllh58f5hqgfd",
                "sg-11134201-8225y-mhllh5p2o3y9ad"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764312700,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1450000000,
              "price_min": 1450000000,
              "price_max": 1450000000,
              "price_min_before_discount": 2900000000,
              "price_max_before_discount": 2900000000,
              "hidden_price_display": null,
              "price_before_discount": 2900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kips-m8kinaqysxlh39.16000081744634249.mp4",
                  "thumb_url": "sg-11110106-6kips-m8kinaqysxlh39_cover",
                  "duration": 12,
                  "version": 2,
                  "vid": "sg-11110106-6kips-m8kinaqysxlh39",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kips-m8kinaqysxlh39.16006711747763987.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kips-m8kinaqysxlh39.16006711747763987.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kips-m8kinaqysxlh39.16000081744634249.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kips-m8kinaqysxlh39.16000081744634249.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kips-m8kinaqysxlh39.16003251747763987.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kips-m8kinaqysxlh39.16003251747763987.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kips-m8kinaqysxlh39.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Gold(Case)",
                    "Rose(Case)",
                    "Starlight(Case)",
                    "Black(Case)",
                    "Rose Gold(Case)",
                    "Silver(Case)",
                    "Transparent(Case)",
                    "Film"
                  ],
                  "images": [
                    "sg-11134201-8227t-mhllhil0o4cj47",
                    "sg-11134201-8227v-mhllhj0abny828",
                    "sg-11134201-82281-mhllhjl94ufcbe",
                    "sg-11134201-8225v-mhllhjysfoxy9e",
                    "sg-11134201-8225x-mhllhkgd4bgg76",
                    "sg-11134201-82279-mhllhkx839qebb",
                    "sg-11134201-82267-mhllhleriy2t3a",
                    "sg-11134201-8225k-mhllhlvqa5fq1c"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei Band 10 9 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359074252468611,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718148739858432,
                "price": 1450000000,
                "strikethrough_price": 2900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 315219770561,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2900000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANSLOOP Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 58052265504,
            "shopid": 1592030327,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8224t-mhllgyw16o0506\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,298463379,844931064601283,844931086908638,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1718093079,1119699,700765096,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1739,\"model_id\":315219770561,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8224t-mhllgyw16o0506\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,298463379,844931064601283,844931086908638,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1718093079,1119699,700765096,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1739,\"model_id\":315219770561,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_58052265504",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53702265579,
              "shopid": 1592030327,
              "name": "Anti Gores PC Case for Huawei Band 7 / Huawei Band 6 / Huawei Band 6 Pro 2 In1 Tempered Glass Screen Protector PC Protective Cover Hard Full Jam Tangan Smartwatch for Honor Band 7 / Honor Band 6",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                1119699,
                700765096,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8226c-mhlli2pf2qyu8d",
              "images": [
                "sg-11134201-8226c-mhlli2pf2qyu8d",
                "sg-11134201-82289-mhlli381q420ee",
                "sg-11134201-8227b-mhlli3hu7ugz24",
                "sg-11134201-8224v-mhlli3tftx52df",
                "sg-11134201-82254-mhlli409j4skd2",
                "sg-11134201-82258-mhlli4a0gmwza0",
                "sg-11134201-82261-mhlli4pzmsck1c",
                "sg-11134201-82253-mhlli4yvuv467f",
                "sg-11134201-82285-mhlli55o8bgkda"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764312746,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1480000000,
              "price_min": 1480000000,
              "price_max": 1480000000,
              "price_min_before_discount": 2960000000,
              "price_max_before_discount": 2960000000,
              "hidden_price_display": null,
              "price_before_discount": 2960000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "transparent(Case)",
                    "black(Case)",
                    "Ivory(Case)",
                    "blue(Case)",
                    "pink(Case)",
                    "green(Case)"
                  ],
                  "images": [
                    "sg-11134201-8225c-mhllii7dggea78",
                    "sg-11134201-8227t-mhlliiw77oqte3",
                    "sg-11134201-8226q-mhllijk1tbeta0",
                    "sg-11134201-8226h-mhllikdcy8lcff",
                    "sg-11134201-8225s-mhllil3dfksi42",
                    "sg-11134201-8226a-mhllilssq6md78"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei/Hornorย bandย 7",
                    "Hornor/Huawei band 6",
                    "Huaweiย bandย 6pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359074252468611,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718148739858432,
                "price": 1480000000,
                "strikethrough_price": 2960000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 430219186328,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2960000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANSLOOP Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53702265579,
            "shopid": 1592030327,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226c-mhlli2pf2qyu8d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1119699,700765096,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":610,\"model_id\":430219186328,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226c-mhlli2pf2qyu8d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1119699,700765096,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":610,\"model_id\":430219186328,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53702265579",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50902258543,
              "shopid": 1310816661,
              "name": "Outro DELTA Smartwatch Built in GPS | 5ATM Waterproof | Flashlight | Sports | Bluetooth Call",
              "label_ids": [
                700700063,
                1012729,
                2018618,
                2153644,
                298938357,
                298888358,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1718093079,
                1049122,
                1059152,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                1119699,
                700765096,
                2213652,
                1015914,
                700190087,
                1400066568,
                840955085144628,
                840990690654214,
                700810055,
                298468389,
                298938368,
                1718088045,
                2098628,
                2098629
              ],
              "image": "id-11134207-82251-mhlijujc3rwi58",
              "images": [
                "id-11134207-82251-mhlijujc3rwi58",
                "id-11134207-8224u-mhlijujc56gyd0",
                "id-11134207-8224o-mhlijujcdlvmff",
                "id-11134207-8224r-mhlijujc9e6abb",
                "id-11134207-8224s-mhlijujc6l1eb7",
                "id-11134207-8224y-mhlijujc7zlu22",
                "id-11134207-8224q-mhlijujcf0g2b1",
                "id-11134207-8224z-mhlijujcasqq16",
                "id-11134207-8224o-mhlijujcc7b684"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764309453,
              "sold": 15,
              "historical_sold": 18,
              "liked": false,
              "liked_count": 80,
              "view_count": null,
              "catid": 100013,
              "brand": "Outro",
              "cmt_count": 8,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 79900000000,
              "price_min": 79900000000,
              "price_max": 79900000000,
              "price_min_before_discount": 100000000000,
              "price_max_before_discount": 100000000000,
              "hidden_price_display": null,
              "price_before_discount": 100000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-20%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Silver",
                    "Hitam + Rantai",
                    "Silver + Rantai"
                  ],
                  "images": [
                    "id-11134207-8224z-mhlmheyyc8i03f",
                    "id-11134207-8224v-mhlmheywb6ysbd",
                    "id-11134207-8224o-mhlmheywclj829",
                    "id-11134207-8224y-mhlmheywe03o7c"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.875,
                "rating_count": [
                  8,
                  0,
                  0,
                  0,
                  1,
                  7
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp131RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 809332623606784,
                "price": 78900000000,
                "strikethrough_price": 100000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1283090203951104,
                "discount_text": "-20%",
                "model_id": 335218846073,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1283090203951104,
                  "voucher_code": "OUTRO169",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1762966800,
                    "end_time": 1771088340,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 49900000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 100000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 18,
                "rounded_local_monthly_sold_count": 15,
                "local_monthly_sold_count_text": "15",
                "rounded_display_sold_count": 18,
                "display_sold_count_text": "18"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp131RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "OUTROย Officialย Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50902258543,
            "shopid": 1310816661,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mhlijujc3rwi58\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,1012729,2018618,2153644,298938357,298888358,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,1049122,1059152,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,2048660,2048661,1119699,700765096,2213652,1015914,700190087,1400066568,840955085144628,840990690654214,700810055,298468389,298938368,1718088045,2098628,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":1413,\"model_id\":335218846073,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mhlijujc3rwi58\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,1012729,2018618,2153644,298938357,298888358,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,1049122,1059152,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,2048660,2048661,1119699,700765096,2213652,1015914,700190087,1400066568,840955085144628,840990690654214,700810055,298468389,298938368,1718088045,2098628,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":1413,\"model_id\":335218846073,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50902258543",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40626837334,
              "shopid": 771051720,
              "name": "Kacamata Wiraless Bluetooth Glasses Headphones Bone Conduction Photochromic Sunglasses Earphones Autdoor Sports M8 Pro Original Hight Quality IPX4",
              "label_ids": [
                2018619,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059152,
                700005489,
                822059908662278,
                825465608499232,
                825465608497696,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82250-mhlfpql69qfc75",
              "images": [
                "id-11134207-82250-mhlfpql69qfc75",
                "id-11134207-82252-mhlfpql2n3lu6c",
                "id-11134207-8224t-mhlfpql9cpadc1",
                "id-11134207-8224s-mhlfpqkzk4qu74",
                "id-11134207-8224o-mhlfpqmf0vszd7",
                "id-11134207-8224s-mhlfpqmy3rid73",
                "id-11134207-8224q-mhlfpql2lp1e1f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764303405,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 22200000000,
              "price_min": 22200000000,
              "price_max": 22200000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 22200000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 390218503683,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 22200000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Goย Fastย acc",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40626837334,
            "shopid": 771051720,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhlfpql69qfc75\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1059152,700005489,822059908662278,825465608499232,825465608497696,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":997,\"model_id\":390218503683,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhlfpql69qfc75\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1059152,700005489,822059908662278,825465608499232,825465608497696,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":997,\"model_id\":390218503683,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40626837334",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56652211626,
              "shopid": 38395550,
              "name": "Smartwatch T800 Ultra 1.99โ€ Full Touch Bluetooth Call IP67 Waterproof Notif WA",
              "label_ids": [
                700700063,
                47,
                1000196,
                1000167,
                1000211,
                1000560,
                1000559,
                1011735,
                1000255,
                2018619,
                2023641,
                298938357,
                298888358,
                700190019,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                1718093079,
                1059152,
                1049122,
                822059908662278,
                825465608493600,
                825465608499232,
                825465608497696,
                825465608492064,
                1119699,
                298463379,
                1015914,
                700190087,
                298938368,
                298468389,
                2098629,
                1718088045,
                2098628
              ],
              "image": "id-11134207-8224o-mhk7sdrr6waw95",
              "images": [
                "id-11134207-8224o-mhk7sdrr6waw95",
                "id-11134207-8224y-mhk7sdrqvnr56e",
                "id-11134207-8224t-mhk7sdrqx2bl3e",
                "id-11134207-8224p-mhk7sdrqygw162",
                "id-11134207-8224z-mhk7sdrqzvgh5b",
                "id-11134207-8224q-mhk7sdrr2old5d",
                "id-11134207-8224q-mhk7sdrr435tff",
                "id-11134207-82250-mhk7sdrr5hq91c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764229624,
              "sold": 11,
              "historical_sold": 16,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 9000000000,
              "price_min": 9000000000,
              "price_max": 9000000000,
              "price_min_before_discount": 20000000000,
              "price_max_before_discount": 20000000000,
              "hidden_price_display": null,
              "price_before_discount": 20000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-55%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvm-mhk7vjy1vthg71.16000081764229299.mp4",
                  "thumb_url": "id-11110105-6vdvm-mhk7vjy1vthg71_cover",
                  "duration": 16,
                  "version": 2,
                  "vid": "id-11110105-6vdvm-mhk7vjy1vthg71",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvm-mhk7vjy1vthg71.16000081764229299.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvm-mhk7vjy1vthg71.16000081764229299.mp4",
                      "width": 720,
                      "height": 1272
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvm-mhk7vjy1vthg71.default.mp4",
                    "width": 540,
                    "height": 954
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hijau",
                    "Navy",
                    "Krem",
                    "Putih",
                    "Pink",
                    "Abu-Abu",
                    "Hitam",
                    "Ungu"
                  ],
                  "images": [
                    "id-11134207-8224u-mhx4ngfar6ko5a",
                    "id-11134207-8224v-mhx4ngfbrpc2e9",
                    "id-11134207-8224s-mhx4ngfbt3wi71",
                    "id-11134207-8224v-mhx4ngfbuigy3c",
                    "id-11134207-82250-mhx4ngfbvx1e07",
                    "id-11134207-8224q-mhx4ngfbxblue9",
                    "id-11134207-82251-mhx4ngfbyq6a5a",
                    "id-11134207-8224w-mhx4ngfc04qqa3"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  0,
                  4
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228239998205953,
                "price": 8550000000,
                "strikethrough_price": 20000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1333079201955840,
                "discount_text": "-55%",
                "model_id": 292206821889,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1333079201955840,
                  "voucher_code": "KAIR20262",
                  "voucher_discount": 450000000,
                  "time_info": {
                    "start_time": 1768375140,
                    "end_time": 1776413940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 20000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 16,
                "rounded_local_monthly_sold_count": 11,
                "local_monthly_sold_count_text": "11",
                "rounded_display_sold_count": 16,
                "display_sold_count_text": "16"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "kairoswatch17",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56652211626,
            "shopid": 38395550,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mhk7sdrr6waw95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,47,1000196,1000167,1000211,1000560,1000559,1011735,1000255,2018619,2023641,298938357,298888358,700190019,1718087960,1428713,844931086908638,844931064601283,1718093079,1059152,1049122,822059908662278,825465608493600,825465608499232,825465608497696,825465608492064,1119699,298463379,1015914,700190087,298938368,298468389,2098629,1718088045,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":2281,\"model_id\":292206821889,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mhk7sdrr6waw95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,47,1000196,1000167,1000211,1000560,1000559,1011735,1000255,2018619,2023641,298938357,298888358,700190019,1718087960,1428713,844931086908638,844931064601283,1718093079,1059152,1049122,822059908662278,825465608493600,825465608499232,825465608497696,825465608492064,1119699,298463379,1015914,700190087,298938368,298468389,2098629,1718088045,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":2281,\"model_id\":292206821889,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56652211626",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57802188607,
              "shopid": 1669518399,
              "name": "Samsung Smartwatch Anak Watch Z6 GPS/SOS/IP68/Kamera kid Smartwatch Perekaman Foto Tahan Air Layar Sentuh Koneksi Bluetooth Anak jam tangan Jam Tangan Pintar",
              "label_ids": [
                844931064601283,
                844931086908638,
                1049116,
                700005516,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1400285055,
                298933384,
                1015914,
                700190087,
                700810080,
                2023641,
                2018619
              ],
              "image": "id-11134207-8224u-mhjyli3h2tqd90",
              "images": [
                "id-11134207-8224u-mhjyli3h2tqd90",
                "id-11134207-8224y-mhjyli3h48atc8",
                "id-11134207-8224p-mhjyli3c8nb794",
                "id-11134207-8224y-mhjyli3pi8eg03",
                "id-11134207-8224r-mhjyli3ca1vn6b",
                "id-11134207-8224r-mhjyli3e2o0166",
                "id-11134207-8224z-mhjyli3h5mv9e7",
                "id-11134207-8224t-mhjyli3h71fp15",
                "id-11134207-8224o-mhjyli3h8g05bf"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764215838,
              "sold": 28,
              "historical_sold": 40,
              "liked": false,
              "liked_count": 13,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 31,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 18000000000,
              "price_min": 18000000000,
              "price_max": 18000000000,
              "price_min_before_discount": 200000000000,
              "price_max_before_discount": 200000000000,
              "hidden_price_display": null,
              "price_before_discount": 200000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": ">90% off",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Green",
                    "Purple",
                    "Black",
                    "Red",
                    "Watch z7"
                  ],
                  "images": [
                    "id-11134207-82250-mhjyli3h9ukl26",
                    "id-11134207-82252-mhjyli3hb9517f",
                    "id-11134207-8224p-mhjyli3hcnph16",
                    "id-11134207-8224o-mhjyli3he29x61",
                    "id-11134207-8224z-mhjyli3hfgud1b"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  31,
                  0,
                  0,
                  0,
                  0,
                  31
                ],
                "rcount_with_context": 22,
                "rcount_with_image": 22
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Sidoarjo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227970010857472,
                "price": 17500000000,
                "strikethrough_price": 200000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1303430455902208,
                "discount_text": ">90% off",
                "model_id": 445212973413,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1303430455902208,
                  "voucher_code": "Y05BD6",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1764840360,
                    "end_time": 1772879520,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 200000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 40,
                "rounded_local_monthly_sold_count": 28,
                "local_monthly_sold_count_text": "28",
                "rounded_display_sold_count": 40,
                "display_sold_count_text": "40"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "UEX Sumsung Resmi TOKO",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57802188607,
            "shopid": 1669518399,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mhjyli3h2tqd90\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049116,700005516,1718093079,822059908662278,825465608499232,825465608497696,1119699,1400285055,298933384,1015914,700190087,700810080,2023641,2018619],\"matched_keywords\":[\"\"],\"merge_rank\":2278,\"model_id\":445212973413,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mhjyli3h2tqd90\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049116,700005516,1718093079,822059908662278,825465608499232,825465608497696,1119699,1400285055,298933384,1015914,700190087,700810080,2023641,2018619],\"matched_keywords\":[\"\"],\"merge_rank\":2278,\"model_id\":445212973413,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57802188607",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44802202883,
              "shopid": 1589132922,
              "name": "Nylon Strap for IWatch Ultra/SE 3 2 Apple Watch Series 11 10 9 8 7 6 49 46 45 44 42 41 40 38mm Elastic Braided Scrunchie Replacement Band Bracelet Belt Accessories Tali Jam Tangan for Smartwatch T800 Ultra I8 Pro Max S8 S9 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                2023641,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8224t-mhjxnma75pmqc5",
              "images": [
                "sg-11134201-8224t-mhjxnma75pmqc5",
                "sg-11134201-8226d-mhjxnn3mmlfne0",
                "sg-11134201-82255-mhjxnnj3oxs66f",
                "sg-11134201-82261-mhjxno2pvzt13a",
                "sg-11134201-8226z-mhjxnorvi8skb1",
                "sg-11134201-8225w-mhjxnp9lqby840",
                "sg-11134201-8227d-mhjxnpyg8934c7",
                "sg-11134201-8227i-mhjxnqmzrgn49c",
                "sg-11134201-8227a-mhjxnr1wyvig02"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764212117,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1600000000,
              "price_min": 1600000000,
              "price_max": 1600000000,
              "price_min_before_discount": 3200000000,
              "price_max_before_discount": 3200000000,
              "hidden_price_display": null,
              "price_before_discount": 3200000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khw7-lrzqr6afs5t4e8.16000081708508816.mp4",
                  "thumb_url": "sg-11110106-7rcc6-lrzqrakpoczx24",
                  "duration": 20,
                  "version": 2,
                  "vid": "sg-11110106-6khw7-lrzqr6afs5t4e8",
                  "formats": [
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khw7-lrzqr6afs5t4e8.16003241711992784.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khw7-lrzqr6afs5t4e8.16003241711992784.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khw7-lrzqr6afs5t4e8.16003251711992784.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khw7-lrzqr6afs5t4e8.16003251711992784.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khw7-lrzqr6afs5t4e8.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black",
                    "Black Unity",
                    "Black Clever",
                    "Dark Cherry",
                    "Starlight",
                    "Neverness green",
                    "Charcoal",
                    "Pink Punch",
                    "Beige",
                    "Pride Edition",
                    "Abyss blue",
                    "Pink Sand"
                  ],
                  "images": [
                    "sg-11134201-8227i-mhjxo3yw6xoj45",
                    "sg-11134201-82282-mhjxo4j8an7s9d",
                    "sg-11134201-8225c-mhjxo4xfjyf82a",
                    "sg-11134201-8225u-mhjxo5cfzwub00",
                    "sg-11134201-82280-mhjxo5ph00lh14",
                    "sg-11134201-8227e-mhjxo617j2td6f",
                    "sg-11134201-8226m-mhjxo6j1glxd9d",
                    "sg-11134201-8225j-mhjxo6vkikg1d7",
                    "sg-11134201-8227m-mhjxo7gevnr602",
                    "sg-11134201-82264-mhjxo7x090qrad",
                    "sg-11134201-8225k-mhjxo8cnskxxad",
                    "sg-11134201-8224z-mhjxo8lg46x4a8"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "M 41/38/40mm",
                    "M 49/45/42(S3)/44mm",
                    "S 41/38/40mm",
                    "S 49/45/42(S3)/44mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359069789734022,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718139076165632,
                "price": 1600000000,
                "strikethrough_price": 3200000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 315213128054,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3200000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "FEGLYNN",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44802202883,
            "shopid": 1589132922,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8224t-mhjxnma75pmqc5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1724,\"model_id\":315213128054,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8224t-mhjxnma75pmqc5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1724,\"model_id\":315213128054,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44802202883",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50152187400,
              "shopid": 1589132922,
              "name": "PC Case for IWatch 49mm SE 3 2 Ultra 3 2 Apple Watch Series 11 10 9 8 7 6 5 4 3 2 1 46mm 45mm 44mm 42mm 41mm 40mm 38mm Hard Screen Protector Bumper Cover Accessories Jam Tangan Smartwatch for I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                2023641,
                700810080,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8225u-mhjwtmj7p1q9f3",
              "images": [
                "sg-11134201-8225u-mhjwtmj7p1q9f3",
                "sg-11134201-8225h-mhjwtmvi09vmc7",
                "sg-11134201-8227k-mhjwtn3jzqiw6f",
                "sg-11134201-82265-mhjwtnc0osug15",
                "sg-11134201-8225f-mhjwtnjhu682bd",
                "sg-11134201-8225k-mhjvb2bf6ivc9b",
                "sg-11134201-82277-mhjwtnxd5m2r34",
                "sg-11134201-8227p-mhjwto5ufpc055",
                "sg-11134201-8224p-mhjwtod61nnq50"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764210712,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1238000000,
              "price_min": 1238000000,
              "price_max": 1238000000,
              "price_min_before_discount": 2180000000,
              "price_max_before_discount": 2180000000,
              "hidden_price_display": null,
              "price_before_discount": 2180000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-43%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khww-lrtzaii1343s0b.16000081708159964.mp4",
                  "thumb_url": "sg-11110106-7rccb-lrtzamjf842l7c",
                  "duration": 48,
                  "version": 2,
                  "vid": "sg-11110106-6khww-lrtzaii1343s0b",
                  "formats": [
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khww-lrtzaii1343s0b.16004091726478668.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khww-lrtzaii1343s0b.16004091726478668.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khww-lrtzaii1343s0b.16006591726478664.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khww-lrtzaii1343s0b.16006591726478664.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khww-lrtzaii1343s0b.16003251726473119.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khww-lrtzaii1343s0b.16003251726473119.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khww-lrtzaii1343s0b.16004101726478668.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khww-lrtzaii1343s0b.16004101726478668.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khww-lrtzaii1343s0b.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Transparent(case)",
                    "White(case)",
                    "Black(case)",
                    "Pink(case)",
                    "Midnightblue(case)",
                    "Green(case)",
                    "Star(case)",
                    "Rose(case)",
                    "Red(case)",
                    "Silver(case)"
                  ],
                  "images": [
                    "sg-11134201-82286-mhjwu11yww0861",
                    "sg-11134201-8226d-mhjwu1cmfdhhf2",
                    "sg-11134201-8224o-mhjwu1tlasjm3f",
                    "sg-11134201-8225m-mhjwu26eyqdh92",
                    "sg-11134201-8225d-mhjwu2j9c0045e",
                    "sg-11134201-82282-mhjwu2wm2v48b4",
                    "sg-11134201-8225o-mhjwu3adf47cf3",
                    "sg-11134201-82264-mhjwu3iof0g835",
                    "sg-11134201-8225a-mhjwu3vnuxhfcc",
                    "sg-11134201-8226o-mhjwu44hqolga0"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "38mm",
                    "42mm",
                    "40mm",
                    "44mm",
                    "41mm",
                    "45mm",
                    "49mm",
                    "42mm Series 11 10",
                    "46mm Series 11 10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  1,
                  0
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 225651621904384,
                "price": 1238000000,
                "strikethrough_price": 2180000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-43%",
                "model_id": 302205752873,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2180000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "FEGLYNN",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50152187400,
            "shopid": 1589132922,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225u-mhjwtmj7p1q9f3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,2023641,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2296,\"model_id\":302205752873,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225u-mhjwtmj7p1q9f3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,2023641,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2296,\"model_id\":302205752873,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50152187400",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53002195611,
              "shopid": 1495053614,
              "name": "22mm 20mm Silicone Strap for ADVAN Watch S3/3 Pro S2/2 Pro S1 SE 1 W2/Redmi Watch 5 Active Lite/Itel/Aolon/Samsung Watch Galaxy Watch FE 7 6 5 Polos Silikon Quick Release Rubber Band Tali Jam Smartwatch for Garmin/Huawei GT 6 5 4/Amazfit Bip 6 Watch Strap",
              "label_ids": [
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                700765096,
                1400285055,
                1015914,
                700190087,
                2018619,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-82274-mhjvlhf5nsas8a",
              "images": [
                "sg-11134201-82274-mhjvlhf5nsas8a",
                "sg-11134201-8225p-mhjvljwdjjsy75",
                "sg-11134201-82272-mhjvlm7ddoua19",
                "sg-11134201-8227b-mhjvlozbi6fc9e",
                "sg-11134201-8226o-mhjvlre59rer6a",
                "sg-11134201-8227i-mhjvltzyo3ydf2",
                "sg-11134201-8227n-mhjvlwg6nhtw25",
                "sg-11134201-8227j-mhjvlys3hzb85e",
                "sg-11134201-8226m-mhjvm10wk5c65b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764208673,
              "sold": 49,
              "historical_sold": 56,
              "liked": false,
              "liked_count": 7,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 17,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1500000000,
              "price_min": 1500000000,
              "price_max": 1500000000,
              "price_min_before_discount": 3000000000,
              "price_max_before_discount": 3000000000,
              "hidden_price_display": null,
              "price_before_discount": 3000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kipj-m9sss57q8a76ab.16000081747314810.mp4",
                  "thumb_url": "sg-11110106-6kipj-m9sss57q8a76ab_cover",
                  "duration": 44,
                  "version": 2,
                  "vid": "sg-11110106-6kipj-m9sss57q8a76ab",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kipj-m9sss57q8a76ab.16000081747314810.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kipj-m9sss57q8a76ab.16000081747314810.mp4",
                      "width": 1280,
                      "height": 672
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kipj-m9sss57q8a76ab.16003251749727510.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kipj-m9sss57q8a76ab.16003251749727510.mp4",
                      "width": 1280,
                      "height": 672
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kipj-m9sss57q8a76ab.default.mp4",
                    "width": 1028,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Smoke Purple(strap)",
                    "Starlight(strap)",
                    "Midnight Blue(strap)",
                    "dark green(strap)",
                    "light blue(strap)",
                    "Milk tea (strap)",
                    "Wine Red(strap)",
                    "grey(strap)",
                    "red(strap)",
                    "black(strap)",
                    "pink(strap)",
                    "lilac(strap)",
                    "orange(strap)",
                    "white(strap)"
                  ],
                  "images": [
                    "sg-11134201-82272-mhjvmdg9kr9gc1",
                    "sg-11134201-82274-mhjvmdp8gcn4b0",
                    "sg-11134201-8227u-mhjvmdx8ke0z88",
                    "sg-11134201-8225t-mhjvmedc2i2q42",
                    "sg-11134201-8225i-mhjvmeroedj4f4",
                    "sg-11134201-8226x-mhjvmf6bf7r4c6",
                    "sg-11134201-8226y-mhj21ttkt8g02c",
                    "sg-11134201-8226n-mhjvmfo4q9s00c",
                    "sg-11134201-8225o-mhjvmfw35v5y73",
                    "sg-11134201-8227x-mhjvmg72f5ky75",
                    "sg-11134201-82276-mhj21va1ayv97a",
                    "sg-11134201-82260-mhjvmh44fyf4a6",
                    "sg-11134201-8224o-mhjvmhm0wu0w5d",
                    "sg-11134201-82256-mhjvmi5gbe2s31"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm",
                    "22mm",
                    "for Advan Watch"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.823529411764706,
                "rating_count": [
                  17,
                  0,
                  0,
                  1,
                  1,
                  15
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 393085536454641,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744062760566784,
                "price": 1500000000,
                "strikethrough_price": 3000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 405212231368,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 56,
                "rounded_local_monthly_sold_count": 49,
                "local_monthly_sold_count_text": "49",
                "rounded_display_sold_count": 56,
                "display_sold_count_text": "56"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BRADCET",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53002195611,
            "shopid": 1495053614,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82274-mhjvlhf5nsas8a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,1400285055,1015914,700190087,2018619,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1996,\"model_id\":405212231368,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82274-mhjvlhf5nsas8a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,1400285055,1015914,700190087,2018619,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1996,\"model_id\":405212231368,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53002195611",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52902143548,
              "shopid": 1146015138,
              "name": "Bluetooth 1.99 Inch Touch Smartwatch Full Ultra Waterproof T800 Screen Max IP68 Call",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1049120,
                700005490,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079,
                1119699,
                298933384,
                1015914,
                700190087
              ],
              "image": "id-11134207-7r98t-llswhc5qu52c4f",
              "images": [
                "id-11134207-7r98t-llswhc5qu52c4f",
                "id-11134207-7r98u-llswhc5qlpmvec",
                "id-11134207-7r98u-llswhc5qwy7828",
                "id-11134207-7r990-llswhc5qycro7d",
                "id-11134207-7r991-llswhc5qn47bbb",
                "id-11134207-7r98w-llswhc5qpxc720",
                "id-11134207-7r98q-llswhc5qrbwn87",
                "id-11134207-7r98r-llswhc5qvjmsca",
                "id-11134207-7r98t-llswhc5qoirrd0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764167766,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 14720000000,
              "price_min": 14720000000,
              "price_max": 14720000000,
              "price_min_before_discount": 45664800000,
              "price_max_before_discount": 45664800000,
              "hidden_price_display": null,
              "price_before_discount": 45664800000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-68%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "colour",
                  "options": [
                    "white",
                    "pink",
                    "black"
                  ],
                  "images": [
                    "id-11134207-7r98x-llswhc5qzrc4fe",
                    "id-11134207-7r991-llswhc5r15wk45",
                    "id-11134207-7r98p-llswhc5r2kh0b9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 410105342607691,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 820773611159552,
                "price": 14320000000,
                "strikethrough_price": 45664800000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1273478159417344,
                "discount_text": "-68%",
                "model_id": 310209964300,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1273478159417344,
                  "voucher_code": "HJM6QWA15",
                  "voucher_discount": 400000000,
                  "time_info": {
                    "start_time": 1761270180,
                    "end_time": 1769273940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 9000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 45664800000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Taylor's Ray Electronics Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52902143548,
            "shopid": 1146015138,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98t-llswhc5qu52c4f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,1049120,700005490,822059908662278,825465608497696,825465608499232,1718093079,1119699,298933384,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":1861,\"model_id\":310209964300,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98t-llswhc5qu52c4f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,1049120,700005490,822059908662278,825465608497696,825465608499232,1718093079,1119699,298933384,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":1861,\"model_id\":310209964300,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52902143548",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45902170675,
              "shopid": 1481886281,
              "name": "TPU Case Soft Sport Rubber Band for Redmi Watch 6 5 4 Silicone Strap Belt Anti Gores Screen Protector Cover Bumper Accessories Tali Jam Tangan for Smartwatch Xiaomi Redmi Watch 6 5 4",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                298463379,
                1059152,
                1059154,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                844931064601283,
                844931086908638,
                1119699,
                1718093079,
                700765096,
                298933384,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8225v-mhj21a2ag8awe9",
              "images": [
                "sg-11134201-8225v-mhj21a2ag8awe9",
                "sg-11134201-8227t-mhj21am5faiw8b",
                "sg-11134201-8226t-mhj21b02gkxyf3",
                "sg-11134201-82269-mhj21bh712wxad",
                "sg-11134201-82284-mhj21bvcvtol31",
                "sg-11134201-8226l-mhj21caaha8165",
                "sg-11134201-8225u-mhj21cw9qi9sc3",
                "sg-11134201-82251-mhj21cz6drt401",
                "sg-11134201-8226v-mhj21dqgv7k273"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764158946,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5220000000,
              "price_min": 5220000000,
              "price_max": 5220000000,
              "price_min_before_discount": 6000000000,
              "price_max_before_discount": 6000000000,
              "hidden_price_display": null,
              "price_before_discount": 6000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-13%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                  "thumb_url": "sg-11110106-6kiny-m9uaa30wleaq84_cover",
                  "duration": 30,
                  "version": 2,
                  "vid": "sg-11110106-6kiny-m9uaa30wleaq84",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Clear & teal",
                    "Clear & Dark green",
                    "Clear & Red",
                    "Clear & White",
                    "Clear &  Deep Purple",
                    "Clear & ivory",
                    "Dark gray & Black",
                    "Black Black",
                    "Midnight & midnight",
                    "Pink & Pink",
                    "Golden & yellow",
                    "Silver & Gray",
                    "grey",
                    "Yellow Power",
                    "Gray ",
                    "Deep Purple",
                    "pink",
                    "Midnight blue",
                    "Dark green",
                    "Red color",
                    "Water duck",
                    "Starlight",
                    "White color",
                    "Black color",
                    "Clear White",
                    "Black 1",
                    "Silver color",
                    "Gold",
                    "Gold rose gold",
                    "Midnight blue 1",
                    "Pink color"
                  ],
                  "images": [
                    "sg-11134201-82267-mhj21r1xuhad3f",
                    "sg-11134201-8225x-mhj21rmqx69t32",
                    "sg-11134201-8225l-mhj21sai0feo96",
                    "sg-11134201-8227n-mhj21ssuo7456e",
                    "sg-11134201-8226q-mhj21tgxclc6df",
                    "sg-11134201-8224x-mhj21u76aqrmea",
                    "sg-11134201-8226n-mhj21uttbbi80f",
                    "sg-11134201-8226o-mhj21vcp4tmof0",
                    "sg-11134201-8227o-mhj21vwv9kp462",
                    "sg-11134201-82270-mhj21wmbhxq8dd",
                    "sg-11134201-8227x-mhj21xa2xsee18",
                    "sg-11134201-8227y-mhj21xvsr1fp13",
                    "sg-11134201-8226j-mhj21yg6q68283",
                    "sg-11134201-8227q-mhj21z5x9a0w1d",
                    "sg-11134201-8226i-mhj21zvq4phhd2",
                    "sg-11134201-8226n-mhj220luld6qb9",
                    "sg-11134201-8224q-mhj221al2ltx34",
                    "sg-11134201-8224q-mhj221z0cphi5f",
                    "sg-11134201-82259-mhj222fyiublfd",
                    "sg-11134201-8226k-mhj2233bvkea2b",
                    "sg-11134201-8225i-mhj223rxv9qa94",
                    "sg-11134201-82281-mhj224hlwirpec",
                    "sg-11134201-8227k-mhj225kwbl6rc8",
                    "sg-11134201-8226e-mhj2268qvta83a",
                    "sg-11134201-82265-mhj22756jtvo86",
                    "sg-11134201-8224p-mhj227zt0kck18",
                    "sg-11134201-8226e-mhj228yur85d54",
                    "sg-11134201-8226d-mhj229yhbw1t3d",
                    "sg-11134201-8227p-mhj22autemtg05",
                    "sg-11134201-8227k-mhj22bwngn4340",
                    "sg-11134201-8227l-mhj22cu7ihhc47"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 6",
                    "Redmi Watch 5",
                    "Redmi Watch 4"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372020215039022,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744039557694464,
                "price": 5220000000,
                "strikethrough_price": 6000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-13%",
                "model_id": 325208619615,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "YUIYUKARI",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTk5LjI0Nl97YjExYmEzYWY0ODU1ODA5ZGY1Y2ViZWYwNzVlNDVhMDA6MDIwMDAwM2FhMDdjNGQwYjowMTAwMDE4MzU4MTM0MTJjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDM1NzQ3MTkxMw==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45902170675,
            "shopid": 1481886281,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225v-mhj21a2ag8awe9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,298463379,1059152,1059154,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,844931064601283,844931086908638,1119699,1718093079,700765096,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":569,\"model_id\":325208619615,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225v-mhj21a2ag8awe9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,298463379,1059152,1059154,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,844931064601283,844931086908638,1119699,1718093079,700765096,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":569,\"model_id\":325208619615,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45902170675",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45102157585,
              "shopid": 1415031175,
              "name": "BECKY GPS Tracker Motor Mobil OneWay OW-EV02 Gratis Server Online Web, Android dan iOs",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                844931064601283,
                844931086908638,
                1718093079,
                1119699,
                2218763
              ],
              "image": "sg-11134201-8225k-mhiw9wnng83pa6",
              "images": [
                "sg-11134201-8225k-mhiw9wnng83pa6",
                "sg-11134201-8225u-mhiw9wwgzf9e3c",
                "sg-11134201-8226z-mhiw9x5qv4sged",
                "sg-11134201-8227d-mhiw9xej6p6t89",
                "sg-11134201-8226m-mhiw9xmb9dl09f",
                "sg-11134201-8226i-mhiw9xv4tzbcae",
                "sg-11134201-8226g-mhiw9y1f7sox77",
                "sg-11134201-8227z-mhiw9y9y249470",
                "sg-11134201-8225m-mhiw9yig8gzk1e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764149257,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 22000000000,
              "price_min": 22000000000,
              "price_max": 22000000000,
              "price_min_before_discount": 40000000000,
              "price_max_before_discount": 40000000000,
              "hidden_price_display": null,
              "price_before_discount": 40000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-45%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9am-mhiw7tagjmdg67.16000091764149161.mp4",
                  "thumb_url": "sg-11110106-6v9am-mhiw7tagjmdg67_cover",
                  "duration": 23,
                  "version": 2,
                  "vid": "sg-11110106-6v9am-mhiw7tagjmdg67",
                  "formats": [
                    {
                      "format": 1600009,
                      "defn": "V270P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9am-mhiw7tagjmdg67.16000091764149161.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9am-mhiw7tagjmdg67.16000091764149161.mp4",
                      "width": 492,
                      "height": 270
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9am-mhiw7tagjmdg67.default.mp4",
                    "width": 638,
                    "height": 350
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "GPS",
                  "options": [
                    "TANPA KARTU"
                  ],
                  "images": [
                    "sg-11134201-8225k-mhiw9yoqyz2e7b"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 821008097935360,
                "price": 22000000000,
                "strikethrough_price": 40000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-45%",
                "model_id": 340207754568,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 40000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "beckyshopid",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45102157585,
            "shopid": 1415031175,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225k-mhiw9wnng83pa6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,1059152,1059154,822059908662278,825465608499232,825465608497696,844931064601283,844931086908638,1718093079,1119699,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":503,\"model_id\":340207754568,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225k-mhiw9wnng83pa6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,1059152,1059154,822059908662278,825465608499232,825465608497696,844931064601283,844931086908638,1718093079,1119699,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":503,\"model_id\":340207754568,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45102157585",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57252132094,
              "shopid": 415755,
              "name": "Watch Strap / Band Huawei Watch GT 6 Pro / 5 Pro 46mm Protego Tempus Official / Original Fluoroelastomer (PT-043)",
              "label_ids": [
                47,
                2153644,
                1400095067,
                1400285005,
                1000383,
                1000167,
                1000394,
                1000389,
                1000392,
                1011705,
                1000544,
                2018618,
                1011692,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1718093079,
                1119699,
                2213652,
                1400285055,
                1015914,
                700190087,
                700765096,
                1049112,
                1059151,
                822059908662278,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696
              ],
              "image": "id-11134207-82252-mhip6l6nkxz6b4",
              "images": [
                "id-11134207-82252-mhip6l6nkxz6b4",
                "id-11134207-8224z-mhip6l6nmcjm37",
                "id-11134207-8224x-mhip6l6nnr4233"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764145552,
              "sold": 3,
              "historical_sold": 11,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100013,
              "brand": "Protego",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 7500000000,
              "price_min": 7500000000,
              "price_max": 7500000000,
              "price_min_before_discount": 12000000000,
              "price_max_before_discount": 12000000000,
              "hidden_price_display": null,
              "price_before_discount": 12000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-38%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemy-mhk3z529uwao4d.16000081764222747.mp4",
                  "thumb_url": "id-11110105-6vemy-mhk3z529uwao4d_cover",
                  "duration": 19,
                  "version": 2,
                  "vid": "id-11110105-6vemy-mhk3z529uwao4d",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemy-mhk3z529uwao4d.16000081764222747.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemy-mhk3z529uwao4d.16000081764222747.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemy-mhk3z529uwao4d.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Brown",
                    "Cangshan Gray",
                    "Dark Green",
                    "Dark Grey",
                    "Midnight Blue",
                    "Orange",
                    "Red"
                  ],
                  "images": [
                    "id-11134207-82250-mhip6l6np5oic9",
                    "id-11134207-82251-mhiu1qdnmxvk1d",
                    "id-11134207-8224t-mhiu1qdtonwj26",
                    "id-11134207-8224t-mhiu1qdtq2gzc1",
                    "id-11134207-8224u-mhiu1qdtrh1f55",
                    "id-11134207-8224w-mhiu1qdtsvlvca",
                    "id-11134207-82250-mhiu1qdtua6b3c",
                    "id-11134207-8224x-mhiu1qdtvoqr20"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 794819627122688,
                "price": 7500000000,
                "strikethrough_price": 12000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-38%",
                "model_id": 320207393163,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 12000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 11,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 11,
                "display_sold_count_text": "11"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "unomax Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57252132094,
            "shopid": 415755,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mhip6l6nkxz6b4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,2153644,1400095067,1400285005,1000383,1000167,1000394,1000389,1000392,1011705,1000544,2018618,1011692,1428713,1718087960,844931064601283,844931086908638,1718093079,1119699,2213652,1400285055,1015914,700190087,700765096,1049112,1059151,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":504,\"model_id\":320207393163,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mhip6l6nkxz6b4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,2153644,1400095067,1400285005,1000383,1000167,1000394,1000389,1000392,1011705,1000544,2018618,1011692,1428713,1718087960,844931064601283,844931086908638,1718093079,1119699,2213652,1400285055,1015914,700190087,700765096,1049112,1059151,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":504,\"model_id\":320207393163,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57252132094",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54852121983,
              "shopid": 1589075157,
              "name": "Anti Gores TPU Case for Huawei Watch Fit 4 / Huawei Watch Fit 4 Pro / Huawei Watch Fit 3 Soft Screen Protector Full Coverage Bumper Cover Accessories Jam Tangan Smartwatch for Huawei Watch Fit 3",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                1718093079,
                1119699,
                700765096,
                2023641,
                2018619,
                298933384,
                2103651,
                2143613,
                1400285055,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-82256-mhirvua0clj95a",
              "images": [
                "sg-11134201-82256-mhirvua0clj95a",
                "sg-11134201-82273-mhirvuo0s3d249",
                "sg-11134201-8225l-mhirvv4z6p6re6",
                "sg-11134201-82255-mhirvvsedfydba",
                "sg-11134201-8225q-mhirvwly3e2q12",
                "sg-11134201-8227s-mhirvxbyvyth6a",
                "sg-11134201-8226m-mhirvy9cds7831",
                "sg-11134201-8225p-mhirvz14xkw631",
                "sg-11134201-8227n-mhirvzmfal1h24"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764141878,
              "sold": 5,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1321000000,
              "price_min": 1321000000,
              "price_max": 1321000000,
              "price_min_before_discount": 3580000000,
              "price_max_before_discount": 3580000000,
              "hidden_price_display": null,
              "price_before_discount": 3580000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-63%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Pink(Case)",
                    "Rose Gold(Case)",
                    "Gold(Case)",
                    "Gray(Case)",
                    "Black(Case)",
                    "Clear(Case)",
                    "Silver(Case)",
                    "Blue(Case)",
                    "3D"
                  ],
                  "images": [
                    "sg-11134201-8225z-mhirwc9to9ojfd",
                    "sg-11134201-8226b-mhirwcj2t8ua66",
                    "sg-11134201-8226h-mhirwcz1ze9v9e",
                    "sg-11134201-82255-mhirwd9k5fyd79",
                    "sg-11134201-8225n-mhirwdkcqhogdb",
                    "sg-11134201-8227w-mhirwdz8hvyaf3",
                    "sg-11134201-8226b-mhirweaa0lqe79",
                    "sg-11134201-82283-mhirwekl1lhk20",
                    "sg-11134201-82261-mhirweyfb5kw2f"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "smartwear_size",
                  "options": [
                    "Huawei Fit 3",
                    "Huawei Fit 4",
                    "Huawei Fit 4 Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359068405608568,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 1321000000,
                "strikethrough_price": 3580000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-63%",
                "model_id": 350207125147,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3580000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 13.210",
                      "hidden_promotion_price": "Rp ?3.210",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MYAPULUA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54852121983,
            "shopid": 1589075157,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82256-mhirvua0clj95a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1718093079,1119699,700765096,2023641,2018619,298933384,2103651,2143613,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":505,\"model_id\":350207125147,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82256-mhirvua0clj95a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1718093079,1119699,700765096,2023641,2018619,298933384,2103651,2143613,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":505,\"model_id\":350207125147,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54852121983",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28643691347,
              "shopid": 530887025,
              "name": "LIGE SmartWatch Multifungsi Senter LED Jam Tangan Olahraga Monitor Kesehatan Panggilan Bluetooth Jam Tangan Pintar Tahan Air IP68",
              "label_ids": [
                1668726,
                298888358,
                2018619,
                298938357,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                1400285055,
                1015914,
                700190087,
                2098629
              ],
              "image": "id-11134207-8224u-mhll4ltnj5z763",
              "images": [
                "id-11134207-8224u-mhll4ltnj5z763",
                "id-11134207-8224p-mhigx4uelqmb00",
                "id-11134207-8224u-mhigx4uekc1v68",
                "id-11134207-8224s-mhigx4uen56r2e",
                "id-11134207-8224s-mhigx4ueeps30d",
                "id-11134207-8224r-mhigx4ueojr774",
                "id-11134207-82252-mhigx4uehiwz10",
                "id-11134207-8224t-mhigx4ueixhf05"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764140548,
              "sold": 19,
              "historical_sold": 33,
              "liked": false,
              "liked_count": 19,
              "view_count": null,
              "catid": 100013,
              "brand": "Lige",
              "cmt_count": 18,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 26900000000,
              "price_min": 26900000000,
              "price_max": 26900000000,
              "price_min_before_discount": 78000000000,
              "price_max_before_discount": 78000000000,
              "hidden_price_display": null,
              "price_before_discount": 78000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-66%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven4-mhiqz9fz4cn4e5.16000081764140378.mp4",
                  "thumb_url": "id-11110105-6ven4-mhiqz9fz4cn4e5_cover",
                  "duration": 42,
                  "version": 2,
                  "vid": "id-11110105-6ven4-mhiqz9fz4cn4e5",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven4-mhiqz9fz4cn4e5.16000081764140378.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-mhiqz9fz4cn4e5.16000081764140378.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-mhiqz9fz4cn4e5.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "BW0908",
                  "options": [
                    "Silikon Hitam",
                    "Silikon Perak",
                    "Baja Hitam + 2* Tali",
                    "Baja Perak +2 * Tali"
                  ],
                  "images": [
                    "id-11134207-8224y-mhigx4uepybn92",
                    "id-11134207-82252-mhir2h7dayv77f",
                    "id-11134207-8224y-mhir2h7dds03fb",
                    "id-11134207-82252-mhir2h7df6kjf4"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.333333333333333,
                "rating_count": [
                  18,
                  1,
                  2,
                  0,
                  2,
                  13
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp44RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 739575308272640,
                "price": 26750000000,
                "strikethrough_price": 78000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1311884427149312,
                "discount_text": "-66%",
                "model_id": 410207006018,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1311884427149312,
                  "voucher_code": "F59NID002",
                  "voucher_discount": 150000000,
                  "time_info": {
                    "start_time": 1765848060,
                    "end_time": 1773453600,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 18000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 78000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 33,
                "rounded_local_monthly_sold_count": 19,
                "local_monthly_sold_count_text": "19",
                "rounded_display_sold_count": 33,
                "display_sold_count_text": "33"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp44RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "LIGE watch store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 28643691347,
            "shopid": 530887025,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mhll4ltnj5z763\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1668726,298888358,2018619,298938357,2023641,1718087960,1428713,844931064601283,844931086908638,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699,298933384,1400285055,1015914,700190087,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":506,\"model_id\":410207006018,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mhll4ltnj5z763\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1668726,298888358,2018619,298938357,2023641,1718087960,1428713,844931064601283,844931086908638,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699,298933384,1400285055,1015914,700190087,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":506,\"model_id\":410207006018,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28643691347",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54752108119,
              "shopid": 1496409734,
              "name": "Transparent Case Silicone Strap for Huawei Band 10 9 8 Anti Gores Cover Protective Polos Hard PC Frame Screen Protector Bumper Cover Silikon Rubber Wristband Soft Band Accessories Tali Jam Tangan Smartwatch for Huawei Band 10 9 8 NFC",
              "label_ids": [
                2018619,
                298513322,
                700025282,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059154,
                1059152,
                822059908662278,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                1718093079,
                1119699,
                700765096,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8225w-mhii0vq0zqbp1b",
              "images": [
                "sg-11134201-8225w-mhii0vq0zqbp1b",
                "sg-11134201-8224u-mhii0wjjmcjnee",
                "sg-11134201-8225q-mhii0xgl7qpwa3",
                "sg-11134201-8226r-mhii0yjonbwjeb",
                "sg-11134201-8225p-mhii0zafi9l2a3",
                "sg-11134201-8226m-mhii104ceznod6",
                "sg-11134201-8224z-mhii10rhvz0j01",
                "sg-11134201-8226n-mhii115wirk06d",
                "sg-11134201-82256-mhii12fam4ud31"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764125301,
              "sold": 4,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2116000000,
              "price_min": 2116000000,
              "price_max": 2116000000,
              "price_min_before_discount": 4600000000,
              "price_max_before_discount": 4600000000,
              "hidden_price_display": null,
              "price_before_discount": 4600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kip7-m8n7hs676qoy0b.16000081744797101.mp4",
                  "thumb_url": "sg-11110106-6kip7-m8n7hs676qoy0b_cover",
                  "duration": 38,
                  "version": 2,
                  "vid": "sg-11110106-6kip7-m8n7hs676qoy0b",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kip7-m8n7hs676qoy0b.16006711747160335.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip7-m8n7hs676qoy0b.16006711747160335.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kip7-m8n7hs676qoy0b.16000081744797101.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip7-m8n7hs676qoy0b.16000081744797101.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kip7-m8n7hs676qoy0b.16003251747160335.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip7-m8n7hs676qoy0b.16003251747160335.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip7-m8n7hs676qoy0b.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Matcha(Case Strap)",
                    "Purple(Case Strap)",
                    "Lilac(Case Strap)",
                    "Haze(Case Strap)",
                    "Sky(Case Strap)",
                    "Pine(Case Strap)",
                    "Star(Case Strap)",
                    "Grey(Case Strap)",
                    "Pink(Case Strap)",
                    "Wine Red(Case Strap)",
                    "white(Case Strap)",
                    "Black(Case Strap)",
                    "2*Film"
                  ],
                  "images": [
                    "sg-11134201-82275-mhii1fhqoohw15",
                    "sg-11134201-8227c-mhii1fu944cof8",
                    "sg-11134201-8225v-mhii1g92hx527a",
                    "sg-11134201-8224y-mhii1gonz18j01",
                    "sg-11134201-8227l-mhii1h1oi70oca",
                    "sg-11134201-8227f-mhii1hg1gl4w3d",
                    "sg-11134201-8227z-mhii1hylngg039",
                    "sg-11134201-8224r-mhii1i8jj2tf7a",
                    "sg-11134201-8227j-mhii1ij1glxc92",
                    "sg-11134201-8226k-mhii1iv9igasef",
                    "sg-11134201-8227v-mhii1j623gg463",
                    "sg-11134201-8226b-mhii1jgk2haded",
                    "sg-11134201-82252-mhg8mfqng45i5e"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei Band 10 9 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372028133880509,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2116000000,
                "strikethrough_price": 4600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 350205746926,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4600000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 21.160",
                      "hidden_promotion_price": "Rp ?1.160",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BXUXOHS",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54752108119,
            "shopid": 1496409734,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225w-mhii0vq0zqbp1b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298513322,700025282,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059154,1059152,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1718093079,1119699,700765096,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":507,\"model_id\":350205746926,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225w-mhii0vq0zqbp1b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298513322,700025282,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059154,1059152,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1718093079,1119699,700765096,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":507,\"model_id\":350205746926,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54752108119",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43376767950,
              "shopid": 1496409734,
              "name": "Silicone Rubber Band Strap for Redmi Watch 6 / Redmi Watch 5 / Redmi Watch 4 Strap Tali Jam Tangan Smartwatch for Xiaomi Mi Band 8 Pro / Mi Band 9 Pro Strap Sport Original Replacement Belt Bracelet Wristband Accessories",
              "label_ids": [
                2018619,
                2023641,
                298513322,
                700025282,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                700765096,
                1400285055,
                2103651,
                2143613,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-82256-mhii0uvauww2ea",
              "images": [
                "sg-11134201-82256-mhii0uvauww2ea",
                "sg-11134201-8224r-mhii0wccuknae3",
                "sg-11134201-82270-mhii0x9os8w548",
                "sg-11134201-82274-mhii0y4x7uo38b",
                "sg-11134201-82265-mhii0z6kpvk5ed",
                "sg-11134201-82281-mhii0zz9c9he8f",
                "sg-11134201-82257-mhii10pxtgxsd5",
                "sg-11134201-8227n-mhii11icos1t77",
                "sg-11134201-8225v-mhii127c6hvof0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764125300,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1890000000,
              "price_min": 1890000000,
              "price_max": 1890000000,
              "price_min_before_discount": 3780000000,
              "price_max_before_discount": 3780000000,
              "hidden_price_display": null,
              "price_before_discount": 3780000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "White(strap)",
                    "Olive(strap)",
                    "Red Black(strap)",
                    "Black Grey(strap)",
                    "Blue(strap)",
                    "Orange(strap)",
                    "Grey(strap)",
                    "Yellow(strap)",
                    "Red(strap)",
                    "Green(strap)"
                  ],
                  "images": [
                    "sg-11134201-8225m-mhii1f4v9hj887",
                    "sg-11134201-8225i-mhii1fg9ut52e5",
                    "sg-11134201-82254-mhii1fwe7qiu6e",
                    "sg-11134201-8225c-mhii1gahq77s2e",
                    "sg-11134201-8225r-mhii1gkszmdi3d",
                    "sg-11134201-8227e-mhii1gye330of5",
                    "sg-11134201-82263-mhii1hj42upv16",
                    "sg-11134201-82259-mhii1hyiswzld9",
                    "sg-11134201-82287-mhii1imp9kat92",
                    "sg-11134201-8227l-mhii1ivbfa4gef"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 6 5 4",
                    "for miband 9 8 pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372028133880509,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744056704008192,
                "price": 1890000000,
                "strikethrough_price": 3780000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 292201888671,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3780000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BXUXOHS",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43376767950,
            "shopid": 1496409734,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82256-mhii0uvauww2ea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298513322,700025282,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1718093079,1119699,700765096,1400285055,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":508,\"model_id\":292201888671,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82256-mhii0uvauww2ea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298513322,700025282,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1718093079,1119699,700765096,1400285055,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":508,\"model_id\":292201888671,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43376767950",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43276767980,
              "shopid": 1496409734,
              "name": "Original Silicone Strap for Redmi Watch 6 / Redmi Watch 5 / Redmi Watch 4 / Mi Band 9 Pro / Mi Band 8 Pro Sport Soft Rubber Band Accessories Belt Wristband Tali Jam Tangan Smartwatch for Redmi Watch 6 5 4 / Xiaomi Smart Mi Band 9 8 Pro",
              "label_ids": [
                2018619,
                298513322,
                2023641,
                700025282,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                700765096,
                298933384,
                700810080,
                298623321,
                1993623,
                998091078,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8226n-mhii0ux2xde0dd",
              "images": [
                "sg-11134201-8226n-mhii0ux2xde0dd",
                "sg-11134201-8225x-mhii0vvoxv5u58",
                "sg-11134201-8227g-mhii0x0i0v7l84",
                "sg-11134201-8227k-mhii0xu4bked0a",
                "sg-11134201-82281-mhii0yt272th3e",
                "sg-11134201-82281-mhii0zl2e6tc08",
                "sg-11134201-82254-mhii10b5q420ef",
                "sg-11134201-8226q-mhii1109mk1w13",
                "sg-11134201-8225y-mhii11gzzrb797"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764125299,
              "sold": 6,
              "historical_sold": 14,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 5,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1690000000,
              "price_min": 1690000000,
              "price_max": 1690000000,
              "price_min_before_discount": 3380000000,
              "price_max_before_discount": 3380000000,
              "hidden_price_display": null,
              "price_before_discount": 3380000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khy6-m40aa7tcuu0rae.16000081734692538.mp4",
                  "thumb_url": "sg-11110106-6khy6-m40aa7tcuu0rae_cover",
                  "duration": 21,
                  "version": 2,
                  "vid": "sg-11110106-6khy6-m40aa7tcuu0rae",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy6-m40aa7tcuu0rae.16003251743746618.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy6-m40aa7tcuu0rae.16003251743746618.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy6-m40aa7tcuu0rae.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Pine green(strap)",
                    "Dark blue(strap)",
                    "rock ash(strap)",
                    "ivory white(strap)",
                    "Lilac(strap)",
                    "Orange(strap)",
                    "Red(strap)",
                    "Pink(strap)",
                    "White(strap)",
                    "Black(strap)"
                  ],
                  "images": [
                    "sg-11134201-8227e-mhii1e65nri9b9",
                    "sg-11134201-8227n-mhii1ehzfgg5f9",
                    "sg-11134201-8225m-mhii1ewlzcp441",
                    "sg-11134201-8226q-mhii1f8h2uis1a",
                    "sg-11134201-8226h-mhii1foqs7pgdb",
                    "sg-11134201-82277-mhii1g1zfl6u7b",
                    "sg-11134201-82252-mhii1gicary93d",
                    "sg-11134201-82262-mhii1gvu2ubn94",
                    "sg-11134201-82276-mhii1h91si6aa1",
                    "sg-11134201-8224p-mhii1hozr5kxb0"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "smartwear_size",
                  "options": [
                    "Redmi Watch 6/5/4",
                    "for Mi Band 9 8 Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372028133880509,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744056704008192,
                "price": 1690000000,
                "strikethrough_price": 3380000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 325205747195,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3380000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 14,
                "rounded_local_monthly_sold_count": 6,
                "local_monthly_sold_count_text": "6",
                "rounded_display_sold_count": 14,
                "display_sold_count_text": "14"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BXUXOHS",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43276767980,
            "shopid": 1496409734,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226n-mhii0ux2xde0dd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298513322,2023641,700025282,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1718093079,1119699,700765096,298933384,700810080,298623321,1993623,998091078,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":509,\"model_id\":325205747195,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226n-mhii0ux2xde0dd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298513322,2023641,700025282,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1718093079,1119699,700765096,298933384,700810080,298623321,1993623,998091078,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":509,\"model_id\":325205747195,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43276767980",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53302065020,
              "shopid": 1495053614,
              "name": "Silicone Rubber Strap for Smartwatch OPPO Band Replacement Sport Band Soft Waterproof Belt Bracelet Accessories Wristband Tali Jam Tangan Smartwatch for OPPO Band",
              "label_ids": [
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                1718093079,
                1119699,
                700765096,
                2018619,
                2103651,
                2143613,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8226h-mhhbm42z7092c0",
              "images": [
                "sg-11134201-8226h-mhhbm42z7092c0",
                "sg-11134201-8226o-mhhbdkorl9tw1e",
                "sg-11134201-8225b-mhhbm4o6whs190",
                "sg-11134201-8226g-mhhbm4v9cb2ab6",
                "sg-11134201-8225c-mhhbm50rilfs75",
                "sg-11134201-8225q-mhhbm58k95hd36",
                "sg-11134201-82265-mhhbm5elxq8680",
                "sg-11134201-8224r-mhhbm5k8vdvpe8",
                "sg-11134201-8225f-mhhbm5q5hfyg38"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764053980,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1380000000,
              "price_min": 1380000000,
              "price_max": 1380000000,
              "price_min_before_discount": 2100000000,
              "price_max_before_discount": 2100000000,
              "hidden_price_display": null,
              "price_before_discount": 2100000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-34%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Midnight",
                    "Red",
                    "Black",
                    "White",
                    "TEAL",
                    "Pink",
                    "Olive",
                    "Blue",
                    "Orange",
                    "Pale Brown",
                    "Lavender"
                  ],
                  "images": [
                    "sg-11134201-82280-mhhbmiicvbibd4",
                    "sg-11134201-8225w-mhhbmiskm9z49a",
                    "sg-11134201-8225w-mhhbmj6g91j96e",
                    "sg-11134201-8224r-mhhbmjdxwoau4e",
                    "sg-11134201-8224q-mhhbmjqdg64kf2",
                    "sg-11134201-82278-mhhbmk5ykljabf",
                    "sg-11134201-8225m-mhhbmkl7vi125b",
                    "sg-11134201-8227p-mhhbml1uyo0025",
                    "sg-11134201-8224y-mhhbmlh7yyv49d",
                    "sg-11134201-8227f-mhhbmlru4agx7e",
                    "sg-11134201-82275-mhhbmm7055olbb"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "for OPPO Band"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 393085536454641,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744062760566784,
                "price": 1380000000,
                "strikethrough_price": 2100000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-34%",
                "model_id": 445201171817,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2100000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BRADCET",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53302065020,
            "shopid": 1495053614,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226h-mhhbm42z7092c0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1718093079,1119699,700765096,2018619,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":512,\"model_id\":445201171817,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226h-mhhbm42z7092c0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1718093079,1119699,700765096,2018619,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":512,\"model_id\":445201171817,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53302065020",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55502049782,
              "shopid": 1495053614,
              "name": "Silicone Strap for Mi Band 10/9/8 NFC Soft Breathable Sport Rubber Replacement Band Belt Bracelet Wristbands Accessories for Tali Jam Tangan Smartwatch Xiaomi MiBand 10 9 8 Strap",
              "label_ids": [
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1119699,
                700765096,
                2018619,
                298933384,
                298623321,
                1993623,
                998091078,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8227t-mhhbd7a8qigx4c",
              "images": [
                "sg-11134201-8227t-mhhbd7a8qigx4c",
                "sg-11134201-8227r-mhhbd83jiu4k1d",
                "sg-11134201-82266-mhhbd8qln0n8db",
                "sg-11134201-8224u-mhhbd97v0c1ta0",
                "sg-11134201-8227e-mhhbd9lbjeo897",
                "sg-11134201-8225k-mhhbda2epc7756",
                "sg-11134201-8226z-mhhbdafbsz5u86",
                "sg-11134201-8226e-mhhbdaxwmbk1b9",
                "sg-11134201-8224v-mhhbdbdujitde6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1764053567,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1650000000,
              "price_min": 1650000000,
              "price_max": 1650000000,
              "price_min_before_discount": 3300000000,
              "price_max_before_discount": 3300000000,
              "hidden_price_display": null,
              "price_before_discount": 3300000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kipk-mb3va6hawa5ye0.16000081750164131.mp4",
                  "thumb_url": "sg-11110106-6kipk-mb3va6hawa5ye0_cover",
                  "duration": 42,
                  "version": 2,
                  "vid": "sg-11110106-6kipk-mb3va6hawa5ye0",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kipk-mb3va6hawa5ye0.16000081750164131.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kipk-mb3va6hawa5ye0.16000081750164131.mp4",
                      "width": 1280,
                      "height": 672
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kipk-mb3va6hawa5ye0.default.mp4",
                    "width": 1028,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Xiang Xinlu(Strap)",
                    "Stream purple(Strap)",
                    "Ivory white(Strap)",
                    "Stretch blue(Strap)",
                    "Red(Strap)",
                    "Orange(Strap)",
                    "Dark green(Strap)",
                    "White(Strap)",
                    "Grey(Strap)",
                    "Black(Strap)",
                    "Light pink(Strap)",
                    "Topa Blue(Strap)",
                    "White(CASE)"
                  ],
                  "images": [
                    "sg-11134201-8224p-mhhbdo2plgjm34",
                    "sg-11134201-8224u-mhhbdoiz9f5u49",
                    "sg-11134201-82284-mhhbdp0fcc92d6",
                    "sg-11134201-8225j-mhhbdpim6tc473",
                    "sg-11134201-82260-mhhbdpzw9ddya6",
                    "sg-11134201-8226i-mhhbdqjpmubqcc",
                    "sg-11134201-8225a-mhhbdr1mkj5t50",
                    "sg-11134201-8226z-mhhbdrhquozs26",
                    "sg-11134201-82282-mhhbdrzovpqbe4",
                    "sg-11134201-82256-mhhbdsfdbjewb0",
                    "sg-11134201-82276-mhhbdsynulmu4e",
                    "sg-11134201-8227w-mhhbdtg7ehok80",
                    "sg-11134201-8227p-mhhbdtyf6oebed"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "mi band 10 9 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 393085536454641,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744062760566784,
                "price": 1650000000,
                "strikethrough_price": 3300000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 430201117591,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3300000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BRADCET",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55502049782,
            "shopid": 1495053614,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227t-mhhbd7a8qigx4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,700765096,2018619,298933384,298623321,1993623,998091078,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":513,\"model_id\":430201117591,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227t-mhhbd7a8qigx4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,700765096,2018619,298933384,298623321,1993623,998091078,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":513,\"model_id\":430201117591,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55502049782",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 52602032533,
              "shopid": 1174572496,
              "name": "Silicone Strap Band PC Case for Redmi Watch 6 5 4 Anti Gores Screen Protector Cover Rubber Belt Bracelet Wristband Bumper Accessories for Tali Jam Tangan Smartwatch Xiaomi Redmi Watch 6 5 4",
              "label_ids": [
                298888358,
                2023641,
                2018619,
                298938357,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                700765096,
                1119699,
                298933384,
                2103651,
                2143613,
                2098628,
                1718088045,
                298938368,
                298468389,
                2098629
              ],
              "image": "sg-11134201-82286-mhgbdu1d8jybf7",
              "images": [
                "sg-11134201-82286-mhgbdu1d8jybf7",
                "sg-11134201-8227u-mhgbdusc90qtdd",
                "sg-11134201-8225c-mhgbdvp8um8004",
                "sg-11134201-8224r-mhgbdx8zg83naf",
                "sg-11134201-8226x-mhgbdxx5og020b",
                "sg-11134201-8224u-mhgbdyk1wkci3a",
                "sg-11134201-82281-mhgbdz8k89vn28",
                "sg-11134201-8227l-mhgbdzuipczr06",
                "sg-11134201-8224t-mhgbe0i97i0w80"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763993066,
              "sold": 9,
              "historical_sold": 14,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4186000000,
              "price_min": 4186000000,
              "price_max": 4186000000,
              "price_min_before_discount": 8000000000,
              "price_max_before_discount": 8000000000,
              "hidden_price_display": null,
              "price_before_discount": 8000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-48%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                  "thumb_url": "sg-11110106-6kiny-m9uaa30wleaq84_cover",
                  "duration": 30,
                  "version": 2,
                  "vid": "sg-11110106-6kiny-m9uaa30wleaq84",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Silver and gray",
                    "Transparent yellow",
                    "Black and dark gray",
                    "Clear purple",
                    "Pink Rose Pink",
                    "Midnight blue",
                    "Transparent green",
                    "Clear red",
                    "Clear teal color",
                    "Starlight color",
                    "Transparent White",
                    "Black Black",
                    "Gray color",
                    "Yellow color",
                    "dark gray",
                    "Purple color",
                    "Light pink rose",
                    "Midnight blue 1",
                    "Dark green",
                    "Red color",
                    "teal",
                    "Starlight ",
                    "White color",
                    "Black color",
                    "Silver color",
                    "Transparent",
                    "Black 1",
                    "Rose light pink",
                    "Midnight blue 2",
                    "ivory"
                  ],
                  "images": [
                    "sg-11134201-82256-mhgbedsgugp2fe",
                    "sg-11134201-8227c-mhgbeeq5qhhhed",
                    "sg-11134201-82277-mhgbeffa55ae98",
                    "sg-11134201-8226h-mhgbeg6nlds569",
                    "sg-11134201-8225d-mhgbeh45t4ar19",
                    "sg-11134201-82276-mhgbehv8g9hcd8",
                    "sg-11134201-8227h-mhgbeijfdrm03a",
                    "sg-11134201-82258-mhgbeje8myh3df",
                    "sg-11134201-8226q-mhgbeklikdmv2e",
                    "sg-11134201-8226t-mhgbelaf7if84e",
                    "sg-11134201-82264-mhgbelv1owlh16",
                    "sg-11134201-8224z-mhgbemna05501b",
                    "sg-11134201-8226z-mhgbenel43k898",
                    "sg-11134201-82288-mhgbeo97upl37a",
                    "sg-11134201-82273-mhgbeoyq19focd",
                    "sg-11134201-8226h-mhgbepuj12x0e9",
                    "sg-11134201-8226f-mhgbeqhgqkuf8a",
                    "sg-11134201-8226e-mhgber64g35x4b",
                    "sg-11134201-82263-mhgberu7a58lf2",
                    "sg-11134201-82263-mhgbeslfchs284",
                    "sg-11134201-8225y-mhgbeter3uh2ba",
                    "sg-11134201-82281-mhgbeuablhqce8",
                    "sg-11134201-8224x-mhgbev46ed51cc",
                    "sg-11134201-8225e-mhgbevy9e9dsae",
                    "sg-11134201-8226f-mhgbeww7gc1x5a",
                    "sg-11134201-8224t-mhgbeylgf94w4f",
                    "sg-11134201-8224x-mhgbezhccgsg63",
                    "sg-11134201-82287-mhgbf0fm85jcf5",
                    "sg-11134201-82260-mhgbf1es7vnrb7",
                    "sg-11134201-8226z-mhgbf2fm57npd2"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 4",
                    "Redmi Watch 5",
                    "Redmi Watch 6"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 402067344867409,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 4186000000,
                "strikethrough_price": 8000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-48%",
                "model_id": 320198527018,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 8000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 41.860",
                      "hidden_promotion_price": "Rp ?1.860",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 14,
                "rounded_local_monthly_sold_count": 9,
                "local_monthly_sold_count_text": "9",
                "rounded_display_sold_count": 14,
                "display_sold_count_text": "14"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CRESTED Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 52602032533,
            "shopid": 1174572496,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82286-mhgbdu1d8jybf7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298888358,2023641,2018619,298938357,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,700765096,1119699,298933384,2103651,2143613,2098628,1718088045,298938368,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":516,\"model_id\":320198527018,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82286-mhgbdu1d8jybf7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298888358,2023641,2018619,298938357,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,700765096,1119699,298933384,2103651,2143613,2098628,1718088045,298938368,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":516,\"model_id\":320198527018,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_52602032533",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50252023024,
              "shopid": 1174572496,
              "name": "Anti Gores TPU Case for Amazfit Bip 6 Full Soft Coverage Bumper Screen Protector Cover Protective Shell Accessories Jam Tangan Smartwatch for Smartwatch Amazfit Bip 6",
              "label_ids": [
                2018619,
                298888358,
                2023641,
                298938357,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                700765096,
                1119699,
                298938368,
                298468389,
                2098628,
                1718088045,
                2098629
              ],
              "image": "sg-11134201-8227b-mhgaatjgn40795",
              "images": [
                "sg-11134201-8227b-mhgaatjgn40795",
                "sg-11134201-8225l-mhgaauk5otfk4f",
                "sg-11134201-8227o-mhgaavmofz7r31",
                "sg-11134201-8226z-mhgaawr8bh8n6f",
                "sg-11134201-82269-mhgaaxt9a41za7",
                "sg-11134201-8227i-mhgaayj9euq0bd",
                "sg-11134201-8226f-mhgaazme213c51",
                "sg-11134201-8225r-mhgab0gm7apz54",
                "sg-11134201-8227p-mhgab1297eva80"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763991245,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3220000000,
              "price_min": 3220000000,
              "price_max": 3220000000,
              "price_min_before_discount": 7000000000,
              "price_max_before_discount": 7000000000,
              "hidden_price_display": null,
              "price_before_discount": 7000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Midnight Blue(Case)",
                    "Gold(Case)",
                    "Rose Gold(Case)",
                    "Pink(Case)",
                    "Gun(Case)",
                    "Black(Case)",
                    "Silver(Case)",
                    "Transparent(Case)",
                    "film"
                  ],
                  "images": [
                    "sg-11134201-8227p-mhgabdya0ikm5d",
                    "sg-11134201-8225c-mhgabe84m3no7b",
                    "sg-11134201-82257-mhgabejap7gkc5",
                    "sg-11134201-8225h-mhgabeuvc5xe29",
                    "sg-11134201-8225g-mhgabf53zh1f90",
                    "sg-11134201-8226m-mhgabff9bapu5e",
                    "sg-11134201-82265-mhgabfrwxlog64",
                    "sg-11134201-8227t-mhgabg4czbb8b7",
                    "sg-11134201-82252-mhgabgdhk16vdc"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Amazfit Bip 6"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 402067344867409,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 3220000000,
                "strikethrough_price": 7000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 320198452300,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 32.200",
                      "hidden_promotion_price": "Rp ?2.200",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CRESTED Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50252023024,
            "shopid": 1174572496,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227b-mhgaatjgn40795\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298888358,2023641,298938357,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,700765096,1119699,298938368,298468389,2098628,1718088045,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":517,\"model_id\":320198452300,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227b-mhgaatjgn40795\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298888358,2023641,298938357,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,700765096,1119699,298938368,298468389,2098628,1718088045,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":517,\"model_id\":320198452300,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50252023024",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56052021982,
              "shopid": 1118224551,
              "name": "Tempered Glass Case + Silicone Strap for Redmi Watch 6 5 4 Soft Sport Rubber Band Hard PC Screen Protector Cover Accessories Tali Jam Tangan for Smartwatch Xiaomi Redmi Watch 6 5 4",
              "label_ids": [
                298888358,
                298938357,
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                700765096,
                298933384,
                1015914,
                700190087,
                298938368,
                2098629,
                1718088045,
                2098628,
                298468389
              ],
              "image": "sg-11134201-8227b-mhg6hj8nxptvb1",
              "images": [
                "sg-11134201-8227b-mhg6hj8nxptvb1",
                "sg-11134201-8226a-mhg6hjvery87f3",
                "sg-11134201-82276-mhg6hkpm9c7b6d",
                "sg-11134201-82283-mhg6hlugfo5j77",
                "sg-11134201-82279-mhg6hmsitnuo37",
                "sg-11134201-82282-mhg6hnly6byde6",
                "sg-11134201-8227o-mhg6ho65imm9fc",
                "sg-11134201-8226n-mhg6hoq19ts399",
                "sg-11134201-82283-mhg6hpc50hzbf7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763984831,
              "sold": 4,
              "historical_sold": 7,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4453000000,
              "price_min": 4453000000,
              "price_max": 4453000000,
              "price_min_before_discount": 6000000000,
              "price_max_before_discount": 6000000000,
              "hidden_price_display": null,
              "price_before_discount": 6000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-26%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                  "thumb_url": "sg-11110106-6kiny-m9uaa30wleaq84_cover",
                  "duration": 30,
                  "version": 2,
                  "vid": "sg-11110106-6kiny-m9uaa30wleaq84",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.16000081747404764.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiny-m9uaa30wleaq84.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Gray transparent",
                    "Clear yellow",
                    "Purple washed",
                    "Wash Red",
                    "Clear Teal",
                    "White Transparent",
                    "Midnight blue 1",
                    "Black Black",
                    "Black 1",
                    "Green Green",
                    "Pink Pink",
                    "Starlight&Starlight",
                    "grey",
                    "Yellow Power",
                    "Gray",
                    "Deep Purple",
                    "pink",
                    "Midnight blue",
                    "Dark green",
                    "Red color",
                    "teal",
                    "Starlight",
                    "White color",
                    "Black 2",
                    "Transparent",
                    "Black 3",
                    "Green Pine Needle",
                    "Pink ",
                    "Blue Ink",
                    "White Ivory"
                  ],
                  "images": [
                    "sg-11134201-8226w-mhg6i2xxiz9d92",
                    "sg-11134201-8227o-mhg6i3u7gf7q5c",
                    "sg-11134201-82255-mhg6i4l438xv65",
                    "sg-11134201-8226g-mhg6i5d1a77p5d",
                    "sg-11134201-8225v-mhg6i61welfrf6",
                    "sg-11134201-8226r-mhg6i6pdw9a9b0",
                    "sg-11134201-82263-mhg6i7dm19fl78",
                    "sg-11134201-8225m-mhg6i802vy0wbe",
                    "sg-11134201-8226p-mhg6i8m2vuvb61",
                    "sg-11134201-8226l-mhg6i9a8yghs5b",
                    "sg-11134201-8226b-mhg6i9wz0n4548",
                    "sg-11134201-8226w-mhg6ialmkj5t44",
                    "sg-11134201-8226d-mhg6ibawmww24d",
                    "sg-11134201-8226a-mhg6ic5bez2ee6",
                    "sg-11134201-8226a-mhg6icxapqf700",
                    "sg-11134201-8226d-mhg6ie0raqkj81",
                    "sg-11134201-8226g-mhg6ieqt6n7q0e",
                    "sg-11134201-82278-mhg6ifgh3ojo72",
                    "sg-11134201-8226c-mhg6ig5p98g081",
                    "sg-11134201-8226t-mhg6ih0oiscl73",
                    "sg-11134201-8226x-mhg6ihqfwu8199",
                    "sg-11134201-8224v-mhg6iieljy0z0f",
                    "sg-11134201-8227q-mhg6ij3prmkm26",
                    "sg-11134201-8226a-mhg6ijwbp4w530",
                    "sg-11134201-8224o-mhg6ikiox88xae",
                    "sg-11134201-82269-mhg6il93bzlt94",
                    "sg-11134201-8225l-mhg6ilz812pse0",
                    "sg-11134201-82259-mhg6imqjke87bc",
                    "sg-11134201-8225t-mhg6ini4l4w499",
                    "sg-11134201-8227m-mhg6io67jbid1b"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 6",
                    "Redmi Watch 5",
                    "Redmi Watch 4"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 390465501544583,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 4453000000,
                "strikethrough_price": 6000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-26%",
                "model_id": 390198087644,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 44.530",
                      "hidden_promotion_price": "Rp ?4.530",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 7,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 7,
                "display_sold_count_text": "7"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "APBAND",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56052021982,
            "shopid": 1118224551,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227b-mhg6hj8nxptvb1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298888358,298938357,2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,298933384,1015914,700190087,298938368,2098629,1718088045,2098628,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":518,\"model_id\":390198087644,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227b-mhg6hj8nxptvb1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298888358,298938357,2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,298933384,1015914,700190087,298938368,2098629,1718088045,2098628,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":518,\"model_id\":390198087644,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56052021982",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44476727299,
              "shopid": 1482501769,
              "name": "Sport Silicone Case + Strap for Xiaomi Smart Band 9 Active Anti Gores Screen Protector Bumper Cover Rubber Band Adjustable Belt Accessories Tali Jam Tangan for Smartwatch Redmi Band 3 / Mi Band 9 Active",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                1119699,
                700765096,
                298933384,
                2143613,
                2103651,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8226o-mhg2znva0xkwf8",
              "images": [
                "sg-11134201-8226o-mhg2znva0xkwf8",
                "sg-11134201-82275-mhg2zo6r43ye5a",
                "sg-11134201-8226n-mhg2zokxv7d36e",
                "sg-11134201-8227e-mhg2zp4by03p89",
                "sg-11134201-8227l-mhg2zpg7gy6d21",
                "sg-11134201-8227l-mhg2zq6aom4hb1",
                "sg-11134201-8225s-mhg2zqjmdjwi30",
                "sg-11134201-8226z-mhg2zqvyk7bb71",
                "sg-11134201-82259-mhg2zr94obgm2d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763978948,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1362000000,
              "price_min": 1362000000,
              "price_max": 1362000000,
              "price_min_before_discount": 2960000000,
              "price_max_before_discount": 2960000000,
              "hidden_price_display": null,
              "price_before_discount": 2960000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Fluorescent Green",
                    "Ink Blue",
                    "Orange",
                    "Red",
                    "Duck",
                    "Purple",
                    "White",
                    "Retro Green",
                    "Pink",
                    "Rice White",
                    "Sky Blue",
                    "Black",
                    "2*(Clear Film)"
                  ],
                  "images": [
                    "sg-11134201-8227j-mhg30491vg1tf5",
                    "sg-11134201-82287-mhg3053pcpaaf4",
                    "sg-11134201-8227k-mhg305stx0xz86",
                    "sg-11134201-82287-mhg306c3fitjb8",
                    "sg-11134201-8227m-mhg306sqirye4d",
                    "sg-11134201-8224o-mhg307jvxkav7e",
                    "sg-11134201-8225g-mhg308cmz30m24",
                    "sg-11134201-8225d-mhg308sovk74c6",
                    "sg-11134201-8225o-mhg309ju7mko9d",
                    "sg-11134201-8224s-mhg309uzh5a8cb",
                    "sg-11134201-8226b-mhg30ae4md5055",
                    "sg-11134201-8224u-mhg30awbgu80a3",
                    "sg-11134201-82250-mhg30bdaat51f8"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "for Miband 9 Active",
                    "for Redmi Band 3"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372023830524999,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 1362000000,
                "strikethrough_price": 2960000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 350197771737,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2960000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 13.620",
                      "hidden_promotion_price": "Rp ?3.620",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KILPILLS",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44476727299,
            "shopid": 1482501769,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226o-mhg2znva0xkwf8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1119699,700765096,298933384,2143613,2103651,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":519,\"model_id\":350197771737,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226o-mhg2znva0xkwf8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1119699,700765096,298933384,2143613,2103651,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":519,\"model_id\":350197771737,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44476727299",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54902025961,
              "shopid": 1482501769,
              "name": "2 IN 1 Tempered Glass Case for iWatch Apple Watch Ultra 3 2 SE 3 2 Series 11 10 9 8 7 6 5 4 3 2 49mm 46mm 42mm 40mm 41mm 44mm 45mm Hard PC Anti Gores Screen Protector Bumper Cover Jam Tangan for Smartwatch I8 Pro Max 8 MAX 9 PRO",
              "label_ids": [
                2023641,
                2018619,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384,
                2103651,
                2143613,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8224o-mhg2yw7uphqff4",
              "images": [
                "sg-11134201-8224o-mhg2yw7uphqff4",
                "sg-11134201-8226w-mhg2ywuzwq9tac",
                "sg-11134201-8225j-mhg2yxi9mtj605",
                "sg-11134201-8227j-mhg2yyei1ix40e",
                "sg-11134201-8224w-mhg2yz1l23nke1",
                "sg-11134201-82286-mhg2yzx6raiq91",
                "sg-11134201-82272-mhg2z0t98g07a1",
                "sg-11134201-82256-mhg2z1sed9mv55",
                "sg-11134201-8227r-mhg2z2ggkt1ce2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763978916,
              "sold": 16,
              "historical_sold": 27,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 6,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1950000000,
              "price_min": 1950000000,
              "price_max": 1950000000,
              "price_min_before_discount": 3590000000,
              "price_max_before_discount": 3590000000,
              "hidden_price_display": null,
              "price_before_discount": 3590000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-46%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khyd-lqt0f2lsfk66be.16000081705922089.mp4",
                  "thumb_url": "sg-11110106-7rccb-lqt0f9zbq4qgbe",
                  "duration": 35,
                  "version": 2,
                  "vid": "sg-11110106-6khyd-lqt0f2lsfk66be",
                  "formats": [
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyd-lqt0f2lsfk66be.16003241713833518.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyd-lqt0f2lsfk66be.16003241713833518.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyd-lqt0f2lsfk66be.16003251713833518.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyd-lqt0f2lsfk66be.16003251713833518.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyd-lqt0f2lsfk66be.16005581713833518.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyd-lqt0f2lsfk66be.16005581713833518.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyd-lqt0f2lsfk66be.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Clear",
                    "Black",
                    "Rose Gold",
                    "Blue",
                    "Silver",
                    "Pink",
                    "red",
                    "gold",
                    "star",
                    "matte white",
                    "matte black"
                  ],
                  "images": [
                    "sg-11134201-82289-mhg2zfokr6ys3a",
                    "sg-11134201-82286-mhg2zg0yyxhh9b",
                    "sg-11134201-82273-mhg2zgkqwfes12",
                    "sg-11134201-8227y-mhg2zhi5rg8x0d",
                    "sg-11134201-8225g-mhg2zi22g9vm47",
                    "sg-11134201-8225t-mhg2zj0f2adjb4",
                    "sg-11134201-82274-mhg2zjgjb37s23",
                    "sg-11134201-82256-mhg2zjtqwjcw0c",
                    "sg-11134201-8225k-mhg2zkgzxcece9",
                    "sg-11134201-8224z-mhg2zksdb4ec8a",
                    "sg-11134201-8225b-mhg2zl4tea6e1e"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "40mm",
                    "44mm",
                    "41mm",
                    "45mm",
                    "49mm",
                    "42mm Series 11 10",
                    "46mm Series 11 10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.333333333333333,
                "rating_count": [
                  6,
                  1,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372023830524999,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744048265069568,
                "price": 1950000000,
                "strikethrough_price": 3590000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-46%",
                "model_id": 430197762519,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3590000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 27,
                "rounded_local_monthly_sold_count": 16,
                "local_monthly_sold_count_text": "16",
                "rounded_display_sold_count": 27,
                "display_sold_count_text": "27"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KILPILLS",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54902025961,
            "shopid": 1482501769,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8224o-mhg2yw7uphqff4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,2103651,2143613,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":520,\"model_id\":430197762519,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8224o-mhg2yw7uphqff4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,2103651,2143613,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":520,\"model_id\":430197762519,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54902025961",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26943663454,
              "shopid": 1650815360,
              "name": "Smart Bluetooth Watch S9 MAX Wireless Charging Cocok untuk Perjalanan Harian, Olahraga Luar Ruangan, Pasangan",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1049112,
                1400005524,
                822059908662278,
                825465608499232,
                1718093079,
                1119699,
                298463379,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224p-mgiuxmzqornya0",
              "images": [
                "id-11134207-8224p-mgiuxmzqornya0",
                "id-11134207-8224x-mgiuxmzqvsi685",
                "id-11134207-82250-mgq0cxf3d9fx76",
                "id-11134207-8224x-mgq0cxf3g2kt1d",
                "id-11134207-8224r-mgq0cxf3hh5965",
                "id-11134207-82251-mgq0cxf3buvhfe",
                "id-11134207-8224u-mgq0cxf3ivpp0d",
                "id-11134207-8224z-mgq0cxf3eo0d86"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763978820,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 12850000000,
              "price_min": 12850000000,
              "price_max": 12850000000,
              "price_min_before_discount": 88200000000,
              "price_max_before_discount": 88200000000,
              "hidden_price_display": null,
              "price_before_discount": 88200000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-85%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven6-mhjzqkeehkhv65.16000081764215623.mp4",
                  "thumb_url": "id-11110105-6ven6-mhjzqkeehkhv65_cover",
                  "duration": 17,
                  "version": 2,
                  "vid": "id-11110105-6ven6-mhjzqkeehkhv65",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven6-mhjzqkeehkhv65.16000081764215623.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven6-mhjzqkeehkhv65.16000081764215623.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven6-mhjzqkeehkhv65.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Spesifikasi",
                  "options": [
                    "abu-abu",
                    "Hitam"
                  ],
                  "images": [
                    "id-11134207-8224x-mgiuxmzqvsi685",
                    "id-11134207-8224p-mgiuxmzqornya0"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Banjar",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 780196001677312,
                "price": 11850000000,
                "strikethrough_price": 88200000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1321498133676068,
                "discount_text": "-85%",
                "model_id": 297197260912,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1321498133676068,
                  "voucher_code": "M6R910000",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1766994600,
                    "end_time": 1769849400,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 88200000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "TechIndo Gadget",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26943663454,
            "shopid": 1650815360,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mgiuxmzqornya0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1049112,1400005524,822059908662278,825465608499232,1718093079,1119699,298463379,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":521,\"model_id\":297197260912,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mgiuxmzqornya0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1049112,1400005524,822059908662278,825465608499232,1718093079,1119699,298463379,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":521,\"model_id\":297197260912,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26943663454",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48802045392,
              "shopid": 1265005147,
              "name": "[COD] Samsung 10 pro max Smart Watch New Ip68 Waterproof  Curved Screen  Bluetooth Custom Wallpaper Jam Tangan Pintar Sport And Health Monitor Jx630",
              "label_ids": [
                2018619,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1049120,
                700005490,
                822059908662278,
                825465608499232,
                1718093079,
                1119699,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8227x-mhg1np3q7ncze0",
              "images": [
                "sg-11134201-8227x-mhg1np3q7ncze0",
                "sg-11134201-82256-mhg1npujx2wz4b",
                "sg-11134201-8227p-mhg1nqo0zif86d",
                "sg-11134201-8225h-mhg1nrbzx0jsbb",
                "sg-11134201-8226v-mhg1nrt0gvlscf",
                "sg-11134201-8226t-mhg1nsdyxgjnc7",
                "sg-11134201-8225f-mhg1nt3kp8nac5",
                "sg-11134201-8225e-mhg1ntthjy11b7",
                "sg-11134201-8227w-mhg1nuez4t8g4c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763976710,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 19989900000,
              "price_min": 19989900000,
              "price_max": 19989900000,
              "price_min_before_discount": 37478200000,
              "price_max_before_discount": 37478200000,
              "hidden_price_display": null,
              "price_before_discount": 37478200000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-47%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Hanya sebuah kantong"
                  ],
                  "images": [
                    "id-11134207-7rash-m2gc7zlbyoqo6c",
                    "id-11134207-7rasc-m63fb9kpfojqe9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227568477548545,
                "price": 19989900000,
                "strikethrough_price": 37478200000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-47%",
                "model_id": 330197576898,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 37478200000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DA SAMSNUG.INDONESIA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48802045392,
            "shopid": 1265005147,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227x-mhg1np3q7ncze0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,298463379,1049120,700005490,822059908662278,825465608499232,1718093079,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":522,\"model_id\":330197576898,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227x-mhg1np3q7ncze0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,298463379,1049120,700005490,822059908662278,825465608499232,1718093079,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":522,\"model_id\":330197576898,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48802045392",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43226723091,
              "shopid": 1118224551,
              "name": "Silicone Strap + PC Case for Redmi Watch 6 5 4 Strap Rubber Band Belt Bracelet Anti Gores Screen Protector Bumper Cover Accessories Tali Jam Tangan Smartwatch for Xiaomi Redmi Watch 6 5 4",
              "label_ids": [
                298888358,
                298938357,
                2018619,
                2023641,
                1718087960,
                1428713,
                298463379,
                844931086908638,
                844931064601283,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                700765096,
                298933384,
                1400285055,
                2103651,
                2143613,
                1718088045,
                298468389,
                2098629,
                2098628,
                298938368
              ],
              "image": "sg-11134201-8224t-mhg058p3r7y84d",
              "images": [
                "sg-11134201-8224t-mhg058p3r7y84d",
                "sg-11134201-8225h-mhg059ogujur2c",
                "sg-11134201-82254-mhg05bvd02yufd",
                "sg-11134201-8227f-mhg05cvkevpi0f",
                "sg-11134201-8226x-mhg05elcryma4d",
                "sg-11134201-82267-mhg05fkkrbpf5d",
                "sg-11134201-82270-mhg05gyz5loi26",
                "sg-11134201-82278-mhg05hzvf66e22",
                "sg-11134201-8227a-mhg05ikq23gjb5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763974173,
              "sold": 5,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3860000000,
              "price_min": 3860000000,
              "price_max": 3860000000,
              "price_min_before_discount": 5000000000,
              "price_max_before_discount": 5000000000,
              "hidden_price_display": null,
              "price_before_discount": 5000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-23%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.16000081754637246.mp4",
                  "thumb_url": "sg-11110106-6kioc-md5rgbyovjdycb_cover",
                  "duration": 37,
                  "version": 2,
                  "vid": "sg-11110106-6kioc-md5rgbyovjdycb",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.16000081754637246.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.16000081754637246.mp4",
                      "width": 1280,
                      "height": 672
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kioc-md5rgbyovjdycb.default.mp4",
                    "width": 1028,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Clear Lemon",
                    "Transparent teal",
                    "White Transparent",
                    "Purple transparent",
                    "Red Transparent",
                    "green transparent",
                    "Transparent orange",
                    "Silver Blue stretch",
                    "Silver coconut ash",
                    "Starlight",
                    "Blue ink blue ink",
                    "Black Black",
                    "Light powder",
                    "Lemon",
                    "Blue stretch",
                    "Orange color",
                    "Blue Ink",
                    "teal",
                    "Soft powder",
                    "White color",
                    "Purple color",
                    "Red color",
                    "White Ivory",
                    "Dark green",
                    "grey",
                    "Black color",
                    "Rose powder",
                    "Midnight blue",
                    "Star light color",
                    "Silver color",
                    "Black 1",
                    "Clear Color"
                  ],
                  "images": [
                    "sg-11134201-82252-mhg05w0jp1qab5",
                    "sg-11134201-8226j-mhg05wub6iv8a6",
                    "sg-11134201-8226u-mhg05xed4z5v94",
                    "sg-11134201-8227q-mhg05y22v2f58f",
                    "sg-11134201-82260-mhg05yrth0xz66",
                    "sg-11134201-8225r-mhg05zet65tv14",
                    "sg-11134201-8227d-mhg0602r0dmt89",
                    "sg-11134201-8227e-mhg060ouzith96",
                    "sg-11134201-82259-mhg061azxs7a2a",
                    "sg-11134201-8226b-mhg0621pqpdy19",
                    "sg-11134201-8224u-mhg062ojbb403e",
                    "sg-11134201-82281-mhg0638r8pvq65",
                    "sg-11134201-82264-mhg063w2yhok5b",
                    "sg-11134201-82258-mhg064g59o9218",
                    "sg-11134201-8225j-mhg06556zev9f9",
                    "sg-11134201-8225d-mhg065rxfoqv99",
                    "sg-11134201-8224z-mhg066b3lds630",
                    "sg-11134201-8224t-mhg0670spx4wad",
                    "sg-11134201-8224p-mhg067gw9fra0d",
                    "sg-11134201-8226m-mhg067xul6v973",
                    "sg-11134201-8225z-mhg068hn3rb610",
                    "sg-11134201-8225c-mhg069805csibd",
                    "sg-11134201-8224z-mhg069odr9xc0b",
                    "sg-11134201-8227v-mhg06a4yusxue2",
                    "sg-11134201-82281-mhg06anixgjoa8",
                    "sg-11134201-8226l-mhg06b4n864k70",
                    "sg-11134201-82253-mhg06c1q3x1gd4",
                    "sg-11134201-82256-mhg06cz4qgw139",
                    "sg-11134201-82280-mhg06dxhkwsnb2",
                    "sg-11134201-8225k-mhg06eu9t53797",
                    "sg-11134201-82267-mhg06fqa6j29cd",
                    "sg-11134201-8225r-mhg06gl44ykm30"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 6",
                    "Redmi Watch 5",
                    "Redmi Watch 4"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 765952849936384,
                "price": 3860000000,
                "strikethrough_price": 5000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-23%",
                "model_id": 340197314265,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "APBAND",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43226723091,
            "shopid": 1118224551,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8224t-mhg058p3r7y84d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298888358,298938357,2018619,2023641,1718087960,1428713,298463379,844931086908638,844931064601283,1059154,1059152,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1119699,700765096,298933384,1400285055,2103651,2143613,1718088045,298468389,2098629,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":523,\"model_id\":340197314265,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8224t-mhg058p3r7y84d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298888358,298938357,2018619,2023641,1718087960,1428713,298463379,844931086908638,844931064601283,1059154,1059152,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1119699,700765096,298933384,1400285055,2103651,2143613,1718088045,298468389,2098629,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":523,\"model_id\":340197314265,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43226723091",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41126713533,
              "shopid": 1484087853,
              "name": "Charger Holder Only for Apple Watch Ultra/SE 3 2 IWatch Series 11 10 9 8 7 6 5 4 3 2 1 49mm 46mm 45mm 42mm 41mm 44mm 40mm 38mm Charging Stand Station Accessories for Jam Tangan Smartwatch Apple Watch",
              "label_ids": [
                2018618,
                2153644,
                298888358,
                298938357,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                1119699,
                2213652,
                2048660,
                2048661,
                700765096,
                298933384,
                700810055,
                1718088045,
                2098628,
                298938368,
                2098629,
                298468389
              ],
              "image": "sg-11134201-8225s-mhfz7ebrlk3r5b",
              "images": [
                "sg-11134201-8225s-mhfz7ebrlk3r5b",
                "sg-11134201-82271-mhfz7emaqpz64a",
                "sg-11134201-8225k-mhfz3ivd76ys4c",
                "sg-11134201-82282-mhfz7f3owrnkc5",
                "sg-11134201-8225e-mhfz3l2cqvwmcb",
                "sg-11134201-8227x-mhfz3mazg4xtbc",
                "sg-11134201-8226v-mhfz7fokirk239",
                "sg-11134201-82259-mhfz7fz9il1i7f",
                "sg-11134201-8226e-mhfz7gb0h53a7d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763972581,
              "sold": 3,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2705000000,
              "price_min": 2705000000,
              "price_max": 2705000000,
              "price_min_before_discount": 5840000000,
              "price_max_before_discount": 5840000000,
              "hidden_price_display": null,
              "price_before_discount": 5840000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kip1-m6wagcvf5losb1.16000081740988403.mp4",
                  "thumb_url": "sg-11110106-6kip1-m6wagcvf5losb1_cover",
                  "duration": 10,
                  "version": 2,
                  "vid": "sg-11110106-6kip1-m6wagcvf5losb1",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kip1-m6wagcvf5losb1.16000081740988403.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip1-m6wagcvf5losb1.16000081740988403.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip1-m6wagcvf5losb1.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "darkblue",
                    "grey",
                    "red",
                    "black",
                    "pink",
                    "white",
                    "mint",
                    "blue"
                  ],
                  "images": [
                    "sg-11134201-8227r-mhfz7t1vtx515b",
                    "sg-11134201-82261-mhfz7tjgh6o035",
                    "sg-11134201-8224w-mhfz7tx8side1e",
                    "sg-11134201-8227x-mhfz7u9tsnpe03",
                    "sg-11134201-8225k-mhfz7uqmb475da",
                    "sg-11134201-8227f-mhfz7v4vft3412",
                    "sg-11134201-82252-mhfz7vj570n57e",
                    "sg-11134201-8225w-mhfz7vy8vls0ec"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372024811991523,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2705000000,
                "strikethrough_price": 5840000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 277196905723,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5840000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 27.050",
                      "hidden_promotion_price": "Rp ?7.050",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EIHAIHIS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41126713533,
            "shopid": 1484087853,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225s-mhfz7ebrlk3r5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,298888358,298938357,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1119699,2213652,2048660,2048661,700765096,298933384,700810055,1718088045,2098628,298938368,2098629,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":524,\"model_id\":277196905723,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8225s-mhfz7ebrlk3r5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,298888358,298938357,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1119699,2213652,2048660,2048661,700765096,298933384,700810055,1718088045,2098628,298938368,2098629,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":524,\"model_id\":277196905723,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41126713533",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28493680134,
              "shopid": 1118224551,
              "name": "Anti Gores Soft TPU Case for Amazfit Bip 6 Full Coverage Bumper Screen Protector Cover Protective Shell Accessories Jam Tangan Smartwatch for Smartwatch Amazfit Bip 6",
              "label_ids": [
                2018619,
                298888358,
                2023641,
                298938357,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1119699,
                700765096,
                298468389,
                2098629,
                1718088045,
                2098628,
                298938368
              ],
              "image": "sg-11134201-8227p-mhfwiau8yl8q6d",
              "images": [
                "sg-11134201-8227p-mhfwiau8yl8q6d",
                "sg-11134201-8224r-mhfwibhwyvije9",
                "sg-11134201-82258-mhfwicv3711n48",
                "sg-11134201-82284-mhfwidrw1tl794",
                "sg-11134201-8224p-mhfwiei5fdor0d",
                "sg-11134201-8227m-mhfwif8gvfgp00",
                "sg-11134201-8225x-mhfwigh9kzyj80",
                "sg-11134201-8224x-mhfwihkliw3ub6",
                "sg-11134201-8226h-mhfwiib1do24ec"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763968053,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3220000000,
              "price_min": 3220000000,
              "price_max": 3220000000,
              "price_min_before_discount": 7000000000,
              "price_max_before_discount": 7000000000,
              "hidden_price_display": null,
              "price_before_discount": 7000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Midnight Blue(Case)",
                    "Gold(Case)",
                    "Rose Gold(Case)",
                    "Pink(Case)",
                    "Gun(Case)",
                    "Black(Case)",
                    "Silver(Case)",
                    "Transparent(Case)",
                    "film"
                  ],
                  "images": [
                    "sg-11134201-8225m-mhfwiv4nhlvt3c",
                    "sg-11134201-8224p-mhfwivoiyxhlc2",
                    "sg-11134201-8227j-mhfwiw2h4ydk34",
                    "sg-11134201-82280-mhfwiwgrbm6gac",
                    "sg-11134201-8225o-mhfwiwurtx5720",
                    "sg-11134201-82257-mhfwixel613hdb",
                    "sg-11134201-8225f-mhfwixsmez9k96",
                    "sg-11134201-8226v-mhfwiy6blz4d35",
                    "sg-11134201-82254-mhfwiyl3jpqnf1"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Amazfit Bip 6"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 390465501544583,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 3220000000,
                "strikethrough_price": 7000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 350196628831,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 32.200",
                      "hidden_promotion_price": "Rp ?2.200",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "APBAND",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 28493680134,
            "shopid": 1118224551,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227p-mhfwiau8yl8q6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298888358,2023641,298938357,1428713,1718087960,844931086908638,844931064601283,298463379,1718093079,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,700765096,298468389,2098629,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":525,\"model_id\":350196628831,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227p-mhfwiau8yl8q6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298888358,2023641,298938357,1428713,1718087960,844931086908638,844931064601283,298463379,1718093079,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,700765096,298468389,2098629,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":525,\"model_id\":350196628831,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28493680134",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44702014569,
              "shopid": 1589132922,
              "name": "20mm / 22mm Quick Release Silicone Strap for Redmi Watch 5 Active/Lite Rubber Band Belt For Tali Jam Tangan Smartwatch Samsung Galaxy Watch FE/7/6/5/4 40mm 44mm/Classic 42 46 43 47mm /Huawei GT 6 5/4 Pro/ Aolon/Garmin/Amazfit Bip 6/Itel 011",
              "label_ids": [
                844931064601283,
                844931086908638,
                298463379,
                1059154,
                1059152,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                2023641,
                2103651,
                2143613,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8227k-mhfmmw63w0zx95",
              "images": [
                "sg-11134201-8227k-mhfmmw63w0zx95",
                "sg-11134201-824i5-me45ewlnri8326",
                "sg-11134201-8226w-mhfmmxbxge1605",
                "sg-11134201-8226a-mhfmmxtahnnsd5",
                "sg-11134201-8225e-mhfmmyc06l1k6c",
                "sg-11134201-8225b-mhfmmytznksva9",
                "sg-11134201-821gc-mh6zxdjhnzeycf",
                "sg-11134201-8226w-mhfmn02gnqx8b2",
                "sg-11134201-82257-mhfmn0jgl4waba"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763951448,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1509000000,
              "price_min": 1509000000,
              "price_max": 1509000000,
              "price_min_before_discount": 3018000000,
              "price_max_before_discount": 3018000000,
              "hidden_price_display": null,
              "price_before_discount": 3018000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16000081705915134.mp4",
                  "thumb_url": "sg-11110106-7rcc2-lqswae7h3t43c6",
                  "duration": 27,
                  "version": 2,
                  "vid": "sg-11110106-6khy4-lqswa7dn0e2t7d",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16003221718126133.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16003221718126133.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004081708629119.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004081708629119.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002401708629178.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002401708629178.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16006711723606724.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16006711723606724.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16006731724462989.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16006731724462989.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600266,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002661723338884.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002661723338884.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004091708629131.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004091708629131.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16006591723338936.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16006591723338936.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600265,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002651723338874.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002651723338874.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002411708629189.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002411708629189.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16000081705915134.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16000081705915134.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16003251710556974.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16003251710556974.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16003241710556974.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16003241710556974.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004111708629131.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004111708629131.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004101708629131.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004101708629131.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600267,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002671723338884.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002671723338884.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16005581710556974.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16005581710556974.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16005681708629131.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16005681708629131.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black(strap)",
                    "Orange(strap)",
                    "Yellow(strap)",
                    "White(strap)",
                    "Pink Sands(strap)",
                    "Midnight Blue(strap)",
                    "Indigo(strap)",
                    "Grey(strap)",
                    "Light Blue(strap)",
                    "Red(strap)"
                  ],
                  "images": [
                    "sg-11134201-82259-mhfmndbvkx7370",
                    "sg-11134201-8225b-mhfmndsrzw22be",
                    "sg-11134201-82252-mhfmneachhql24",
                    "sg-11134201-82281-mhfmnerwjll5ad",
                    "sg-11134201-8225r-mhfmnfacbqq1b5",
                    "sg-11134201-8227n-mhfmnfszwtfz9a",
                    "sg-11134201-8225n-mhfmng6y1hcf64",
                    "sg-11134201-8227q-mhfmngjulerye6",
                    "sg-11134201-82273-mhfmnh1vny8eb0",
                    "sg-11134201-82264-mhfmnhe34oi1e1"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm watch band",
                    "22mm watch band",
                    "Redmi 5 Active/Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718139076165632,
                "price": 1509000000,
                "strikethrough_price": 3018000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 249099595472,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3018000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "FEGLYNN",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44702014569,
            "shopid": 1589132922,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227k-mhfmmw63w0zx95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1059154,1059152,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,2023641,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":527,\"model_id\":249099595472,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227k-mhfmmw63w0zx95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1059154,1059152,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,2023641,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":527,\"model_id\":249099595472,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44702014569",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55001966648,
              "shopid": 1679117236,
              "name": "100% ORI Samsung Smartwatch anak Jam tangan Kamera ganda 360 derajat flip lP67 Menelepon-GPS-SOS",
              "label_ids": [
                844931086908638,
                844931064601283,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718093079,
                298933384,
                298463379,
                1718087960,
                1428713,
                2023641,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8226v-mheaqmpulgcq3d",
              "images": [
                "sg-11134201-8226v-mheaqmpulgcq3d",
                "sg-11134201-8226b-mheaqn5gw0stf1",
                "sg-11134201-8226y-mheaqnfatrt4e3",
                "sg-11134201-8226p-mheaqnq3u87ed9",
                "sg-11134201-8226z-mheaqnz2of0u1c",
                "sg-11134201-8226c-mheaqo9elo95d7",
                "sg-11134201-8225e-mheaqompeayz2e",
                "sg-11134201-82276-mheaqoxidfyjf4",
                "id-11134207-8224w-mhgah9ejbm6g91"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763870907,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 16087200000,
              "price_min": 16087200000,
              "price_max": 16087200000,
              "price_min_before_discount": 37620000000,
              "price_max_before_discount": 37620000000,
              "hidden_price_display": null,
              "price_before_discount": 37620000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-57%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9b4-mheaqvq40lc809.16000101763870917.mp4",
                  "thumb_url": "sg-11110106-6v9b4-mheaqvq40lc809_cover",
                  "duration": 29,
                  "version": 2,
                  "vid": "sg-11110106-6v9b4-mheaqvq40lc809",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9b4-mheaqvq40lc809.16000101763870917.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9b4-mheaqvq40lc809.16000101763870917.mp4",
                      "width": 540,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9b4-mheaqvq40lc809.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "purple",
                    "green",
                    "black",
                    "redblue",
                    "pink",
                    "blue",
                    "X1-blue-4G-Video cal",
                    "X1-pink-4G-Video cal",
                    "X1-black4G-Video cal",
                    "black-Flip",
                    "green-Flip",
                    "blue-Flip",
                    "purple-Flip",
                    "redblue-Flip",
                    "Z1-black",
                    "Z1-blue",
                    "Z1-pink",
                    "S1-pink",
                    "S1-blue",
                    "S1-black",
                    "S12-black",
                    "S12-blue",
                    "S12-pink",
                    "cp-1"
                  ],
                  "images": [
                    "sg-11134201-8227b-mheaqgpu7w204a",
                    "sg-11134201-8227b-mheaqgwemqz14a",
                    "sg-11134201-8227k-mheaqh9tn4lm03",
                    "sg-11134201-82274-mheaqhiaosgb73",
                    "sg-11134201-8225q-mheaqhs6yqdkdc",
                    "sg-11134201-8225g-mheaqi380lceac",
                    "sg-11134201-82274-mheaqic2sp3e33",
                    "sg-11134201-8226i-mheaqihx81sb62",
                    "sg-11134201-8225k-mheaqip8irkd27",
                    "sg-11134201-8227d-mheaqiyay6mn3b",
                    "sg-11134201-82253-mheaqj5opclkdc",
                    "sg-11134201-8227j-mheaqjdij8jsb7",
                    "sg-11134201-8227k-mheaqjlbxo9959",
                    "sg-11134201-8225k-mheaqjwgulft65",
                    "sg-11134201-8227u-mheaqk4tsrnu4b",
                    "sg-11134201-82287-mheaqkdilyix71",
                    "sg-11134201-8225h-mheaqkn0bymjb3",
                    "sg-11134201-82256-mheaql1050y54e",
                    "sg-11134201-8224o-mheaql95a9la69",
                    "sg-11134201-82289-mheaqllot1cbea",
                    "sg-11134201-8227q-mheaqlubwf7s56",
                    "sg-11134201-8227u-mheaqm20w3613b",
                    "sg-11134201-8225o-mheaqme75bf2b2",
                    "id-11134207-8224y-mjgcw0fnckxt44"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 15587200000,
                "strikethrough_price": 37620000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1296356392321024,
                "discount_text": "-57%",
                "model_id": 400191905762,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1296356392321024,
                  "voucher_code": "1P82A01",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1763997420,
                    "end_time": 1769876220,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 13000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 37620000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 155.872",
                      "hidden_promotion_price": "Rp 1?5.872",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Smart Anak",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55001966648,
            "shopid": 1679117236,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226v-mheaqmpulgcq3d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718093079,298933384,298463379,1718087960,1428713,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":315,\"model_id\":400191905762,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8226v-mheaqmpulgcq3d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718093079,298933384,298463379,1718087960,1428713,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":315,\"model_id\":400191905762,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55001966648",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49851976511,
              "shopid": 776609856,
              "name": "LUXIAN LENTIVEN Kacamata SMART Hitam Cat Eye Wireless Bluetooth Headset Sun glasses Smart Multi function Glasses Earphones Headset TWS SPEAKER AI GL09",
              "label_ids": [
                2153644,
                2018618,
                1012729,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                700005510,
                700005490,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                2213652,
                1400285055,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224w-mhdfnrgf89ah26",
              "images": [
                "id-11134207-8224w-mhdfnrgf89ah26",
                "id-11134207-8224s-mhdfnrgal3pmc2",
                "id-11134207-8224v-mhdfnrgapbeya7",
                "id-11134207-8224z-mhdfnrgatj4a44",
                "id-11134207-8224t-mhdfnrganwui6e",
                "id-11134207-8224v-mhdfnrgamia2e7",
                "id-11134207-8224o-mhdfnrgaqpze0a",
                "id-11134207-8224v-mhdfnrgas4ju3a",
                "id-11134207-8224x-mhdfnrgauxoq02"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763818714,
              "sold": 0,
              "historical_sold": 10,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "LENTIVEN",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 24900000000,
              "price_min": 24900000000,
              "price_max": 24900000000,
              "price_min_before_discount": 80000000000,
              "price_max_before_discount": 80000000000,
              "hidden_price_display": null,
              "price_before_discount": 80000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-69%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venf-mhdfocwc0aa07d.16000081763818675.mp4",
                  "thumb_url": "id-11110105-6venf-mhdfocwc0aa07d_cover",
                  "duration": 28,
                  "version": 2,
                  "vid": "id-11110105-6venf-mhdfocwc0aa07d",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venf-mhdfocwc0aa07d.16000081763818675.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venf-mhdfocwc0aa07d.16000081763818675.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venf-mhdfocwc0aa07d.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "TIPE",
                  "options": [
                    "GL09"
                  ],
                  "images": [
                    "id-11134207-8224q-mhdfnrgawc963d"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 769339272265728,
                "price": 16900000000,
                "strikethrough_price": 80000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1327441604263940,
                "discount_text": "-69%",
                "model_id": 445190258246,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1327441604263940,
                  "voucher_code": "LUXI0809N",
                  "voucher_discount": 8000000000,
                  "time_info": {
                    "start_time": 1767703140,
                    "end_time": 1774964340,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 18000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 80000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 10,
                "display_sold_count_text": "10"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "LUXIAN Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49851976511,
            "shopid": 776609856,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mhdfnrgf89ah26\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,1012729,1718087960,1428713,844931064601283,844931086908638,298463379,700005510,700005490,822059908662278,825465608499232,825465608497696,1718093079,1119699,2213652,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":529,\"model_id\":445190258246,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mhdfnrgf89ah26\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,1012729,1718087960,1428713,844931064601283,844931086908638,298463379,700005510,700005490,822059908662278,825465608499232,825465608497696,1718093079,1119699,2213652,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":529,\"model_id\":445190258246,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49851976511",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51751955106,
              "shopid": 1670631110,
              "name": "SmartWatch GPS SOS LBS SIM panggilan suara Multifungsi Jam Tangan Pintar Menonton  Camera IP67 waterproof Children's Smart Watch",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718093079,
                298463379,
                298933384,
                1400285055,
                1428713,
                1718087960,
                2023641,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224p-mhzuqtx4fjes1e",
              "images": [
                "id-11134207-8224p-mhzuqtx4fjes1e",
                "id-11134207-8224o-mhd6tgfgs8wd9d",
                "id-11134207-8224q-mhd6tgfgmmml0c",
                "id-11134207-8224s-mhd6tgfgo171d1",
                "id-11134207-82252-mhd6tgfgpfrh12",
                "id-11134207-8224v-mjdkwg8m4b9e98",
                "id-11134207-8224w-mjdkwfzfilfre8",
                "id-11134207-8224x-mjdkwg8mmknbd6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763805176,
              "sold": 11,
              "historical_sold": 12,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 5,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 16149200000,
              "price_min": 16149200000,
              "price_max": 16149200000,
              "price_min_before_discount": 81700000000,
              "price_max_before_discount": 81700000000,
              "hidden_price_display": null,
              "price_before_discount": 81700000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-80%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvi-mhd6vtii7uhace.16000031763803893.mp4",
                  "thumb_url": "id-11110105-6vdvi-mhd6vtii7uhace_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6vdvi-mhd6vtii7uhace",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvi-mhd6vtii7uhace.16000031763803893.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvi-mhd6vtii7uhace.16000031763803893.mp4",
                      "width": 480,
                      "height": 848
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvi-mhd6vtii7uhace.default.mp4",
                    "width": 480,
                    "height": 848
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "bule",
                    "black",
                    "pink",
                    "acak"
                  ],
                  "images": [
                    "id-11134207-82252-mhd6tgfgwglpfe",
                    "id-11134207-82250-mhd6tgfgxv654c",
                    "id-11134207-8224p-mhd6tgfgz9ql32",
                    "id-11134207-82252-mhd7f9eogdfzf4"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 15649200000,
                "strikethrough_price": 81700000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1296677190647808,
                "discount_text": "-80%",
                "model_id": 385189672163,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1296677190647808,
                  "voucher_code": "PD1AZ01",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1764035520,
                    "end_time": 1772074320,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 81700000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 156.492",
                      "hidden_promotion_price": "Rp 1?6.492",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 12,
                "rounded_local_monthly_sold_count": 11,
                "local_monthly_sold_count_text": "11",
                "rounded_display_sold_count": 12,
                "display_sold_count_text": "12"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DailyBest Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51751955106,
            "shopid": 1670631110,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mhzuqtx4fjes1e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718093079,298463379,298933384,1400285055,1428713,1718087960,2023641,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":183,\"model_id\":385189672163,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mhzuqtx4fjes1e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718093079,298463379,298933384,1400285055,1428713,1718087960,2023641,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":183,\"model_id\":385189672163,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51751955106",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46851949328,
              "shopid": 415755,
              "name": "Watch Strap / Band Whoop 5.0 Protego Tempus Nylon (PT-060)",
              "label_ids": [
                1000383,
                1000392,
                47,
                1000394,
                1000389,
                1011705,
                1000167,
                2018618,
                1000544,
                1011692,
                2153644,
                1400095067,
                1400285005,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1718093079,
                1119699,
                2213652,
                1015914,
                700190087,
                1049112,
                1059151,
                822059908662278,
                825465608497696,
                825465608499232,
                840955085144628,
                840990690654214,
                825465608493600,
                825465608494624,
                2048660,
                2048661,
                700765096
              ],
              "image": "id-11134207-8224o-mhd2bsupn9c85d",
              "images": [
                "id-11134207-8224o-mhd2bsupn9c85d",
                "id-11134207-8224w-mhd25c4t7ax5aa",
                "id-11134207-8224z-mhd2bsupvor18b",
                "id-11134207-8224w-mhd25c4t5wcp35",
                "id-11134207-8224u-mhd25c4t8phle3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763796261,
              "sold": 6,
              "historical_sold": 12,
              "liked": false,
              "liked_count": 30,
              "view_count": null,
              "catid": 100013,
              "brand": "Protego",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 22000000000,
              "price_min": 22000000000,
              "price_max": 22000000000,
              "price_min_before_discount": 36000000000,
              "price_max_before_discount": 36000000000,
              "hidden_price_display": null,
              "price_before_discount": 36000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-39%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Green",
                    "Starlight",
                    "White"
                  ],
                  "images": [
                    "id-11134207-8224z-mhd2bsv00wela7",
                    "id-11134207-8224u-mhd2bsv02az151",
                    "id-11134207-82250-mhd2bsv03pjh6a",
                    "id-11134207-8224r-mhd2bsv0543x21"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.666666666666667,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  1,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 794819627122688,
                "price": 22000000000,
                "strikethrough_price": 36000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-39%",
                "model_id": 405188991782,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 36000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 12,
                "rounded_local_monthly_sold_count": 6,
                "local_monthly_sold_count_text": "6",
                "rounded_display_sold_count": 12,
                "display_sold_count_text": "12"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "unomax Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46851949328,
            "shopid": 415755,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mhd2bsupn9c85d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000383,1000392,47,1000394,1000389,1011705,1000167,2018618,1000544,1011692,2153644,1400095067,1400285005,1718087960,1428713,844931064601283,844931086908638,1718093079,1119699,2213652,1015914,700190087,1049112,1059151,822059908662278,825465608497696,825465608499232,840955085144628,840990690654214,825465608493600,825465608494624,2048660,2048661,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":530,\"model_id\":405188991782,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mhd2bsupn9c85d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000383,1000392,47,1000394,1000389,1011705,1000167,2018618,1000544,1011692,2153644,1400095067,1400285005,1718087960,1428713,844931064601283,844931086908638,1718093079,1119699,2213652,1015914,700190087,1049112,1059151,822059908662278,825465608497696,825465608499232,840955085144628,840990690654214,825465608493600,825465608494624,2048660,2048661,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":530,\"model_id\":405188991782,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46851949328",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50501932709,
              "shopid": 1470906386,
              "name": "GPS Tracker Motor 4G - Matikan Mesin Jarak Jauh, Anti Copot, Real Time, Bensin & Baterai",
              "label_ids": [
                1718087960,
                1428713,
                298463379,
                844931064601283,
                844931086908638,
                700005490,
                700005495,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224o-mhcty0l9r8cr82",
              "images": [
                "id-11134207-8224o-mhcty0l9r8cr82",
                "id-11134207-8224r-mhcty0l9smx71c",
                "id-11134207-8224t-mhcty0l9lm2zf4",
                "id-11134207-8224y-mhcty0l9n0nfd2",
                "id-11134207-82251-mhcty0l9u1hn6b",
                "id-11134207-8224q-mhcty0l9ptsb83",
                "id-11134207-8224u-mhcty0l9of7v2d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763783800,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 16588800000,
              "price_min": 16588800000,
              "price_max": 16588800000,
              "price_min_before_discount": 40000000000,
              "price_max_before_discount": 40000000000,
              "hidden_price_display": null,
              "price_before_discount": 40000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-59%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven3-mhcuqm2c0glo64.16000081763783475.mp4",
                  "thumb_url": "id-11110105-6ven3-mhcuqm2c0glo64_cover",
                  "duration": 43,
                  "version": 2,
                  "vid": "id-11110105-6ven3-mhcuqm2c0glo64",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven3-mhcuqm2c0glo64.16000081763783475.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven3-mhcuqm2c0glo64.16000081763783475.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven3-mhcuqm2c0glo64.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 791907530244096,
                "price": 16588800000,
                "strikethrough_price": 40000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-59%",
                "model_id": 282191728829,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 40000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "toko meng lei",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50501932709,
            "shopid": 1470906386,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mhcty0l9r8cr82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,298463379,844931064601283,844931086908638,700005490,700005495,822059908662278,825465608499232,825465608497696,1718093079,1119699,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":531,\"model_id\":282191728829,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mhcty0l9r8cr82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,298463379,844931064601283,844931086908638,700005490,700005495,822059908662278,825465608499232,825465608497696,1718093079,1119699,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":531,\"model_id\":282191728829,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50501932709",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42676675056,
              "shopid": 1587643058,
              "name": "[COD] ORUSS Watch 10 Pro Smartwatch fullScreen 2.3-inch IP68 Waterproof Bisa Telponan Dan Ganti Wallpapper Monitor Detak Jantung Tekanan Darah Smart Watch",
              "label_ids": [
                2018619,
                2153644,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                1718093079,
                1119699,
                2068629,
                298938357,
                1400285055,
                1015914,
                700190087,
                2018618,
                825465608492064,
                2213652,
                298933384,
                2098628,
                298468389,
                298938368,
                1718088045,
                2098629
              ],
              "image": "id-11134207-82250-mhc4bqbqikuh0c",
              "images": [
                "id-11134207-82250-mhc4bqbqikuh0c",
                "id-11134207-8224q-mhc4bqbrevwre3",
                "id-11134207-8224o-mhc4bqbrki6jaa",
                "id-11134207-8224s-mhc4bqbropvv0a",
                "id-11134207-8224y-mhc4bqbrgah715",
                "id-11134207-8224x-mhc4bqbrlwqz55",
                "id-11134207-8224o-mhc4bqbrhp1ne7",
                "id-11134207-8224t-mhc4bqbrnbbf19",
                "id-11134207-8224r-mhc4bqbrj3m3cd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763739431,
              "sold": 62,
              "historical_sold": 69,
              "liked": false,
              "liked_count": 30,
              "view_count": null,
              "catid": 100013,
              "brand": "ORUSS",
              "cmt_count": 28,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 12800000000,
              "price_min": 12800000000,
              "price_max": 12800000000,
              "price_min_before_discount": 99900000000,
              "price_max_before_discount": 99900000000,
              "hidden_price_display": null,
              "price_before_discount": 99900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-87%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvc-mhc4bysrv6yw9f.16000081763739066.mp4",
                  "thumb_url": "id-11110105-6vdvc-mhc4bysrv6yw9f_cover",
                  "duration": 47,
                  "version": 2,
                  "vid": "id-11110105-6vdvc-mhc4bysrv6yw9f",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvc-mhc4bysrv6yw9f.16000081763739066.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvc-mhc4bysrv6yw9f.16000081763739066.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvc-mhc4bysrv6yw9f.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black",
                    "Pink",
                    "White",
                    "Blue",
                    "Black-watch"
                  ],
                  "images": [
                    "id-11134207-8224w-mhc4bqbrq4gb99",
                    "id-11134207-82251-mhc4bqbrrj0r8c",
                    "id-11134207-8224q-mhc4iylpa420b0",
                    "id-11134207-82252-mhc4iylogm4s5a",
                    "id-11134207-8224t-min5g5g5zkld6a"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.821428571428571,
                "rating_count": [
                  28,
                  0,
                  0,
                  1,
                  3,
                  24
                ],
                "rcount_with_context": 14,
                "rcount_with_image": 13
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp40RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228046330408962,
                "price": 12200000000,
                "strikethrough_price": 99900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1318396210331672,
                "discount_text": "-87%",
                "model_id": 340185088969,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1318396210331672,
                  "voucher_code": "ORUSH1",
                  "voucher_discount": 600000000,
                  "time_info": {
                    "start_time": 1766624400,
                    "end_time": 1774702800,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 99900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 69,
                "rounded_local_monthly_sold_count": 62,
                "local_monthly_sold_count_text": "62",
                "rounded_display_sold_count": 69,
                "display_sold_count_text": "69"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp40RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ORUSS Indonesia Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42676675056,
            "shopid": 1587643058,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhc4bqbqikuh0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2153644,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1049122,822059908662278,825465608499232,1718093079,1119699,2068629,298938357,1400285055,1015914,700190087,2018618,825465608492064,2213652,298933384,2098628,298468389,298938368,1718088045,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":532,\"model_id\":340185088969,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhc4bqbqikuh0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2153644,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1049122,822059908662278,825465608499232,1718093079,1119699,2068629,298938357,1400285055,1015914,700190087,2018618,825465608492064,2213652,298933384,2098628,298468389,298938368,1718088045,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":532,\"model_id\":340185088969,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42676675056",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54151892855,
              "shopid": 1481276809,
              "name": "Bumper TPU Case Silicone Strap for Amazfit BIP 6 Strap Sport Rubber Band Wristband Anti Gores Screen Protector Bumper Cover Accessories Tali Jam Tangan Smartwatch for Amazfit BIP 6",
              "label_ids": [
                2018619,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                2023641,
                1059154,
                1059152,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1718093079,
                700765096,
                1119699,
                298933384,
                1400285055,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8227u-mhbt7bwoxo254d",
              "images": [
                "sg-11134201-8227u-mhbt7bwoxo254d",
                "sg-11134201-82254-mhbt7d72ggztff",
                "sg-11134201-82278-mhbt7fchxma681",
                "sg-11134201-82274-mhbt7gop1nuz60",
                "sg-11134201-82281-mhbt7gphuaywae",
                "sg-11134201-8224y-mhbt7hkq7216a5",
                "sg-11134201-8226h-mhbt7htdafwt87",
                "sg-11134201-82263-mhbt7i9n198u73",
                "sg-11134201-8225z-mhbt7iiwahoq64"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763720357,
              "sold": 21,
              "historical_sold": 34,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 13,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3500000000,
              "price_min": 3500000000,
              "price_max": 3500000000,
              "price_min_before_discount": 6000000000,
              "price_max_before_discount": 6000000000,
              "hidden_price_display": null,
              "price_before_discount": 6000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-42%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Light gray 1",
                    "orange 1",
                    "Space Gray 1",
                    "Green 1",
                    "Pink 1",
                    "White 1",
                    "starlight 1",
                    "Red 1",
                    "Midnight blue 1",
                    "Black 1",
                    "Light gray(Strap)",
                    "Red (Strap)",
                    "Space Gray(Strap)",
                    "Starlight(Strap)",
                    "Dark green(Strap)",
                    "Orange (Strap)",
                    "pink(Strap)",
                    "Blue (Strap)",
                    "White (Strap)",
                    "Black (Strap)",
                    "Midnight blue(Case)",
                    "Gold(Case)",
                    "rose gold (Case)",
                    "Pink (Case)",
                    "Gun (Case)",
                    "Black (Case)",
                    "Silver (Case)",
                    "Transparent(Case)"
                  ],
                  "images": [
                    "sg-11134201-8226y-mhbt7v7pbfgo87",
                    "sg-11134201-8225j-mhbt7vlepczw5a",
                    "sg-11134201-82281-mhbt7vph7vgp48",
                    "sg-11134201-8225p-mhbt7wa9pjig4c",
                    "sg-11134201-8227p-mhbt7wns9qtk18",
                    "sg-11134201-8226r-mhbt7ww8hv6540",
                    "sg-11134201-82265-mhbt7x6sdpu338",
                    "sg-11134201-8225k-mhbt7xgetq8a05",
                    "sg-11134201-82261-mhbt7xwaheyy0f",
                    "sg-11134201-82271-mhbt7y9sqc5p55",
                    "sg-11134201-8225g-mhbt7yvroa2zcc",
                    "sg-11134201-8226z-mhbt7zpf29l5bf",
                    "sg-11134201-82275-mhbt80hn2b62f8",
                    "sg-11134201-8225o-mhbt8192xmvie2",
                    "sg-11134201-8226a-mhbt81z5oefhe3",
                    "sg-11134201-8226q-mhbt82unv7ri5d",
                    "sg-11134201-8227f-mhbt83jtbswcc1",
                    "sg-11134201-8225h-mhbt84udd53d98",
                    "sg-11134201-8227o-mhbt85n514we23",
                    "sg-11134201-82263-mhbt86hpibkabc",
                    "sg-11134201-8225j-mhbt8799cu198c",
                    "sg-11134201-8227y-mhbt87wfq614a0",
                    "sg-11134201-8225a-mhbt88kwdfkef8",
                    "sg-11134201-82267-mhbt890g8zyj40",
                    "sg-11134201-82265-mhbt89mtpfkcfa",
                    "sg-11134201-8224p-mhbt8aeq73m039",
                    "sg-11134201-82286-mhbt8b060sunb5",
                    "sg-11134201-8225x-mhbt8bigf3m6ec"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "for Amazfit Bip 6"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.923076923076923,
                "rating_count": [
                  13,
                  0,
                  0,
                  0,
                  1,
                  12
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372022693871686,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744045069009920,
                "price": 3500000000,
                "strikethrough_price": 6000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-42%",
                "model_id": 228208234903,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 34,
                "rounded_local_monthly_sold_count": 21,
                "local_monthly_sold_count_text": "21",
                "rounded_display_sold_count": 34,
                "display_sold_count_text": "34"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SOLOLUP",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54151892855,
            "shopid": 1481276809,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227u-mhbt7bwoxo254d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931086908638,844931064601283,298463379,2023641,1059154,1059152,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,700765096,1119699,298933384,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":533,\"model_id\":228208234903,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8227u-mhbt7bwoxo254d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931086908638,844931064601283,298463379,2023641,1059154,1059152,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,700765096,1119699,298933384,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":533,\"model_id\":228208234903,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54151892855",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42426653109,
              "shopid": 520275456,
              "name": "SKMEI SMARTWATCH  Support Strava DM56/B53S/B59/B510/B72/B77 GPS MAP Smartwatch Bulat Bluetooth Call Altitude Air Pressure",
              "label_ids": [
                700700063,
                1002164,
                298888358,
                298938357,
                2153644,
                1668726,
                2018618,
                844931064601283,
                844931086908638,
                298463379,
                1049112,
                1059151,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608492064,
                825465608493600,
                2213652,
                1718087960,
                1428713,
                1015914,
                700190087,
                298468389,
                2098628,
                298938368,
                2098629,
                1718088045
              ],
              "image": "id-11134207-8224r-mitmnaziji0x60",
              "images": [
                "id-11134207-8224r-mitmnaziji0x60",
                "id-11134207-8224v-mhbkwovp5jpobb",
                "id-11134207-8224s-mhbkwovpckjw04",
                "id-11134207-8224z-mhbkwovpdz4c94",
                "id-11134207-8224y-mhbkwovp6ya47a",
                "id-11134207-8224p-mhbkwovp8cukc6",
                "id-11134207-8224y-mhbkwovp9rf0bc",
                "id-11134207-8224u-mhbkwovpgs9861",
                "id-11134207-8224y-mhbkwovpfdosa4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763719741,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 40,
              "view_count": null,
              "catid": 100013,
              "brand": "SKMEI",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 29900000000,
              "price_min": 29900000000,
              "price_max": 29900000000,
              "price_min_before_discount": 100000000000,
              "price_max_before_discount": 100000000000,
              "hidden_price_display": null,
              "price_before_discount": 100000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-70%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemz-mhbsrsq95vk9fe.16000081763719634.mp4",
                  "thumb_url": "id-11110105-6vemz-mhbsrsq95vk9fe_cover",
                  "duration": 15,
                  "version": 2,
                  "vid": "id-11110105-6vemz-mhbsrsq95vk9fe",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemz-mhbsrsq95vk9fe.16000081763719634.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemz-mhbsrsq95vk9fe.16000081763719634.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemz-mhbsrsq95vk9fe.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "DM56 Silver+ Strap",
                    "B59  Silver+ Strap",
                    "B510 GRAY+ Strap",
                    "B77 Silver + Strap",
                    "B53S Silver+ Strap"
                  ],
                  "images": [
                    "id-11134207-8224p-mhbputuwoemi82",
                    "id-11134207-8224r-mhbputv088awca",
                    "id-11134207-8224x-mhbputuwpt6yd4",
                    "id-11134207-8224t-mhbputuwr7ree5",
                    "id-11134207-8224t-mhbputuwsmbu8d"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 411568059986170,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp48RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 763550025433088,
                "price": 28900000000,
                "strikethrough_price": 100000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1314962920980480,
                "discount_text": "-70%",
                "model_id": 330182937751,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1314962920980480,
                  "voucher_code": "SKMERFRTY",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1766215500,
                    "end_time": 1769847900,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 29900000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 100000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp48RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SKMEI Authorized Store Jakarta",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42426653109,
            "shopid": 520275456,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mitmnaziji0x60\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,1002164,298888358,298938357,2153644,1668726,2018618,844931064601283,844931086908638,298463379,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,825465608492064,825465608493600,2213652,1718087960,1428713,1015914,700190087,298468389,2098628,298938368,2098629,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":534,\"model_id\":330182937751,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mitmnaziji0x60\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,1002164,298888358,298938357,2153644,1668726,2018618,844931064601283,844931086908638,298463379,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,825465608492064,825465608493600,2213652,1718087960,1428713,1015914,700190087,298468389,2098628,298938368,2098629,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":534,\"model_id\":330182937751,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42426653109",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26893649152,
              "shopid": 1323079813,
              "name": "PJT GT02A GPS Tracker Mobil Motor APP - Pelacak Kendaraan GSM GPRS Waktu Nyata Anti Maling Pencari Lokasi",
              "label_ids": [
                1012729,
                2018618,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1718093079,
                1119699,
                2213652,
                1015914,
                700190087,
                298888358,
                298938357,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608492064,
                298938368,
                2098628,
                1718088045,
                298468389,
                2098629
              ],
              "image": "sg-11134201-821fj-mhbrj3zlspag75",
              "images": [
                "sg-11134201-821fj-mhbrj3zlspag75",
                "sg-11134201-821em-mhbrj4btdouge6",
                "sg-11134201-821d6-mhbrj4kuy5u2b0",
                "sg-11134201-821e2-mhbrj4sewo3s13",
                "sg-11134201-821eb-mhbrj4y9998p00",
                "sg-11134201-821ge-mhbrj545d0cqb4",
                "sg-11134201-821f2-mhbrj5d8vrbhb8",
                "sg-11134201-821dg-mhbrj5nfxfkc17",
                "sg-11134201-821fk-mhbrj5uvk0st72"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763717538,
              "sold": 9,
              "historical_sold": 21,
              "liked": false,
              "liked_count": 22,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 5,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 16400000000,
              "price_min": 16400000000,
              "price_max": 16400000000,
              "price_min_before_discount": 23900000000,
              "price_max_before_discount": 23900000000,
              "hidden_price_display": null,
              "price_before_discount": 23900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-31%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9af-mhbrh97wc1s9d2.16000101763717452.mp4",
                  "thumb_url": "sg-11110106-6v9af-mhbrh97wc1s9d2_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "sg-11110106-6v9af-mhbrh97wc1s9d2",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9af-mhbrh97wc1s9d2.16000101763717452.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9af-mhbrh97wc1s9d2.16000101763717452.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9af-mhbrh97wc1s9d2.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Model",
                  "options": [
                    "GPS Tracker"
                  ],
                  "images": [
                    "sg-11134201-821g6-mhbrj62ty970ce"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 410722588966916,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp26RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 820245246312448,
                "price": 15900000000,
                "strikethrough_price": 23900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1323474094538780,
                "discount_text": "-31%",
                "model_id": 272188437297,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1323474094538780,
                  "voucher_code": "HKYO5000P",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1767230160,
                    "end_time": 1774972740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 23900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 21,
                "rounded_local_monthly_sold_count": 9,
                "local_monthly_sold_count_text": "9",
                "rounded_display_sold_count": 21,
                "display_sold_count_text": "21"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp26RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HKYOU.ID Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26893649152,
            "shopid": 1323079813,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fj-mhbrj3zlspag75\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2018618,1428713,1718087960,844931086908638,844931064601283,298463379,1718093079,1119699,2213652,1015914,700190087,298888358,298938357,1059152,1059154,822059908662278,825465608499232,825465608497696,825465608492064,298938368,2098628,1718088045,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":535,\"model_id\":272188437297,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fj-mhbrj3zlspag75\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2018618,1428713,1718087960,844931086908638,844931064601283,298463379,1718093079,1119699,2213652,1015914,700190087,298888358,298938357,1059152,1059154,822059908662278,825465608499232,825465608497696,825465608492064,298938368,2098628,1718088045,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":535,\"model_id\":272188437297,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26893649152",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54401895819,
              "shopid": 1636965472,
              "name": "Smartwatch Samsung Galaxy Watch Ultra 47mm Original 12 BULAN GARANSI Tahan Air & Extreme Weather Beli Sekedar! Free Shipping | Monitor Jantung & Tidur",
              "label_ids": [
                844931064601283,
                1049112,
                700005486,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                844931086908638,
                1015914,
                700190087,
                2023641,
                298463379,
                1400285055,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224z-mhbqve95lq1bd8",
              "images": [
                "id-11134207-8224z-mhbqve95lq1bd8",
                "id-11134207-8224q-mhbqve98nabxd1",
                "id-11134207-8224s-mhbqve98q3gt65",
                "id-11134207-8224r-mhbqve98oowdf6",
                "id-11134207-8224s-mhbqve98swlpdc",
                "id-11134207-8224z-mhbqve98lvrhd3",
                "id-11134207-8224p-mhbqve98ri196f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763717146,
              "sold": 12,
              "historical_sold": 24,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 17,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 53999900000,
              "price_min": 53999900000,
              "price_max": 53999900000,
              "price_min_before_discount": 199900000000,
              "price_max_before_discount": 199900000000,
              "hidden_price_display": null,
              "price_before_discount": 199900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-73%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvb-mhbqvzmsy7tbf4.16000041763716458.mp4",
                  "thumb_url": "id-11110105-6vdvb-mhbqvzmsy7tbf4_cover",
                  "duration": 35,
                  "version": 2,
                  "vid": "id-11110105-6vdvb-mhbqvzmsy7tbf4",
                  "formats": [
                    {
                      "format": 1600004,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvb-mhbqvzmsy7tbf4.16000041763716458.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvb-mhbqvzmsy7tbf4.16000041763716458.mp4",
                      "width": 640,
                      "height": 360
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvb-mhbqvzmsy7tbf4.default.mp4",
                    "width": 640,
                    "height": 360
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Orange",
                    "Orange.",
                    "Black."
                  ],
                  "images": [
                    "id-11134207-82251-mhbqve98ub65b4",
                    "id-11134207-8224p-mhbqve98vpqld4",
                    "id-11134207-8224y-mhigz5r2he6ac1",
                    "id-11134207-8224x-mhigz5r2isqq2e"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.529411764705882,
                "rating_count": [
                  17,
                  2,
                  0,
                  0,
                  0,
                  15
                ],
                "rcount_with_context": 7,
                "rcount_with_image": 5
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bogor",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228203377733632,
                "price": 51999900000,
                "strikethrough_price": 199900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1308329688186880,
                "discount_text": "-73%",
                "model_id": 350182499390,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1308329688186880,
                  "voucher_code": "UT781211",
                  "voucher_discount": 2000000000,
                  "time_info": {
                    "start_time": 1765424760,
                    "end_time": 1772253960,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 30000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 24,
                "rounded_local_monthly_sold_count": 12,
                "local_monthly_sold_count_text": "12",
                "rounded_display_sold_count": 24,
                "display_sold_count_text": "24"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Global Vogue Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU4MGI1MzNmZWFmMTA5ODMxNDQwMDowMjAwMDBlNDlmM2RlNzVhOjAxMDAwMTMzZmE0NzM2NjB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54401895819,
            "shopid": 1636965472,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhbqve95lq1bd8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700005486,1718093079,822059908662278,825465608499232,1119699,844931086908638,1015914,700190087,2023641,298463379,1400285055,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":536,\"model_id\":350182499390,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhbqve95lq1bd8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700005486,1718093079,822059908662278,825465608499232,1119699,844931086908638,1015914,700190087,2023641,298463379,1400285055,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":536,\"model_id\":350182499390,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54401895819",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44026650903,
              "shopid": 1589075157,
              "name": "Magnetic Wireless Fast Charger Cable for Jam Tangan Smartwatch IWatch Apple Watch Ultra 3 2 Series 11 10 9 8 7 6 5 4 SE 3 2 1 49mm 46mm 45mm 44mm 42mm 41mm 40mm 38mm Wireless Charging 2 IN 1/3 In 1 Type C/USB",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                700765096,
                298933384,
                2023641,
                2018619,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-821fl-mhbkwa1pux3i13",
              "images": [
                "sg-11134201-821fl-mhbkwa1pux3i13",
                "sg-11134201-821g5-mhbkwcalrmkrb2",
                "sg-11134201-821db-mhbkwecz7nyhcb",
                "sg-11134201-821d8-mhbkwgearqbs0c",
                "sg-11134201-821dn-mhbkwivam39ke0",
                "sg-11134201-821fb-mhbkwkxj9ednf1",
                "sg-11134201-821fr-mhbkwmq53yto0e",
                "sg-11134201-821g2-mhbkwokm6tcff6",
                "sg-11134201-821fz-mhbkwqjhajuy35"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763706401,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5600000000,
              "price_min": 5600000000,
              "price_max": 5600000000,
              "price_min_before_discount": 9600000000,
              "price_max_before_discount": 9600000000,
              "hidden_price_display": null,
              "price_before_discount": 9600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-42%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "size",
                  "options": [
                    "1 in 1-USB",
                    "2 in 1-USB",
                    "3 in 1-USB",
                    "1 in 1-Type C"
                  ],
                  "images": [
                    "sg-11134201-821fj-mhbkx4hmvzm0f7",
                    "sg-11134201-821ex-mhbkx6sn2tca64",
                    "sg-11134201-821gd-mhbkx91nbea104",
                    "sg-11134201-821ej-mhbkxara6djj64"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359068405608568,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718137130024960,
                "price": 5600000000,
                "strikethrough_price": 9600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-42%",
                "model_id": 216339065920,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 9600000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MYAPULUA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44026650903,
            "shopid": 1589075157,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fl-mhbkwa1pux3i13\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1119699,700765096,298933384,2023641,2018619,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2316,\"model_id\":216339065920,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fl-mhbkwa1pux3i13\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1119699,700765096,298933384,2023641,2018619,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2316,\"model_id\":216339065920,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44026650903",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46301895295,
              "shopid": 864056671,
              "name": "SKMEI smartwatch B76 ip68 Tahan Air  Jam tangan Pintar 1.46 inci touch screen LED FLASHLIGHT metal case outdoor Jam tangan smartwatch",
              "label_ids": [
                2023641,
                2018619,
                298888358,
                298938357,
                1668726,
                844931086908638,
                844931064601283,
                1049112,
                1059151,
                822059908662278,
                825465608492064,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                2048660,
                2048661,
                700765096,
                1015914,
                700190087,
                2098629
              ],
              "image": "id-11134207-8224t-mjgn59d7oirr91",
              "images": [
                "id-11134207-8224t-mjgn59d7oirr91",
                "id-11134207-8224w-mhbc29fzve2y60",
                "id-11134207-82251-mhbc29fzwsne00",
                "id-11134207-8224z-mhbe78faqivh11",
                "id-11134207-8224t-mhbc29fztziie6",
                "id-11134207-8224s-mhbc29fzzlsa54",
                "id-11134207-8224w-mhbe78f8074a84",
                "id-11134207-82250-mhbc29g010cqb2",
                "id-11134207-8224u-mhbc29fzsky2cd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763696795,
              "sold": 4,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100013,
              "brand": "SKMEI",
              "cmt_count": 5,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 37500000000,
              "price_min": 37500000000,
              "price_max": 37500000000,
              "price_min_before_discount": 100000000000,
              "price_max_before_discount": 100000000000,
              "hidden_price_display": null,
              "price_before_discount": 100000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-63%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvk-mhbf6vv53myzbc.16000081763696794.mp4",
                  "thumb_url": "id-11110105-6vdvk-mhbf6vv53myzbc_cover",
                  "duration": 53,
                  "version": 2,
                  "vid": "id-11110105-6vdvk-mhbf6vv53myzbc",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvk-mhbf6vv53myzbc.16000081763696794.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvk-mhbf6vv53myzbc.16000081763696794.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvk-mhbf6vv53myzbc.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black",
                    "Back+Strap"
                  ],
                  "images": [
                    "id-11134207-8224p-mhbe78f2i51kfb",
                    "id-11134207-8224p-mhbe78f2jjm069"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp60RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227908119707648,
                "price": 36300000000,
                "strikethrough_price": 100000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1314961410244608,
                "discount_text": "-63%",
                "model_id": 307186413226,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1314961410244608,
                  "voucher_code": "AIONEWFRT",
                  "voucher_discount": 1200000000,
                  "time_info": {
                    "start_time": 1766215320,
                    "end_time": 1773822120,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 2000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 100000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp60RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "๏ผณ๏ผซ๏ผญ๏ผฅ๏ผฉ Smartwatch Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46301895295,
            "shopid": 864056671,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjgn59d7oirr91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,298888358,298938357,1668726,844931086908638,844931064601283,1049112,1059151,822059908662278,825465608492064,825465608499232,825465608497696,1718093079,1119699,2048660,2048661,700765096,1015914,700190087,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":1048,\"model_id\":307186413226,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjgn59d7oirr91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,298888358,298938357,1668726,844931086908638,844931064601283,1049112,1059151,822059908662278,825465608492064,825465608499232,825465608497696,1718093079,1119699,2048660,2048661,700765096,1015914,700190087,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":1048,\"model_id\":307186413226,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46301895295",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45651885071,
              "shopid": 1594350106,
              "name": "[Baru ORI]SAMSUNG Galaxy watch 7 (44mm) Smart watch AMOLED Layar sentuh definisi tinggi Pemantauan detak jantung Oksigen darah Mengukur tekanan darah Data olahraga Jam Tangan Pintar Pria Wanita Tahan air Koneksi Bluetooth Pengingat pesan Android-IOS",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                700005495,
                700005490,
                1718093079,
                1119699,
                822059908662278,
                825465608499232,
                825465608497696,
                1015914,
                700190087,
                1400285055,
                298933384
              ],
              "image": "id-11134207-8224r-mhbcc3g0rh8o5c",
              "images": [
                "id-11134207-8224r-mhbcc3g0rh8o5c",
                "id-11134207-8224t-mhbcc3fxeoejb1",
                "id-11134207-8224t-mhbcc3g1s00ac8",
                "id-11134207-8224z-mhbcc3g1qlfu30",
                "id-11134207-8224q-mhbcc3g4gx737f",
                "id-11134207-8224x-mhbcc3g9ryfd61",
                "id-11134207-8224q-mhbcc3fyyv4914",
                "id-11134207-8224r-mhbcc3g0svt401",
                "id-11134207-8224z-mhbcc3g75udq4f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763692204,
              "sold": 24,
              "historical_sold": 59,
              "liked": false,
              "liked_count": 58,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 23,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 48500000000,
              "price_min": 48500000000,
              "price_max": 48500000000,
              "price_min_before_discount": 150000000000,
              "price_max_before_discount": 150000000000,
              "hidden_price_display": null,
              "price_before_discount": 150000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-68%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvk-mhbccir685jf08.16000081763692125.mp4",
                  "thumb_url": "id-11110105-6vdvk-mhbccir685jf08_cover",
                  "duration": 25,
                  "version": 2,
                  "vid": "id-11110105-6vdvk-mhbccir685jf08",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvk-mhbccir685jf08.16000081763692125.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvk-mhbccir685jf08.16000081763692125.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvk-mhbccir685jf08.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "black-44mm-w7",
                    "Green-44mm-w7",
                    "Silver-44mm-w7",
                    "Green  -44mm-w7",
                    "Silver -44mm-w7",
                    "White-44mm-w7",
                    "pink-44mm-w7",
                    "Starlight-44mm-w7",
                    "Purple-44mm-w7",
                    "blue-44mm-w7",
                    "black-44mm-w6"
                  ],
                  "images": [
                    "id-11134207-8224t-mhbcc3g9kxl9b2",
                    "id-11134207-8224r-mhbcc3g9mc5p34",
                    "id-11134207-8224o-mhbcc3g9nqq57f",
                    "id-11134207-8224r-mhbcc3g9p5al8f",
                    "id-11134207-82252-mhbcc3g9qjv11c",
                    "id-11134207-8224y-mhbcc3g9ryfhc1",
                    "id-11134207-8224w-mhbcc3g9tczx02",
                    "id-11134207-8224p-mhbcc3g9urkdf6",
                    "id-11134207-8224p-mhbcc3g9w64tb4",
                    "id-11134207-8224s-mhbcc3g9xkp9cf",
                    "id-11134207-8224y-mhbcghzio749f9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.782608695652174,
                "rating_count": [
                  23,
                  1,
                  0,
                  0,
                  1,
                  21
                ],
                "rcount_with_context": 7,
                "rcount_with_image": 7
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 743966769725440,
                "price": 45500000000,
                "strikethrough_price": 150000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1293801541615632,
                "discount_text": "-68%",
                "model_id": 365178001016,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1293801541615632,
                  "voucher_code": "WXMT7",
                  "voucher_discount": 3000000000,
                  "time_info": {
                    "start_time": 1763692920,
                    "end_time": 1771731720,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 40000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 150000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 59,
                "rounded_local_monthly_sold_count": 24,
                "local_monthly_sold_count_text": "24",
                "rounded_display_sold_count": 59,
                "display_sold_count_text": "59"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Pilihan Cerdas TM",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45651885071,
            "shopid": 1594350106,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mhbcc3g0rh8o5c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,700005495,700005490,1718093079,1119699,822059908662278,825465608499232,825465608497696,1015914,700190087,1400285055,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":885,\"model_id\":365178001016,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mhbcc3g0rh8o5c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,700005495,700005490,1718093079,1119699,822059908662278,825465608499232,825465608497696,1015914,700190087,1400285055,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":885,\"model_id\":365178001016,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45651885071",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50201826085,
              "shopid": 1668413911,
              "name": "SmartWatch jam tangan Smart Watch Bluetooth Pelacak Kebugaran Gelang Pedometer Heart Rate Sport watch Fitness Tracker",
              "label_ids": [
                844931064601283,
                700005490,
                700005495,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718093079,
                1718087960,
                1428713,
                844931086908638,
                1400285055,
                298933384,
                1015914,
                700190087,
                2023641,
                2018619
              ],
              "image": "id-11134207-8224t-mhalo1mh8opb28",
              "images": [
                "id-11134207-8224t-mhalo1mh8opb28",
                "id-11134207-8224t-mhalo1m29amhb2",
                "id-11134207-8224y-mhhald0tatc284",
                "id-11134207-8224t-mhhald0wjeh0a2",
                "id-11134207-8224v-mhhald0whzwkb0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763648080,
              "sold": 70,
              "historical_sold": 84,
              "liked": false,
              "liked_count": 39,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 47,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 13680000000,
              "price_min": 13680000000,
              "price_max": 13680000000,
              "price_min_before_discount": 33990000000,
              "price_max_before_discount": 33990000000,
              "hidden_price_display": null,
              "price_before_discount": 33990000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-60%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black",
                    "Silver",
                    "Rose Gold"
                  ],
                  "images": [
                    "id-11134207-82250-mhbda8dj6mtr7d",
                    "id-11134207-8224t-mhbda8dj81e758",
                    "id-11134207-8224u-mhbda8dj9fyndd"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  47,
                  0,
                  0,
                  0,
                  0,
                  47
                ],
                "rcount_with_context": 35,
                "rcount_with_image": 34
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 797773448922112,
                "price": 13680000000,
                "strikethrough_price": 33990000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-60%",
                "model_id": 410178499299,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 33990000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 84,
                "rounded_local_monthly_sold_count": 70,
                "local_monthly_sold_count_text": "70",
                "rounded_display_sold_count": 84,
                "display_sold_count_text": "84"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "NPDW Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50201826085,
            "shopid": 1668413911,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mhalo1mh8opb28\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,700005495,822059908662278,825465608499232,825465608497696,1119699,1718093079,1718087960,1428713,844931086908638,1400285055,298933384,1015914,700190087,2023641,2018619],\"matched_keywords\":[\"\"],\"merge_rank\":211,\"model_id\":410178499299,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mhalo1mh8opb28\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,700005495,822059908662278,825465608499232,825465608497696,1119699,1718093079,1718087960,1428713,844931086908638,1400285055,298933384,1015914,700190087,2023641,2018619],\"matched_keywords\":[\"\"],\"merge_rank\":211,\"model_id\":410178499299,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50201826085",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42376586570,
              "shopid": 1484087853,
              "name": "Stainless Steel Metal Strap for Huawei Watch Fit 4/ Fit 4 Pro/ Fit 3 Strap Band Bracelet Accessories for Tali Jam Tangan Smartwatch Huawei Fit 4/ Fit 4 Pro/ Fit 3",
              "label_ids": [
                2018618,
                2153644,
                298888358,
                298938357,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                840990690654214,
                840955085144628,
                825465608492064,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                2213652,
                298933384,
                1015914,
                700190087,
                700810055,
                1718088045,
                298938368,
                2098629,
                298468389,
                2098628
              ],
              "image": "sg-11134201-821ef-mh925ndpy2vjee",
              "images": [
                "sg-11134201-821ef-mh925ndpy2vjee",
                "sg-11134201-821fq-mh925or07023a1",
                "sg-11134201-821f2-mh925q3sncpac6",
                "sg-11134201-821fp-mh925qxjuzv311",
                "sg-11134201-821fy-mh925ren7wng91",
                "sg-11134201-821ea-mh925s0if02747",
                "sg-11134201-821fu-mh925sj0nmyx26",
                "sg-11134201-821df-mh925t05qebz2d",
                "sg-11134201-821fq-mh925tgrrq4r22"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763553808,
              "sold": 3,
              "historical_sold": 7,
              "liked": false,
              "liked_count": 17,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 15824000000,
              "price_min": 15824000000,
              "price_max": 15824000000,
              "price_min_before_discount": 38000000000,
              "price_max_before_discount": 38000000000,
              "hidden_price_display": null,
              "price_before_discount": 38000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-58%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Silver",
                    "Black",
                    "Rose Gold",
                    "Gold"
                  ],
                  "images": [
                    "sg-11134201-821g7-mh92667oc07heb",
                    "sg-11134201-821fl-mh9266pf7z0sf7",
                    "sg-11134201-821dq-mh9267bat43s09",
                    "sg-11134201-821e0-mh9267v3zk7d81"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "smartwear_size",
                  "options": [
                    "Huawei Fit 3/4/4 Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  0,
                  4
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372024811991523,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp26RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 15755000000,
                "strikethrough_price": 38000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1293217240727560,
                "discount_text": "-58%",
                "model_id": 345159426250,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1293217240727560,
                  "voucher_code": "EIHA8",
                  "voucher_discount": 69000000,
                  "time_info": {
                    "start_time": 1763623320,
                    "end_time": 1771741320,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 6900000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 38000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 157.550",
                      "hidden_promotion_price": "Rp 1?7.550",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 7,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 7,
                "display_sold_count_text": "7"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp26RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EIHAIHIS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42376586570,
            "shopid": 1484087853,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821ef-mh925ndpy2vjee\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,298888358,298938357,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,840990690654214,840955085144628,825465608492064,825465608494624,825465608499232,825465608497696,1718093079,1119699,2213652,298933384,1015914,700190087,700810055,1718088045,298938368,2098629,298468389,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":1693,\"model_id\":345159426250,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821ef-mh925ndpy2vjee\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,298888358,298938357,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,840990690654214,840955085144628,825465608492064,825465608494624,825465608499232,825465608497696,1718093079,1119699,2213652,298933384,1015914,700190087,700810055,1718088045,298938368,2098629,298468389,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":1693,\"model_id\":345159426250,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42376586570",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24347765986,
              "shopid": 1583137050,
              "name": "ZIVOKA ST01 Tracker Anti Kehilangan Mini Eksklusif untuk iPhone Apple Bluetooth Lokasi Akurat Alarm Anti Hilang Tahan Air Awet Baterai Ringan Portable",
              "label_ids": [
                2018618,
                2153644,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                2213652,
                1015914,
                700190087,
                1400285055,
                825465608494624,
                2048660,
                2048661,
                825465608493600,
                700765096
              ],
              "image": "id-11134207-8224v-mhzl213ad05e8c",
              "images": [
                "id-11134207-8224v-mhzl213ad05e8c",
                "id-11134207-8224v-mh8w9e6tt7gte2",
                "id-11134207-8224s-mh8w9e6tnl715d",
                "id-11134207-8224q-mh8w9e6tqebx6f",
                "id-11134207-8224r-mh8w9e6trswdae",
                "id-11134207-8224r-mh8w9e6tozrh64",
                "id-11134207-8224r-mh8w9e6tks2565",
                "id-11134207-82251-mh8w9e6tm6mlb5",
                "id-11134207-82251-mh8w9e6tum194a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763545280,
              "sold": 73,
              "historical_sold": 99,
              "liked": false,
              "liked_count": 88,
              "view_count": null,
              "catid": 100013,
              "brand": "ZIVOKA",
              "cmt_count": 22,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4900700000,
              "price_min": 4900700000,
              "price_max": 4900700000,
              "price_min_before_discount": 15999000000,
              "price_max_before_discount": 15999000000,
              "hidden_price_display": null,
              "price_before_discount": 15999000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-69%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemz-mhqcbgrgnq4oa0.16000081764600033.mp4",
                  "thumb_url": "id-11110105-6vemz-mhqcbgrgnq4oa0_cover",
                  "duration": 29,
                  "version": 2,
                  "vid": "id-11110105-6vemz-mhqcbgrgnq4oa0",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemz-mhqcbgrgnq4oa0.16000081764600033.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemz-mhqcbgrgnq4oa0.16000081764600033.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemz-mhqcbgrgnq4oa0.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "COLOR",
                  "options": [
                    "Hitam - ST01",
                    "Putih - ST01",
                    "F08 - Black"
                  ],
                  "images": [
                    "id-11134207-8224q-mh8x1fsl9erx2a",
                    "id-11134207-8224u-mh8x1fst7ymj53",
                    "id-11134207-8224p-mimqw1rks6iva4"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.681818181818182,
                "rating_count": [
                  22,
                  1,
                  1,
                  0,
                  0,
                  20
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 753757625827328,
                "price": 4900700000,
                "strikethrough_price": 15999000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-69%",
                "model_id": 355158499546,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 15999000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 99,
                "rounded_local_monthly_sold_count": 73,
                "local_monthly_sold_count_text": "73",
                "rounded_display_sold_count": 99,
                "display_sold_count_text": "99"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ZIVOKA Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 24347765986,
            "shopid": 1583137050,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mhzl213ad05e8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,1428713,1718087960,844931086908638,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,2213652,1015914,700190087,1400285055,825465608494624,2048660,2048661,825465608493600,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":1817,\"model_id\":355158499546,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mhzl213ad05e8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,1428713,1718087960,844931086908638,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,2213652,1015914,700190087,1400285055,825465608494624,2048660,2048661,825465608493600,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":1817,\"model_id\":355158499546,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24347765986",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56301712418,
              "shopid": 17394097,
              "name": "Strap Huawei Watch Fit 3 / Fit 4 / Fit 4 PRO Nylon Strap Huawei Watch Fit 3 Bahan Nylon Canvas Perekat",
              "label_ids": [
                2018619,
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                298463379,
                2023641,
                1015914,
                700190087,
                700810080,
                1400285055,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-821gg-mh8tktpzjxn2d9",
              "images": [
                "sg-11134201-821gg-mh8tktpzjxn2d9",
                "sg-11134201-821dl-mh8tktycdw5qbd",
                "sg-11134201-821ga-mh8tku4684r1f0",
                "sg-11134201-821eh-mh8tkub90l54e8",
                "sg-11134201-821da-mh8tkuhdmk206a",
                "sg-11134201-821fz-mh8tkunpro5ocf",
                "sg-11134201-821g9-mh8tkuu8b3tb0b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763539379,
              "sold": 52,
              "historical_sold": 75,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 25,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3825000000,
              "price_min": 3825000000,
              "price_max": 3825000000,
              "price_min_before_discount": 4500000000,
              "price_max_before_discount": 4500000000,
              "hidden_price_display": null,
              "price_before_discount": 4500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-15%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Navy",
                    "Army",
                    "Green",
                    "Maroon",
                    "Starlight",
                    "Soft Pink",
                    "Soft Blue",
                    "Soft Violet",
                    "Orange",
                    "Grey",
                    "Tosca"
                  ],
                  "images": [
                    "sg-11134201-821f4-mh8tkuze445n4f",
                    "sg-11134201-821ea-mh8tkv52dj4954",
                    "sg-11134201-821dz-mh8tkvb3ihhn43",
                    "sg-11134201-821fw-mh8tkvgjfaxbb2",
                    "sg-11134201-821fn-mh8tkvm5b18t10",
                    "sg-11134201-821en-mh8tkvrt7rim09",
                    "sg-11134201-821g7-mh8tkvwtr572af",
                    "sg-11134201-821f9-mh8tkw1caz2h04",
                    "sg-11134201-821em-mh8tkw71qknh11",
                    "sg-11134201-821fj-mh8tkwcrpr0se1",
                    "sg-11134201-821d6-mh8tkwksx4b39c",
                    "sg-11134201-821dn-mh8tkwqdo5qj7c"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tipe",
                  "options": [
                    "Huawei Fit 3/4/4PRO"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.8,
                "rating_count": [
                  25,
                  1,
                  0,
                  0,
                  1,
                  23
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 395247524006831,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 788242119589888,
                "price": 3825000000,
                "strikethrough_price": 4500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-15%",
                "model_id": 335157549021,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 75,
                "rounded_local_monthly_sold_count": 52,
                "local_monthly_sold_count_text": "52",
                "rounded_display_sold_count": 75,
                "display_sold_count_text": "75"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KROX.ID",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56301712418,
            "shopid": 17394097,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821gg-mh8tktpzjxn2d9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699,298933384,298463379,2023641,1015914,700190087,700810080,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1530,\"model_id\":335157549021,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821gg-mh8tktpzjxn2d9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699,298933384,298463379,2023641,1015914,700190087,700810080,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1530,\"model_id\":335157549021,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56301712418",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51351715138,
              "shopid": 1484087853,
              "name": "Charger Holder Charging Cable for Huawei Band 10 9 8 7 6 /Huawei Watch Fit 4 Pro/4/3 /Fit 2 /Watch Fit /Honor Band 6 7 ES C-Shaped Seat Station Stand Base with Cable for Huawei Children's Watch 4pro / 4X OPPO Band 2 Keep B4 Lite / B4 / Mini / 6 Pro / Fit",
              "label_ids": [
                2018618,
                2153644,
                298888358,
                298938357,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                825465608492064,
                825465608494624,
                1718093079,
                1119699,
                2213652,
                298933384,
                1400285055,
                1015914,
                700190087,
                700810055,
                1718088045,
                2098628,
                298938368,
                298468389,
                2098629
              ],
              "image": "sg-11134201-821ew-mh8r3vckbci767",
              "images": [
                "sg-11134201-821ew-mh8r3vckbci767",
                "sg-11134201-821gc-mh8r3vubcw0eb4",
                "sg-11134201-821ek-mh8r3we0o9vv61",
                "sg-11134201-821em-mh8r3wtkxudm0e",
                "sg-11134201-821dd-mh8r3x7lhlhlc5",
                "sg-11134201-821e5-mh8r3xkv9nuyac",
                "sg-11134201-821e1-mh8r3xx6k3d4ec",
                "sg-11134201-821dx-mh8r3y9629s864",
                "sg-11134201-821ew-mh8r3ymkbx1l2a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763535225,
              "sold": 17,
              "historical_sold": 25,
              "liked": false,
              "liked_count": 13,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 12,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 7995000000,
              "price_min": 7995000000,
              "price_max": 7995000000,
              "price_min_before_discount": 17380000000,
              "price_max_before_discount": 17380000000,
              "hidden_price_display": null,
              "price_before_discount": 17380000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kip7-mac6ktnhp03i43.16000081748488166.mp4",
                  "thumb_url": "sg-11110106-6kip7-mac6ktnhp03i43_cover",
                  "duration": 22,
                  "version": 2,
                  "vid": "sg-11110106-6kip7-mac6ktnhp03i43",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kip7-mac6ktnhp03i43.16006711756754340.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip7-mac6ktnhp03i43.16006711756754340.mp4",
                      "width": 1024,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kip7-mac6ktnhp03i43.16000081748488166.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip7-mac6ktnhp03i43.16000081748488166.mp4",
                      "width": 1366,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kip7-mac6ktnhp03i43.16003251756754340.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip7-mac6ktnhp03i43.16003251756754340.mp4",
                      "width": 1366,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kip7-mac6ktnhp03i43.16005581756754340.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip7-mac6ktnhp03i43.16005581756754340.mp4",
                      "width": 2048,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip7-mac6ktnhp03i43.default.mp4",
                    "width": 1024,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "black"
                  ],
                  "images": [
                    "sg-11134201-821e0-mh8r4b96w1728e"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.833333333333333,
                "rating_count": [
                  12,
                  0,
                  0,
                  1,
                  0,
                  11
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372024811991523,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 7926000000,
                "strikethrough_price": 17380000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1293217240727560,
                "discount_text": "-54%",
                "model_id": 108771018896,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1293217240727560,
                  "voucher_code": "EIHA8",
                  "voucher_discount": 69000000,
                  "time_info": {
                    "start_time": 1763623320,
                    "end_time": 1771741320,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 6900000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 17380000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 79.260",
                      "hidden_promotion_price": "Rp ?9.260",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 25,
                "rounded_local_monthly_sold_count": 17,
                "local_monthly_sold_count_text": "17",
                "rounded_display_sold_count": 25,
                "display_sold_count_text": "25"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EIHAIHIS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51351715138,
            "shopid": 1484087853,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821ew-mh8r3vckbci767\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,298888358,298938357,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,825465608492064,825465608494624,1718093079,1119699,2213652,298933384,1400285055,1015914,700190087,700810055,1718088045,2098628,298938368,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":935,\"model_id\":108771018896,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821ew-mh8r3vckbci767\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,298888358,298938357,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,825465608492064,825465608494624,1718093079,1119699,2213652,298933384,1400285055,1015914,700190087,700810055,1718088045,2098628,298938368,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":935,\"model_id\":108771018896,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51351715138",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56301644722,
              "shopid": 1663874947,
              "name": "Silikon Dudukan Stand Jam Tangan Untuk Jam Tangan Smartwatch Apple Watch /Silicone Apple Watch Holder Charger Cable Organizer",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                2023641,
                1400285055,
                1015914,
                700190087,
                2018619,
                298933384,
                298463379,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8262k-mj6vviefm32a2b",
              "images": [
                "sg-11134201-8262k-mj6vviefm32a2b",
                "id-11134207-8224o-mh7rlt2r0zrcec",
                "id-11134207-8224t-mh7rlt2r2ebs37",
                "id-11134207-8224q-mh7rlt2r57go6c",
                "id-11134207-82252-mh7rlt2r3sw8b8",
                "id-11134207-8224y-mh7rlt2r6m146d",
                "id-11134207-8224q-mh7rlt2r80lk78",
                "id-11134207-82251-mh7rlt2r9f601a",
                "id-11134207-8224z-mh7rlt2ratqg67"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763475837,
              "sold": 4,
              "historical_sold": 9,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1900000000,
              "price_min": 1900000000,
              "price_max": 1900000000,
              "price_min_before_discount": 2714200000,
              "price_max_before_discount": 2714200000,
              "hidden_price_display": null,
              "price_before_discount": 2714200000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-30%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven5-mh7ro1xqpwqwbc.16000081763475631.mp4",
                  "thumb_url": "id-11110105-6ven5-mh7ro1xqpwqwbc_cover",
                  "duration": 19,
                  "version": 2,
                  "vid": "id-11110105-6ven5-mh7ro1xqpwqwbc",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven5-mh7ro1xqpwqwbc.16000081763475631.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven5-mh7ro1xqpwqwbc.16000081763475631.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven5-mh7ro1xqpwqwbc.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Merah",
                    "Merah Muda",
                    "Biru Muda",
                    "Biru Tua",
                    "Abu-abu",
                    "Hijau",
                    "Ungu",
                    "Putih"
                  ],
                  "images": [
                    "id-11134207-8224u-mh7rr5au9ekt3c",
                    "id-11134207-8224v-mh7rr5ax85qj61",
                    "id-11134207-82250-mh7rr5ax9kaz34",
                    "id-11134207-8224v-mh7rr5axayvf10",
                    "id-11134207-8224x-mh7rr5axcdfv15",
                    "id-11134207-8224p-mh7rr5axds0b3a",
                    "id-11134207-8224o-mh7rr5axf6kr4b",
                    "id-11134207-82250-mh7rr5axgl571b",
                    "id-11134207-82251-mh7rr5axhzpnd8"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 786808858787840,
                "price": 1900000000,
                "strikethrough_price": 2714200000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-30%",
                "model_id": 315151606990,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2714200000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 9,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 9,
                "display_sold_count_text": "9"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Bloomy Mart",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56301644722,
            "shopid": 1663874947,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262k-mj6vviefm32a2b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,700005490,1049120,822059908662278,825465608499232,825465608497696,1718093079,1119699,2023641,1400285055,1015914,700190087,2018619,298933384,298463379,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1755,\"model_id\":315151606990,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262k-mj6vviefm32a2b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,700005490,1049120,822059908662278,825465608499232,825465608497696,1718093079,1119699,2023641,1400285055,1015914,700190087,2018619,298933384,298463379,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1755,\"model_id\":315151606990,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56301644722",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57001652356,
              "shopid": 1650262201,
              "name": "Smartwatch Serie S9 mini 38mm Smart Watch 9 Jam Pintar OlahragBluetooth SmartWatch Wanita  Pria IP68 Tahan Air Jam Tangan Pintar Monitor Detak Jantung Jam Tangan Digital Wanita  Couple Smartwatch",
              "label_ids": [
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                2018619,
                298933384,
                825465608494624,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224y-mivcdmnpxlhd95",
              "images": [
                "id-11134207-8224y-mivcdmnpxlhd95",
                "id-11134207-8224v-mh7ak9q2251r8d",
                "id-11134207-8224r-mh7ak9q23jm74d",
                "id-11134207-8224p-mh7ak9q24y6n12",
                "id-11134207-8224v-mh7ak9q26cr3cb",
                "id-11134207-8224x-mh7dfv9iikum64",
                "id-11134207-8224o-mh7dfv9io74adb",
                "id-11134207-8224w-mh7ak9q20qhbb3",
                "id-11134207-82252-mh7dfv9zal1l29"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763453614,
              "sold": 88,
              "historical_sold": 150,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 66,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 26900000000,
              "price_min": 26900000000,
              "price_max": 26900000000,
              "price_min_before_discount": 53800000000,
              "price_max_before_discount": 53800000000,
              "hidden_price_display": null,
              "price_before_discount": 53800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvb-mj9mwytwh3ia45.16000041767947204.mp4",
                  "thumb_url": "id-11110105-6vdvb-mj9mwytwh3ia45_cover",
                  "duration": 50,
                  "version": 2,
                  "vid": "id-11110105-6vdvb-mj9mwytwh3ia45",
                  "formats": [
                    {
                      "format": 1600004,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvb-mj9mwytwh3ia45.16000041767947204.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvb-mj9mwytwh3ia45.16000041767947204.mp4",
                      "width": 360,
                      "height": 636
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvb-mj9mwytwh3ia45.default.mp4",
                    "width": 362,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "black",
                    "whiite",
                    "pink",
                    "Starlight",
                    ".Film pelindung"
                  ],
                  "images": [
                    "id-11134207-8224t-mh7dfv9tehaj8a",
                    "id-11134207-8224q-mh7dfv9tfvuz8d",
                    "id-11134207-82252-mh7dfv9thaff67",
                    "id-11134207-82250-mh7dfv9tiozvc6",
                    "id-11134207-82251-mh7dfv9tk3kbff"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "model",
                  "options": [
                    "S9-41mm",
                    "S9-45mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  66,
                  0,
                  0,
                  0,
                  0,
                  66
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 412740074353248,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 767993294929920,
                "price": 26190100000,
                "strikethrough_price": 53800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1300686785888256,
                "discount_text": "-50%",
                "model_id": 310149128888,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1300686785888256,
                  "voucher_code": "C2M685555",
                  "voucher_discount": 709900000,
                  "time_info": {
                    "start_time": 1764513720,
                    "end_time": 1769874120,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5999000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 53800000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 150,
                "rounded_local_monthly_sold_count": 88,
                "local_monthly_sold_count_text": "88",
                "rounded_display_sold_count": 150,
                "display_sold_count_text": "150"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GoodAir Fan Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57001652356,
            "shopid": 1650262201,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mivcdmnpxlhd95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699,2018619,298933384,825465608494624,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1333,\"model_id\":310149128888,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mivcdmnpxlhd95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699,2018619,298933384,825465608494624,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1333,\"model_id\":310149128888,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57001652356",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49651641284,
              "shopid": 415755,
              "name": "Watch Strap / Band Amazfit Bip 6 / 5 / Balance 2 / Active 2 / Premium Protego Tempus Single Color Silicone (PT-004)",
              "label_ids": [
                1000167,
                47,
                1000389,
                1000383,
                1000544,
                1000392,
                1000394,
                1011705,
                1011692,
                2018618,
                2153644,
                1400095067,
                1400285005,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1718093079,
                1119699,
                2213652,
                1049112,
                1059151,
                822059908662278,
                825465608497696,
                825465608499232,
                840955085144628,
                840990690654214,
                825465608493600,
                825465608494624,
                2048660,
                2048661,
                700765096,
                1015914,
                700190087,
                1400285055
              ],
              "image": "id-11134207-82251-mh7bh9aq0nbg1a",
              "images": [
                "id-11134207-82251-mh7bh9aq0nbg1a",
                "id-11134207-8224u-mh7bh9anzlsfb3",
                "id-11134207-82251-mh7bh9ao10cvcf"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763448411,
              "sold": 12,
              "historical_sold": 18,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "Protego",
              "cmt_count": 7,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 7500000000,
              "price_min": 7500000000,
              "price_max": 7500000000,
              "price_min_before_discount": 12000000000,
              "price_max_before_discount": 12000000000,
              "hidden_price_display": null,
              "price_before_discount": 12000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-38%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venb-mhk3qbk61rltb9.16000081764222330.mp4",
                  "thumb_url": "id-11110105-6venb-mhk3qbk61rltb9_cover",
                  "duration": 19,
                  "version": 2,
                  "vid": "id-11110105-6venb-mhk3qbk61rltb9",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venb-mhk3qbk61rltb9.16000081764222330.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mhk3qbk61rltb9.16000081764222330.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mhk3qbk61rltb9.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Dark Blue",
                    "Light Pink",
                    "Orange",
                    "Red",
                    "White",
                    "Willow Green",
                    "Grey",
                    "Starlight"
                  ],
                  "images": [
                    "id-11134207-8224u-mh7b7b7chloo14",
                    "id-11134207-8224q-mh7b7b7cj094a3",
                    "id-11134207-8224s-mh7b7b7cketk6d",
                    "id-11134207-8224v-mh7b7b7clte0e3",
                    "id-11134207-8224q-mh7b7b7cn7ygb4",
                    "id-11134207-8224p-mh7b7b7comiwc6",
                    "id-11134207-8224u-mh7b7b7cq13caf",
                    "id-11134207-8224x-mh7b7b7crfnsd7",
                    "id-11134207-82252-mh7ax4wigeml05"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Varian",
                  "options": [
                    "Active 2 / Premium",
                    "Amazfit Balance 2",
                    "Amazfit Bip 5",
                    "Amazfit Bip 6"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.857142857142857,
                "rating_count": [
                  7,
                  0,
                  0,
                  0,
                  1,
                  6
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 794819627122688,
                "price": 7500000000,
                "strikethrough_price": 12000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-38%",
                "model_id": 310148389917,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 12000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 18,
                "rounded_local_monthly_sold_count": 12,
                "local_monthly_sold_count_text": "12",
                "rounded_display_sold_count": 18,
                "display_sold_count_text": "18"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "unomax Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49651641284,
            "shopid": 415755,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mh7bh9aq0nbg1a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,47,1000389,1000383,1000544,1000392,1000394,1011705,1011692,2018618,2153644,1400095067,1400285005,1718087960,1428713,844931064601283,844931086908638,1718093079,1119699,2213652,1049112,1059151,822059908662278,825465608497696,825465608499232,840955085144628,840990690654214,825465608493600,825465608494624,2048660,2048661,700765096,1015914,700190087,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":2108,\"model_id\":310148389917,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mh7bh9aq0nbg1a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,47,1000389,1000383,1000544,1000392,1000394,1011705,1011692,2018618,2153644,1400095067,1400285005,1718087960,1428713,844931064601283,844931086908638,1718093079,1119699,2213652,1049112,1059151,822059908662278,825465608497696,825465608499232,840955085144628,840990690654214,825465608493600,825465608494624,2048660,2048661,700765096,1015914,700190087,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":2108,\"model_id\":310148389917,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49651641284",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48001619878,
              "shopid": 750849747,
              "name": "OLIKE FW6 Smartwatch Tahan Air Garansi Resmi | Sync Strava Baterai 20 Hari | 1.43\" Display Healty Management",
              "label_ids": [
                2023641,
                1400095067,
                1400285005,
                2018619,
                298463379,
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                834403089593352,
                825465608497696,
                840990690654214,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                1119699,
                298933384,
                1015914,
                700190087,
                700810080,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-822y0-mibgguvaz30ka5",
              "images": [
                "sg-11134201-822y0-mibgguvaz30ka5",
                "sg-11134201-821ek-mh79jcbt8qa309",
                "sg-11134201-821d5-mh79jcgs0weiee",
                "sg-11134201-821ex-mh79jcpio3yh96",
                "sg-11134201-821fd-mh79jcwvkf0s5b",
                "sg-11134201-821fk-mh79jd3qqyoe4d",
                "sg-11134201-821ec-mh79jd9qk5qn27",
                "sg-11134201-821fo-mh79jdeon1n06f",
                "sg-11134201-821dq-mh79jdk8ao0e4d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763445144,
              "sold": 2,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Olike",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 21600000000,
              "price_min": 21600000000,
              "price_max": 21600000000,
              "price_min_before_discount": 39600000000,
              "price_max_before_discount": 39600000000,
              "hidden_price_display": null,
              "price_before_discount": 39600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-45%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9am-mh7e33iain7t8e.16000031763452792.mp4",
                  "thumb_url": "sg-11110106-6v9am-mh7e33iain7t8e_cover",
                  "duration": 38,
                  "version": 2,
                  "vid": "sg-11110106-6v9am-mh7e33iain7t8e",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9am-mh7e33iain7t8e.16000031763452792.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9am-mh7e33iain7t8e.16000031763452792.mp4",
                      "width": 480,
                      "height": 848
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9am-mh7e33iain7t8e.default.mp4",
                    "width": 480,
                    "height": 848
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "PInk",
                    "Black",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134201-821fp-mh79jdoigjd5f2",
                    "sg-11134201-821db-mh79jdxcavwq34",
                    "sg-11134201-821ds-mh79je21g5caa1"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4,
                "rating_count": [
                  2,
                  0,
                  0,
                  1,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 754954696982528,
                "price": 21600000000,
                "strikethrough_price": 39600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-45%",
                "model_id": 292168000878,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 39600000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Inovtek",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48001619878,
            "shopid": 750849747,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822y0-mibgguvaz30ka5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,1400095067,1400285005,2018619,298463379,844931064601283,844931086908638,1059152,1049122,1718093079,822059908662278,834403089593352,825465608497696,840990690654214,840955085144628,825465608493600,825465608494624,825465608499232,1119699,298933384,1015914,700190087,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2109,\"model_id\":292168000878,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822y0-mibgguvaz30ka5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,1400095067,1400285005,2018619,298463379,844931064601283,844931086908638,1059152,1049122,1718093079,822059908662278,834403089593352,825465608497696,840990690654214,840955085144628,825465608493600,825465608494624,825465608499232,1119699,298933384,1015914,700190087,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2109,\"model_id\":292168000878,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48001619878",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51701596397,
              "shopid": 415755,
              "name": "Watch Strap / Band Huawei Watch GT 6 Pro 46mm / GT 6 / GT 5 Pro / GT 5 / Ultimate Protego Tempus Magnetic (PT-002)",
              "label_ids": [
                2153644,
                1400095067,
                1400285005,
                1000167,
                47,
                1000392,
                1000383,
                1000389,
                1011692,
                1000394,
                1000544,
                1011705,
                2018618,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                1718093079,
                1119699,
                2213652,
                1015914,
                700190087,
                1049112,
                1059151,
                822059908662278,
                825465608499232,
                825465608497696,
                840955085144628,
                840990690654214,
                825465608493600,
                825465608494624,
                2048660,
                2048661,
                700765096
              ],
              "image": "id-11134207-8224r-mj9etx94aeiq4d",
              "images": [
                "id-11134207-8224r-mj9etx94aeiq4d",
                "id-11134207-8224s-mj9eqe97iwhu71",
                "id-11134207-8224t-mj9eqe97eosi31",
                "id-11134207-8224r-mj9eqe915xxc57",
                "id-11134207-8224q-mj9eqe97lpmq13",
                "id-11134207-8224q-mj9eqe97kb2a97",
                "id-11134207-8224s-mj9eqe97hhxe31"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763435797,
              "sold": 2,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100013,
              "brand": "Protego",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 16000000000,
              "price_min": 16000000000,
              "price_max": 16000000000,
              "price_min_before_discount": 26000000000,
              "price_max_before_discount": 26000000000,
              "hidden_price_display": null,
              "price_before_discount": 26000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-38%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vena-mh8x62kobw97f7.16000081763545415.mp4",
                  "thumb_url": "id-11110105-6vena-mh8x62kobw97f7_cover",
                  "duration": 12,
                  "version": 2,
                  "vid": "id-11110105-6vena-mh8x62kobw97f7",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vena-mh8x62kobw97f7.16000081763545415.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vena-mh8x62kobw97f7.16000081763545415.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vena-mh8x62kobw97f7.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Dark Green Black",
                    "Orange Black",
                    "Starlight Orange"
                  ],
                  "images": [
                    "id-11134207-82250-mj9etx9chds161",
                    "id-11134207-8224v-mj9etx9cisch15",
                    "id-11134207-8224o-mj9etx9ck6wx31",
                    "id-11134207-8224z-mj9etx9cllhd6e"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Varian",
                  "options": [
                    "Watch GT 6 46mm",
                    "Watch GT 6 Pro 46mm",
                    "Watch GT 5 Pro 46mm",
                    "Watch GT 5 46mm",
                    "Watch Ultimate"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 794819627122688,
                "price": 16000000000,
                "strikethrough_price": 26000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-38%",
                "model_id": 425146398761,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 26000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "unomax Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51701596397,
            "shopid": 415755,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mj9etx94aeiq4d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,1400095067,1400285005,1000167,47,1000392,1000383,1000389,1011692,1000394,1000544,1011705,2018618,1718087960,1428713,844931086908638,844931064601283,1718093079,1119699,2213652,1015914,700190087,1049112,1059151,822059908662278,825465608499232,825465608497696,840955085144628,840990690654214,825465608493600,825465608494624,2048660,2048661,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":2203,\"model_id\":425146398761,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mj9etx94aeiq4d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,1400095067,1400285005,1000167,47,1000392,1000383,1000389,1011692,1000394,1000544,1011705,2018618,1718087960,1428713,844931086908638,844931064601283,1718093079,1119699,2213652,1015914,700190087,1049112,1059151,822059908662278,825465608499232,825465608497696,840955085144628,840990690654214,825465608493600,825465608494624,2048660,2048661,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":2203,\"model_id\":425146398761,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51701596397",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53951584180,
              "shopid": 1344420450,
              "name": "Metal Band Strap TPU Case for Redmi Watch 5 Active / Redmi Watch 5 Lite Luxury Stainless Steel Belt Screen Protector Anti Gores Soft Case Cover for Tali Jam Tangan Smartwatch Xaiomi Redmi Watch 5 Lite",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                1718093079,
                1119699,
                700765096,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-821dh-mh6zxc298idr8c",
              "images": [
                "sg-11134201-821dh-mh6zxc298idr8c",
                "sg-11134201-821g3-mh6zxd1wv6rwda",
                "sg-11134201-821eh-mh6zxdl3sxlb17",
                "sg-11134201-821fu-mh6zxe6bs93cdd",
                "sg-11134201-821ep-mh6zxf326jv18c",
                "sg-11134201-821fm-mh6zxfrk8du4fb",
                "sg-11134201-821cy-mh6zxggazgg9f0",
                "sg-11134201-821fa-mh6zxh1kkbnv34",
                "sg-11134201-821ft-mh6zxhcgs1sb77"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763428987,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5318000000,
              "price_min": 5318000000,
              "price_max": 5318000000,
              "price_min_before_discount": 11540000000,
              "price_max_before_discount": 11540000000,
              "hidden_price_display": null,
              "price_before_discount": 11540000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kioc-mcq073c5d0lw86.16000081753683394.mp4",
                  "thumb_url": "sg-11110106-6kioc-mcq073c5d0lw86_cover",
                  "duration": 35,
                  "version": 2,
                  "vid": "sg-11110106-6kioc-mcq073c5d0lw86",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kioc-mcq073c5d0lw86.16000081753683394.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kioc-mcq073c5d0lw86.16000081753683394.mp4",
                      "width": 1366,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kioc-mcq073c5d0lw86.default.mp4",
                    "width": 1024,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "silvery 1",
                    "black 1",
                    "rose gold 1",
                    "gold 1",
                    "blue 1",
                    "Silver Black 1",
                    "Silver Gold 1",
                    "Silver Rose Gold 1",
                    "silvery 2",
                    "black 2",
                    "rose gold 2",
                    "gold 2",
                    "blue 2",
                    "Silver Black 2",
                    "Silver Gold 2",
                    "Silver Rose Gold 2",
                    "Silver Black 3",
                    "Silver Gold 3",
                    "Silver Rose Gold 3"
                  ],
                  "images": [
                    "sg-11134201-821eg-mh6zxty1n9cff7",
                    "sg-11134201-821eo-mh6zxu861eywd6",
                    "sg-11134201-821ge-mh6zxugj9f6499",
                    "sg-11134201-821fp-mh6zxuove1vt1a",
                    "sg-11134201-821e9-mh6zxux7d5hma7",
                    "sg-11134201-821dv-mh6zxf6q7xn29c",
                    "sg-11134201-821d4-mh6zxvfull3eab",
                    "sg-11134201-821fo-mh6zxvosjgug87",
                    "sg-11134201-821eu-mh6zxvxkfkzzd6",
                    "sg-11134201-821dx-mh6zxwa60ufda4",
                    "sg-11134201-821g5-mh6zxwien3m353",
                    "sg-11134201-821d8-mh6zxwrfxs7dd7",
                    "sg-11134201-821f1-mh6zxx0oexag03",
                    "sg-11134201-821el-mh6zxx9pjy19c7",
                    "sg-11134201-821cw-mh6zxxve5ngt6c",
                    "sg-11134201-821cz-mh6zxy7yt79n90",
                    "sg-11134201-821ed-mh6zxyhkwkjwa0",
                    "sg-11134201-821f4-mh6zxyqjco3xfc",
                    "sg-11134201-821dt-mh6zxz0j3pqkdd"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 5 Active",
                    "Redmi Watch 5 Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 374887344785170,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5318000000,
                "strikethrough_price": 11540000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 234610735635,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 11540000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 53.180",
                      "hidden_promotion_price": "Rp ?3.180",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "I LOVE LUO",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53951584180,
            "shopid": 1344420450,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821dh-mh6zxc298idr8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1718093079,1119699,700765096,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1157,\"model_id\":234610735635,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821dh-mh6zxc298idr8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1718093079,1119699,700765096,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1157,\"model_id\":234610735635,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53951584180",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53051584137,
              "shopid": 1191507022,
              "name": "Soft TPU / PC Tempered Glass / Diamond Case for Smartwatch Huawei Watch Fit 4 / Huawei Watch Fit 4 Pro Anti Gores Bumper Screen Protector Cover Accessories Jam Tangan Smartwatch for Huawei Fit 4",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                700765096,
                298933384,
                700810080,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-821d9-mh6zwtjlyuj02a",
              "images": [
                "sg-11134201-821d9-mh6zwtjlyuj02a",
                "sg-11134201-821fk-mh6zwtyesxs949",
                "sg-11134201-821fx-mh6zwu9tqwi03f",
                "sg-11134201-821ga-mh6zwung1wqwea",
                "sg-11134201-821gc-mh6zwv5anbihc2",
                "sg-11134201-821f3-mh6zwvdxl34e46",
                "sg-11134201-821eo-mh6zwvo4zcwc76",
                "sg-11134201-821ez-mh6zwvy63kek38",
                "sg-11134201-821fx-mh6zwwf2a0p75f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763428959,
              "sold": 3,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2530000000,
              "price_min": 2530000000,
              "price_max": 2530000000,
              "price_min_before_discount": 3600000000,
              "price_max_before_discount": 3600000000,
              "hidden_price_display": null,
              "price_before_discount": 3600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-30%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Transparent 1",
                    "Silver color 1",
                    "Black 1",
                    "Black plated 1",
                    "White Ivory 1",
                    "Pink sakura 1",
                    "Green Pine needle 1",
                    "Blue 1",
                    "Titanium steel 2",
                    "Starlight 2",
                    "Sampanye emas 2",
                    "Green Pine needle 2",
                    "Midnight blue 2",
                    "Black 2",
                    "Transparent 3",
                    "Silver color 3",
                    "Black 3",
                    "Gold rose gold 3",
                    "Gold 3",
                    "Starlight 3",
                    "Rose powder 3",
                    "Transparent 4",
                    "Black 4",
                    "Silver color 4",
                    "Rose powder 4",
                    "Midnight blue 4",
                    "Starlight 4",
                    "Clear white 5",
                    "Black transparent 5",
                    "Orange bening 5",
                    "Clear Blue 5",
                    "Purple Bening 5",
                    "Transparent 6",
                    "Silver color 6",
                    "Black 6",
                    "Space Gray 6",
                    "Gold rose gold 6",
                    "Pink 6",
                    "Gold 6",
                    "Midnight blue 6",
                    "Red 7",
                    "Pink 7",
                    "Purple 7",
                    "Starlights 7",
                    "Gold 7",
                    "Gold rose gold 7",
                    "Black 7",
                    "Silver color 7",
                    "Film 8"
                  ],
                  "images": [
                    "sg-11134201-821dn-mh6zx9bde1hk1b",
                    "sg-11134201-821dg-mh6zx9p2xlan6a",
                    "sg-11134201-821ff-mh6zxa4hupze33",
                    "sg-11134201-821g0-mh6zxaics5qge6",
                    "sg-11134201-821ee-mh6zxay0ljwr57",
                    "sg-11134201-821cy-mh6zxbdumbymb9",
                    "sg-11134201-821er-mh6zxbwyxyq761",
                    "sg-11134201-821g9-mh6zxcouaxvwa6",
                    "sg-11134201-821dh-mh6zxdbbb8qy29",
                    "sg-11134201-821cy-mh6zxdy2urd55f",
                    "sg-11134201-821g9-mh6zxei08wsr8e",
                    "sg-11134201-821dy-mh6zxeyf9csr73",
                    "sg-11134201-821gb-mh6zxfdgbtvve4",
                    "sg-11134201-821e0-mh6zxfwil3pma9",
                    "sg-11134201-821fe-mh6zxgahrlsf49",
                    "sg-11134201-821fp-mh6zxgoifj0t59",
                    "sg-11134201-821fi-mh6zxh2zrabz86",
                    "sg-11134201-821g3-mh6zxhhwq9s855",
                    "sg-11134201-821e1-mh6zxhyklkpa32",
                    "sg-11134201-821e3-mh6zxiegly4o54",
                    "sg-11134201-821d5-mh6zxiwdqntb3b",
                    "sg-11134201-821d5-mh6zxjcrqjgo41",
                    "sg-11134201-821d7-mh6zxjrrshsdc7",
                    "sg-11134201-821ge-mh6zxk5bg0zybc",
                    "sg-11134201-821el-mh6zxkmbiy328f",
                    "sg-11134201-821ei-mh6zxl2p69sec1",
                    "sg-11134201-821d0-mh6zxlh4mk950f",
                    "sg-11134201-821dz-mh6zxlu85vrg2e",
                    "sg-11134201-821ft-mh6zxm69np5767",
                    "sg-11134201-821g9-mh6zxmjchs0b6d",
                    "sg-11134201-821cx-mh6zxmww2i31a4",
                    "sg-11134201-821e2-mh6zxn9figp814",
                    "sg-11134201-821g2-mh6zxnnbasy24c",
                    "sg-11134201-821dl-mh6zxo5nq58p1d",
                    "sg-11134201-821ga-mh6zxoj1ixoqf1",
                    "sg-11134201-821do-mh6zxow7lk3xab",
                    "sg-11134201-821ff-mh6zxpa3gphm08",
                    "sg-11134201-821cx-mh6zxpnx2fil78",
                    "sg-11134201-821e0-mh6zxq17l89bdd",
                    "sg-11134201-821dq-mh6zxqfafrpq85",
                    "sg-11134201-821e2-mh6zxqwt3cp941",
                    "sg-11134201-821er-mh6zxrd7y8086e",
                    "sg-11134201-821et-mh6zxrshiwwc4c",
                    "sg-11134201-821dr-mh6zxs8ho6iz01",
                    "sg-11134201-821fn-mh6zxsrm19fy43",
                    "sg-11134201-821da-mh6zxt9wv0gda5",
                    "sg-11134201-821em-mh6zxtpow3yn32",
                    "sg-11134201-821du-mh6zxu7rhfkce9",
                    "sg-11134201-821f8-mh6zxun5qoln2f"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei Fit 4",
                    "Huawei Fit 4 Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2530000000,
                "strikethrough_price": 3600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-30%",
                "model_id": 385145678716,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3600000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 25.300",
                      "hidden_promotion_price": "Rp ?5.300",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RCAT STORE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53051584137,
            "shopid": 1191507022,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821d9-mh6zwtjlyuj02a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,298933384,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2148,\"model_id\":385145678716,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821d9-mh6zwtjlyuj02a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,298933384,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2148,\"model_id\":385145678716,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53051584137",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46001604081,
              "shopid": 1191507022,
              "name": "Silicone Band Rubber Strap for Apple Watch Ultra / SE 3 2 Series 11 10 9 8 7 6 5 4 3 IWatch 49mm 46 45 44 42 41 40 38mm Soft Replacement Belt Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2023641,
                2018619,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                700765096,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-821g8-mh6zwsf5963263",
              "images": [
                "sg-11134201-821g8-mh6zwsf5963263",
                "sg-11134201-821dm-mh6zwsuumqyy97",
                "sg-11134201-821cw-mh6zwt8u7cb119",
                "sg-11134201-821cx-mh6zwtmayubv4b",
                "sg-11134201-821f9-mh6zwtxlcglp0e",
                "sg-11134201-821eb-mh6zwu8pppu0a3",
                "sg-11134201-821ga-mh6zwuneyj9o10",
                "sg-11134201-821fg-mh6zwv1gfyfhd7",
                "sg-11134201-821dd-mh6zwvfrpzpmf1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763428958,
              "sold": 3,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1337000000,
              "price_min": 1337000000,
              "price_max": 1337000000,
              "price_min_before_discount": 2200000000,
              "price_max_before_discount": 2200000000,
              "hidden_price_display": null,
              "price_before_discount": 2200000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-39%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16000081749696144.mp4",
                  "thumb_url": "sg-11110106-6kio8-maw4ytflch9ed3_cover",
                  "duration": 15,
                  "version": 2,
                  "vid": "sg-11110106-6kio8-maw4ytflch9ed3",
                  "formats": [
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004081756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004081756725327.mp4",
                      "width": 640,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006711756726107.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006711756726107.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006731756726107.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006731756726107.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004091756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004091756725327.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16000081749696144.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16000081749696144.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16003251756726107.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16003251756726107.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004101756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004101756725327.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004111756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004111756725327.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600724,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007241766639118.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007241766639118.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600725,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007251766639118.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007251766639118.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black color",
                    "White color",
                    "Powder sand",
                    "Midnight blue",
                    "Cattus",
                    "Purple color",
                    "Yellow color",
                    "Gray color",
                    "Clover",
                    "Lavender",
                    "Star Light",
                    "Red color",
                    "Marine foam",
                    "Midnight",
                    "Cherry",
                    "Walnut",
                    "Heather Gray",
                    "Blue color",
                    "Pink Barbie",
                    "orange",
                    "dark blue",
                    "Water Squeegee"
                  ],
                  "images": [
                    "sg-11134201-821f8-mh6zx83w33f15f",
                    "sg-11134201-821f0-mh6zx8dho7bjb3",
                    "sg-11134201-821e9-mh6zx8mrtqtq3d",
                    "sg-11134201-821fa-mh6zx8wt0pvvc4",
                    "sg-11134201-821eb-mh6zx97t4wsvf3",
                    "sg-11134201-821eg-mh6zx9jikn4f19",
                    "sg-11134201-821ds-mh6zx9ucbtvt57",
                    "sg-11134201-821e1-mh6zxa4iwnbf98",
                    "sg-11134201-821cx-mh6zxagnbtan23",
                    "sg-11134201-821ee-mh6zxaqz6ayy08",
                    "sg-11134201-821ew-mh6zxb1cqih7f1",
                    "sg-11134201-821gf-mh6zxbiu9eksf7",
                    "sg-11134201-821dg-mh6zxc22pxjf40",
                    "sg-11134201-821fi-mh6zxcqj7mdq43",
                    "sg-11134201-821db-mh6zxd7s87iid6",
                    "sg-11134201-821ev-mh6zxdrog7wpd8",
                    "sg-11134201-821ge-mh6zxe8jp05me5",
                    "sg-11134201-821dm-mh6zxenoqr64bb",
                    "sg-11134201-821g3-mh6zxf41x827ee",
                    "sg-11134201-821e8-mh6zxfo62c5o36",
                    "sg-11134201-821d7-mh6zxg2539jj2e",
                    "sg-11134201-821g7-mh6zxgdmzxu3a4"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 225583573512192,
                "price": 1337000000,
                "strikethrough_price": 2200000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-39%",
                "model_id": 365145674137,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2200000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RCAT STORE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46001604081,
            "shopid": 1191507022,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821g8-mh6zwsf5963263\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1718087960,1428713,844931064601283,844931086908638,298463379,1059154,1059152,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1119699,700765096,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1964,\"model_id\":365145674137,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821g8-mh6zwsf5963263\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1718087960,1428713,844931064601283,844931086908638,298463379,1059154,1059152,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1119699,700765096,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1964,\"model_id\":365145674137,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46001604081",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44226502223,
              "shopid": 1344420450,
              "name": "20mm 22mm Silicone Strap for ADVAN Watch S3/3 Pro S2/2 Pro S1 SE 1 W2 Sport Bracelet Belt Band Tali Jam Smartwatch for Samsung Galaxy Watch/Huawei GT 6/ Garmin Watch/Amazfit Bip 6 /Aolon/Xiaomi Watch/Redmi Watch 5 Active/5 Lite/Itel 011 12",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                700765096,
                298933384,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-821fj-mh6zxc038l541d",
              "images": [
                "sg-11134201-821fj-mh6zxc038l541d",
                "sg-11134201-821du-mh6zxcznxvdbcc",
                "sg-11134201-821gc-mh6zxdjhnzeycf",
                "sg-11134201-821ee-mh6zxecnuk2168",
                "sg-11134201-821fg-mh6zxfgqr11kb0",
                "sg-11134201-821g1-mh6zxgooefwv1a",
                "sg-11134201-821ef-mh6zxhjne49467",
                "sg-11134201-821g5-mh6zxihghudla3",
                "sg-11134201-824i5-me45ewlnri8326"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763428988,
              "sold": 5,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1494000000,
              "price_min": 1494000000,
              "price_max": 1494000000,
              "price_min_before_discount": 3018000000,
              "price_max_before_discount": 3018000000,
              "hidden_price_display": null,
              "price_before_discount": 3018000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16000081705915134.mp4",
                  "thumb_url": "sg-11110106-7rcc2-lqswae7h3t43c6",
                  "duration": 27,
                  "version": 2,
                  "vid": "sg-11110106-6khy4-lqswa7dn0e2t7d",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16003221718126133.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16003221718126133.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002401708629178.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002401708629178.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004081708629119.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004081708629119.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16006711723606724.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16006711723606724.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16006731724462989.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16006731724462989.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004091708629131.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004091708629131.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600266,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002661723338884.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002661723338884.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002411708629189.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002411708629189.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600265,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002651723338874.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002651723338874.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16006591723338936.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16006591723338936.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16000081705915134.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16000081705915134.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16003241710556974.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16003241710556974.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16003251710556974.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16003251710556974.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004101708629131.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004101708629131.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004111708629131.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16004111708629131.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600267,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002671723338884.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16002671723338884.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16005581710556974.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16005581710556974.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16005681708629131.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.16005681708629131.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lqswa7dn0e2t7d.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black(strap)",
                    "Orange(strap)",
                    "Yellow(strap)",
                    "White(strap)",
                    "Pink Sands(strap)",
                    "Midnight blue(strap)",
                    "Indigo(strap)",
                    "Grey(strap)",
                    "Light blue(strap)",
                    "red(strap)"
                  ],
                  "images": [
                    "sg-11134201-821cw-mh6zxvpkwm4p52",
                    "sg-11134201-821d1-mh6zxwkkptziad",
                    "sg-11134201-821e2-mh6zxxa9q5mze9",
                    "sg-11134201-821ed-mh6zxy2ifj0pba",
                    "sg-11134201-821eo-mh6zxyuobpxobd",
                    "sg-11134201-821ef-mh6zy08puexb61",
                    "sg-11134201-821ey-mh6zy15mitjdc6",
                    "sg-11134201-821e2-mh6zy1ute0pbcb",
                    "sg-11134201-821gd-mh6zy2ks6yh5cb",
                    "sg-11134201-821fq-mh6zy38lb7k8fc"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm Watch Band",
                    "22mm Watch Band",
                    "ADVAN Watch Band"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 225233764364288,
                "price": 1494000000,
                "strikethrough_price": 3018000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 262167242551,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3018000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "I LOVE LUO",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44226502223,
            "shopid": 1344420450,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fj-mh6zxc038l541d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1718093079,1119699,700765096,298933384,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2051,\"model_id\":262167242551,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fj-mh6zxc038l541d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1718093079,1119699,700765096,298933384,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2051,\"model_id\":262167242551,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44226502223",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45551596682,
              "shopid": 1670656282,
              "name": "Jam Tangan Anak Smartwatch Z1 Edisi Terbatas SOS Layar IP67Tahan Air 1,44 Inci Baterai Tahan Lama Pagar Pengaman untuk Anak Laki-laki dan Perempuan dengan Fitur SOS dan Panggilan",
              "label_ids": [
                844931064601283,
                844931086908638,
                1718093079,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298463379,
                298933384,
                1718087960,
                1428713,
                2023641,
                2018619,
                1400285055,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224z-mh6rj7ddtz4b81",
              "images": [
                "id-11134207-8224z-mh6rj7ddtz4b81",
                "id-11134207-8224s-mh6rj7d3ylfy5e",
                "id-11134207-8224w-mh6rj7d5d5vz1e",
                "id-11134207-8224y-mh6rj7dffkend4",
                "id-11134207-8224t-mh6rj7d99mo914",
                "id-11134207-8224u-mh6rj7d5ekgf9b",
                "id-11134207-82250-mh6qhq5y25u757",
                "id-11134207-8224q-mh6rj7fr7dopd1",
                "id-11134207-8224p-mh6rj7fr8s95d8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763415516,
              "sold": 10,
              "historical_sold": 10,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 8,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 15600000000,
              "price_min": 15600000000,
              "price_max": 15600000000,
              "price_min_before_discount": 82666600000,
              "price_max_before_discount": 82666600000,
              "hidden_price_display": null,
              "price_before_discount": 82666600000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-81%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vend-mh6rjzujmbrg68.16000101763414910.mp4",
                  "thumb_url": "id-11110105-6vend-mh6rjzujmbrg68_cover",
                  "duration": 56,
                  "version": 2,
                  "vid": "id-11110105-6vend-mh6rjzujmbrg68",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vend-mh6rjzujmbrg68.16000101763414910.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vend-mh6rjzujmbrg68.16000101763414910.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vend-mh6rjzujmbrg68.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "pink",
                    "blue",
                    "black",
                    "Biru",
                    "Hitam",
                    "Merah Muda",
                    "Warna Acak"
                  ],
                  "images": [
                    "id-11134207-8224y-mh6rj7fra6tl70",
                    "id-11134207-8224s-mh6rj7frble18c",
                    "id-11134207-8224w-mh6rj7frczyhc2",
                    "id-11134207-8224q-mh6rj7freeixb1",
                    "id-11134207-8224o-mh6rj7frft3d9b",
                    "id-11134207-8224t-mh6rj7frh7nt6a",
                    "id-11134207-8224v-mh6rj7frim89ba"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.5,
                "rating_count": [
                  8,
                  1,
                  0,
                  0,
                  0,
                  7
                ],
                "rcount_with_context": 6,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228237309652993,
                "price": 15011200000,
                "strikethrough_price": 82666600000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1288987386069024,
                "discount_text": "-81%",
                "model_id": 335144844292,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1288987386069024,
                  "voucher_code": "RBR0AA567",
                  "voucher_discount": 588800000,
                  "time_info": {
                    "start_time": 1763118900,
                    "end_time": 1771233300,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 15000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 82666600000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10,
                "rounded_local_monthly_sold_count": 10,
                "local_monthly_sold_count_text": "10",
                "rounded_display_sold_count": 10,
                "display_sold_count_text": "10"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Galeri Digital Cerdas",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45551596682,
            "shopid": 1670656282,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mh6rj7ddtz4b81\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,298463379,298933384,1718087960,1428713,2023641,2018619,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1326,\"model_id\":335144844292,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mh6rj7ddtz4b81\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,298463379,298933384,1718087960,1428713,2023641,2018619,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1326,\"model_id\":335144844292,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45551596682",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47151560866,
              "shopid": 1605105130,
              "name": "100%Original Smartwatch Serie S10/S11 mini 38mm Smart Watch 10 Jam Pintar Olahraga Bluetooth SmartWatch Wanita SmartWatch Pria IP68 Tahan Air Jam Tangan Pintar Monitor Detak Jantung Jam Tangan Digital Wanita iPhone smartwatch Couple",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1400285055,
                1015914,
                700190087,
                2018619,
                700700063,
                298463379,
                1718093079,
                298933384,
                298888358,
                298938357,
                2098628,
                298938368,
                298468389,
                2098629,
                1718088045
              ],
              "image": "id-11134207-8224w-mitsoatgvxmvd0",
              "images": [
                "id-11134207-8224w-mitsoatgvxmvd0",
                "id-11134207-82250-mh5wgb3w4l55de",
                "id-11134207-8224y-mh5wgb3vw5qh82",
                "id-11134207-8224r-mh5wgb3vxkax97",
                "id-11134207-8224o-mh5wgb3vyyvd96",
                "id-11134207-8224y-mh5wgb3w0dft00",
                "id-11134207-82250-mh5wgb3w1s0931",
                "id-11134207-8224q-mh5wgb3w36kpb6",
                "id-11134207-82252-mh5wgb3vur61f7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763367927,
              "sold": 290,
              "historical_sold": 469,
              "liked": false,
              "liked_count": 233,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 140,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 13000000000,
              "price_min": 13000000000,
              "price_max": 13000000000,
              "price_min_before_discount": 150000000000,
              "price_max_before_discount": 150000000000,
              "hidden_price_display": null,
              "price_before_discount": 150000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": ">90% off",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven9-mh5wj9xwwwen1b.16000081763362755.mp4",
                  "thumb_url": "id-11110105-6ven9-mh5wj9xwwwen1b_cover",
                  "duration": 54,
                  "version": 2,
                  "vid": "id-11110105-6ven9-mh5wj9xwwwen1b",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven9-mh5wj9xwwwen1b.16000081763362755.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven9-mh5wj9xwwwen1b.16000081763362755.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven9-mh5wj9xwwwen1b.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "S10 PRO-Black",
                    "S10 PRO-Silver",
                    "S10 PRO-Pink",
                    "S10 PRO-Red",
                    "S10 PRO-Blue",
                    "S10 PRO-Grey",
                    "black.",
                    "silver.",
                    "pink.",
                    "S9 PRO-Black",
                    "S9 PRO-Pink",
                    "S9 PRO-Sliver",
                    "S11 PRO-Black",
                    "S11 PRO-Blue",
                    "S11 PRO-Grey",
                    "S11 PRO-Sliver",
                    "S11 PRO-Pink",
                    "S11 PRO-Red"
                  ],
                  "images": [
                    "id-11134207-8224v-mh5wgb3w5zpl50",
                    "id-11134207-8224q-mh5wgb3w7ea169",
                    "id-11134207-8224z-mh5zh18ccnwpbd",
                    "id-11134207-8224u-mh5zh18cpb0o1e",
                    "id-11134207-8224p-mh5zh18cqpl4ee",
                    "id-11134207-8224v-mh5zh18cs45k86",
                    "id-11134207-82250-mh5zh18ctiq097",
                    "id-11134207-8224s-mh5zh18cuxag02",
                    "id-11134207-8224o-mh5zh18cwbuw45",
                    "id-11134207-8224z-mh5zh18cxqfc23",
                    "id-11134207-8224y-mh5zh18cz4zs8b",
                    "id-11134207-8224y-mh5zh18d0jk8a9",
                    "id-11134207-8224u-mh5zi3s7clqi3e",
                    "id-11134207-8224x-mh5zh18d1y4of3",
                    "id-11134207-8224y-mh5zi3s57ci3cf",
                    "id-11134207-8224y-mh5zh18d0jk8a9",
                    "id-11134207-8224x-mie7gusbwooy2b",
                    "id-11134207-8224u-mie7gutrn9q994"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.5928571428571425,
                "rating_count": [
                  140,
                  3,
                  6,
                  7,
                  13,
                  111
                ],
                "rcount_with_context": 39,
                "rcount_with_image": 34
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 394526737056021,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp20RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227855552495616,
                "price": 12500000000,
                "strikethrough_price": 150000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1322241497776156,
                "discount_text": ">90% off",
                "model_id": 315141473938,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1322241497776156,
                  "voucher_code": "NJ60LKJHG",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1767083220,
                    "end_time": 1772270820,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 150000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 469,
                "rounded_local_monthly_sold_count": 290,
                "local_monthly_sold_count_text": "290",
                "rounded_display_sold_count": 469,
                "display_sold_count_text": "469"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp20RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Dai Dai Watch Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47151560866,
            "shopid": 1605105130,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mitsoatgvxmvd0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1400285055,1015914,700190087,2018619,700700063,298463379,1718093079,298933384,298888358,298938357,2098628,298938368,298468389,2098629,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":581,\"model_id\":315141473938,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mitsoatgvxmvd0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1400285055,1015914,700190087,2018619,700700063,298463379,1718093079,298933384,298888358,298938357,2098628,298938368,298468389,2098629,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":581,\"model_id\":315141473938,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47151560866",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51401512577,
              "shopid": 1638654557,
              "name": "[Baru Garansi 1 tahun] MAGNUM FAN Jam Tangan watch 8 Ultra 47mm LTPO3 OLCD Max Multifunctiona Bluetooth call Pengingat pemberitahuan Data olahraga wireless charging Smart watch pria wanita Pemantauan Kesehatan Analisis tidur Support Android&iOS",
              "label_ids": [
                298938357,
                2018618,
                298888358,
                844931086908638,
                844931064601283,
                700005495,
                700005490,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                2213652,
                1428713,
                1718087960,
                1015914,
                700190087,
                298463379,
                825465608492064,
                2098629,
                298468389,
                1718088045,
                2098628,
                298938368
              ],
              "image": "id-11134207-82252-mh5p2mzj124t67",
              "images": [
                "id-11134207-82252-mh5p2mzj124t67",
                "id-11134207-8224s-mh5p2mzj2gp935",
                "id-11134207-8224p-mh5p2mzj6oelc5",
                "id-11134207-8224z-mh5pi8g8817261",
                "id-11134207-8224x-mh5pi8g2okjs1d",
                "id-11134207-82250-mh5pi8gnfuof24",
                "id-11134207-8224u-mh5pi8gn4m4o38",
                "id-11134207-8224w-mh5p2mzj3v9pdd",
                "id-11134207-82252-mh5p2mzj59u5c3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763351765,
              "sold": 1,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 29,
              "view_count": null,
              "catid": 100013,
              "brand": "MAGNUM FAN",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 63900000000,
              "price_min": 63900000000,
              "price_max": 63900000000,
              "price_min_before_discount": 189000000000,
              "price_max_before_discount": 189000000000,
              "hidden_price_display": null,
              "price_before_discount": 189000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-66%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv6-mh5plrn3rb491b.16000081763351134.mp4",
                  "thumb_url": "id-11110105-6vdv6-mh5plrn3rb491b_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6vdv6-mh5plrn3rb491b",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv6-mh5plrn3rb491b.16000081763351134.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv6-mh5plrn3rb491b.16000081763351134.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv6-mh5plrn3rb491b.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Variation1",
                  "options": [
                    "Blue-47mm",
                    "Black-47mm",
                    "orange-47mm",
                    "White-47mm",
                    "Blue_47mm",
                    "Black_47mm",
                    "orange_47mm",
                    "White_47mm"
                  ],
                  "images": [
                    "id-11134207-8224t-mh5pi8gqd79o2e",
                    "id-11134207-8224t-mh5pi8gqelu4e4",
                    "id-11134207-8224q-mh5pi8gqg0eka5",
                    "id-11134207-8224q-mh5pi8gqhez0fb",
                    "id-11134207-8224r-mh5pi8gqitjgeb",
                    "id-11134207-82250-mh5pi8gqk83wcb",
                    "id-11134207-82250-mh5pi8gqlmocce",
                    "id-11134207-8224y-mh5pi8gqn18sd4"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 394800176312365,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp89RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227943972618244,
                "price": 53900000000,
                "strikethrough_price": 189000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1290980049305600,
                "discount_text": "-66%",
                "model_id": 355139605439,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1290980049305600,
                  "voucher_code": "MAGNFDSFS",
                  "voucher_discount": 10000000000,
                  "time_info": {
                    "start_time": 1763356500,
                    "end_time": 1771395300,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 50000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 189000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp89RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MAGNUM FAN Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51401512577,
            "shopid": 1638654557,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mh5p2mzj124t67\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298938357,2018618,298888358,844931086908638,844931064601283,700005495,700005490,1718093079,822059908662278,825465608497696,825465608499232,1119699,2213652,1428713,1718087960,1015914,700190087,298463379,825465608492064,2098629,298468389,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":628,\"model_id\":355139605439,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mh5p2mzj124t67\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298938357,2018618,298888358,844931086908638,844931064601283,700005495,700005490,1718093079,822059908662278,825465608497696,825465608499232,1119699,2213652,1428713,1718087960,1015914,700190087,298463379,825465608492064,2098629,298468389,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":628,\"model_id\":355139605439,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51401512577",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53401463863,
              "shopid": 1150111835,
              "name": "Waterproof Full 1.85 Inch Bluetooth Ultra Hd 8 Touch Screen Nfc Smartwatch Call Watch",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699
              ],
              "image": "id-11134207-7r98u-lsxt7m8gng0p70",
              "images": [
                "id-11134207-7r98u-lsxt7m8gng0p70",
                "id-11134207-7r992-lstmo2x0t4xyc2",
                "id-11134207-7r991-lstmo2x0qbwta8",
                "id-11134201-7qukz-lk53pmz7onx71e",
                "id-11134201-7qul1-lk53pmvvtj6vcc",
                "id-11134201-7qul5-lk53pljvrs73ef",
                "id-11134201-7qukz-lk53pkp30ul436",
                "id-11134201-7qul6-lk53pjbz0q4j9e",
                "id-11134201-7quky-lk53pjkunq7z6e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763219141,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 13300000000,
              "price_min": 13300000000,
              "price_max": 13300000000,
              "price_min_before_discount": 28157900000,
              "price_max_before_discount": 28157900000,
              "hidden_price_display": null,
              "price_before_discount": 28157900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Watch8 Ultra-Oranye",
                    "Watch8 Ultra-Hitam",
                    "Watch8 Pro-Hitam"
                  ],
                  "images": [
                    "id-11134201-7qula-lk53pjuu93xm73",
                    "id-11134201-7qukz-lk53pj4rba3329",
                    "id-11134207-7r98v-luvkvchd7mvxc6"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 768602450477056,
                "price": 12970000000,
                "strikethrough_price": 28157900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1288241152278540,
                "discount_text": "-53%",
                "model_id": 420134468510,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1288241152278540,
                  "voucher_code": "45PEBAGTQ",
                  "voucher_discount": 330000000,
                  "time_info": {
                    "start_time": 1763030040,
                    "end_time": 1771146000,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 12000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 28157900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Cyberland",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53401463863,
            "shopid": 1150111835,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-lsxt7m8gng0p70\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,700005490,1049120,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2287,\"model_id\":420134468510,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-lsxt7m8gng0p70\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,700005490,1049120,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2287,\"model_id\":420134468510,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53401463863",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40426455306,
              "shopid": 1670656282,
              "name": "NEW DEALS [100% ORIGINAL]Smartwatch anak Z6-Q19 Smartwatch anak Jam tangan pintar Watch Children Kamera ganda",
              "label_ids": [
                844931086908638,
                844931064601283,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298463379,
                298933384,
                1718087960,
                1428713,
                1400285055,
                2023641,
                1015914,
                700190087,
                2018619,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82251-mhrihhq2cbnpd3",
              "images": [
                "id-11134207-82251-mhrihhq2cbnpd3",
                "id-11134207-8224y-mh39ebxc1kw81c",
                "id-11134207-8224u-mh39ebxc5slk49",
                "id-11134207-8224p-mh39ebxc4e14b5",
                "id-11134207-8224x-mh39ebxm6sjs10",
                "id-11134207-8224z-mh39ebxc06bs56",
                "id-11134207-8224z-mh39ebxc2zgo25",
                "id-11134207-8224v-mh39ebxbyrrc1f",
                "id-11134207-8224r-mh39ebxbxd6wa6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763207773,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 15700000000,
              "price_min": 15700000000,
              "price_max": 15700000000,
              "price_min_before_discount": 89999900000,
              "price_max_before_discount": 89999900000,
              "hidden_price_display": null,
              "price_before_discount": 89999900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-83%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venc-mh3c1bcex3wp2b.16000101763207210.mp4",
                  "thumb_url": "id-11110105-6venc-mh3c1bcex3wp2b_cover",
                  "duration": 55,
                  "version": 2,
                  "vid": "id-11110105-6venc-mh3c1bcex3wp2b",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venc-mh3c1bcex3wp2b.16000101763207210.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venc-mh3c1bcex3wp2b.16000101763207210.mp4",
                      "width": 960,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venc-mh3c1bcex3wp2b.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "pink",
                    "black",
                    "blue",
                    "redblue",
                    "green",
                    "purple",
                    "purple-1"
                  ],
                  "images": [
                    "id-11134207-8224u-mh3c07n8rt3i7c",
                    "id-11134207-82251-mh3c07n8t7nyb2",
                    "id-11134207-8224t-mh3c07n8um8ea1",
                    "id-11134207-8224z-mh3c07n8w0suf2",
                    "id-11134207-8224p-mh3c07n8xfdac2",
                    "id-11134207-8224y-mh3c07n8ytxq8f",
                    "id-11134207-8224w-mh3c07n908i6d7"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228237309652993,
                "price": 15111200000,
                "strikethrough_price": 89999900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1288987386069024,
                "discount_text": "-83%",
                "model_id": 345133969436,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1288987386069024,
                  "voucher_code": "RBR0AA567",
                  "voucher_discount": 588800000,
                  "time_info": {
                    "start_time": 1763118900,
                    "end_time": 1771233300,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 15000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 89999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Galeri Digital Cerdas",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40426455306,
            "shopid": 1670656282,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mhrihhq2cbnpd3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1119699,298463379,298933384,1718087960,1428713,1400285055,2023641,1015914,700190087,2018619,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":926,\"model_id\":345133969436,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mhrihhq2cbnpd3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1119699,298463379,298933384,1718087960,1428713,1400285055,2023641,1015914,700190087,2018619,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":926,\"model_id\":345133969436,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40426455306",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47551475157,
              "shopid": 1344414745,
              "name": "PC Case +Milanese Loop Metal Strap for Redmi Watch 5 Active / 5 Lite Anti Gores Hard Screen Protector Bumper Cover 22mm Quick ReleaseStainless Steel Band Accessories Tali Jam Tangan Smartwatch for Xiaomi Redmi Watch 5 Active / Redmi Watch 5 Lite",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                1119699,
                700765096,
                298933384,
                1400285055,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-821ea-mh33294kt98o03",
              "images": [
                "sg-11134201-821ea-mh33294kt98o03",
                "sg-11134201-821f4-mh3329xguj2m15",
                "sg-11134201-821d3-mh332arrsxl7b2",
                "sg-11134201-821fg-mh332bjke6fh19",
                "sg-11134201-821dd-mh332c6302kq7c",
                "sg-11134201-821cx-mh332cz4kt1ref",
                "sg-11134201-821dy-mh332dpvv5e547",
                "sg-11134201-821ea-mh332e67r9jh94",
                "sg-11134201-821cx-mh332enh4hs971"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763192124,
              "sold": 20,
              "historical_sold": 31,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 10,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4453000000,
              "price_min": 4453000000,
              "price_max": 4453000000,
              "price_min_before_discount": 8000000000,
              "price_max_before_discount": 8000000000,
              "hidden_price_display": null,
              "price_before_discount": 8000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-44%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8j8-mf6obk5kjz0rf4.16000081759050991.mp4",
                  "thumb_url": "sg-11110106-6v8j8-mf6obk5kjz0rf4_cover",
                  "duration": 26,
                  "version": 2,
                  "vid": "sg-11110106-6v8j8-mf6obk5kjz0rf4",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8j8-mf6obk5kjz0rf4.16000081759050991.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8j8-mf6obk5kjz0rf4.16000081759050991.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8j8-mf6obk5kjz0rf4.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Transparent+Gold",
                    "Transparent+Porcel",
                    "Transparent+Colorful",
                    "Transparent+Barbie",
                    "Transparent+Red",
                    "Transparent+Sky Blue",
                    "Transparent+Lavender",
                    "Starlight+rose gold",
                    "Starlight+retro gold",
                    "Starlight Color+Pink",
                    "Silver+Silver",
                    "black + black",
                    "Black+Space Grey",
                    "Midnight+Midnight",
                    "Rose pink+Rose pink",
                    "gold",
                    "rose gold",
                    "black",
                    "silvery",
                    "Lavender",
                    "Light Pink",
                    "sky blue",
                    "Space Gray",
                    "Pine needle green",
                    "dark green",
                    "gunmetal",
                    "multicolor",
                    "rose pink",
                    "Antique white",
                    "blue",
                    "brown",
                    "wine red",
                    "Old Gold",
                    "Porcelain Blue",
                    "orange",
                    "grass green",
                    "tortoise",
                    "Barbie pink",
                    "Transparent",
                    "black 1",
                    "Silver",
                    "Starlight",
                    "Midnight Blue",
                    "Rose pink 1"
                  ],
                  "images": [
                    "sg-11134201-821ga-mh332rxdssg89c",
                    "sg-11134201-821d0-mh332shial8t02",
                    "sg-11134201-821dc-mh332syg42yx03",
                    "sg-11134201-821d6-mh332tinxa16ef",
                    "sg-11134201-821fm-mh332u2rlkwb45",
                    "sg-11134201-821el-mh332unhijgo52",
                    "sg-11134201-821dz-mh332v56lxqm23",
                    "sg-11134201-821ds-mh332vqz5gy32a",
                    "sg-11134201-821g8-mh332wbulxqj52",
                    "sg-11134201-821fw-mh332wvujci5a7",
                    "sg-11134201-821dq-mh332xdsketoa5",
                    "sg-11134201-821dk-mh332xw09sem29",
                    "sg-11134201-821fj-mh332ydsivimd9",
                    "sg-11134201-821f8-mh332yxgzcwf6c",
                    "sg-11134201-821d9-mh332zhvi5myd1",
                    "sg-11134201-821fu-mh333017cz610a",
                    "sg-11134201-821dv-mh3330hyxog930",
                    "sg-11134201-821d4-mh3330zqpzwp64",
                    "sg-11134201-821do-mh3331j8l1qmea",
                    "sg-11134201-821f9-mh33322d7ymnb9",
                    "sg-11134201-821dl-mh3332yx6g3t35",
                    "sg-11134201-821el-mh3333myrk0f91",
                    "sg-11134201-821ej-mh33345mjlzh3d",
                    "sg-11134201-821dy-mh3334mbwahbcb",
                    "sg-11134201-821eu-mh33350tc7wt62",
                    "sg-11134201-821fu-mh3335hxwpvwff",
                    "sg-11134201-821dq-mh333607n4zz28",
                    "sg-11134201-821fu-mh3336mj86xa8a",
                    "sg-11134201-821g9-mh33375hqkni39",
                    "sg-11134201-821fr-mh3337lxaolm32",
                    "sg-11134201-821f0-mh33383a6f4e76",
                    "sg-11134201-821f3-mh3338k6cwzu26",
                    "sg-11134201-821ev-mh333931h3bj20",
                    "sg-11134201-821f3-mh3339tk7rpq01",
                    "sg-11134201-821df-mh333adm69l6f4",
                    "sg-11134201-821eu-mh333aveuw3tab",
                    "sg-11134201-821f9-mh333bcw6psfd3",
                    "sg-11134201-821dn-mh333bx1f7d54c",
                    "sg-11134201-821g2-mh333cal5gjt76",
                    "sg-11134201-821fy-mh333cqgm6153e",
                    "sg-11134201-821e0-mh333d6m9hqh20",
                    "sg-11134201-821cz-mh333dml4g7gad",
                    "sg-11134201-821eg-mh333e3yiej1a7",
                    "sg-11134201-821fg-mh333ekxuoelba"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 5 Active",
                    "Redmi Watch 5 Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.8,
                "rating_count": [
                  10,
                  0,
                  0,
                  1,
                  0,
                  9
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 4453000000,
                "strikethrough_price": 8000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-44%",
                "model_id": 340132891244,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 8000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 44.530",
                      "hidden_promotion_price": "Rp ?4.530",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 31,
                "rounded_local_monthly_sold_count": 20,
                "local_monthly_sold_count_text": "20",
                "rounded_display_sold_count": 31,
                "display_sold_count_text": "31"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "LCAPLE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47551475157,
            "shopid": 1344414745,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821ea-mh33294kt98o03\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1119699,700765096,298933384,1400285055,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2001,\"model_id\":340132891244,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821ea-mh33294kt98o03\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1119699,700765096,298933384,1400285055,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2001,\"model_id\":340132891244,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47551475157",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26493600284,
              "shopid": 1631595150,
              "name": "[Garansi 1 tahun] [Terlaris] HUAWEI Smart Watch GT8 Monitor Monitor Detak Jantung Dust Resistant Full Touch Screen Phone Call IP68 Water GPS smartwatch Pria Wanita IOS Android Jam Tangan Digital Pria Bluetooth Phone Olahraga Jam Tangan Couple",
              "label_ids": [
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                298933384,
                1015914,
                700190087,
                1400285055,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224r-mhlpoh0w3y88f8",
              "images": [
                "id-11134207-8224r-mhlpoh0w3y88f8",
                "id-11134207-8224s-mhlpoh0w9ki030",
                "id-11134207-8224z-mhlpoh0wcdmwc4",
                "id-11134207-8224p-mhlpoh0waz2gb2",
                "id-11134207-8224y-mhlpoh0wds7c79",
                "id-11134207-82251-mhlpoh0w5csof3",
                "id-11134207-8224u-mhlpoh0wf6rsc1",
                "id-11134207-82250-mhlpoh0w6rd4c4",
                "id-11134207-8224z-mhlpoh0w85xk2c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763176357,
              "sold": 15,
              "historical_sold": 20,
              "liked": false,
              "liked_count": 29,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 10,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 31900000000,
              "price_min": 31900000000,
              "price_max": 31900000000,
              "price_min_before_discount": 63800000000,
              "price_max_before_discount": 63800000000,
              "hidden_price_display": null,
              "price_before_discount": 63800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "Black",
                    "Silver"
                  ],
                  "images": [
                    "id-11134207-8224r-mhlpoh0wglc89d",
                    "id-11134207-8224w-mhlq7zk0eebme1"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.5,
                "rating_count": [
                  10,
                  0,
                  1,
                  1,
                  0,
                  8
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 393722957410477,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 787434330193920,
                "price": 26900000000,
                "strikethrough_price": 63800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1304139436277760,
                "discount_text": "-50%",
                "model_id": 390220109728,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1304139436277760,
                  "voucher_code": "ZBI0YT",
                  "voucher_discount": 5000000000,
                  "time_info": {
                    "start_time": 1764924780,
                    "end_time": 1772964060,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 23000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 63800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 20,
                "rounded_local_monthly_sold_count": 15,
                "local_monthly_sold_count_text": "15",
                "rounded_display_sold_count": 20,
                "display_sold_count_text": "20"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Teknologi Kapur",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26493600284,
            "shopid": 1631595150,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mhlpoh0w3y88f8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,1119699,298933384,1015914,700190087,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2463,\"model_id\":390220109728,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mhlpoh0w3y88f8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,1119699,298933384,1015914,700190087,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2463,\"model_id\":390220109728,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26493600284",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28893579444,
              "shopid": 1670656282,
              "name": "Anti Air Jam tangan anak 4G Video call telepon anak Gps Digital anak Waterproof Kids Smart Watch",
              "label_ids": [
                844931064601283,
                844931086908638,
                1119699,
                1718093079,
                298463379,
                1428713,
                1718087960,
                2023641,
                2018619,
                298933384,
                1059152,
                1049122,
                822059908662278,
                825465608497696,
                825465608499232,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82250-mh39ebxbvymga2",
              "images": [
                "id-11134207-82250-mh39ebxbvymga2",
                "id-11134207-8224w-mh1xnp9f3jey01",
                "id-11134207-8224v-mh1xnp9f0qa294",
                "id-11134207-8224p-mh1xnp9f95oq94",
                "id-11134207-8224o-mh1xzd98aryl98",
                "id-11134207-8224p-mh1xnp9f6cju36",
                "id-11134207-8224z-mh1xnp9f7r4a61",
                "id-11134207-8224q-mh1xnp9f4xze6d",
                "id-11134207-8224u-mh1xnp9f24uifb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763124328,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 33800000000,
              "price_min": 33800000000,
              "price_max": 33800000000,
              "price_min_before_discount": 108888800000,
              "price_max_before_discount": 108888800000,
              "hidden_price_display": null,
              "price_before_discount": 108888800000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-69%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvl-mhlli5ofekud0f.16000101764312750.mp4",
                  "thumb_url": "id-11110105-6vdvl-mhlli5ofekud0f_cover",
                  "duration": 56,
                  "version": 2,
                  "vid": "id-11110105-6vdvl-mhlli5ofekud0f",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvl-mhlli5ofekud0f.16000101764312750.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvl-mhlli5ofekud0f.16000101764312750.mp4",
                      "width": 960,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvl-mhlli5ofekud0f.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "black",
                    "blue",
                    "pink",
                    "Warna Acak"
                  ],
                  "images": [
                    "id-11134207-8224s-mizt28e26qyp9f",
                    "id-11134207-8224w-mizt28e25ce9e6",
                    "id-11134207-8224x-mizt28e23xtt6c",
                    "id-11134207-8224u-mh1xzd98eznsd8"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228237309652993,
                "price": 33211200000,
                "strikethrough_price": 108888800000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1288987386069024,
                "discount_text": "-69%",
                "model_id": 292157631549,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1288987386069024,
                  "voucher_code": "RBR0AA567",
                  "voucher_discount": 588800000,
                  "time_info": {
                    "start_time": 1763118900,
                    "end_time": 1771233300,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 15000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 108888800000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Galeri Digital Cerdas",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 28893579444,
            "shopid": 1670656282,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mh39ebxbvymga2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1119699,1718093079,298463379,1428713,1718087960,2023641,2018619,298933384,1059152,1049122,822059908662278,825465608497696,825465608499232,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1888,\"model_id\":292157631549,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mh39ebxbvymga2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1119699,1718093079,298463379,1428713,1718087960,2023641,2018619,298933384,1059152,1049122,822059908662278,825465608497696,825465608499232,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1888,\"model_id\":292157631549,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28893579444",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56801398829,
              "shopid": 1344444411,
              "name": "PC Case Metal Stainless Steel Milanese Loop Strap for Redmi Watch 5 Active / 5 Lite Anti Gores Hard Screen Protector Bumper Cover 22mm Quick Release Band Accessories Tali Jam Tangan Smartwatch for Xiaomi Redmi Watch 5 Active / Redmi Watch 5 Lite",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                700765096,
                298933384,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-821eu-mh1tqs8gq2o9f0",
              "images": [
                "sg-11134201-821eu-mh1tqs8gq2o9f0",
                "sg-11134201-821e3-mh1tqsh32rrg23",
                "sg-11134201-821d9-mh1tqsz1572l56",
                "sg-11134201-821fw-mh1tqt91io7e45",
                "sg-11134201-821f0-mh1tqtgwhamlcd",
                "sg-11134201-821g7-mh1tqtrgzksv7a",
                "sg-11134201-821fw-mh1tqu04v21b66",
                "sg-11134201-821g9-mh1tqu9wjaj3fb",
                "sg-11134201-821dn-mh1tquj2trt7bf"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763115916,
              "sold": 4,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4453000000,
              "price_min": 4453000000,
              "price_max": 4453000000,
              "price_min_before_discount": 8000000000,
              "price_max_before_discount": 8000000000,
              "hidden_price_display": null,
              "price_before_discount": 8000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-44%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8j8-mf6obk5kjz0rf4.16000081759050991.mp4",
                  "thumb_url": "sg-11110106-6v8j8-mf6obk5kjz0rf4_cover",
                  "duration": 26,
                  "version": 2,
                  "vid": "sg-11110106-6v8j8-mf6obk5kjz0rf4",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8j8-mf6obk5kjz0rf4.16000081759050991.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8j8-mf6obk5kjz0rf4.16000081759050991.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8j8-mf6obk5kjz0rf4.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Transparent+Gold",
                    "Transparent+Porcel",
                    "Transparent+Colorful",
                    "Transparent+Barbie",
                    "Transparent+Red",
                    "Transparent+Sky Blue",
                    "Transparent+Lavender",
                    "Starlight+rose gold",
                    "Starlight+retro gold",
                    "Starlight Color+Pink",
                    "Silver+Silver",
                    "black + black",
                    "Black+Space Grey",
                    "Midnight+Midnight",
                    "Rose pink+Rose pink",
                    "gold",
                    "rose gold",
                    "black",
                    "silvery",
                    "Lavender",
                    "Light Pink",
                    "sky blue",
                    "Space Gray",
                    "Pine needle green",
                    "dark green",
                    "gunmetal",
                    "multicolor",
                    "rose pink",
                    "Antique white",
                    "blue",
                    "brown",
                    "wine red",
                    "Old Gold",
                    "Porcelain Blue",
                    "orange",
                    "grass green",
                    "tortoise",
                    "Barbie pink",
                    "Transparent",
                    "black 1",
                    "Silver",
                    "Starlight",
                    "Midnight Blue",
                    "Rose pink 1"
                  ],
                  "images": [
                    "sg-11134201-821ej-mh1tr7e9fpjj3a",
                    "sg-11134201-821ge-mh1tr7yd9moaa5",
                    "sg-11134201-821d6-mh1tr8abpxcc41",
                    "sg-11134201-821e0-mh1tr8ktc7wo3e",
                    "sg-11134201-821d9-mh1tr8x11f6529",
                    "sg-11134201-821di-mh1tr985zpca91",
                    "sg-11134201-821ga-mh1tr9iggzkdbf",
                    "sg-11134201-821fg-mh1tr9t46gax8c",
                    "sg-11134201-821g9-mh1tra4fdixa50",
                    "sg-11134201-821ff-mh1traefr1n0a2",
                    "sg-11134201-821g8-mh1tran35o22b6",
                    "sg-11134201-821en-mh1traxbuakr46",
                    "sg-11134201-821ea-mh1trb6y1vkc47",
                    "sg-11134201-821f3-mh1trbg744qw99",
                    "sg-11134201-821dp-mh1trbqh35l943",
                    "sg-11134201-821dl-mh1trc0eyqdme8",
                    "sg-11134201-821el-mh1trc9qptl86a",
                    "sg-11134201-821de-mh1trchthdla9b",
                    "sg-11134201-821eq-mh1trcoy11jdf3",
                    "sg-11134201-821gb-mh1trcy44hzhe8",
                    "sg-11134201-821fn-mh1trda7q7m12a",
                    "sg-11134201-821dz-mh1trdksqr67d9",
                    "sg-11134201-821eu-mh1trdtptqfj5c",
                    "sg-11134201-821ef-mh1tre3l5yq096",
                    "sg-11134201-821ft-mh1trec12w3we6",
                    "sg-11134201-821fr-mh1trejr0cum69",
                    "sg-11134201-821e8-mh1tres9ul8tf5",
                    "sg-11134201-821fh-mh1trf0nta8dd4",
                    "sg-11134201-821ek-mh1trf8p0p3ced",
                    "sg-11134201-821ez-mh1trfgcn8qya5",
                    "sg-11134201-821f0-mh1trfqxp6vi91",
                    "sg-11134201-821e6-mh1trfz1mubv00",
                    "sg-11134201-821ew-mh1trg7smozy3e",
                    "sg-11134201-821eu-mh1trghjn3ez63",
                    "sg-11134201-821gb-mh1trgqbt34cb5",
                    "sg-11134201-821gf-mh1trh1c72fc52",
                    "sg-11134201-821do-mh1trha7emfj18",
                    "sg-11134201-821e3-mh1trhjd3zm403",
                    "sg-11134201-821f4-mh1trhrquarx65",
                    "sg-11134201-821fc-mh1tri5i2akp4a",
                    "sg-11134201-821fj-mh1tricoabdb0d",
                    "sg-11134201-821eo-mh1triqi093g8d",
                    "sg-11134201-821ga-mh1triy60sunc6",
                    "sg-11134201-821dx-mh1trjq8itxpf5"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 5 Active",
                    "Redmi Watch 5 Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 4453000000,
                "strikethrough_price": 8000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-44%",
                "model_id": 320128836924,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 8000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 44.530",
                      "hidden_promotion_price": "Rp ?4.530",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RMUTANE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56801398829,
            "shopid": 1344444411,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821eu-mh1tqs8gq2o9f0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1119699,700765096,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2142,\"model_id\":320128836924,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821eu-mh1tqs8gq2o9f0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1119699,700765096,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2142,\"model_id\":320128836924,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56801398829",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 58151379796,
              "shopid": 1589132922,
              "name": "PC Cover With Temepred Glass Case for Jam Tangan Apple Watch Ultra/SE 3 2 IWatch Series 11 10 9 8 7 6 5 4 49 46 45 44 42mm 41mm 40mm 38mm Anti Gores Screen Protector Hard Protective Bumper Cover Accessories for Smartwatch I8 Pro Max 8 MAX 9 PRO S20 T500",
              "label_ids": [
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                2023641,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-821fo-mh1lpoii66fg36",
              "images": [
                "sg-11134201-821fo-mh1lpoii66fg36",
                "sg-11134201-821dd-mh1lpoou2tjfa3",
                "sg-11134201-821fv-mh1lpoushhqh5a",
                "sg-11134201-821dq-mh1lpp1hgp3db0",
                "sg-11134201-821fd-mh1lpp7oj47h15",
                "sg-11134201-821d0-mh1lpped74lp19",
                "sg-11134201-821fs-mh1lppl8do976a",
                "sg-11134201-821g1-mh1lppr3uya671",
                "sg-11134201-821fy-mh1lppy8ya6gce"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763102411,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1568000000,
              "price_min": 1568000000,
              "price_max": 1568000000,
              "price_min_before_discount": 3500000000,
              "price_max_before_discount": 3500000000,
              "hidden_price_display": null,
              "price_before_discount": 3500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-55%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16000081706251701.mp4",
                  "thumb_url": "sg-11110106-7rcer-lqygg27qwq7u03",
                  "duration": 26,
                  "version": 2,
                  "vid": "sg-11110106-6khxb-lqygfzdctrq805",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16003221712886906.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16003221712886906.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16004081707249596.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16004081707249596.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16002401707249769.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16002401707249769.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16006711723612227.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16006711723612227.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16006731724150137.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16006731724150137.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16002411707249778.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16002411707249778.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16004091707249604.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16004091707249604.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16006591743076783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16006591743076783.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16000081706251701.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16000081706251701.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16003241707136771.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16003241707136771.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16003251707136771.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16003251707136771.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16004111707249604.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16004111707249604.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16004101707249604.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16004101707249604.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Starlight",
                    "Bright silver",
                    "Transparent",
                    "Black",
                    "White",
                    "Mindnight blue",
                    "Dark green",
                    "Rose",
                    "Pink",
                    "red",
                    "wine"
                  ],
                  "images": [
                    "sg-11134201-821fr-mh1lq2ndlrm128",
                    "sg-11134201-821e5-mh1lq2xv9ibyed",
                    "sg-11134201-821ez-mh1lq3biuvbg6b",
                    "sg-11134201-821d2-mh1lq3nzdfri3d",
                    "sg-11134201-821de-mh1lq41w0q2xef",
                    "sg-11134201-821eu-mh1lq4gn6ex40c",
                    "sg-11134201-821fa-mh1lq4qp2o7c79",
                    "sg-11134201-821ft-mh1lq58l5eyzaf",
                    "sg-11134201-821dw-mh1lq5lyel1k60",
                    "sg-11134201-821fm-mh1lq61tilu64a",
                    "sg-11134201-821f1-mh1lq6ce7yffd6"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Variation",
                  "options": [
                    "40mm",
                    "42mm",
                    "38mm",
                    "41mm",
                    "44mm",
                    "45mm",
                    "49mm",
                    "42mm Series 11 10",
                    "46mm Series 11 10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 1568000000,
                "strikethrough_price": 3500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-55%",
                "model_id": 320127359881,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 15.680",
                      "hidden_promotion_price": "Rp ?5.680",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "FEGLYNN",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 58151379796,
            "shopid": 1589132922,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fo-mh1lpoii66fg36\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,2023641,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1754,\"model_id\":320127359881,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fo-mh1lpoii66fg36\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,2023641,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1754,\"model_id\":320127359881,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_58151379796",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48101410018,
              "shopid": 1347110061,
              "name": "Charger Converter for COROS PACE 2 3 / APEX 1 2 PRO / VERTIX 1 2 Sport Watch (Charging Adapter Type-C Adaptor)",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1428713,
                1718087960,
                298933384,
                825465608493600,
                298463379,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-821da-mh1lnv5rfmrx60",
              "images": [
                "sg-11134201-821da-mh1lnv5rfmrx60",
                "sg-11134201-821dg-mh1lnv4u2osvae",
                "sg-11134201-821fz-mh1lnv4a0owf57",
                "sg-11134201-821d3-mh1lnv3g39qi30",
                "sg-11134201-821ef-mh1lnv4059my07",
                "sg-11134201-821dx-mh1lnv4sa13f29",
                "sg-11134201-821d4-mh1lnv3j0mbx09",
                "sg-11134201-821fb-mh1lnv6i79xr00",
                "sg-11134201-821fd-mh1lnv4wq7f015"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763102470,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5500000000,
              "price_min": 5500000000,
              "price_max": 5500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 5500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 302156391485,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "gLogy",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48101410018,
            "shopid": 1347110061,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821da-mh1lnv5rfmrx60\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699,1428713,1718087960,298933384,825465608493600,298463379,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":264,\"model_id\":302156391485,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821da-mh1lnv5rfmrx60\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699,1428713,1718087960,298933384,825465608493600,298463379,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":264,\"model_id\":302156391485,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48101410018",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50851374951,
              "shopid": 350552797,
              "name": "Charger Converter for COROS PACE 2 3 / APEX 1 2 PRO / VERTIX 1 2 Sport Watch (Charging Adapter Type-C Adaptor)",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1400285055,
                298933384,
                825465608493600,
                1015914,
                700190087
              ],
              "image": "sg-11134201-821fd-mh1lmv2qjken0c",
              "images": [
                "sg-11134201-821fd-mh1lmv2qjken0c",
                "sg-11134201-821dk-mh1lmv4dktn03d",
                "sg-11134201-821eo-mh1lmv2f5eks9e",
                "sg-11134201-821ec-mh1lmv2pc0ssc3",
                "sg-11134201-821eb-mh1lmv2ztvk906",
                "sg-11134201-821cy-mh1lmv2fkutl40",
                "sg-11134201-821d2-mh1lmv26erdb1e",
                "sg-11134201-821ds-mh1lmv3y4kqwd7",
                "sg-11134201-821d2-mh1lmv31gvf2b7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763102329,
              "sold": 37,
              "historical_sold": 46,
              "liked": false,
              "liked_count": 11,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 15,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5500000000,
              "price_min": 5500000000,
              "price_max": 5500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venf-mhwrueuqe61447.16000081764989292.mp4",
                  "thumb_url": "id-11110105-6venf-mhwrueuqe61447_cover",
                  "duration": 38,
                  "version": 2,
                  "vid": "id-11110105-6venf-mhwrueuqe61447",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venf-mhwrueuqe61447.16000081764989292.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venf-mhwrueuqe61447.16000081764989292.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venf-mhwrueuqe61447.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  15,
                  0,
                  0,
                  0,
                  0,
                  15
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 5500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 365127356755,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 46,
                "rounded_local_monthly_sold_count": 37,
                "local_monthly_sold_count_text": "37",
                "rounded_display_sold_count": 46,
                "display_sold_count_text": "46"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HOP Market",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50851374951,
            "shopid": 350552797,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fd-mh1lmv2qjken0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699,1400285055,298933384,825465608493600,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":2204,\"model_id\":365127356755,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fd-mh1lmv2qjken0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699,1400285055,298933384,825465608493600,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":2204,\"model_id\":365127356755,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50851374951",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28193590069,
              "shopid": 304902524,
              "name": "Ray-Ban x Meta Wayfarer Gen 2 (2025) Smart Glasses Kacamata Pintar Meta AI",
              "label_ids": [
                2023641,
                2018619,
                844931064601283,
                298463379,
                1718093079,
                1400066568,
                700005489,
                1059152,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                825465608492064,
                825465608493600,
                1119699,
                1015914,
                700190087,
                1400285055,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-821es-mh1lomgsjdotba",
              "images": [
                "sg-11134201-821es-mh1lomgsjdotba",
                "sg-11134201-821e1-mh1lomxtwp3jb9",
                "sg-11134201-821dw-mh1lon2e6bymff",
                "sg-11134201-821d1-mh1lona6soaw52",
                "sg-11134201-821df-mh1lonimpk3x30",
                "sg-11134201-821ea-mh1lonvapv669d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763102361,
              "sold": 13,
              "historical_sold": 20,
              "liked": false,
              "liked_count": 235,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 5,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 920600000000,
              "price_min": 920600000000,
              "price_max": 920600000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Ukuran",
                  "options": [
                    "Medium",
                    "Large"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Warna",
                  "options": [
                    "Black + Green",
                    "Black + Trans Green",
                    "Blue + Trans Saphire",
                    "Matte Black + Clear",
                    "Matt Blk+Polar Grpht",
                    "Matt Blk+Trns Grpht"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 415532885226688,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 920600000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 350127366408,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 920600000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 20,
                "rounded_local_monthly_sold_count": 13,
                "local_monthly_sold_count_text": "13",
                "rounded_display_sold_count": 20,
                "display_sold_count_text": "20"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Studio Ponsel ",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTgwY2VjNzhiYzQwMDQyMWRhMTAwOjAyMDAwMDkwNzY2OWM3OGY6MDEwMDAxNjM2YjE4ZDQxNX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 28193590069,
            "shopid": 304902524,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821es-mh1lomgsjdotba\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,844931064601283,298463379,1718093079,1400066568,700005489,1059152,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,825465608492064,825465608493600,1119699,1015914,700190087,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1709,\"model_id\":350127366408,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821es-mh1lomgsjdotba\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,844931064601283,298463379,1718093079,1400066568,700005489,1059152,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,825465608492064,825465608493600,1119699,1015914,700190087,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1709,\"model_id\":350127366408,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28193590069",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44276403144,
              "shopid": 1347110061,
              "name": "HOWN Silicone Strap for COROS PACE Pro Tali Jam Silikon Rubber GPS Sport Watch PacePRO",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1428713,
                1718087960,
                298933384,
                825465608493600,
                298463379,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-821fi-mh5rgszlq5n23c",
              "images": [
                "sg-11134201-821fi-mh5rgszlq5n23c",
                "sg-11134201-821d0-mh5rgt1dpuko34",
                "sg-11134201-821g6-mh5rgt1uovm6a5",
                "sg-11134201-821fo-mh5rgszx9zbd32",
                "sg-11134201-821fe-mh5rgszzp2iw38",
                "sg-11134201-821fe-mh5rgsz7sowaa0",
                "sg-11134201-821dx-mh5rgsxp4suh1c",
                "sg-11134201-821fm-mh5rgszz87pr1c",
                "sg-11134201-821fy-mh5rgszrywi0c5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763102159,
              "sold": 0,
              "historical_sold": 7,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3990000000,
              "price_min": 3990000000,
              "price_max": 3990000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color Variant",
                  "options": [
                    "Black",
                    "Grey",
                    "Black Orange",
                    "Black Red",
                    "Dark Blue",
                    "Black Green"
                  ],
                  "images": [
                    "sg-11134201-821fr-mh5rgsp0r0nic7",
                    "sg-11134201-821f1-mh5rgsossgsrb7",
                    "sg-11134201-821e7-mh5rgspauvbgd8",
                    "sg-11134201-821g2-mh5rgsou9vyn75",
                    "sg-11134201-821f2-mh5rgsol9erx15",
                    "sg-11134201-821dm-mh5rgsoqq2a48f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 3990000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 370127337872,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3990000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 7,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 7,
                "display_sold_count_text": "7"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "gLogy",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44276403144,
            "shopid": 1347110061,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fi-mh5rgszlq5n23c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699,1428713,1718087960,298933384,825465608493600,298463379,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2312,\"model_id\":370127337872,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fi-mh5rgszlq5n23c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699,1428713,1718087960,298933384,825465608493600,298463379,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2312,\"model_id\":370127337872,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44276403144",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42126415397,
              "shopid": 1663422694,
              "name": "Bisa hotspot / Bisa video Call Casio M16 Smartwatch  LDS 5G Sim Card Wifi 6+256GB PlayStore Bluetooth GPS NFC Full Touch Screen Phone Call IP68 Waterproof Wireless Charge Sport Jam Tangan Wanita Smart Watch Pria Jam Tangan Couple Android Watch",
              "label_ids": [
                844931064601283,
                844931086908638,
                822059908662278,
                825465608499232,
                825465608497696,
                1718087960,
                1428713,
                1718093079,
                1400285055,
                2023641,
                298463379,
                1015914,
                700190087,
                1049116,
                700005516,
                2018619,
                298933384,
                2218763,
                700700063,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224p-mhikl6s41c79be",
              "images": [
                "id-11134207-8224p-mhikl6s41c79be",
                "sg-11134201-821ga-mh1ejmfx4z6198",
                "sg-11134201-821di-mh1ejmn8z9qnf2",
                "sg-11134201-821di-mh1ejmv22gwf32",
                "sg-11134201-821ez-mh1ejn3e76ru0f",
                "sg-11134201-821ey-mh1ejndb277xa6",
                "sg-11134201-821g2-mh1ejnlr4qvc41",
                "sg-11134201-821e9-mh1ejnuo6bk80f",
                "sg-11134201-821ga-mh1ejo2dvbbi5b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763090361,
              "sold": 25,
              "historical_sold": 58,
              "liked": false,
              "liked_count": 224,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 28,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 15899900000,
              "price_min": 15899900000,
              "price_max": 15899900000,
              "price_min_before_discount": 100000000000,
              "price_max_before_discount": 100000000000,
              "hidden_price_display": null,
              "price_before_discount": 100000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-84%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven3-mh1kjka71pu1fe.16000081763100460.mp4",
                  "thumb_url": "id-11110105-6ven3-mh1kjka71pu1fe_cover",
                  "duration": 58,
                  "version": 2,
                  "vid": "id-11110105-6ven3-mh1kjka71pu1fe",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven3-mh1kjka71pu1fe.16000081763100460.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven3-mh1kjka71pu1fe.16000081763100460.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven3-mh1kjka71pu1fe.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black SIM",
                    "Gray SIM",
                    "Bluetooth Black",
                    "SIM BIA"
                  ],
                  "images": [
                    "id-11134207-8224p-mi9zk8ldurk8d1",
                    "id-11134207-8224y-mi9zk8ldw64o37",
                    "id-11134207-8224s-mjge0tpjfric53",
                    "id-11134207-8224z-mhsfwfgvbojn30"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.642857142857143,
                "rating_count": [
                  28,
                  2,
                  0,
                  0,
                  2,
                  24
                ],
                "rcount_with_context": 19,
                "rcount_with_image": 18
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 393414709621000,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Sidoarjo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 786829545095168,
                "price": 15899900000,
                "strikethrough_price": 100000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-84%",
                "model_id": 425126358297,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 100000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 58,
                "rounded_local_monthly_sold_count": 25,
                "local_monthly_sold_count_text": "25",
                "rounded_display_sold_count": 58,
                "display_sold_count_text": "58"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Casi Production Watch Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42126415397,
            "shopid": 1663422694,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mhikl6s41c79be\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,822059908662278,825465608499232,825465608497696,1718087960,1428713,1718093079,1400285055,2023641,298463379,1015914,700190087,1049116,700005516,2018619,298933384,2218763,700700063,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2351,\"model_id\":425126358297,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mhikl6s41c79be\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,822059908662278,825465608499232,825465608497696,1718087960,1428713,1718093079,1400285055,2023641,298463379,1015914,700190087,1049116,700005516,2018619,298933384,2218763,700700063,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2351,\"model_id\":425126358297,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42126415397",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49201401463,
              "shopid": 1589132922,
              "name": "Soft Silicone Strap for Huawei Watch Fit 4 Pro / Huawei Watch Fit 4 Replacement Sport Rubber Band Wristband Belt Bracelet Accessories for Tali Jam Tangan Smartwatch Huawei Watch Fit 3",
              "label_ids": [
                844931086908638,
                844931064601283,
                298463379,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1119699,
                298933384,
                1400285055,
                2023641,
                2103651,
                2143613,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-821fx-mh1d7fn8lu6m5f",
              "images": [
                "sg-11134201-821fx-mh1d7fn8lu6m5f",
                "sg-11134201-821eh-mh1d7gckjn66c1",
                "sg-11134201-821dp-mh1d7gysrw9771",
                "sg-11134201-821fi-mh1d7hwfwphq9f",
                "sg-11134201-821g2-mh1d7ikbzo5q50",
                "sg-11134201-821ei-mh1d7j56ct1ka7",
                "sg-11134201-821fh-mh1d7jphznrf24",
                "sg-11134201-821eb-mh1d7kaucavi0e",
                "sg-11134201-821e4-mh1d7l0i2bdab6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763088111,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2208000000,
              "price_min": 2208000000,
              "price_max": 2208000000,
              "price_min_before_discount": 4800000000,
              "price_max_before_discount": 4800000000,
              "hidden_price_display": null,
              "price_before_discount": 4800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "light green",
                    "orange",
                    "red",
                    "blue",
                    "midnight",
                    "green",
                    "star",
                    "yellow",
                    "pink",
                    "purple",
                    "light blue",
                    "white",
                    "black",
                    "Case(TPU)"
                  ],
                  "images": [
                    "sg-11134201-821fq-mh1d7xl62sqz5d",
                    "sg-11134201-821d5-mh1d7y0r08wa94",
                    "sg-11134201-821fg-mh1d7yh4uia7e7",
                    "sg-11134201-821ee-mh1d7yush9u5d1",
                    "sg-11134201-821fp-mh1d7zc9ggehc6",
                    "sg-11134201-821d9-mh1d7zqnclqmb9",
                    "sg-11134201-821d1-mh1d809bk5ji99",
                    "sg-11134201-821cz-mh1d80svnbbg11",
                    "sg-11134201-821fj-mh1d81ds8fezd0",
                    "sg-11134201-821e3-mh1d81vx7ito77",
                    "sg-11134201-821fr-mh1d82e7esr23d",
                    "sg-11134201-821fx-mh1d82q0tszyef",
                    "sg-11134201-821d6-mh1d83484irtcd",
                    "sg-11134201-821f4-mh1d83gjnc3z0d"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei Fit 4 Pro",
                    "Huawei Fit 4",
                    "Huawei Fit 3"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2208000000,
                "strikethrough_price": 4800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 355126149009,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4800000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 22.080",
                      "hidden_promotion_price": "Rp ?2.080",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "FEGLYNN",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49201401463,
            "shopid": 1589132922,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fx-mh1d7fn8lu6m5f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699,298933384,1400285055,2023641,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2298,\"model_id\":355126149009,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fx-mh1d7fn8lu6m5f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699,298933384,1400285055,2023641,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2298,\"model_id\":355126149009,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49201401463",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48301349810,
              "shopid": 1174572300,
              "name": "Soft Case Strap for Redmi Watch 5 Active / 5 Lite Anti Gores Silicone Rubber Screen Protector Cover Band Accessories Tali Jam Tangan Smartwatch for Xiaomi Redmi Watch 5 Active/ Redmi Watch 5 Lite",
              "label_ids": [
                2018619,
                2023641,
                298938357,
                298888358,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1059152,
                1059154,
                822059908662278,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                298463379,
                1718093079,
                700765096,
                1119699,
                298933384,
                2103651,
                2143613,
                298938368,
                2098629,
                2098628,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-821ew-mh0pkpn4frbi53",
              "images": [
                "sg-11134201-821ew-mh0pkpn4frbi53",
                "sg-11134201-821fn-mh0pkr0bsow918",
                "sg-11134201-821ea-mh0pksboh0cr85",
                "sg-11134201-821d4-mh0pkt8mtuz12e",
                "sg-11134201-821fm-mh0pktz0t62x3a",
                "sg-11134201-821em-mh0pkupjh2x64d",
                "sg-11134201-821dt-mh0pkvigvk7c86",
                "sg-11134201-821d7-mh0pkwm2kkqw48",
                "sg-11134201-821ev-mh0pkxa86bke5e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763048379,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4260000000,
              "price_min": 4260000000,
              "price_max": 4260000000,
              "price_min_before_discount": 5000000000,
              "price_max_before_discount": 5000000000,
              "hidden_price_display": null,
              "price_before_discount": 5000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-15%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9a8-mgm2pjnq93igc7.16000081762162440.mp4",
                  "thumb_url": "sg-11110106-6v9a8-mgm2pjnq93igc7_cover",
                  "duration": 11,
                  "version": 2,
                  "vid": "sg-11110106-6v9a8-mgm2pjnq93igc7",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9a8-mgm2pjnq93igc7.16000081762162440.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9a8-mgm2pjnq93igc7.16000081762162440.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9a8-mgm2pjnq93igc7.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "White 1",
                    "Mint Green 1",
                    "Coconut ash 1",
                    "Green Pine needle 1",
                    "Midnight blue 1",
                    "Black 1",
                    "White Ivory 1",
                    "Powder sand 1",
                    "wine red 1",
                    "Army Green 2",
                    "Wine color 2",
                    "Rose powder 2",
                    "Teal 2",
                    "Blue 2",
                    "Beige 2",
                    "Amber 2 ",
                    "Gray 2",
                    "White 2",
                    "Black 2",
                    "Orange 3",
                    "Deep space Blue 3",
                    "Green Pine Needle 3",
                    "Ivory White 3",
                    "Red 3",
                    "Stretch blue 3",
                    "Purple Lavender 3",
                    "Mint Green 3",
                    "Lime green 3",
                    "Coconut ash 3",
                    "Pink sakura 3",
                    "3 White",
                    "Black 3",
                    "2*Film"
                  ],
                  "images": [
                    "sg-11134201-821g1-mh0plaiih8nj9e",
                    "sg-11134201-821e8-mh0plb7jylfzdf",
                    "sg-11134201-821e3-mh0plbqpyo7efe",
                    "sg-11134201-821fw-mh0plcbydfyh7a",
                    "sg-11134201-821e7-mh0pld2amznu77",
                    "sg-11134201-821f9-mh0pldnqi1vwe8",
                    "sg-11134201-821g0-mh0ple6543kee2",
                    "sg-11134201-821gg-mh0pleov49hre3",
                    "sg-11134201-821fj-mh0plf8901e4a9",
                    "sg-11134201-821e7-mh0plfzoeia130",
                    "sg-11134201-821e7-mh0plgv9jzm0b3",
                    "sg-11134201-821cz-mh0plhp2iubs29",
                    "sg-11134201-821d8-mh0pliflayvh14",
                    "sg-11134201-821dj-mh0pljgbg07ga2",
                    "sg-11134201-821d7-mh0plk8abeha33",
                    "sg-11134201-821gb-mh0pll0ueuj0b2",
                    "sg-11134201-821fo-mh0pllpzemfi90",
                    "sg-11134201-821d4-mh0plmel4hs962",
                    "sg-11134201-821d6-mh0pln3vp6h61f",
                    "sg-11134201-821d1-mh0plny2po23e4",
                    "sg-11134201-821ee-mh0ploo041e0ee",
                    "sg-11134201-821e0-mh0plpcwk6x69e",
                    "sg-11134201-821dq-mh0plq3fnll536",
                    "sg-11134201-821ev-mh0plqtt7ggdcb",
                    "sg-11134201-821f6-mh0plric1dsa53",
                    "sg-11134201-821e0-mh0plsd5j0238a",
                    "sg-11134201-821dl-mh0plt239ibt9a",
                    "sg-11134201-821cy-mh0pltsdi0i039",
                    "sg-11134201-821ev-mh0pluj597nwe6",
                    "sg-11134201-821dq-mh0plv7xkgzw5a",
                    "sg-11134201-821f9-mh0plvv5dtlba8",
                    "sg-11134201-821dv-mh0plwidxte1fc",
                    "sg-11134201-821dt-mh0plx728e8c1f"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 5 Active",
                    "Redmi Watch 5 Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 4260000000,
                "strikethrough_price": 5000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-15%",
                "model_id": 177360161176,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 42.600",
                      "hidden_promotion_price": "Rp ?2.600",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KMAIXA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48301349810,
            "shopid": 1174572300,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821ew-mh0pkpn4frbi53\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298938357,298888358,1428713,1718087960,844931064601283,844931086908638,1059152,1059154,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,298463379,1718093079,700765096,1119699,298933384,2103651,2143613,298938368,2098629,2098628,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":128,\"model_id\":177360161176,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821ew-mh0pkpn4frbi53\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298938357,298888358,1428713,1718087960,844931064601283,844931086908638,1059152,1059154,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,298463379,1718093079,700765096,1119699,298933384,2103651,2143613,298938368,2098629,2098628,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":128,\"model_id\":177360161176,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48301349810",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41826364380,
              "shopid": 713701834,
              "name": "Bumper Case Huawei Band 10 TPU band 9 band 8 Softcase Huawei Band 9 Case Pelindung Layar Bahan TPU silicone",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1049112,
                1049127,
                822059908662278,
                825465608497696,
                840990690654214,
                840955085144628,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                298933384,
                2048660,
                2048661,
                700765096,
                1015914,
                700190087,
                700810080,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224y-mh0ixifge0we5b",
              "images": [
                "id-11134207-8224y-mh0ixifge0we5b",
                "id-11134207-8224u-mh0ixif6fu2xaf",
                "id-11134207-8224q-mh0ixif40qvebb",
                "id-11134207-82250-mh0ixif2f5l900",
                "id-11134207-8224t-mh0ixif2gk5pc1",
                "id-11134207-82250-mh0ixif2hyq569",
                "id-11134207-8224v-mh0ixif2jdal20",
                "id-11134207-8224q-mh0ixif2krv144"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763037954,
              "sold": 35,
              "historical_sold": 48,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 18,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1750000000,
              "price_min": 1750000000,
              "price_max": 1750000000,
              "price_min_before_discount": 2500000000,
              "price_max_before_discount": 2500000000,
              "hidden_price_display": null,
              "price_before_discount": 2500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-30%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110107/mms/id-11110107-6ven5-mhel2xnrdp8o8d.16000041763888307.mp4",
                  "thumb_url": "id-11110107-6ven5-mhel2xnrdp8o8d_cover",
                  "duration": 41,
                  "version": 2,
                  "vid": "id-11110107-6ven5-mhel2xnrdp8o8d",
                  "formats": [
                    {
                      "format": 1600004,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110107/mms/id-11110107-6ven5-mhel2xnrdp8o8d.16000041763888307.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ven5-mhel2xnrdp8o8d.16000041763888307.mp4",
                      "width": 360,
                      "height": 636
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ven5-mhel2xnrdp8o8d.default.mp4",
                    "width": 362,
                    "height": 640
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Bumper",
                  "options": [
                    "CLEAR",
                    "BLACK",
                    "BLUE",
                    "GREEN",
                    "SILVER",
                    "PINK",
                    "ROSEGOLD",
                    "GOLD"
                  ],
                  "images": [
                    "id-11134207-8224q-mh0ixif2m6fh97",
                    "id-11134207-82250-mh0ixif2nkzx5e",
                    "id-11134207-82250-mh0ixif2ozkd51",
                    "id-11134207-8224v-mh0ixif2qe4tca",
                    "id-11134207-8224p-mh0ixif2rsp9bf",
                    "id-11134207-8224q-mh0ixif2rsp7f3",
                    "id-11134207-82250-mh0ixif2t79n53",
                    "id-11134207-8224u-mh0ixif2ulu399"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.888888888888889,
                "rating_count": [
                  18,
                  0,
                  0,
                  1,
                  0,
                  17
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 815130267418624,
                "price": 1650000000,
                "strikethrough_price": 2500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1303210263330816,
                "discount_text": "-30%",
                "model_id": 292151593237,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1303210263330816,
                  "voucher_code": "SMARTOKO",
                  "voucher_discount": 100000000,
                  "time_info": {
                    "start_time": 1764814500,
                    "end_time": 1772900100,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 1000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 2500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 48,
                "rounded_local_monthly_sold_count": 35,
                "local_monthly_sold_count_text": "35",
                "rounded_display_sold_count": 48,
                "display_sold_count_text": "48"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Smartย Time",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41826364380,
            "shopid": 713701834,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mh0ixifge0we5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1049112,1049127,822059908662278,825465608497696,840990690654214,840955085144628,825465608494624,825465608499232,1718093079,1119699,298933384,2048660,2048661,700765096,1015914,700190087,700810080,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":967,\"model_id\":292151593237,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mh0ixifge0we5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1049112,1049127,822059908662278,825465608497696,840990690654214,840955085144628,825465608494624,825465608499232,1718093079,1119699,298933384,2048660,2048661,700765096,1015914,700190087,700810080,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":967,\"model_id\":292151593237,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41826364380",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53301311195,
              "shopid": 1176840059,
              "name": "Anti Gores Soft Rubber Case Band Strap for Redmi Watch 5 Active / Redmi Watch 5 Lite Silicone Screen Protector Cover Band Accessories Tali Jam Tangan Smartwatch for Xiaomi Redmi Watch 5 Active",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                700765096,
                298933384,
                700810080,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-821d9-mh0i7wyqmn0r5f",
              "images": [
                "sg-11134201-821d9-mh0i7wyqmn0r5f",
                "sg-11134201-821d2-mh0i7xvlwirt52",
                "sg-11134201-821f0-mh0i7yjfu9se8a",
                "sg-11134201-821d1-mh0i7z960s248a",
                "sg-11134201-821dv-mh0i7zzmxfri88",
                "sg-11134201-821fd-mh0i80gvshsf70",
                "sg-11134201-821d0-mh0i8148vfgud3",
                "sg-11134201-821fc-mh0i81shmya2f5",
                "sg-11134201-821g9-mh0i82f3hdzcfc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763036007,
              "sold": 6,
              "historical_sold": 9,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4260000000,
              "price_min": 4260000000,
              "price_max": 4260000000,
              "price_min_before_discount": 5000000000,
              "price_max_before_discount": 5000000000,
              "hidden_price_display": null,
              "price_before_discount": 5000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-15%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9a8-mgm2pjnq93igc7.16000081762162440.mp4",
                  "thumb_url": "sg-11110106-6v9a8-mgm2pjnq93igc7_cover",
                  "duration": 11,
                  "version": 2,
                  "vid": "sg-11110106-6v9a8-mgm2pjnq93igc7",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9a8-mgm2pjnq93igc7.16000081762162440.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9a8-mgm2pjnq93igc7.16000081762162440.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9a8-mgm2pjnq93igc7.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "White 1",
                    "Mint Green 1",
                    "Coconut ash 1",
                    "Green Pine needle 1",
                    "Midnight blue 1",
                    "Black 1",
                    "White Ivory 1",
                    "Powder sand 1",
                    "wine red 1",
                    "Army Green 2",
                    "Wine color 2",
                    "Rose powder 2",
                    "Teal 2",
                    "Blue 2",
                    "Beige 2",
                    "Amber 2 ",
                    "Gray 2",
                    "White 2",
                    "Black 2",
                    "Orange 3",
                    "Deep space Blue 3",
                    "Green Pine Needle 3",
                    "Ivory White 3",
                    "Red 3",
                    "Stretch blue 3",
                    "Purple Lavender 3",
                    "Mint Green 3",
                    "Lime green 3",
                    "Coconut ash 3",
                    "Pink sakura 3",
                    "3 White",
                    "Black 3",
                    "2*Film"
                  ],
                  "images": [
                    "sg-11134201-821e9-mh0i8f83gxe4b2",
                    "sg-11134201-821e8-mh0i8fkz4jri3f",
                    "sg-11134201-821ey-mh0i8g3uwlqg6c",
                    "sg-11134201-821dk-mh0i8glrgah6c1",
                    "sg-11134201-821d4-mh0i8gxszifi78",
                    "sg-11134201-821d0-mh0i8hawhgy458",
                    "sg-11134201-821ge-mh0i8hn81n9n86",
                    "sg-11134201-821f5-mh0i8hy713plf7",
                    "sg-11134201-821fr-mh0i8ibv632na2",
                    "sg-11134201-821et-mh0i8isefmywfc",
                    "sg-11134201-821ea-mh0i8j8j2hhmb6",
                    "sg-11134201-821cx-mh0i8jmmxjplef",
                    "sg-11134201-821f4-mh0i8jzx3qx7e4",
                    "sg-11134201-821fr-mh0i8kfze87c94",
                    "sg-11134201-821dv-mh0i8krxm3gtdb",
                    "sg-11134201-821fl-mh0i8l3d6g3s51",
                    "sg-11134201-821cx-mh0i8ldelukr1b",
                    "sg-11134201-821f4-mh0i8ls0m6188d",
                    "sg-11134201-821gc-mh0i8m16pmhb09",
                    "sg-11134201-821e1-mh0i8md07hft63",
                    "sg-11134201-821dk-mh0i8mla5gcp38",
                    "sg-11134201-821f8-mh0i8mu7mhal2d",
                    "sg-11134201-821ei-mh0i8n2yfcp9a4",
                    "sg-11134201-821dk-mh0i8nb5r95b02",
                    "sg-11134201-821cy-mh0i8njci1hq13",
                    "sg-11134201-821ds-mh0i8nqzfci01a",
                    "sg-11134201-821db-mh0i8o016ubs63",
                    "sg-11134201-821e8-mh0i8o8lcx705b",
                    "sg-11134201-821eb-mh0i8ogw1mh43e",
                    "sg-11134201-821dh-mh0i8onareh41f",
                    "sg-11134201-821g5-mh0i8ovqpqffbd",
                    "sg-11134201-821db-mh0i8p677aj391",
                    "sg-11134201-821cz-mh0i8pgcc4y363"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 5 Active",
                    "Redmi Watch 5 Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 4260000000,
                "strikethrough_price": 5000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-15%",
                "model_id": 415118849477,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 42.600",
                      "hidden_promotion_price": "Rp ?2.600",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 9,
                "rounded_local_monthly_sold_count": 6,
                "local_monthly_sold_count_text": "6",
                "rounded_display_sold_count": 9,
                "display_sold_count_text": "9"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almnvo Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53301311195,
            "shopid": 1176840059,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821d9-mh0i7wyqmn0r5f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,298933384,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2104,\"model_id\":415118849477,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821d9-mh0i7wyqmn0r5f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,298933384,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2104,\"model_id\":415118849477,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53301311195",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40676377675,
              "shopid": 1176840059,
              "name": "Sport Rubber Band for IWatch Ultra 3 2 Se 3 2 Apple Watch Series 11 10 9 8 7 6 5 4 3 49mm 46 45 44 42 41 40 38mm Soft Replacement Silicone Strap Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2023641,
                2018619,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                1718093079,
                1119699,
                700765096,
                298933384,
                1400285055,
                2103651,
                2143613,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-821fz-mh0i7wllrk7d4c",
              "images": [
                "sg-11134201-821fz-mh0i7wllrk7d4c",
                "sg-11134201-821e6-mh0i7wxwgu1761",
                "sg-11134201-821dq-mh0i7x5im03t0a",
                "sg-11134201-821ep-mh0i7xeo06bx25",
                "sg-11134201-821ge-mh0i7xnsw4qxbc",
                "sg-11134201-821e8-mh0i7xwtzsi2fb",
                "sg-11134201-821er-mh0i7y5x8phl8e",
                "sg-11134201-821g4-mh0i7yfyv37y61",
                "sg-11134201-821gc-mh0i7yo5c4qy25"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763036002,
              "sold": 1,
              "historical_sold": 7,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1337000000,
              "price_min": 1337000000,
              "price_max": 1337000000,
              "price_min_before_discount": 2200000000,
              "price_max_before_discount": 2200000000,
              "hidden_price_display": null,
              "price_before_discount": 2200000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-39%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16000081749696144.mp4",
                  "thumb_url": "sg-11110106-6kio8-maw4ytflch9ed3_cover",
                  "duration": 15,
                  "version": 2,
                  "vid": "sg-11110106-6kio8-maw4ytflch9ed3",
                  "formats": [
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004081756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004081756725327.mp4",
                      "width": 640,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006711756726107.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006711756726107.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006731756726107.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16006731756726107.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004091756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004091756725327.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16000081749696144.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16000081749696144.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16003251756726107.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16003251756726107.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004101756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004101756725327.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004111756725327.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16004111756725327.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600724,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007241766639118.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007241766639118.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600725,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007251766639118.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.16007251766639118.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio8-maw4ytflch9ed3.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black color",
                    "White color",
                    "Powder sand",
                    "Midnight blue",
                    "Cattus",
                    "Purple color",
                    "Yellow color",
                    "Gray color",
                    "Clover",
                    "Lavender",
                    "Star Light",
                    "Red color",
                    "Marine foam",
                    "Midnight",
                    "Cherry",
                    "Walnut",
                    "Heather Gray",
                    "Blue color",
                    "Pink Barbie",
                    "orange",
                    "dark blue",
                    "Water Squeegee"
                  ],
                  "images": [
                    "sg-11134201-821dk-mh0i8bgqyr65ac",
                    "sg-11134201-821fe-mh0i8bo6mpe6b6",
                    "sg-11134201-821d3-mh0i8bw7d7v022",
                    "sg-11134201-821d8-mh0i8c3i49op14",
                    "sg-11134201-821fo-mh0i8cdfn7d86b",
                    "sg-11134201-821fd-mh0i8clj5g5qb8",
                    "sg-11134201-821dz-mh0i8cs7tde5ec",
                    "sg-11134201-821dv-mh0i8czzyux452",
                    "sg-11134201-821cy-mh0i8de9khsf9c",
                    "sg-11134201-821d2-mh0i8dkwy3v064",
                    "sg-11134201-821de-mh0i8dr889vu9b",
                    "sg-11134201-821dv-mh0i8dwq7jexcf",
                    "sg-11134201-821e6-mh0i8e26wg7i5b",
                    "sg-11134201-821d9-mh0i8e7ylfkbb8",
                    "sg-11134201-821g5-mh0i8edikdmy49",
                    "sg-11134201-821en-mh0i8ekifhfs54",
                    "sg-11134201-821dm-mh0i8er70n4857",
                    "sg-11134201-821du-mh0i8eyt9zbee6",
                    "sg-11134201-821dp-mh0i8f4ifpc857",
                    "sg-11134201-821fm-mh0i8fa9z5lb34",
                    "sg-11134201-821d4-mh0i8fgwnfuy63",
                    "sg-11134201-821f8-mh0i8fpltbf32e"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.75,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  1,
                  3
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 225580020936704,
                "price": 1337000000,
                "strikethrough_price": 2200000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-39%",
                "model_id": 297151438469,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2200000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 7,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 7,
                "display_sold_count_text": "7"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almnvo Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40676377675,
            "shopid": 1176840059,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fz-mh0i7wllrk7d4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1718093079,1119699,700765096,298933384,1400285055,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1075,\"model_id\":297151438469,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fz-mh0i7wllrk7d4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1718093079,1119699,700765096,298933384,1400285055,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1075,\"model_id\":297151438469,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40676377675",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46651309999,
              "shopid": 1481886281,
              "name": "Anti Gores Soft Silicone Case Strap for Redmi Watch 5 Active / Redmi Watch 5 Lite Screen Protector Cover Rubber Band Accessories Tali Jam Tangan Smartwatch for Xiaomi Redmi Watch 5 Active",
              "label_ids": [
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                2018619,
                2023641,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                1015914,
                700190087,
                1119699,
                700765096,
                298933384,
                700810080,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-821dr-mh0alqhehi4r7f",
              "images": [
                "sg-11134201-821dr-mh0alqhehi4r7f",
                "sg-11134201-821e8-mh0alqv1lyq60e",
                "sg-11134201-821fn-mh0alr8at05o78",
                "sg-11134201-821f4-mh0alruqakgbda",
                "sg-11134201-821ga-mh0als7tpo9bd3",
                "sg-11134201-821eh-mh0alsi187bc0f",
                "sg-11134201-821dg-mh0alsswjkss1b",
                "sg-11134201-821eh-mh0alt43ak985f",
                "sg-11134201-821fn-mh0althgmhvu53"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763023199,
              "sold": 1,
              "historical_sold": 7,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4260000000,
              "price_min": 4260000000,
              "price_max": 4260000000,
              "price_min_before_discount": 5000000000,
              "price_max_before_discount": 5000000000,
              "hidden_price_display": null,
              "price_before_discount": 5000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-15%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v9a8-mgm2pjnq93igc7.16000081762162440.mp4",
                  "thumb_url": "sg-11110106-6v9a8-mgm2pjnq93igc7_cover",
                  "duration": 11,
                  "version": 2,
                  "vid": "sg-11110106-6v9a8-mgm2pjnq93igc7",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v9a8-mgm2pjnq93igc7.16000081762162440.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9a8-mgm2pjnq93igc7.16000081762162440.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9a8-mgm2pjnq93igc7.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "White 1",
                    "Mint Green 1",
                    "Coconut ash 1",
                    "Green Pine needle 1",
                    "Midnight blue 1",
                    "Black 1",
                    "White Ivory 1",
                    "Powder sand 1",
                    "wine red 1",
                    "Army Green 2",
                    "Wine color 2",
                    "Rose powder 2",
                    "Teal 2",
                    "Blue 2",
                    "Beige 2",
                    "Amber 2 ",
                    "Gray 2",
                    "White 2",
                    "Black 2",
                    "Orange 3",
                    "Deep space Blue 3",
                    "Green Pine Needle 3",
                    "Ivory White 3",
                    "Red 3",
                    "Stretch blue 3",
                    "Purple Lavender 3",
                    "Mint Green 3",
                    "Lime green 3",
                    "Coconut ash 3",
                    "Pink sakura 3",
                    "3 White",
                    "Black 3",
                    "2*Film"
                  ],
                  "images": [
                    "sg-11134201-821ej-mh0am73hhj4f5e",
                    "sg-11134201-821fl-mh0am79w1ounfb",
                    "sg-11134201-821g3-mh0am7frpy4r40",
                    "sg-11134201-821en-mh0am7ped0y417",
                    "sg-11134201-821fl-mh0am7vjr1n17f",
                    "sg-11134201-821f6-mh0am81322hbab",
                    "sg-11134201-821fg-mh0am87449ahf3",
                    "sg-11134201-821fv-mh0am8cxvqbyf5",
                    "sg-11134201-821em-mh0am8j1r0gd4b",
                    "sg-11134201-821fl-mh0am8r1wgeibc",
                    "sg-11134201-821cx-mh0am9401z49ca",
                    "sg-11134201-821e9-mh0am9chyjgq02",
                    "sg-11134201-821e3-mh0am9q45aff14",
                    "sg-11134201-821fl-mh0ama05xc0c7d",
                    "sg-11134201-821fc-mh0ama869sst30",
                    "sg-11134201-821eo-mh0amai9f09a34",
                    "sg-11134201-821ex-mh0amau92uj0f9",
                    "sg-11134201-821eo-mh0amb2e9g5o50",
                    "sg-11134201-821g4-mh0ambcjzeoe42",
                    "sg-11134201-821em-mh0ambq4c4y3f8",
                    "sg-11134201-821ga-mh0amby4u9l884",
                    "sg-11134201-821f8-mh0amc7fm8lrce",
                    "sg-11134201-821fy-mh0amckjgu8faf",
                    "sg-11134201-821eu-mh0amcud7kem64",
                    "sg-11134201-821el-mh0amd76eozy7a",
                    "sg-11134201-821d0-mh0amdfbbgnhce",
                    "sg-11134201-821g4-mh0amdnexx5961",
                    "sg-11134201-821fy-mh0amdwxg3rc98",
                    "sg-11134201-821fa-mh0ameek1k3zd6",
                    "sg-11134201-821d6-mh0amev3mcjy4d",
                    "sg-11134201-821g1-mh0amfbn9wjx88",
                    "sg-11134201-821et-mh0amfrft9fz82",
                    "sg-11134201-821df-mh0amg7czrwrf7"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 5 Active",
                    "Redmi Watch 5 Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.5,
                "rating_count": [
                  4,
                  0,
                  0,
                  1,
                  0,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372020215039022,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 4260000000,
                "strikethrough_price": 5000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-15%",
                "model_id": 287150197575,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 42.600",
                      "hidden_promotion_price": "Rp ?2.600",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 7,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 7,
                "display_sold_count_text": "7"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "YUIYUKARI",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46651309999,
            "shopid": 1481886281,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821dr-mh0alqhehi4r7f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,298463379,2018619,2023641,1059152,1059154,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1015914,700190087,1119699,700765096,298933384,700810080,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1723,\"model_id\":287150197575,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821dr-mh0alqhehi4r7f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,298463379,2018619,2023641,1059152,1059154,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1015914,700190087,1119699,700765096,298933384,700810080,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1723,\"model_id\":287150197575,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46651309999",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44651320245,
              "shopid": 1481886281,
              "name": "20mm 22mm Metal Strap Band for Redmi Watch 5 Active /Redmi Watch 5 Lite/Samsung Galaxy Watch 7/FE/6/5/4 Quick Release Stainless Steel Belt Bracelet Tali Jam Tangan Smartwatch for Garmin Watch /Huawei Watch GT 6 5 4 /Amazfit /Xiaomi Watch//Itel/Aolon/advan",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                1015914,
                700190087,
                1119699,
                700765096,
                298933384,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-821g9-mh0alqluyvwr5a",
              "images": [
                "sg-11134201-821g9-mh0alqluyvwr5a",
                "sg-11134201-821gh-mh0alr0sagwaba",
                "sg-11134201-821f5-mh0alrdqk7bidd",
                "sg-11134201-821dm-mh0alrof0cuh09",
                "sg-11134201-821de-mh0als257tvub5",
                "sg-11134201-821fb-mh0als8z5gy561",
                "sg-11134201-821d6-mh0alsej74zy3a",
                "sg-11134201-821el-mh0also6172k48",
                "sg-11134201-821d8-mh0alsvojqbud5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763023197,
              "sold": 10,
              "historical_sold": 16,
              "liked": false,
              "liked_count": 6,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 6,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5520000000,
              "price_min": 5520000000,
              "price_max": 5520000000,
              "price_min_before_discount": 12000000000,
              "price_max_before_discount": 12000000000,
              "hidden_price_display": null,
              "price_before_discount": 12000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kioc-mcq073c5d0lw86.16000081753683394.mp4",
                  "thumb_url": "sg-11110106-6kioc-mcq073c5d0lw86_cover",
                  "duration": 35,
                  "version": 2,
                  "vid": "sg-11110106-6kioc-mcq073c5d0lw86",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kioc-mcq073c5d0lw86.16000081753683394.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kioc-mcq073c5d0lw86.16000081753683394.mp4",
                      "width": 1366,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kioc-mcq073c5d0lw86.default.mp4",
                    "width": 1024,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "silver(strap)",
                    "black(strap)",
                    "gold(strap)",
                    "rose gold(strap)",
                    "silver rose(strap)",
                    "silver black(strap)",
                    "silver gold(strap)",
                    "blue(strap)"
                  ],
                  "images": [
                    "sg-11134201-821ev-mh0am5qf5r7z18",
                    "sg-11134201-821d5-mh0am5za4xe0c0",
                    "sg-11134201-821fu-mh0am6867cb057",
                    "sg-11134201-821g6-mh0am6l2hfrc9d",
                    "sg-11134201-821ds-mh0am6tta9lb45",
                    "sg-11134201-821fc-mh0am7205b7t6e",
                    "sg-11134201-821ge-mh0am7axtczt5b",
                    "sg-11134201-821fy-mh0am7izyfwq36"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "20mm watch band",
                    "22mm watch band",
                    "Redmi Watch 5 Active",
                    "Redmi Watch 5 Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  6,
                  0,
                  0,
                  0,
                  0,
                  6
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372020215039022,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5520000000,
                "strikethrough_price": 12000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 355116707355,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 12000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 55.200",
                      "hidden_promotion_price": "Rp ?5.200",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 16,
                "rounded_local_monthly_sold_count": 10,
                "local_monthly_sold_count_text": "10",
                "rounded_display_sold_count": 16,
                "display_sold_count_text": "16"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "YUIYUKARI",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44651320245,
            "shopid": 1481886281,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821g9-mh0alqluyvwr5a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1015914,700190087,1119699,700765096,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1580,\"model_id\":355116707355,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821g9-mh0alqluyvwr5a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1015914,700190087,1119699,700765096,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1580,\"model_id\":355116707355,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44651320245",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47101309146,
              "shopid": 1481276809,
              "name": "Bumper Case for Samsung Galaxy Fit 3 All-around TPU Soft Screen Protector Cover Anti Gores Accessories Jam Tangan Smartwatch for Samsung Fit 3",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                2018619,
                2023641,
                298463379,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                700765096,
                298933384,
                2103651,
                2143613,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-821dk-mh09wexm328d09",
              "images": [
                "sg-11134201-821dk-mh09wexm328d09",
                "sg-11134201-821fx-mh09wfi92mmkc0",
                "sg-11134201-821d6-mh09wg9tqq6l7f",
                "sg-11134201-821ey-mh09wgqhvv2j91",
                "sg-11134201-821ex-mh09wh428lc83f",
                "sg-11134201-821g7-mh09whfxvpjj48",
                "sg-11134201-821gh-mh09whsrpcsv80"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763022015,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1490000000,
              "price_min": 1490000000,
              "price_max": 1490000000,
              "price_min_before_discount": 3600000000,
              "price_max_before_discount": 3600000000,
              "hidden_price_display": null,
              "price_before_discount": 3600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-59%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Transparent",
                    "Black",
                    "Silver",
                    "Gold",
                    "Rose Gold",
                    "Green",
                    "Pink",
                    "Blue"
                  ],
                  "images": [
                    "sg-11134201-821cx-mh09wvahe1hmd5",
                    "sg-11134201-821fm-mh09wvrin5704c",
                    "sg-11134201-821ea-mh09ww7budqj4f",
                    "sg-11134201-821cw-mh09wwrbf6ywa5",
                    "sg-11134201-821dg-mh09wx4tv4zwe5",
                    "sg-11134201-821cz-mh09wxnvc8azdf",
                    "sg-11134201-821di-mh09wy5i65myb8",
                    "sg-11134201-821fy-mh09wyi34wej1f"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Samsung Galaxy Fit 3"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372022693871686,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744045069009920,
                "price": 1490000000,
                "strikethrough_price": 3600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-59%",
                "model_id": 267150267810,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3600000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SOLOLUP",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47101309146,
            "shopid": 1481276809,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821dk-mh09wexm328d09\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,2018619,2023641,298463379,1718093079,1059152,1059154,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1119699,700765096,298933384,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":157,\"model_id\":267150267810,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821dk-mh09wexm328d09\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,2018619,2023641,298463379,1718093079,1059152,1059154,822059908662278,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,1119699,700765096,298933384,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":157,\"model_id\":267150267810,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47101309146",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54901258563,
              "shopid": 1174585117,
              "name": "Tempered Glass PC Case for Garmin Forerunner 165/165 Music High Quality PC Slim Anti Gores Screen Protector Cover Frame Bumper Accessories Jam Tangan Smartwatch for Garmin Forerunner 165/Garmin Forerunner 165 Music",
              "label_ids": [
                2023641,
                2018619,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1119699,
                700765096,
                298933384,
                1400285055,
                700810080,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-821eo-mgzz0u5yhnnuda",
              "images": [
                "sg-11134201-821eo-mgzz0u5yhnnuda",
                "sg-11134201-821e7-mgzz0v0m0d1m77",
                "sg-11134201-821dg-mgzz0vp8xs0ef4",
                "sg-11134201-821e0-mgzz0we9zmz2ba",
                "sg-11134201-821da-mgzz0x3t3wgd2b",
                "sg-11134201-821d9-mgzz0y73x24o89",
                "sg-11134201-821ek-mgzz0z0xqrric3",
                "sg-11134201-821fr-mgzz0zmhe4nj23",
                "sg-11134201-821da-mgzz106z9q8c91"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763003729,
              "sold": 12,
              "historical_sold": 19,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2714000000,
              "price_min": 2714000000,
              "price_max": 2714000000,
              "price_min_before_discount": 5900000000,
              "price_max_before_discount": 5900000000,
              "hidden_price_display": null,
              "price_before_discount": 5900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Ivory white(Case)",
                    "Ink blue(Case)",
                    "Cherry pink(Case)",
                    "Pine green(Case)",
                    "black(Case)",
                    "Transparent(Case)",
                    "glass film"
                  ],
                  "images": [
                    "sg-11134201-821g8-mgzz1ddnmpzi83",
                    "sg-11134201-821ew-mgzz1e2spb0ve3",
                    "sg-11134201-821gb-mgzz1eqaz0ndf9",
                    "sg-11134201-821fh-mgzz1fel9bm239",
                    "sg-11134201-821em-mgzz1g11dczt23",
                    "sg-11134201-821cy-mgzz1goudedpe9",
                    "sg-11134201-821fk-mgzz1h24b4loc3"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Forerunner 165",
                    "Forerunner 165 Music"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.75,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  1,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 403925660611234,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2714000000,
                "strikethrough_price": 5900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 405114394583,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5900000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 27.140",
                      "hidden_promotion_price": "Rp ?7.140",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 19,
                "rounded_local_monthly_sold_count": 12,
                "local_monthly_sold_count_text": "12",
                "rounded_display_sold_count": 19,
                "display_sold_count_text": "19"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Lbiaodai",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54901258563,
            "shopid": 1174585117,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821eo-mgzz0u5yhnnuda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,700765096,298933384,1400285055,700810080,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2200,\"model_id\":405114394583,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821eo-mgzz0u5yhnnuda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,700765096,298933384,1400285055,700810080,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2200,\"model_id\":405114394583,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54901258563",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27493564710,
              "shopid": 1191507022,
              "name": "TPU Soft Case for Smart Watch Amazfit Bip 6 Anti Gores Full Coverage Screen Protector Protective Shell Bumper Cover Accessories Jam Tangan Smartwatch for Amazfit Bip 6",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                1119699,
                700765096,
                298933384,
                1400285055,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-821fo-mgzz23fch4b0a8",
              "images": [
                "sg-11134201-821fo-mgzz23fch4b0a8",
                "sg-11134201-821ec-mgzz23z7yfwr23",
                "sg-11134201-821e5-mgzz24gs7kllda",
                "sg-11134201-821eb-mgzz24yvi808ce",
                "sg-11134201-821ex-mgzz25l1saa185",
                "sg-11134201-821e0-mgzz264gpzindb",
                "sg-11134201-821fn-mgzz26jdnlzf81",
                "sg-11134201-821cy-mgzz26z9qqywd9",
                "sg-11134201-821fr-mgzz27jpv6kvab"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1763003785,
              "sold": 12,
              "historical_sold": 25,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 11,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3135000000,
              "price_min": 3135000000,
              "price_max": 3135000000,
              "price_min_before_discount": 7000000000,
              "price_max_before_discount": 7000000000,
              "hidden_price_display": null,
              "price_before_discount": 7000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-55%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Midnight Blue(Case)",
                    "Gold(Case)",
                    "Rose Gold(Case)",
                    "Pink(Case)",
                    "Gun(Case)",
                    "Black(Case)",
                    "Silver(Case)",
                    "Transparent(Case)",
                    "film"
                  ],
                  "images": [
                    "sg-11134201-821ef-mgzz2l4sfimg16",
                    "sg-11134201-821eh-mgzz2lzpbcb18e",
                    "sg-11134201-821g0-mgzz2mpuwnbc43",
                    "sg-11134201-821eh-mgzz2nhsnb4d1f",
                    "sg-11134201-821e1-mgzz2o6yxfrida",
                    "sg-11134201-821fq-mgzz2oxv64nd18",
                    "sg-11134201-821f6-mgzz2pkt5i4v4d",
                    "sg-11134201-821f5-mgzz2q8pjpcd08",
                    "sg-11134201-821dn-mgzz2ql16ryl40"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Amazfit Bip 6"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  11,
                  0,
                  0,
                  0,
                  0,
                  11
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 370310260212244,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 3135000000,
                "strikethrough_price": 7000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-55%",
                "model_id": 380114407170,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 31.350",
                      "hidden_promotion_price": "Rp ?1.350",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 25,
                "rounded_local_monthly_sold_count": 12,
                "local_monthly_sold_count_text": "12",
                "rounded_display_sold_count": 25,
                "display_sold_count_text": "25"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RCAT STORE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 27493564710,
            "shopid": 1191507022,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fo-mgzz23fch4b0a8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1119699,700765096,298933384,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2439,\"model_id\":380114407170,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fo-mgzz23fch4b0a8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1119699,700765096,298933384,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2439,\"model_id\":380114407170,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27493564710",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55351230905,
              "shopid": 424513989,
              "name": "SALYS LENTIVEN Kacamata SMART Hitam Cat Eye Wireless Bluetooth Headset Sun glasses Smart Multi function Glasses Earphones Headset TWS SPEAKER AI GL08",
              "label_ids": [
                2068629,
                1012729,
                2153644,
                298938357,
                2018618,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                700005510,
                700005490,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                1718093079,
                1119699,
                700765096,
                2213652,
                1400285055,
                1015914,
                700190087,
                1718088045,
                2098628,
                2098629,
                298938368,
                298468389
              ],
              "image": "id-11134207-8224y-mgw5lw8fh4i1ba",
              "images": [
                "id-11134207-8224y-mgw5lw8fh4i1ba",
                "id-11134207-82252-mgxk0kthg4jx01",
                "id-11134207-8224z-mgxk0kthn5e5e6",
                "id-11134207-8224p-mgxk0kthojyl73",
                "id-11134207-82252-mgxk0kthhj4d3a",
                "id-11134207-82251-mgxk0kthixot25",
                "id-11134207-8224u-mgxk0kthpyj190",
                "id-11134207-8224p-mgxk0kthkc9929",
                "id-11134207-82251-mgxk0kthlqtp84"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762945887,
              "sold": 0,
              "historical_sold": 10,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "LENTIVEN",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 21400000000,
              "price_min": 21400000000,
              "price_max": 21400000000,
              "price_min_before_discount": 70000000000,
              "price_max_before_discount": 70000000000,
              "hidden_price_display": null,
              "price_before_discount": 70000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-69%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvj-mgz0iz0vru3163.16000081762945718.mp4",
                  "thumb_url": "id-11110105-6vdvj-mgz0iz0vru3163_cover",
                  "duration": 25,
                  "version": 2,
                  "vid": "id-11110105-6vdvj-mgz0iz0vru3163",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvj-mgz0iz0vru3163.16000081762945718.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvj-mgz0iz0vru3163.16000081762945718.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvj-mgz0iz0vru3163.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "MODEL",
                  "options": [
                    "GL08"
                  ],
                  "images": [
                    "id-11134207-8224u-mgz0uzk9yxou84"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 396357827576543,
                "add_on_deal_label": "Kombo Hemat",
                "sub_type": 0,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp44RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 815924786020352,
                "price": 13400000000,
                "strikethrough_price": 70000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1327422729895936,
                "discount_text": "-69%",
                "model_id": 390111617783,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1327422729895936,
                  "voucher_code": "SALY0809S",
                  "voucher_discount": 8000000000,
                  "time_info": {
                    "start_time": 1767700860,
                    "end_time": 1774962060,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 18000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 70000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 10,
                "display_sold_count_text": "10"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp44RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SALYS  Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55351230905,
            "shopid": 424513989,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mgw5lw8fh4i1ba\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2068629,1012729,2153644,298938357,2018618,1718087960,1428713,844931086908638,844931064601283,298463379,700005510,700005490,822059908662278,825465608499232,825465608497696,2048660,2048661,1718093079,1119699,700765096,2213652,1400285055,1015914,700190087,1718088045,2098628,2098629,298938368,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1720,\"model_id\":390111617783,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mgw5lw8fh4i1ba\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2068629,1012729,2153644,298938357,2018618,1718087960,1428713,844931086908638,844931064601283,298463379,700005510,700005490,822059908662278,825465608499232,825465608497696,2048660,2048661,1718093079,1119699,700765096,2213652,1400285055,1015914,700190087,1718088045,2098628,2098629,298938368,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1720,\"model_id\":390111617783,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55351230905",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44851238225,
              "shopid": 1673881959,
              "name": "PulsarFit jam smartwatch  GT6 PRO  1.52inci  jam tangan pintar pria wanita  Layar Besar Screen Bluetooth Call Wireless  Sport Analyse  Waterproof Monitor tidur smartwatch tahan percikan air sehari-hari, gift for anak,hadiah untuk pacar atau anggota keluar",
              "label_ids": [
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                1119699,
                1718093079,
                1718087960,
                1428713,
                1015914,
                700190087,
                1400285055,
                2023641,
                2018619,
                844931086908638,
                298933384
              ],
              "image": "id-11134207-8224o-mgyuakgxr2tm10",
              "images": [
                "id-11134207-8224o-mgyuakgxr2tm10",
                "id-11134207-8224z-mfw14uq235e29e",
                "id-11134207-8224u-mgyu4yrqv7ymbd",
                "id-11134207-8224z-mgxg38w2uw3yee",
                "id-11134207-82251-mgyu4yrqy13ice",
                "id-11134207-8224q-mgxfujtdvqbsb4",
                "id-11134207-8224v-mgyu4yrqwmj21f",
                "id-11134207-82251-mgyu0bc09clm6e",
                "id-11134207-8224s-mgyu4yrqzfny53"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762935373,
              "sold": 38,
              "historical_sold": 51,
              "liked": false,
              "liked_count": 198,
              "view_count": null,
              "catid": 100013,
              "brand": "PulsarFit",
              "cmt_count": 33,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 24290000000,
              "price_min": 24290000000,
              "price_max": 24290000000,
              "price_min_before_discount": 58400000000,
              "price_max_before_discount": 58400000000,
              "hidden_price_display": null,
              "price_before_discount": 58400000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-58%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venb-mgyuaxj7jimk86.16000081762935253.mp4",
                  "thumb_url": "id-11110105-6venb-mgyuaxj7jimk86_cover",
                  "duration": 22,
                  "version": 2,
                  "vid": "id-11110105-6venb-mgyuaxj7jimk86",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venb-mgyuaxj7jimk86.16000081762935253.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mgyuaxj7jimk86.16000081762935253.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mgyuaxj7jimk86.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Coffee"
                  ],
                  "images": [
                    "id-11134207-8224z-mgyuakgx376380",
                    "id-11134207-8224w-mgyuakgx4lqj30"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.9393939393939394,
                "rating_count": [
                  33,
                  0,
                  0,
                  1,
                  0,
                  32
                ],
                "rcount_with_context": 14,
                "rcount_with_image": 17
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 827534904721408,
                "price": 22290000000,
                "strikethrough_price": 58400000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1329573980946432,
                "discount_text": "-58%",
                "model_id": 405110587457,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1329573980946432,
                  "voucher_code": "GT6P123",
                  "voucher_discount": 2000000000,
                  "time_info": {
                    "start_time": 1767957300,
                    "end_time": 1773058500,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 20000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 58400000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 51,
                "rounded_local_monthly_sold_count": 38,
                "local_monthly_sold_count_text": "38",
                "rounded_display_sold_count": 51,
                "display_sold_count_text": "51"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Smartwatchspace77",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44851238225,
            "shopid": 1673881959,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mgyuakgxr2tm10\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1119699,1718093079,1718087960,1428713,1015914,700190087,1400285055,2023641,2018619,844931086908638,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":1427,\"model_id\":405110587457,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mgyuakgxr2tm10\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1119699,1718093079,1718087960,1428713,1015914,700190087,1400285055,2023641,2018619,844931086908638,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":1427,\"model_id\":405110587457,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44851238225",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44801246414,
              "shopid": 1386444369,
              "name": "Smartwatch T2 PRO Layar Bular 1.52 Inch Tahan Air, Bluetooth Calling Multifungsi",
              "label_ids": [
                2018619,
                2023641,
                298463379,
                844931064601283,
                844931086908638,
                1049122,
                1059152,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                2068629,
                298938357,
                1718088045,
                2098628,
                298938368,
                2098629,
                298468389
              ],
              "image": "id-11134207-8224v-mgyp6hhx3x8td7",
              "images": [
                "id-11134207-8224v-mgyp6hhx3x8td7",
                "id-11134207-8224p-mgyp6hi14lqkbc",
                "id-11134207-82250-mgyp6hi254i64d",
                "id-11134207-82252-mgyp6hi23pxq0c",
                "id-11134207-8224y-mgyp6hi254i3d8",
                "id-11134207-8224z-mgyp6hhr277wf3",
                "id-11134207-82251-mgyp6hhp9l3c24",
                "id-11134207-8224r-mgyp6hhr0sng78",
                "id-11134207-8224r-mgyp6hi1d15ba3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762931210,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 17180200000,
              "price_min": 17180200000,
              "price_max": 17180200000,
              "price_min_before_discount": 42950500000,
              "price_max_before_discount": 42950500000,
              "hidden_price_display": null,
              "price_before_discount": 42950500000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-60%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Emas"
                  ],
                  "images": [
                    "id-11134207-8224o-mgyp6hi27xmz0b",
                    "id-11134207-8224u-mgyp6hi29c7f6a"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 409661522329811,
                "bundle_deal_label": "Pilih 2, diskon 2%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp53RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 819322960805888,
                "price": 16080200000,
                "strikethrough_price": 42950500000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1322901237022728,
                "discount_text": "-60%",
                "model_id": 109588109667,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1322901237022728,
                  "voucher_code": "YUHI11",
                  "voucher_discount": 1100000000,
                  "time_info": {
                    "start_time": 1767200400,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 11000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 42950500000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp53RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "The Treasure Point",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44801246414,
            "shopid": 1386444369,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mgyp6hhx3x8td7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298463379,844931064601283,844931086908638,1049122,1059152,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,2068629,298938357,1718088045,2098628,298938368,2098629,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2210,\"model_id\":109588109667,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mgyp6hhx3x8td7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298463379,844931064601283,844931086908638,1049122,1059152,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,2068629,298938357,1718088045,2098628,298938368,2098629,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2210,\"model_id\":109588109667,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44801246414",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41176320998,
              "shopid": 1092442342,
              "name": "VIVAN Smart Watch 2.01 Inch Waterproof 1 ATM 100+ Sports Mode Professional Health Monitoring Battery 350mAh Up To 7 Days VWF19S Garansi 12 Bulan",
              "label_ids": [
                2018618,
                2018619,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                700005490,
                1049120,
                822059908662278,
                2048660,
                2048661,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                700765096,
                2213652,
                298933384,
                1015914,
                700190087,
                1400285055,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-821dd-mgylf904wlcb43",
              "images": [
                "sg-11134201-821dd-mgylf904wlcb43",
                "sg-11134201-821ei-mgylf95zn6krb0",
                "sg-11134201-821f8-mgylf9d5sftad4",
                "sg-11134201-821cz-mgylf9jeatxr70",
                "sg-11134201-821eq-mgylf9rrd9fw81",
                "sg-11134201-821ez-mgylf9y90cgd75",
                "sg-11134201-821ep-mgylfa43iia6c5",
                "sg-11134201-821ee-mgylfab9dz4cfb",
                "sg-11134201-821d3-mgylfahig2rt82"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762920323,
              "sold": 19,
              "historical_sold": 30,
              "liked": false,
              "liked_count": 25,
              "view_count": null,
              "catid": 100013,
              "brand": "Vivan",
              "cmt_count": 14,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 21790000000,
              "price_min": 21790000000,
              "price_max": 21790000000,
              "price_min_before_discount": 69900000000,
              "price_max_before_discount": 69900000000,
              "hidden_price_display": null,
              "price_before_discount": 69900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-69%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v98h-mgylec8sjqbza5.16000081762920281.mp4",
                  "thumb_url": "sg-11110106-6v98h-mgylec8sjqbza5_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "sg-11110106-6v98h-mgylec8sjqbza5",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v98h-mgylec8sjqbza5.16000081762920281.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v98h-mgylec8sjqbza5.16000081762920281.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v98h-mgylec8sjqbza5.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "VWF19S Black",
                    "VWF19S Silver",
                    "VWF19S Pink"
                  ],
                  "images": [
                    "sg-11134201-821dc-mgylfan02nm5bd",
                    "sg-11134201-821eh-mgylfat4ketp44",
                    "sg-11134201-821dh-mgylfazrczyj40"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  14,
                  0,
                  0,
                  0,
                  0,
                  14
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "sg-11134201-821dd-mgylf904wlcb43",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228252845355009,
                "price": 21790000000,
                "strikethrough_price": 69900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-69%",
                "model_id": 277145869601,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 69900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 30,
                "rounded_local_monthly_sold_count": 19,
                "local_monthly_sold_count_text": "19",
                "rounded_display_sold_count": 30,
                "display_sold_count_text": "30"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "WIN Authorized Store Surabaya",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41176320998,
            "shopid": 1092442342,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821dd-mgylf904wlcb43\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2018619,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,700005490,1049120,822059908662278,2048660,2048661,825465608493600,825465608494624,825465608499232,825465608497696,1119699,700765096,2213652,298933384,1015914,700190087,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":354,\"model_id\":277145869601,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821dd-mgylf904wlcb43\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2018619,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,700005490,1049120,822059908662278,2048660,2048661,825465608493600,825465608494624,825465608499232,825465608497696,1119699,700765096,2213652,298933384,1015914,700190087,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":354,\"model_id\":277145869601,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41176320998",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55101178940,
              "shopid": 1118224551,
              "name": "Sport Soft Silicone Leather Strap for Apple Watch SE Ultra 3 2 49mm Iwatch Series 11 10 9 8 7 6 5 46mm 42 45 44 40 42 38mm Rubber Band Wristband Belt Accessories Tali Jam Tangan for Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2023641,
                298938357,
                2018619,
                298888358,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                1119699,
                700765096,
                1015914,
                700190087,
                1400285055,
                298938368,
                298468389,
                2098629,
                1718088045,
                2098628
              ],
              "image": "sg-11134201-821fw-mgxux0404irx2b",
              "images": [
                "sg-11134201-821fw-mgxux0404irx2b",
                "sg-11134201-821g0-mgxux0en4nprbe",
                "sg-11134201-821fz-mgxux0n9slcff7",
                "sg-11134201-821d8-mgxux0y7zwui39",
                "sg-11134201-821dq-mgxux19cfz7u77",
                "sg-11134201-821ew-mgxux1jwofew2a",
                "sg-11134201-821fa-mgxux1u7mm1423",
                "sg-11134201-821el-mgxux24gxr7z28",
                "sg-11134201-821dd-mgxux2gnb40f61"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762875750,
              "sold": 64,
              "historical_sold": 116,
              "liked": false,
              "liked_count": 89,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 38,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 6900000000,
              "price_min": 6900000000,
              "price_max": 6900000000,
              "price_min_before_discount": 15000000000,
              "price_max_before_discount": 15000000000,
              "hidden_price_display": null,
              "price_before_discount": 15000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8im-mepda6g2rll23f.16000081758003342.mp4",
                  "thumb_url": "sg-11110106-6v8im-mepda6g2rll23f_cover",
                  "duration": 17,
                  "version": 2,
                  "vid": "sg-11110106-6v8im-mepda6g2rll23f",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8im-mepda6g2rll23f.16000081758003342.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8im-mepda6g2rll23f.16000081758003342.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8im-mepda6g2rll23f.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Brown(starp)",
                    "Light Brown(starp)",
                    "Blue(starp)",
                    "White(starp)",
                    "Green(starp)",
                    "Black(starp)",
                    "Gray(starp)",
                    "Star(starp)",
                    "Dark Brown(starp)"
                  ],
                  "images": [
                    "sg-11134201-821eb-mgxuxfelvsp7c1",
                    "sg-11134201-821eh-mgxuxfnz03db3e",
                    "sg-11134201-821dy-mgxuxg32nbim1e",
                    "sg-11134201-821e0-mgxuxggcckqw99",
                    "sg-11134201-821du-mgxuxgo4xiiwcd",
                    "sg-11134201-821ee-mgxuxhbd94i2ae",
                    "sg-11134201-821dm-mgxuxhk6zaxbaf",
                    "sg-11134201-821db-mgxuxhyincb1a7",
                    "sg-11134201-821dh-mgxuxi5t5vk9a5"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "49/46/45/44/(S3)42mm",
                    "41/40/38/42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.947368421052632,
                "rating_count": [
                  38,
                  0,
                  0,
                  1,
                  0,
                  37
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 390465501544583,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 6831000000,
                "strikethrough_price": 15000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1312650382295040,
                "discount_text": "-54%",
                "model_id": 310108085163,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1312650382295040,
                  "voucher_code": "ANNIJGHU4",
                  "voucher_discount": 69000000,
                  "time_info": {
                    "start_time": 1765939320,
                    "end_time": 1774060860,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 6900000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 15000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 68.310",
                      "hidden_promotion_price": "Rp ?8.310",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 116,
                "rounded_local_monthly_sold_count": 64,
                "local_monthly_sold_count_text": "64",
                "rounded_display_sold_count": 116,
                "display_sold_count_text": "116"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "APBAND",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55101178940,
            "shopid": 1118224551,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fw-mgxux0404irx2b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,298938357,2018619,298888358,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1119699,700765096,1015914,700190087,1400285055,298938368,298468389,2098629,1718088045,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":749,\"model_id\":310108085163,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fw-mgxux0404irx2b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,298938357,2018619,298888358,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1119699,700765096,1015914,700190087,1400285055,298938368,298468389,2098629,1718088045,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":749,\"model_id\":310108085163,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55101178940",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45451200116,
              "shopid": 1637578130,
              "name": "SAMSUNG Smart Band 9 NFC Smartwatch 1.62 Inch  Baterai Tahan 21 Hari Pemantauan Kesehatan Akurat  Manajemen Tidur Pintar 150+ Mode Olahraga",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                1718093079,
                1119699,
                298463379,
                298933384,
                1428713,
                1718087960,
                1400285055,
                1015914,
                700190087,
                2023641,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224r-mh5volsrdq16e8",
              "images": [
                "id-11134207-8224r-mh5volsrdq16e8",
                "id-11134207-8224w-mh5volswzzt4b1",
                "id-11134207-8224t-mh5volsvv9c9db",
                "id-11134207-8224y-mgxgejcog74ca3",
                "id-11134207-8224o-mgxgejcohlos42",
                "id-11134207-8224s-mgxgejcoesjwf7",
                "id-11134207-8224s-mgxgejcolte4b5",
                "id-11134207-82252-mgxgejcoomj0a9",
                "id-11134207-8224p-mgxgejcon7yk76"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762853087,
              "sold": 15,
              "historical_sold": 19,
              "liked": false,
              "liked_count": 62,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 15,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 35000000000,
              "price_min": 35000000000,
              "price_max": 35000000000,
              "price_min_before_discount": 128800000000,
              "price_max_before_discount": 128800000000,
              "hidden_price_display": null,
              "price_before_discount": 128800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-73%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven2-mgxhn2xs4qoc50.16000081762853433.mp4",
                  "thumb_url": "id-11110105-6ven2-mgxhn2xs4qoc50_cover",
                  "duration": 39,
                  "version": 2,
                  "vid": "id-11110105-6ven2-mgxhn2xs4qoc50",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven2-mgxhn2xs4qoc50.16000081762853433.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven2-mgxhn2xs4qoc50.16000081762853433.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven2-mgxhn2xs4qoc50.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Pink",
                    "Biru Tua"
                  ],
                  "images": [
                    "id-11134207-8224u-mgxgejcoq13g8a",
                    "id-11134207-8224s-mhvdnekkcmbqa9",
                    "id-11134207-8224p-mgxhaw5c84cr21"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.333333333333333,
                "rating_count": [
                  15,
                  2,
                  0,
                  0,
                  2,
                  11
                ],
                "rcount_with_context": 10,
                "rcount_with_image": 8
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 226001565270016,
                "price": 34000000000,
                "strikethrough_price": 128800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1289617638703104,
                "discount_text": "-73%",
                "model_id": 325106123803,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1289617638703104,
                  "voucher_code": "YIO410",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1763194140,
                    "end_time": 1771232940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 20000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 128800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 19,
                "rounded_local_monthly_sold_count": 15,
                "local_monthly_sold_count_text": "15",
                "rounded_display_sold_count": 19,
                "display_sold_count_text": "19"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Techzy-ccd-1",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45451200116,
            "shopid": 1637578130,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mh5volsrdq16e8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1059154,822059908662278,825465608499232,1718093079,1119699,298463379,298933384,1428713,1718087960,1400285055,1015914,700190087,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2002,\"model_id\":325106123803,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mh5volsrdq16e8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1059154,822059908662278,825465608499232,1718093079,1119699,298463379,298933384,1428713,1718087960,1400285055,1015914,700190087,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2002,\"model_id\":325106123803,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45451200116",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51301152756,
              "shopid": 1669985584,
              "name": "Smartwatch Anak Z1 mendukung pelacakan SIM & LBS obrolan suara SOS dan pemantauan jarak jauh",
              "label_ids": [
                844931064601283,
                844931086908638,
                1049122,
                1059152,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                1718087960,
                1428713,
                298463379,
                298933384,
                2023641,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224s-mgxd170bu1vzfc",
              "images": [
                "id-11134207-8224s-mgxd170bu1vzfc",
                "id-11134207-8224v-mgxd1707gqa473",
                "id-11134207-8224w-mgxd170eolc923",
                "id-11134207-8224s-mgxd170e953d42",
                "id-11134207-8224q-mgxd16zo88aw92",
                "id-11134207-8224v-mgxd170bvggfa2",
                "id-11134207-8224y-mgxd1709x825f5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762846008,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 12649400000,
              "price_min": 12649400000,
              "price_max": 12649400000,
              "price_min_before_discount": 140548000000,
              "price_max_before_discount": 140548000000,
              "hidden_price_display": null,
              "price_before_discount": 140548000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": ">90% off",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venf-mh1li1zeilmy76.16000101763102059.mp4",
                  "thumb_url": "id-11110105-6venf-mh1li1zeilmy76_cover",
                  "duration": 55,
                  "version": 2,
                  "vid": "id-11110105-6venf-mh1li1zeilmy76",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venf-mh1li1zeilmy76.16000101763102059.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venf-mh1li1zeilmy76.16000101763102059.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venf-mh1li1zeilmy76.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Tipe",
                  "options": [
                    "Merah Muda",
                    "Biru",
                    "Hitam",
                    "Hitam."
                  ],
                  "images": [
                    "id-11134207-82250-mgxd170epzwp57",
                    "id-11134207-8224y-mgxd170ereh5d4",
                    "id-11134207-8224o-mgxd170est1lbe",
                    "id-11134207-8224p-mh3gxb2dhpfx84"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 787795728187392,
                "price": 11649400000,
                "strikethrough_price": 140548000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1288151957389320,
                "discount_text": ">90% off",
                "model_id": 375105268500,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1288151957389320,
                  "voucher_code": "2MKYMN",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1763019060,
                    "end_time": 1771129860,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 140548000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GenggamDigital",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51301152756,
            "shopid": 1669985584,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mgxd170bu1vzfc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049122,1059152,1718093079,822059908662278,825465608497696,825465608499232,1119699,1718087960,1428713,298463379,298933384,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":895,\"model_id\":375105268500,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mgxd170bu1vzfc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049122,1059152,1718093079,822059908662278,825465608497696,825465608499232,1119699,1718087960,1428713,298463379,298933384,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":895,\"model_id\":375105268500,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51301152756",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48901154179,
              "shopid": 1589075157,
              "name": "Ocean Silicone Strap for Apple Watch IWatch Ultra 3 2 49mm Series 11 10 9 8 7 6 5 4 SE 3 2 46mm 45 44 42 41 40 38mm Soft Rubber Belt Bracelet Band Accessories Tali Jam Tangan Smartwatch for I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                844931086908638,
                844931064601283,
                1428713,
                1718087960,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                840990690654214,
                840955085144628,
                1119699,
                2048660,
                2048661,
                700765096,
                1400285055,
                2023641,
                2018619,
                2103651,
                2143613,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-821es-mgx4p23hjq4se7",
              "images": [
                "sg-11134201-821es-mgx4p23hjq4se7",
                "sg-11134201-821f3-mgx4p2ok55os3a",
                "sg-11134201-821fn-mgx4p35olfygcb",
                "sg-11134201-821cx-mgx4p3t423uzbb",
                "sg-11134201-821gh-mgx4p4c2ubk987",
                "sg-11134201-821fb-mgx4p4ts7i8c22",
                "sg-11134201-821fj-mgx4p5c0xekpce",
                "sg-11134201-821dz-mgx4p5yhgumnbb",
                "sg-11134201-821g5-mgx4p6h30u886f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762831662,
              "sold": 2,
              "historical_sold": 7,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1690000000,
              "price_min": 1690000000,
              "price_max": 1690000000,
              "price_min_before_discount": 1990000000,
              "price_max_before_discount": 1990000000,
              "hidden_price_display": null,
              "price_before_discount": 1990000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-15%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8if-mdyi6f0y7bic9a.16000081756377147.mp4",
                  "thumb_url": "sg-11110106-6v8if-mdyi6f0y7bic9a_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "sg-11110106-6v8if-mdyi6f0y7bic9a",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8if-mdyi6f0y7bic9a.16000081756377147.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8if-mdyi6f0y7bic9a.16000081756377147.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8if-mdyi6f0y7bic9a.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Midnight(Strap)",
                    "Star(Strap)",
                    "Yellow(Strap)",
                    "Black(Strap)",
                    "Clover(Strap)",
                    "Orange(Strap)",
                    "Red(Strap)",
                    "Blue(Strap)",
                    "White(Strap)",
                    "Pink Sands(Strap)",
                    "Sea blue(Strap)",
                    "Blue Grey(Strap)",
                    "Midnight blue(Strap)",
                    "orange black(Strap)",
                    "Cherry(Strap)",
                    "Lavender(Strap)",
                    "Light Pink(Strap)",
                    "Pistachio nut(Strap)"
                  ],
                  "images": [
                    "sg-11134201-821dl-mgx4pj1bwcuk69",
                    "sg-11134201-821f8-mgx4pjeuja4t26",
                    "sg-11134201-821dt-mgx4pjuqe1al66",
                    "sg-11134201-821f6-mgx4pk97pr0p94",
                    "sg-11134201-821fh-mgx4pkhvbea137",
                    "sg-11134201-821ek-mgx4pkv8kirxfb",
                    "sg-11134201-821d4-mgx4pl6yczd715",
                    "sg-11134201-821ds-mgx4plgrmt5459",
                    "sg-11134201-821fq-mgx4plq1xyxb8c",
                    "sg-11134201-821ga-mgx4pm26hb0uab",
                    "sg-11134201-821f0-mgx4pmd1iuix40",
                    "sg-11134201-821g6-mgx4pmmb1yj03e",
                    "sg-11134201-821db-mgx4pn4abvv187",
                    "sg-11134201-821e8-mgx4pngjigp535",
                    "sg-11134201-821fq-mgx4pnr7c3kec8",
                    "sg-11134201-821fy-mgx4po19qm8ade",
                    "sg-11134201-821g2-mgx4pob198gc65",
                    "sg-11134201-821gg-mgx4polbnpjc53"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359068405608568,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718137130024960,
                "price": 1690000000,
                "strikethrough_price": 1990000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-15%",
                "model_id": 400104021951,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1990000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 7,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 7,
                "display_sold_count_text": "7"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MYAPULUA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48901154179,
            "shopid": 1589075157,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821es-mgx4p23hjq4se7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1428713,1718087960,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,840990690654214,840955085144628,1119699,2048660,2048661,700765096,1400285055,2023641,2018619,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1385,\"model_id\":400104021951,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821es-mgx4p23hjq4se7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1428713,1718087960,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,840990690654214,840955085144628,1119699,2048660,2048661,700765096,1400285055,2023641,2018619,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1385,\"model_id\":400104021951,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48901154179",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47151132218,
              "shopid": 574362954,
              "name": "YIBAO LENTIVEN Kacamata SMART Hitam Cat Eye Wireless Bluetooth Headset Sun glasses Smart Multi function Glasses Earphones Headset TWS SPEAKER AI GL08",
              "label_ids": [
                1012729,
                2068629,
                2018618,
                298938357,
                2153644,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                700005510,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                1119699,
                700765096,
                2213652,
                1400285055,
                1015914,
                700190087,
                298938368,
                2098629,
                1718088045,
                298468389,
                2098628
              ],
              "image": "id-11134207-8224t-mgwa7lkxllan7e",
              "images": [
                "id-11134207-8224t-mgwa7lkxllan7e",
                "id-11134207-8224u-mgwa7lkxmzv3c5",
                "id-11134207-8224w-mgwa7lkxvf9rec",
                "id-11134207-8224t-mgwa7lkxoefj4f",
                "id-11134207-8224u-mgwa7lkxu0pbef",
                "id-11134207-8224v-mgwa7lkxpszz06",
                "id-11134207-8224p-mgwa7lkxr7kfe5",
                "id-11134207-8224s-mgwa7lkxwtu7be",
                "id-11134207-8224y-mgwa7lkxsm4v55"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762780533,
              "sold": 1,
              "historical_sold": 12,
              "liked": false,
              "liked_count": 11,
              "view_count": null,
              "catid": 100013,
              "brand": "LENTIVEN",
              "cmt_count": 2,
              "flag": 0,
              "cb_option": 0,
              "item_status": "normal",
              "price": 21400000000,
              "price_min": 21400000000,
              "price_max": 21400000000,
              "price_min_before_discount": 79000000000,
              "price_max_before_discount": 79000000000,
              "hidden_price_display": null,
              "price_before_discount": 79000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-73%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvb-mgwa7garw45r51.16000081762780391.mp4",
                  "thumb_url": "id-11110105-6vdvb-mgwa7garw45r51_cover",
                  "duration": 25,
                  "version": 2,
                  "vid": "id-11110105-6vdvb-mgwa7garw45r51",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvb-mgwa7garw45r51.16000081762780391.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvb-mgwa7garw45r51.16000081762780391.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvb-mgwa7garw45r51.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "TYPE",
                  "options": [
                    "GL08"
                  ],
                  "images": [
                    "id-11134207-82250-mgwa7lkxy8en1c"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp44RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 815994352762880,
                "price": 13400000000,
                "strikethrough_price": 79000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1327404686131200,
                "discount_text": "-73%",
                "model_id": 302141340272,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1327404686131200,
                  "voucher_code": "YIBA0809O",
                  "voucher_discount": 8000000000,
                  "time_info": {
                    "start_time": 1767698700,
                    "end_time": 1774959900,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 18000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 79000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 12,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 12,
                "display_sold_count_text": "12"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp44RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Yibao Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47151132218,
            "shopid": 574362954,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mgwa7lkxllan7e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2068629,2018618,298938357,2153644,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,700005510,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,1119699,700765096,2213652,1400285055,1015914,700190087,298938368,2098629,1718088045,298468389,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":660,\"model_id\":302141340272,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mgwa7lkxllan7e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2068629,2018618,298938357,2153644,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,700005510,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,1119699,700765096,2213652,1400285055,1015914,700190087,298938368,2098629,1718088045,298468389,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":660,\"model_id\":302141340272,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47151132218",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57401097265,
              "shopid": 1336898769,
              "name": "GPS Tracker Motor Mobil ONEWAY WANWAY EV02 | Gratis Server Online Web dan Smartphone",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                1015914,
                700190087,
                1400285055,
                2218763
              ],
              "image": "sg-11134201-821e1-mgw16utre51l32",
              "images": [
                "sg-11134201-821e1-mgw16utre51l32",
                "sg-11134201-821er-mgvy9hrhf2mlfe",
                "sg-11134201-821fb-mgvy9i075xjf60",
                "sg-11134201-821f5-mgvy9i6e1eyw90"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762760306,
              "sold": 3,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 9,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 22000000000,
              "price_min": 22000000000,
              "price_max": 22000000000,
              "price_min_before_discount": 40000000000,
              "price_max_before_discount": 40000000000,
              "hidden_price_display": null,
              "price_before_discount": 40000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-45%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "GPS",
                  "options": [
                    "1pcs"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 3.6666666666666665,
                "rating_count": [
                  3,
                  1,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 825821548298240,
                "price": 22000000000,
                "strikethrough_price": 40000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-45%",
                "model_id": 320099729318,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 40000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ELTOD",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57401097265,
            "shopid": 1336898769,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821e1-mgw16utre51l32\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699,298933384,1015914,700190087,1400285055,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":553,\"model_id\":320099729318,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821e1-mgw16utre51l32\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699,298933384,1015914,700190087,1400285055,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":553,\"model_id\":320099729318,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57401097265",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56051101600,
              "shopid": 14380575,
              "name": "Strap Tali Jam Smartwatch Morein Rock 1 2 X3 GPS - Soft Silikon Rubber HQ 22mm OYE",
              "label_ids": [
                1014371,
                2018619,
                47,
                2023641,
                700190019,
                844931064601283,
                1049116,
                1049117,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                1718093079,
                1119699,
                700765096,
                1428713,
                1718087960,
                298463379,
                700810080,
                825465608493600,
                825465608494624,
                298933384,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82250-mj3rw95yxi4md2",
              "images": [
                "id-11134207-82250-mj3rw95yxi4md2",
                "id-11134207-82251-mj3rw95yywp2e4",
                "id-11134207-8224p-mj3rw95yp2pyba",
                "id-11134207-8224r-mj3rw95yrvuub3",
                "id-11134207-8224t-mj3rw95yqhaecd",
                "id-11134207-8224q-mj3rw95ytafa1b",
                "id-11134207-8224o-mj3rw95yw3k6c3",
                "id-11134207-82252-mj3rw95yuozqc2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762757347,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5500000000,
              "price_min": 5500000000,
              "price_max": 5500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv4-mj48bgki4dmv80.16000081767619981.mp4",
                  "thumb_url": "id-11110105-6vdv4-mj48bgki4dmv80_cover",
                  "duration": 39,
                  "version": 2,
                  "vid": "id-11110105-6vdv4-mj48bgki4dmv80",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv4-mj48bgki4dmv80.16000081767619981.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mj48bgki4dmv80.16000081767619981.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mj48bgki4dmv80.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "01 black",
                    "02 white",
                    "03 mustard",
                    "04 wine red",
                    "05 pink",
                    "06 midnight blue",
                    "07 army green",
                    "08 grey",
                    "09 tosca green",
                    "10 cream"
                  ],
                  "images": [
                    "id-11134207-8224u-mgvwfhjrbabs64",
                    "id-11134207-8224y-mgvwfhjrcow8f3",
                    "id-11134207-8224u-mgvwfhjre3gofe",
                    "id-11134207-8224r-mgvwfhjrfi1400",
                    "id-11134207-8224o-mgvwfhjrgwlk4f",
                    "id-11134207-8224w-mgvwfhjrib60cd",
                    "id-11134207-8224q-mgvsid4p20i567",
                    "id-11134207-8224w-mgvsid4p3f2l3e",
                    "id-11134207-82252-mgvsid4p4tn151",
                    "id-11134207-8224r-mgvsid4p687hd8"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 5500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 340099428077,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "jmcellsurabaya",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56051101600,
            "shopid": 14380575,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mj3rw95yxi4md2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1014371,2018619,47,2023641,700190019,844931064601283,1049116,1049117,822059908662278,825465608499232,825465608497696,2048660,2048661,1718093079,1119699,700765096,1428713,1718087960,298463379,700810080,825465608493600,825465608494624,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":480,\"model_id\":340099428077,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mj3rw95yxi4md2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1014371,2018619,47,2023641,700190019,844931064601283,1049116,1049117,822059908662278,825465608499232,825465608497696,2048660,2048661,1718093079,1119699,700765096,1428713,1718087960,298463379,700810080,825465608493600,825465608494624,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":480,\"model_id\":340099428077,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56051101600",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48551041386,
              "shopid": 1663422167,
              "name": "100% Asli] COD 1 tahun Garansi XIAOMI 11 Max Smart Watch | Layar AMOLED 2,1 inci | IP68 Waterproof | Mode Olahraga | Hubungi Bluetooth HD | Kontrol Musik | GPS | Konsumsi baterai 14 hari | Jam tangan pintar pria dan wanita",
              "label_ids": [
                844931064601283,
                844931086908638,
                1119699,
                1718093079,
                1400285055,
                1049116,
                700005516,
                822059908662278,
                825465608499232,
                825465608497696,
                2023641,
                1718087960,
                1428713,
                2018619,
                298933384,
                1015914,
                700190087
              ],
              "image": "id-11134207-8224w-migzh168w360fc",
              "images": [
                "id-11134207-8224w-migzh168w360fc",
                "id-11134207-8224t-mib387d0sgsg08",
                "id-11134207-8224w-mgt00d2m2wpb65",
                "id-11134207-8224z-mgt00d2m4b9r47",
                "id-11134207-8224v-mgt06b1oidc919",
                "id-11134207-8224v-mgt06b1ojrwp10",
                "id-11134207-8224x-mgt06b1ol6h50f",
                "id-11134207-8224v-mgt06b1rlc7hf8",
                "id-11134207-8224v-mgt06b1ogyrt15"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762582232,
              "sold": 46,
              "historical_sold": 58,
              "liked": false,
              "liked_count": 37,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 24,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 15888700000,
              "price_min": 15888700000,
              "price_max": 15888700000,
              "price_min_before_discount": 16800000000,
              "price_max_before_discount": 16800000000,
              "hidden_price_display": null,
              "price_before_discount": 16800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-5%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venb-mil92ozehxxe65.16000081766471105.mp4",
                  "thumb_url": "id-11110105-6venb-mil92ozehxxe65_cover",
                  "duration": 22,
                  "version": 2,
                  "vid": "id-11110105-6venb-mil92ozehxxe65",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venb-mil92ozehxxe65.16000081766471105.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mil92ozehxxe65.16000081766471105.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mil92ozehxxe65.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "black",
                    "white",
                    "pink",
                    "black+white",
                    "black+pink",
                    "white+pink",
                    "white."
                  ],
                  "images": [
                    "id-11134207-8224u-mgt0t2nyg7il23",
                    "id-11134207-8224v-mgt0t2nyhm3138",
                    "id-11134207-8224y-mgt0t2nyj0nh88",
                    "id-11134207-8224p-mijvj2cfe1vs41",
                    "id-11134207-82251-mijvj2cfs3k43f",
                    "id-11134207-8224y-mijvj2cfti4k37",
                    "id-11134207-8224p-mijvj2cfuwp004"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.833333333333333,
                "rating_count": [
                  24,
                  1,
                  0,
                  0,
                  0,
                  23
                ],
                "rcount_with_context": 21,
                "rcount_with_image": 20
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Sidoarjo",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227924750118912,
                "price": 14299900000,
                "strikethrough_price": 16800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1332396503351296,
                "discount_text": "-5%",
                "model_id": 340092533350,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1332396503351296,
                  "voucher_code": "4K7ZASDDS",
                  "voucher_discount": 1588800000,
                  "time_info": {
                    "start_time": 1768293240,
                    "end_time": 1776358740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 16800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 58,
                "rounded_local_monthly_sold_count": 46,
                "local_monthly_sold_count_text": "46",
                "rounded_display_sold_count": 58,
                "display_sold_count_text": "58"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Seleksi Cerdas Irama",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48551041386,
            "shopid": 1663422167,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-migzh168w360fc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1119699,1718093079,1400285055,1049116,700005516,822059908662278,825465608499232,825465608497696,2023641,1718087960,1428713,2018619,298933384,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":9,\"model_id\":340092533350,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-migzh168w360fc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1119699,1718093079,1400285055,1049116,700005516,822059908662278,825465608499232,825465608497696,2023641,1718087960,1428713,2018619,298933384,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":9,\"model_id\":340092533350,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48551041386",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49800994105,
              "shopid": 1431885268,
              "name": "Monitor music Camera Remote Touch Screen Smartwatch Dz09T LED Bluetooth Sport Waterproof Hp Jam Tangan Hp Pintar",
              "label_ids": [
                844931086908638,
                844931064601283,
                700005490,
                1049120,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079,
                1119699
              ],
              "image": "id-11134207-7r991-ls84vdkbrp3h86",
              "images": [
                "id-11134207-7r991-ls84vdkbrp3h86",
                "id-11134207-7r98t-ls84vdkbqaj1fe",
                "id-11134207-7r98w-ls84vdkbui8d93",
                "id-11134207-7r98s-ls84vdkbovyl7f",
                "id-11134207-7r98s-ls84at0fpnaf4d",
                "id-11134207-7r98p-ls84vdkbm2tp22",
                "id-11134207-7r98z-ls84vdkbnhe579",
                "id-11134207-7r98r-ls84vdkbt3nx53",
                "id-11134207-7r98u-lxrwth3aydyi32"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762520713,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 13171200000,
              "price_min": 13171200000,
              "price_max": 13171200000,
              "price_min_before_discount": 27728800000,
              "price_max_before_discount": 27728800000,
              "hidden_price_display": null,
              "price_before_discount": 27728800000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-52%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "M1-Hitam",
                    "M1-Emas",
                    "M2-Merah muda",
                    "M2-Hitam"
                  ],
                  "images": [
                    "id-11134207-7r98u-ls84vdkbxbd9d1",
                    "id-11134207-7r98q-ls84vdkbypxp6f",
                    "id-11134207-7r98o-lxrwth3avktm7f",
                    "id-11134207-7r98w-lxrwth3awze20f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 392350069441860,
                "bundle_deal_label": "Pilih 3, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 733111550282752,
                "price": 12971200000,
                "strikethrough_price": 27728800000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1280914709823488,
                "discount_text": "-52%",
                "model_id": 395088917889,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1280914709823488,
                  "voucher_code": "TLIFTLI10",
                  "voucher_discount": 200000000,
                  "time_info": {
                    "start_time": 1762156620,
                    "end_time": 1769763600,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 27728800000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "tlif0qjb8c",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49800994105,
            "shopid": 1431885268,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r991-ls84vdkbrp3h86\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,700005490,1049120,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2149,\"model_id\":395088917889,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r991-ls84vdkbrp3h86\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,700005490,1049120,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2149,\"model_id\":395088917889,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49800994105",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51000982804,
              "shopid": 624049900,
              "name": "PUNING LENTIVEN Kacamata SMART Hitam Cat Eye Wireless Bluetooth Headset Sun glasses Smart Multi function Glasses Earphones Headset TWS SPEAKER AI GL09",
              "label_ids": [
                1002164,
                2018618,
                700700063,
                2068629,
                298938357,
                2153644,
                1718087960,
                1428713,
                298463379,
                844931086908638,
                844931064601283,
                700005490,
                700005510,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1400285055,
                1015914,
                700190087,
                2213652,
                298468389,
                2098628,
                2098629,
                1718088045,
                298938368
              ],
              "image": "id-11134207-8224z-mgrv9kux4ydkcb",
              "images": [
                "id-11134207-8224z-mgrv9kux4ydkcb",
                "id-11134207-8224z-mgrv9kv7fsawf6",
                "id-11134207-8224p-mgrv9kv78rgo3b",
                "id-11134207-8224x-mgrv9kv7h6vce6",
                "id-11134207-8224r-mgrv9kv7a614e4",
                "id-11134207-8224z-mgrv9kv7bklk14",
                "id-11134207-8224r-mgrv9kv7ilfs31",
                "id-11134207-8224w-mgrv9kv7cz6057",
                "id-11134207-8224r-mgrv9kv7edqgb9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762513409,
              "sold": 0,
              "historical_sold": 11,
              "liked": false,
              "liked_count": 9,
              "view_count": null,
              "catid": 100013,
              "brand": "LENTIVEN",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 24900000000,
              "price_min": 24900000000,
              "price_max": 24900000000,
              "price_min_before_discount": 80000000000,
              "price_max_before_discount": 80000000000,
              "hidden_price_display": null,
              "price_before_discount": 80000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-69%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdva-mgrvajb6wzyi70.16000081762513175.mp4",
                  "thumb_url": "id-11110105-6vdva-mgrvajb6wzyi70_cover",
                  "duration": 28,
                  "version": 2,
                  "vid": "id-11110105-6vdva-mgrvajb6wzyi70",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdva-mgrvajb6wzyi70.16000081762513175.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdva-mgrvajb6wzyi70.16000081762513175.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdva-mgrvajb6wzyi70.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "TYPE",
                  "options": [
                    "GL09"
                  ],
                  "images": [
                    "id-11134207-82252-mgrv9kv7k00862"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp56RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 819652675027968,
                "price": 16900000000,
                "strikethrough_price": 80000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1327370460348416,
                "discount_text": "-69%",
                "model_id": 380088487774,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1327370460348416,
                  "voucher_code": "PUNIGL09",
                  "voucher_discount": 8000000000,
                  "time_info": {
                    "start_time": 1767694620,
                    "end_time": 1774976340,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 18000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 80000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 11,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 11,
                "display_sold_count_text": "11"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp56RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Puning Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51000982804,
            "shopid": 624049900,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mgrv9kux4ydkcb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,2018618,700700063,2068629,298938357,2153644,1718087960,1428713,298463379,844931086908638,844931064601283,700005490,700005510,1718093079,822059908662278,825465608499232,825465608497696,1119699,1400285055,1015914,700190087,2213652,298468389,2098628,2098629,1718088045,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":1721,\"model_id\":380088487774,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mgrv9kux4ydkcb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,2018618,700700063,2068629,298938357,2153644,1718087960,1428713,298463379,844931086908638,844931064601283,700005490,700005510,1718093079,822059908662278,825465608499232,825465608497696,1119699,1400285055,1015914,700190087,2213652,298468389,2098628,2098629,1718088045,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":1721,\"model_id\":380088487774,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51000982804",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43426202936,
              "shopid": 1440040087,
              "name": "COD GT02A Pelacak Motor/Mobil GPS Tracker APP GPS Tracker GSM GPRS Kendaraan Pencari Lokasi Waktu Nyata Mobil Motor Anti Maling",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                1400285055,
                298933384,
                1015914,
                700190087,
                2218763
              ],
              "image": "sg-11134201-821fc-mgrsuhqk1ouh74",
              "images": [
                "sg-11134201-821fc-mgrsuhqk1ouh74",
                "sg-11134201-81ztx-midw0f80xmh486",
                "sg-11134201-821f1-mgrsui69dv64ec",
                "sg-11134201-821fm-mgrsuic6b5s894",
                "sg-11134201-821dx-mgrsuijqgnbjd2",
                "sg-11134201-821g8-mgrsuiqoar6303",
                "sg-11134201-821dy-mgrsuizvu51p82",
                "sg-11134201-821e3-mgrsuj73qnew0a",
                "sg-11134201-821e9-mgrsujd8e0w89c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762509062,
              "sold": 7,
              "historical_sold": 9,
              "liked": false,
              "liked_count": 7,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 13900000000,
              "price_min": 13900000000,
              "price_max": 13900000000,
              "price_min_before_discount": 29600000000,
              "price_max_before_discount": 29600000000,
              "hidden_price_display": null,
              "price_before_discount": 29600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "A",
                  "options": [
                    "GT02A",
                    "EV02"
                  ],
                  "images": [
                    "sg-11134201-81ztx-midw0f80xmh486",
                    "sg-11134201-81zwa-midw0fhell3513"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 798546970870784,
                "price": 13900000000,
                "strikethrough_price": 29600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 340088157590,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 29600000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 9,
                "rounded_local_monthly_sold_count": 7,
                "local_monthly_sold_count_text": "7",
                "rounded_display_sold_count": 9,
                "display_sold_count_text": "9"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Coopss Auto Part",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43426202936,
            "shopid": 1440040087,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fc-mgrsuhqk1ouh74\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699,1400285055,298933384,1015914,700190087,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":1124,\"model_id\":340088157590,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fc-mgrsuhqk1ouh74\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699,1400285055,298933384,1015914,700190087,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":1124,\"model_id\":340088157590,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43426202936",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44551000682,
              "shopid": 1242322,
              "name": "MIJOBS Leather Strap for Galaxy Watch 8 40/44mm Tali Jam Kulit untuk Samsung Galaxy WATCH8 40mm 44mm",
              "label_ids": [
                13,
                27,
                700700063,
                36,
                38,
                39,
                47,
                57,
                1000211,
                1000498,
                1000509,
                1000544,
                1000550,
                2018619,
                2023641,
                844931064601283,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1428713,
                1718087960,
                825465608493600,
                1400285055,
                298933384,
                1015914,
                700190087
              ],
              "image": "sg-11134201-821ef-mgrq0j8woo3z18",
              "images": [
                "sg-11134201-821ef-mgrq0j8woo3z18",
                "sg-11134201-821fb-mgrq0j7vuo0ad9",
                "sg-11134201-821d4-mgrq0j7t8jyg20",
                "sg-11134201-821fh-mgrq0j8xmdqgd1",
                "sg-11134201-821d1-mgrq0j7vw2kq6d",
                "sg-11134201-821fx-mgrq0jaqtkpaa5",
                "sg-11134201-821fi-mgrq0j9j77d978",
                "sg-11134201-821cw-mgrq0ja42nm4df",
                "sg-11134201-821e0-mgrq0j8xw9ak5f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762504330,
              "sold": 9,
              "historical_sold": 12,
              "liked": false,
              "liked_count": 7,
              "view_count": null,
              "catid": 100013,
              "brand": "Mijobs",
              "cmt_count": 2,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 7500000000,
              "price_min": 7500000000,
              "price_max": 7500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color Variant",
                  "options": [
                    "Black",
                    "Brown",
                    "Cream"
                  ],
                  "images": [
                    "sg-11134201-821ew-mgrq0irrorgr8e",
                    "sg-11134201-821gf-mgrq0irmca311c",
                    "sg-11134201-821ez-mgrq0irweq6h9d"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 7500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 365087686764,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 12,
                "rounded_local_monthly_sold_count": 9,
                "local_monthly_sold_count_text": "9",
                "rounded_display_sold_count": 12,
                "display_sold_count_text": "12"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "G-Store Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44551000682,
            "shopid": 1242322,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821ef-mgrq0j8woo3z18\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[13,27,700700063,36,38,39,47,57,1000211,1000498,1000509,1000544,1000550,2018619,2023641,844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699,1428713,1718087960,825465608493600,1400285055,298933384,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":1599,\"model_id\":365087686764,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821ef-mgrq0j8woo3z18\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[13,27,700700063,36,38,39,47,57,1000211,1000498,1000509,1000544,1000550,2018619,2023641,844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699,1428713,1718087960,825465608493600,1400285055,298933384,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":1599,\"model_id\":365087686764,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44551000682",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51550959937,
              "shopid": 2299609,
              "name": "IWatch Series 8 41mm Stainless Steel Second (L)",
              "label_ids": [
                1400066568,
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1718093079,
                1059152,
                1049122,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                1119699,
                700765096,
                298933384,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224r-mgrl8xwtzea26f",
              "images": [
                "id-11134207-8224r-mgrl8xwtzea26f",
                "id-11134207-82251-mgrl8xwu0suie5",
                "id-11134207-8224r-mibgmnrqg16uf9",
                "id-11134207-8224u-mgrl8xwu27eyfa"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762501925,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 370000000000,
              "price_min": 370000000000,
              "price_max": 370000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Kelengkapan",
                  "options": [
                    "iWatch + Strap",
                    "iWatch + Strap + Usb"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 370000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 262133423483,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 370000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GADGET LEE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51550959937,
            "shopid": 2299609,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mgrl8xwtzea26f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,2023641,1718087960,1428713,844931064601283,298463379,1718093079,1059152,1049122,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,1119699,700765096,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2290,\"model_id\":262133423483,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mgrl8xwtzea26f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,2023641,1718087960,1428713,844931064601283,298463379,1718093079,1059152,1049122,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,1119699,700765096,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2290,\"model_id\":262133423483,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51550959937",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53500953252,
              "shopid": 1609664907,
              "name": "PC Case Silicone Strap for Xiaomi Redmi Watch 5 Active/Redmi Watch 5 Lite Anti Gores Rubber Band Tempered Glass Hard Screen Protector Bumper Cover Belt Bracelet Accessories Tali Pengganti Jam Tangan Smartwatch for Redmi Watch 5 Lite/5 Active",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384,
                2103651,
                2143613,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-821es-mgrkqr6mqvime8",
              "images": [
                "sg-11134201-821es-mgrkqr6mqvime8",
                "sg-11134201-821da-mgrkqrgpm8zx74",
                "sg-11134201-821ej-mgrkqrovz2tp79",
                "sg-11134201-821di-mgrkqryepn9reb",
                "sg-11134201-821gg-mgrkqs6fixaj46",
                "sg-11134201-821eo-mgrkqsg24jyl43",
                "sg-11134201-821ew-mgrkqsqiax3e3e",
                "sg-11134201-821fq-mgrkqt27xpu162",
                "sg-11134201-821dk-mgrkqta6j0ndac"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762495436,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3027000000,
              "price_min": 3027000000,
              "price_max": 3027000000,
              "price_min_before_discount": 6580000000,
              "price_max_before_discount": 6580000000,
              "hidden_price_display": null,
              "price_before_discount": 6580000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kiob-m5cqig533g0079.16000081737625480.mp4",
                  "thumb_url": "sg-11110106-6kiob-m5cqig533g0079_cover",
                  "duration": 36,
                  "version": 2,
                  "vid": "sg-11110106-6kiob-m5cqig533g0079",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiob-m5cqig533g0079.16003251745126972.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiob-m5cqig533g0079.16003251745126972.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiob-m5cqig533g0079.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black (case+strap)",
                    "Beige (case+strap)",
                    "Pink (case+strap)",
                    "Blue (case+strap)",
                    "Green (case+strap)",
                    "Blue 2 (case+strap)",
                    "Black (strap)",
                    "Beige (strap)",
                    "Pink (strap)",
                    "Blue (strap)",
                    "Green (strap)",
                    "Light blue (strap)",
                    "Red (strap)",
                    "Orange (strap)",
                    "Lime color (strap)",
                    "Teal (strap)",
                    "Purple (strap)",
                    "Gray (strap)",
                    "White (strap)",
                    "Black (case)",
                    "Beige (case)",
                    "Pink (case)",
                    "Blue (case)",
                    "Green (case)",
                    "Transparent (case)",
                    "Film"
                  ],
                  "images": [
                    "sg-11134201-821fn-mgrkr61jtxxoe5",
                    "sg-11134201-821e3-mgrkr6bjkwege2",
                    "sg-11134201-821fp-mgrkr6nauozyd3",
                    "sg-11134201-821f9-mgrkr6xtx1qi03",
                    "sg-11134201-821dk-mgrkr7997lze1e",
                    "sg-11134201-821ey-mgrkr7kcwxzg7f",
                    "sg-11134201-821e4-mgrkr7tjvax85a",
                    "sg-11134201-821e4-mgrkr838w0sp87",
                    "sg-11134201-821fb-mgrkr8cm34lq6b",
                    "sg-11134201-821g0-mgrkr8si6b667e",
                    "sg-11134201-821fw-mgrkr94xu2a462",
                    "sg-11134201-821f5-mgrkr9edet55ef",
                    "sg-11134201-821cw-mgrkr9sz6nm523",
                    "sg-11134201-821gh-mgrkra3who26e5",
                    "sg-11134201-821ec-mgrkragajtvs8a",
                    "sg-11134201-821fo-mgrkras8ugp5c0",
                    "sg-11134201-821ex-mgrkrb93gqa5e5",
                    "sg-11134201-821e9-mgrkrbk3i422ad",
                    "sg-11134201-821du-mgrkrbwd6wp487",
                    "sg-11134201-821fy-mgrkrc7chiiy8a",
                    "sg-11134201-821fu-mgrkrcic4t1r81",
                    "sg-11134201-821fp-mgrkrcrfjcb189",
                    "sg-11134201-821e2-mgrkrd47db0r5c",
                    "sg-11134201-821dd-mgrkrdenwb9l5f",
                    "sg-11134201-821e8-mgrkrdn8dl3iee",
                    "sg-11134201-821d8-mgrkrdvwu4uh41"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 5 Active",
                    "Redmi Watch 5 Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 3027000000,
                "strikethrough_price": 6580000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 310087352876,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6580000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 30.270",
                      "hidden_promotion_price": "Rp ?0.270",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "fegmilde",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjA0LjE1MV97YjExYmEzYWY0ODU1ODBlNzFkY2NiNTE2N2Y5YjBkMDA6MDIwMDAwMmIwMDFhMjU2ZTowMTAwMDEwNmI3MzMxOWM1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NQ==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53500953252,
            "shopid": 1609664907,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821es-mgrkqr6mqvime8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1995,\"model_id\":310087352876,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821es-mgrkqr6mqvime8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1995,\"model_id\":310087352876,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53500953252",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43126211107,
              "shopid": 1609664907,
              "name": "TPU Case for Huawei Watch Fit 4 / Huawei Watch Fit 4 Pro / Huawei Watch Fit 3 Anti Gores Full Coverage Bumper Accessories Screen Protector Cover Jam Tangan Smartwatch for Huawei Fit 4/4 Pro/3",
              "label_ids": [
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                2103651,
                2143613,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-821d4-mgrkqrh7rgne8a",
              "images": [
                "sg-11134201-821d4-mgrkqrh7rgne8a",
                "sg-11134201-821da-mgrkqrrq4hlb1b",
                "sg-11134201-821dl-mgrkqskelatrf1",
                "sg-11134201-821d8-mgrkqt6oyt5b28",
                "sg-11134201-821e3-mgrkqtj6ghsa90",
                "sg-11134201-821cy-mgrkqtuugc9921",
                "sg-11134201-821dc-mgrkqu8pw1e0ee",
                "sg-11134201-821gh-mgrkqupcbbpp95",
                "sg-11134201-821fh-mgrkqv1h7e30ff"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762495438,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1690000000,
              "price_min": 1690000000,
              "price_max": 1690000000,
              "price_min_before_discount": 3380000000,
              "price_max_before_discount": 3380000000,
              "hidden_price_display": null,
              "price_before_discount": 3380000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Pink(Case)",
                    "Rose Gold(Case)",
                    "Gold(Case)",
                    "Gray(Case)",
                    "Black(Case)",
                    "Clear(Case)",
                    "Silver(Case)",
                    "Blue(Case)",
                    "Flim"
                  ],
                  "images": [
                    "sg-11134201-821el-mgrkr7n2qfplc0",
                    "sg-11134201-821ec-mgrkr8s5ngg8f9",
                    "sg-11134201-821dm-mgrkr95rvlzgfd",
                    "sg-11134201-821ez-mgrkr9j5pszwba",
                    "sg-11134201-821dh-mgrkr9wpkbgv44",
                    "sg-11134201-821e5-mgrkraahsvm6a7",
                    "sg-11134201-821e4-mgrkrakzt9fu53",
                    "sg-11134201-821do-mgrkrau6q689ec",
                    "sg-11134201-821ft-mgrkrb8zrabs35"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "smartwear_size",
                  "options": [
                    "Huawei Watch Fit 3",
                    "Huawei Watch Fit 4",
                    "Huawei Fit 4 Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 740562488049664,
                "price": 1690000000,
                "strikethrough_price": 3380000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 365086771648,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3380000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "fegmilde",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43126211107,
            "shopid": 1609664907,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821d4-mgrkqrh7rgne8a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":603,\"model_id\":365086771648,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821d4-mgrkqrh7rgne8a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":603,\"model_id\":365086771648,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43126211107",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40526193135,
              "shopid": 74727677,
              "name": "Strap Xiaomi Redmi Watch 5 Active Kompatibel Smartwatch 22mm Tali Jam Silikon Polos Pengunci Pin-and-Tuck Softband Silicone",
              "label_ids": [
                298938357,
                2018619,
                298888358,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1049120,
                700005490,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                1119699,
                700765096,
                298463379,
                1718093079,
                1015914,
                700190087,
                298938368,
                2098629,
                298468389,
                2098628,
                1718088045
              ],
              "image": "sg-11134201-821g6-mgqv1ogvomq1b4",
              "images": [
                "sg-11134201-821g6-mgqv1ogvomq1b4",
                "sg-11134201-821ec-mgqv17p19d71d6",
                "sg-11134201-821fb-mgqv17vy2wpba9",
                "sg-11134201-821fq-mgqv182nssuk40",
                "sg-11134201-821d7-mgqv188ocqa2e4",
                "sg-11134201-821fd-mgqv18f4to9b5c",
                "sg-11134201-821fk-mgqv18lk7dhl79",
                "sg-11134201-821ep-mgqv18rfdeyz20",
                "sg-11134201-821d6-mgqv18wi680854"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762447949,
              "sold": 41,
              "historical_sold": 94,
              "liked": false,
              "liked_count": 7,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 29,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2280000000,
              "price_min": 2280000000,
              "price_max": 2280000000,
              "price_min_before_discount": 4200000000,
              "price_max_before_discount": 4200000000,
              "hidden_price_display": null,
              "price_before_discount": 4200000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-46%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna Strap",
                  "options": [
                    "Hitam",
                    "Putih",
                    "Putih Gading",
                    "Ungu",
                    "Biru Muda",
                    "Biru Tua",
                    "Merah",
                    "Merah Muda",
                    "Hijau",
                    "Hijau Terang",
                    "Hijau Tentara",
                    "Abu-abu",
                    "Oranye"
                  ],
                  "images": [
                    "sg-11134201-821dj-mgqv1932e23109",
                    "sg-11134201-821e0-mgqv198bcw0dc1",
                    "sg-11134201-821ez-mgqv19fo0q2zab",
                    "sg-11134201-821d6-mgqv19lp1f61e4",
                    "sg-11134201-821dl-mgqv19qtsjrc3c",
                    "sg-11134201-821ej-mgqv19vjln9nde",
                    "sg-11134201-821f0-mgqv1a14l2iw8c",
                    "sg-11134201-821di-mgqv1a6o5vrcd9",
                    "sg-11134201-821e3-mgqv1abigk5ra1",
                    "sg-11134201-821fd-mgqv1agsr3tbc0",
                    "sg-11134201-821gb-mgqv1amp4owdce",
                    "sg-11134201-821dc-mgqv1aseiubs44",
                    "sg-11134201-821ey-mgqv1aygtxqma5"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Redmi Watch",
                  "options": [
                    "5 Active & 22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.9655172413793105,
                "rating_count": [
                  29,
                  0,
                  0,
                  0,
                  1,
                  28
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 392424702882229,
                "add_on_deal_label": "Kombo Hemat",
                "sub_type": 0,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 772383556829184,
                "price": 2280000000,
                "strikethrough_price": 4200000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-46%",
                "model_id": 277131636652,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4200000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 94,
                "rounded_local_monthly_sold_count": 41,
                "local_monthly_sold_count_text": "41",
                "rounded_display_sold_count": 94,
                "display_sold_count_text": "94"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Wourigin ",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40526193135,
            "shopid": 74727677,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821g6-mgqv1ogvomq1b4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298938357,2018619,298888358,2023641,1718087960,1428713,844931064601283,844931086908638,1049120,700005490,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,2048660,2048661,1119699,700765096,298463379,1718093079,1015914,700190087,298938368,2098629,298468389,2098628,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":605,\"model_id\":277131636652,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821g6-mgqv1ogvomq1b4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298938357,2018619,298888358,2023641,1718087960,1428713,844931064601283,844931086908638,1049120,700005490,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,2048660,2048661,1119699,700765096,298463379,1718093079,1015914,700190087,298938368,2098629,298468389,2098628,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":605,\"model_id\":277131636652,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40526193135",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26793524410,
              "shopid": 23820930,
              "name": "Hard 2 in 1 Case n Tempered Glass Huawei Watch GT 6 Pro 46mm - GT6 Pro Casing Full Coverage Sensitive Cover Clear Screen Cover Protector Guard Shock Drop Proof Hardcase Jam",
              "label_ids": [
                47,
                2023641,
                2018619,
                1000167,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1049127,
                1049112,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                1718093079,
                1400066568,
                1119699,
                700765096,
                2068629,
                298938357,
                298933384,
                2098628,
                298938368,
                2098629,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82251-mgqsfljqspvy03",
              "images": [
                "id-11134207-82251-mgqsfljqspvy03",
                "id-11134207-8224p-mgqsfljz13po08",
                "id-11134207-8224q-mgqsfljz5bf01f",
                "id-11134207-8224z-mgqsfljz3wuk6a",
                "id-11134207-8224v-mgqsfljz6pzga1",
                "id-11134207-82252-mgqsfljz84jw96",
                "id-11134207-8224t-mgqsfljz2ia4b4",
                "id-11134207-8224w-mgqsfljz9j4c57",
                "id-11134207-8224z-mgqsfljzaxos4d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762447876,
              "sold": 3,
              "historical_sold": 7,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 8500000000,
              "price_min": 8500000000,
              "price_max": 8500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "SideBlack",
                    "Clear"
                  ],
                  "images": [
                    "id-11134207-8224o-mgqsfljzcc98ab",
                    "id-11134207-8224w-mgqsfljzdqto19"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  0,
                  4
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 8500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 360084718536,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 8500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 7,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 7,
                "display_sold_count_text": "7"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "LP Bonic",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26793524410,
            "shopid": 23820930,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mgqsfljqspvy03\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,2023641,2018619,1000167,1428713,1718087960,844931086908638,844931064601283,298463379,1049127,1049112,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608493600,1718093079,1400066568,1119699,700765096,2068629,298938357,298933384,2098628,298938368,2098629,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":606,\"model_id\":360084718536,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mgqsfljqspvy03\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,2023641,2018619,1000167,1428713,1718087960,844931086908638,844931064601283,298463379,1049127,1049112,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608493600,1718093079,1400066568,1119699,700765096,2068629,298938357,298933384,2098628,298938368,2098629,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":606,\"model_id\":360084718536,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26793524410",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51450930639,
              "shopid": 1431885268,
              "name": "Cover S1 Active Frame Cover Case Watch Xiaomi Screen TPU Mi",
              "label_ids": [
                844931086908638,
                844931064601283,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699
              ],
              "image": "id-11134207-7r98r-lt3cqymwbgql45",
              "images": [
                "id-11134207-7r98r-lt3cqymwbgql45",
                "id-11134207-7r98s-ls9isv6l48qu27",
                "id-11134207-7r98y-ls9isv6l5nba69",
                "id-11134207-7r98s-ls9isv6kymh25a",
                "id-11134207-7r98s-ls9isv6l71vq64",
                "id-11134207-7r98t-ls9isv6l2u6e64",
                "id-11134207-7r98w-ls9isv6l8gg624",
                "id-11134207-7r98r-ls9isv6l011i9c",
                "id-11134207-7r98w-ls9isv6l1fly68"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762434673,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 7171400000,
              "price_min": 7171400000,
              "price_max": 7171400000,
              "price_min_before_discount": 15097700000,
              "price_max_before_discount": 15097700000,
              "hidden_price_display": null,
              "price_before_discount": 15097700000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black White",
                    "Full Black"
                  ],
                  "images": [
                    "id-11134207-7r98q-ls9isv6l9v0m90",
                    "id-11134207-7r98w-ls9isv6lb9l2c3"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 392350069441860,
                "bundle_deal_label": "Pilih 3, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 733111550282752,
                "price": 6971400000,
                "strikethrough_price": 15097700000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1280914709823488,
                "discount_text": "-53%",
                "model_id": 277131188502,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1280914709823488,
                  "voucher_code": "TLIFTLI10",
                  "voucher_discount": 200000000,
                  "time_info": {
                    "start_time": 1762156620,
                    "end_time": 1769763600,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 15097700000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "tlif0qjb8c",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51450930639,
            "shopid": 1431885268,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98r-lt3cqymwbgql45\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,700005490,1049120,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":608,\"model_id\":277131188502,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98r-lt3cqymwbgql45\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,700005490,1049120,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":608,\"model_id\":277131188502,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51450930639",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45750948531,
              "shopid": 1484087853,
              "name": "Anti Gores Soft Silicone Case Strap for Mi Band 9 Active / Redmi Band 3 PC Screen Protector Cover Rubber Adjustable Belt Band Wristband Bracelet Accessories Tali Jam Tangan Smartwatch for Xiaomi Smart Band 9 Active/ Redmi Band 3",
              "label_ids": [
                2153644,
                2018618,
                298938357,
                298888358,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                1119699,
                298933384,
                2213652,
                1400285055,
                2048660,
                2048661,
                700765096,
                1015914,
                700190087,
                2103651,
                2143613,
                700810055,
                298938368,
                1718088045,
                2098628,
                2098629,
                298468389
              ],
              "image": "sg-11134201-821fj-mgqe24gs3eh965",
              "images": [
                "sg-11134201-821fj-mgqe24gs3eh965",
                "sg-11134201-821dy-mgqe2572n3m371",
                "sg-11134201-821fx-mgqe25opperxeb",
                "sg-11134201-821d1-mgqe262ctyiw62",
                "sg-11134201-821fz-mgqe270q3t3iab",
                "sg-11134201-821er-mgqe27fjomq307",
                "sg-11134201-821cw-mgqe27vu0gzx57",
                "sg-11134201-821es-mgqe28bk0iz296",
                "sg-11134201-821ff-mgqe28qlv4zsf5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762423665,
              "sold": 44,
              "historical_sold": 107,
              "liked": false,
              "liked_count": 30,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 37,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2420000000,
              "price_min": 2420000000,
              "price_max": 2420000000,
              "price_min_before_discount": 5260000000,
              "price_max_before_discount": 5260000000,
              "hidden_price_display": null,
              "price_before_discount": 5260000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kiog-m9sv3tbwbo2x43.16000081747318719.mp4",
                  "thumb_url": "sg-11110106-6kiog-m9sv3tbwbo2x43_cover",
                  "duration": 38,
                  "version": 2,
                  "vid": "sg-11110106-6kiog-m9sv3tbwbo2x43",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiog-m9sv3tbwbo2x43.16006711750275864.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiog-m9sv3tbwbo2x43.16006711750275864.mp4",
                      "width": 1028,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiog-m9sv3tbwbo2x43.16000081747318719.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiog-m9sv3tbwbo2x43.16000081747318719.mp4",
                      "width": 1280,
                      "height": 672
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiog-m9sv3tbwbo2x43.16003251750275864.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiog-m9sv3tbwbo2x43.16003251750275864.mp4",
                      "width": 1280,
                      "height": 672
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiog-m9sv3tbwbo2x43.default.mp4",
                    "width": 1028,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black(Case Strap)",
                    "Blue(Case Strap)",
                    "Green(Case Strap)",
                    "Red(Case Strap)",
                    "Yellow(Case Strap)",
                    "Pink(Case Strap)",
                    "Purple(Case Strap)",
                    "Star(Case Strap)",
                    "Grey(Case Strap)",
                    "Orange(Case Strap)",
                    "Film"
                  ],
                  "images": [
                    "sg-11134201-821de-mgqe2ltpb2tl5e",
                    "sg-11134201-821d3-mgqe2m6lweto40",
                    "sg-11134201-821d2-mgqe2mzjkq2zb2",
                    "sg-11134201-821f7-mgqe2oa8rh8pbe",
                    "sg-11134201-821d7-mgqe2p40fz7u3c",
                    "sg-11134201-821fm-mgqe2q0mgydoee",
                    "sg-11134201-821g3-mgqe2r5uf37v51",
                    "sg-11134201-821e7-mgqe2s5nwgsu9b",
                    "sg-11134201-821eh-mgqe2u7lfcw860",
                    "sg-11134201-821fe-mgqe2w5i5mod3f",
                    "sg-11134201-821f1-mgqe2xxdh0y5be"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    " Mi Band 9 Active ",
                    "Redmi Band 3 "
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  37,
                  0,
                  0,
                  0,
                  0,
                  37
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372024811991523,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2420000000,
                "strikethrough_price": 5260000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 262131005742,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5260000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 24.200",
                      "hidden_promotion_price": "Rp ?4.200",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 107,
                "rounded_local_monthly_sold_count": 44,
                "local_monthly_sold_count_text": "44",
                "rounded_display_sold_count": 107,
                "display_sold_count_text": "107"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EIHAIHIS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45750948531,
            "shopid": 1484087853,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fj-mgqe24gs3eh965\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,298938357,298888358,1718087960,1428713,844931064601283,844931086908638,298463379,1059154,1059152,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1119699,298933384,2213652,1400285055,2048660,2048661,700765096,1015914,700190087,2103651,2143613,700810055,298938368,1718088045,2098628,2098629,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":609,\"model_id\":262131005742,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fj-mgqe24gs3eh965\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,298938357,298888358,1718087960,1428713,844931064601283,844931086908638,298463379,1059154,1059152,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1119699,298933384,2213652,1400285055,2048660,2048661,700765096,1015914,700190087,2103651,2143613,700810055,298938368,1718088045,2098628,2098629,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":609,\"model_id\":262131005742,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45750948531",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40026209680,
              "shopid": 1431885268,
              "name": "Jam tangan Game Kalkulator Notifikasi New Smartwatch Series 9 I9 Pro Max S1 Layar Full HD Battery Long-lasting Charger Wireless",
              "label_ids": [
                844931064601283,
                844931086908638,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384
              ],
              "image": "sg-11134201-7rat5-ma5eu17py31qa9",
              "images": [
                "sg-11134201-7rat5-ma5eu17py31qa9",
                "sg-11134201-7ratm-ma5etx89s03y2f",
                "sg-11134201-7ravs-ma5etxtwxpkbc2",
                "sg-11134201-7ravm-ma5etyeq1w3z58",
                "sg-11134201-7rau8-ma5etz0380ry7c",
                "sg-11134201-7rav7-ma5etzxdwp9qdf",
                "sg-11134201-7rat1-ma5eu0nqrbhq5d",
                "sg-11134201-7rasi-ma5eu1sj3n4fd3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762422212,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 15560500000,
              "price_min": 15560500000,
              "price_max": 15560500000,
              "price_min_before_discount": 32758900000,
              "price_max_before_discount": 32758900000,
              "hidden_price_display": null,
              "price_before_discount": 32758900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-52%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "white",
                    "pink",
                    "black"
                  ],
                  "images": [
                    "sg-11134201-7rfi4-m3yqbv6g67hbf5",
                    "sg-11134201-7rfg3-m3yqbvohfsr6e0",
                    "sg-11134201-7rfga-m3yqbw2wuqbs25"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 392350069441860,
                "bundle_deal_label": "Pilih 3, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 733111550282752,
                "price": 14760500000,
                "strikethrough_price": 32758900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1280917907062784,
                "discount_text": "-52%",
                "model_id": 430083069887,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1280917907062784,
                  "voucher_code": "TLIFTLI15",
                  "voucher_discount": 800000000,
                  "time_info": {
                    "start_time": 1762157040,
                    "end_time": 1769763600,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 15000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 32758900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "tlif0qjb8c",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40026209680,
            "shopid": 1431885268,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rat5-ma5eu17py31qa9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,700005490,1049120,822059908662278,825465608499232,825465608497696,1718093079,1119699,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":610,\"model_id\":430083069887,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rat5-ma5eu17py31qa9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,700005490,1049120,822059908662278,825465608499232,825465608497696,1718093079,1119699,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":610,\"model_id\":430083069887,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40026209680",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42326174825,
              "shopid": 1659218955,
              "name": "VELOX Smart Watch S11 Pro support What's App with IP68 Al Creation Dial Display wireless charging Dan Ganti Wallpapper Jam Tangan Smartwatch Jam Tangan Wanita pria & smartwatch wanita Monitor Monitor Detak Jantung",
              "label_ids": [
                844931064601283,
                822059908662278,
                825465608499232,
                1718087960,
                1428713,
                1119699,
                298463379,
                1718093079,
                1015914,
                700190087,
                700700063,
                1400285055,
                298933384,
                844931086908638,
                1059152,
                1049122,
                2023641,
                2018619,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224w-mgq7v23en2tm91",
              "images": [
                "id-11134207-8224w-mgq7v23en2tm91",
                "id-11134207-82251-mgq7v23d2w3zcf",
                "id-11134207-8224x-mgq7v23d4aof48",
                "id-11134207-8224o-mgq7v23d5p8vb6",
                "id-11134207-8224v-mgq7v23dbbin9c",
                "id-11134207-82252-mgq7v23dcq33c5",
                "id-11134207-82250-mgq7v23d73tbca",
                "id-11134207-8224w-mgq7v23d8idr5e",
                "id-11134207-8224x-mgq7v23d9wy7ef"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762413839,
              "sold": 23,
              "historical_sold": 63,
              "liked": false,
              "liked_count": 76,
              "view_count": null,
              "catid": 100013,
              "brand": "VELOX",
              "cmt_count": 50,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 15800000000,
              "price_min": 15800000000,
              "price_max": 15800000000,
              "price_min_before_discount": 79999900000,
              "price_max_before_discount": 79999900000,
              "hidden_price_display": null,
              "price_before_discount": 79999900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-80%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "S11 Pro Max-Hitam",
                    "S11 Pro Max-Merah Mu",
                    "S11 Pro Max-Emas",
                    "S11 Pro Max-Abu-abu"
                  ],
                  "images": [
                    "id-11134207-8224p-mgq7v23de4njf1",
                    "id-11134207-82251-mgq87l2xfcw93f",
                    "id-11134207-82252-mgq87l2vsd1q45",
                    "id-11134207-82252-mgq87l2vtrm6cf"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  50,
                  0,
                  0,
                  0,
                  0,
                  50
                ],
                "rcount_with_context": 43,
                "rcount_with_image": 45
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227948519243776,
                "price": 15800000000,
                "strikethrough_price": 79999900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-80%",
                "model_id": 320082111417,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 79999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 63,
                "rounded_local_monthly_sold_count": 23,
                "local_monthly_sold_count_text": "23",
                "rounded_display_sold_count": 63,
                "display_sold_count_text": "63"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "VELOX smartwatch Toko001",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42326174825,
            "shopid": 1659218955,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mgq7v23en2tm91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,822059908662278,825465608499232,1718087960,1428713,1119699,298463379,1718093079,1015914,700190087,700700063,1400285055,298933384,844931086908638,1059152,1049122,2023641,2018619,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":611,\"model_id\":320082111417,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mgq7v23en2tm91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,822059908662278,825465608499232,1718087960,1428713,1119699,298463379,1718093079,1015914,700190087,700700063,1400285055,298933384,844931086908638,1059152,1049122,2023641,2018619,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":611,\"model_id\":320082111417,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42326174825",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54900898624,
              "shopid": 1617901790,
              "name": "Smartwatch Apple Watch Series 9 41mm/45mm Sport Smart watch with 2.2\" HD AMOLED Display GPS NFC Waterproof Bluetooth Call For iOS & Android Jam Tangan Smartwatch Pernah Dipakai",
              "label_ids": [
                844931064601283,
                844931086908638,
                822059908662278,
                825465608499232,
                298463379,
                1718093079,
                1119699,
                2018619,
                1428713,
                1718087960,
                1049122,
                1059152,
                298933384,
                1400285055,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224o-mgq0r1mvj3m76e",
              "images": [
                "id-11134207-8224o-mgq0r1mvj3m76e",
                "id-11134207-8224p-mgq0r1mnq617c4",
                "id-11134207-8224r-mi5q5cyzzg9082",
                "id-11134207-8224w-mi5q5cz4z8xy49",
                "id-11134207-8224z-mgq0r1mnsz6385",
                "id-11134207-8224q-mgq0r1mnrklnf0",
                "id-11134207-8224x-mgq0r1mnvsazed",
                "id-11134207-8224y-mgq0r1mnudqjc1",
                "id-11134207-8224q-mi5q5cz50nie3c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762407658,
              "sold": 15,
              "historical_sold": 18,
              "liked": false,
              "liked_count": 61,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 11,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 39500000000,
              "price_min": 39500000000,
              "price_max": 39500000000,
              "price_min_before_discount": 219900000000,
              "price_max_before_discount": 219900000000,
              "hidden_price_display": null,
              "price_before_discount": 219900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-82%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven5-mgq0rk5gcb9r76.16000101762401316.mp4",
                  "thumb_url": "id-11110105-6ven5-mgq0rk5gcb9r76_cover",
                  "duration": 33,
                  "version": 2,
                  "vid": "id-11110105-6ven5-mgq0rk5gcb9r76",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven5-mgq0rk5gcb9r76.16000101762401316.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven5-mgq0rk5gcb9r76.16000101762401316.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven5-mgq0rk5gcb9r76.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black- 41MM",
                    "White-41MM",
                    "Starlight-41MM",
                    "Pink-41MM",
                    "Starlight-45MM",
                    "Black."
                  ],
                  "images": [
                    "id-11134207-82252-mgq4et9me61b20",
                    "id-11134207-8224p-mgq0r1mo000bcf",
                    "id-11134207-8224r-mgq4et9k0he398",
                    "id-11134207-8224o-mgq0r1mo2t5775",
                    "id-11134207-8224x-mgq4et9mfklr51",
                    "id-11134207-8224z-mgq4et9mcrgv9e"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.909090909090909,
                "rating_count": [
                  11,
                  0,
                  0,
                  0,
                  1,
                  10
                ],
                "rcount_with_context": 9,
                "rcount_with_image": 9
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 410024350597142,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227924490076161,
                "price": 37900000000,
                "strikethrough_price": 219900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1330135345676288,
                "discount_text": "-82%",
                "model_id": 302129750188,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1330135345676288,
                  "voucher_code": "SVC-1330135345676288",
                  "voucher_discount": 1600000000,
                  "time_info": {
                    "start_time": 1768323600,
                    "end_time": 1768409999,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 2900000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 219900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 18,
                "rounded_local_monthly_sold_count": 15,
                "local_monthly_sold_count_text": "15",
                "rounded_display_sold_count": 18,
                "display_sold_count_text": "18"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ZapLink Digital Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54900898624,
            "shopid": 1617901790,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mgq0r1mvj3m76e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,822059908662278,825465608499232,298463379,1718093079,1119699,2018619,1428713,1718087960,1049122,1059152,298933384,1400285055,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":613,\"model_id\":302129750188,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mgq0r1mvj3m76e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,822059908662278,825465608499232,298463379,1718093079,1119699,2018619,1428713,1718087960,1049122,1059152,298933384,1400285055,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":613,\"model_id\":302129750188,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54900898624",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47900927383,
              "shopid": 1003913723,
              "name": "Termurah Jam Tangan Android Layar Sentuh Mewah Bisa WhatsApp / SmartWatch Pria Wanita Elegan Anti Air",
              "label_ids": [
                2018619,
                844931086908638,
                844931064601283,
                298463379,
                700005487,
                1059152,
                822059908662278,
                825465608499232,
                1718093079,
                1119699,
                298933384,
                1400285055,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82250-mgq0misye61997",
              "images": [
                "id-11134207-82250-mgq0misye61997",
                "id-11134207-8224o-mgq0mit8f5zhc7",
                "id-11134207-8224z-mgq0mit8gkjxd3",
                "id-11134207-82251-mgq0mit8hz4dad",
                "id-11134207-8224q-mgq0mit8jdot07",
                "id-11134207-82251-mgq0mit8ks99ac",
                "id-11134207-8224u-mgq0mit8m6tp56",
                "id-11134207-8224u-mgq0mit8nle5a7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762402373,
              "sold": 59,
              "historical_sold": 111,
              "liked": false,
              "liked_count": 25,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 45,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 6350000000,
              "price_min": 6350000000,
              "price_max": 6350000000,
              "price_min_before_discount": 20000000000,
              "price_max_before_discount": 20000000000,
              "hidden_price_display": null,
              "price_before_discount": 20000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-68%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam D20",
                    "Pink D20",
                    "Putih D20"
                  ],
                  "images": [
                    "id-11134207-82250-mgq0mit8ozyl5c",
                    "id-11134207-8224p-mgq0mit8qej1a3",
                    "id-11134207-8224s-mgq0mit8rt3h71"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.4222222222222225,
                "rating_count": [
                  45,
                  3,
                  1,
                  2,
                  7,
                  32
                ],
                "rcount_with_context": 9,
                "rcount_with_image": 8
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 763158403284992,
                "price": 6350000000,
                "strikethrough_price": 20000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-68%",
                "model_id": 420081125694,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 20000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 111,
                "rounded_local_monthly_sold_count": 59,
                "local_monthly_sold_count_text": "59",
                "rounded_display_sold_count": 111,
                "display_sold_count_text": "111"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Jayaย Berkahย Real",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47900927383,
            "shopid": 1003913723,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mgq0misye61997\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,298463379,700005487,1059152,822059908662278,825465608499232,1718093079,1119699,298933384,1400285055,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":34,\"model_id\":420081125694,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mgq0misye61997\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,298463379,700005487,1059152,822059908662278,825465608499232,1718093079,1119699,298933384,1400285055,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":34,\"model_id\":420081125694,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47900927383",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45100915821,
              "shopid": 1174585117,
              "name": "Metal Stainless Steel Strap for Redmi Watch 5 Active /Redmi Watch 5 Lite/Samsung Galaxy Watch 7/FE/6/5/4 20mm 22mm Quick Release Band Belt Bracelet Tali Jam Tangan Smartwatch for Garmin Watch /Huawei Watch GT 6 5 4 /Amazfit /Xiaomi Watch//Itel/Aolon/advan",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059154,
                1059152,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                298933384,
                1400285055,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-821g8-mgpxkvsj1ngr7b",
              "images": [
                "sg-11134201-821g8-mgpxkvsj1ngr7b",
                "sg-11134201-821gb-mgpxkwc9t1xq2f",
                "sg-11134201-821eg-mgpxkwo5ajv356",
                "sg-11134201-821ek-mgpxkxa83ifef0",
                "sg-11134201-821dh-mgpxkykjs93jdb",
                "sg-11134201-821e7-mgpxkzkkiuq124",
                "sg-11134201-821f8-mgpxl00yd5oo0d",
                "sg-11134201-821ex-mgpxl0o0acy686",
                "sg-11134201-821fi-mgpxl11aoxzf26"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762395957,
              "sold": 2,
              "historical_sold": 9,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 6900000000,
              "price_min": 6900000000,
              "price_max": 6900000000,
              "price_min_before_discount": 12000000000,
              "price_max_before_discount": 12000000000,
              "hidden_price_display": null,
              "price_before_discount": 12000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-43%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "silver(strap)",
                    "black(strap)",
                    "gold(strap)",
                    "rose gold(strap)",
                    "silver rose(strap)",
                    "silver black(strap)",
                    "silver gold(strap)",
                    "blue(strap)"
                  ],
                  "images": [
                    "sg-11134201-821gg-mgpxle8wnea0a0",
                    "sg-11134201-821d2-mgpxlezgsop888",
                    "sg-11134201-821d6-mgpxlfn4dfkcc3",
                    "sg-11134201-821ft-mgpxlg9xpngp02",
                    "sg-11134201-821f2-mgpxlgwn2juz67",
                    "sg-11134201-821ej-mgpxlhlmk83y76",
                    "sg-11134201-821fc-mgpxlia3k6bx4a",
                    "sg-11134201-821fg-mgpxlix3lwqzd8"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "20mm watch band",
                    "22mm watch band",
                    "Redmi Watch 5 Active",
                    "Redmi Watch 5 Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 3.5,
                "rating_count": [
                  2,
                  0,
                  1,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 403925660611234,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 6831000000,
                "strikethrough_price": 12000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1293901332889608,
                "discount_text": "-43%",
                "model_id": 350080524555,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1293901332889608,
                  "voucher_code": "EAMIFGY43",
                  "voucher_discount": 69000000,
                  "time_info": {
                    "start_time": 1763704260,
                    "end_time": 1771825740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 6900000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 12000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 68.310",
                      "hidden_promotion_price": "Rp ?8.310",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 9,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 9,
                "display_sold_count_text": "9"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Lbiaodai",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45100915821,
            "shopid": 1174585117,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821g8-mgpxkvsj1ngr7b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059154,1059152,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,298933384,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":614,\"model_id\":350080524555,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821g8-mgpxkvsj1ngr7b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059154,1059152,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,298933384,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":614,\"model_id\":350080524555,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45100915821",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48300890925,
              "shopid": 74727677,
              "name": "Strap Xiaomi Redmi Watch 2 Lite Poco Watch Tali Jam Silikon Polos Gesper Klasik Softband Silicone",
              "label_ids": [
                2023641,
                298938357,
                298888358,
                2018619,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                700005490,
                1049120,
                1119699,
                700765096,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                298463379,
                1718093079,
                1015914,
                700190087,
                1400285055,
                1718088045,
                298468389,
                298938368,
                2098629,
                2098628
              ],
              "image": "sg-11134201-821fr-mgshbd4tylu6ca",
              "images": [
                "sg-11134201-821fr-mgshbd4tylu6ca",
                "sg-11134201-821dc-mgshai3kp3wt01",
                "sg-11134201-821ej-mgshai9tu0paa7",
                "sg-11134201-821em-mgshaif0xfd500",
                "sg-11134201-821dh-mgshaik9mc5o82",
                "sg-11134201-821er-mgshaipu4y6n08",
                "sg-11134201-821fa-mgshaiwnzoy242",
                "sg-11134201-821d3-mgshaj1scrv3c0",
                "sg-11134201-821e3-mgshaj79o5qga9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762353707,
              "sold": 84,
              "historical_sold": 155,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 40,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1680000000,
              "price_min": 1680000000,
              "price_max": 1680000000,
              "price_min_before_discount": 4000000000,
              "price_max_before_discount": 4000000000,
              "hidden_price_display": null,
              "price_before_discount": 4000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-58%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna Strap",
                  "options": [
                    "Hitam",
                    "Putih",
                    "Putih Gading",
                    "Ungu",
                    "Cokelat",
                    "Biru Tua",
                    "Merah",
                    "Merah Muda",
                    "Hijau",
                    "Hijau Tentara",
                    "Oranye"
                  ],
                  "images": [
                    "sg-11134201-821g9-mgsxg7jhyozz25",
                    "sg-11134201-821em-mgsxg7pqmqz177",
                    "sg-11134201-821g5-mgsxg7v3m9e035",
                    "sg-11134201-821dm-mgsxg80ekop751",
                    "sg-11134201-821gc-mgsxg86zdlam07",
                    "sg-11134201-821ea-mgsxg8d9kdu7f7",
                    "sg-11134201-821dv-mgsxg8k53m6h50",
                    "sg-11134201-821dy-mgsxg8uu677u00",
                    "sg-11134201-821g8-mgsxg91438y04d",
                    "sg-11134201-821fw-mgsxg96yk07d57",
                    "sg-11134201-821dm-mgsxg9d8tlvy10"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  40,
                  0,
                  0,
                  0,
                  0,
                  40
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 772383556829184,
                "price": 1680000000,
                "strikethrough_price": 4000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-58%",
                "model_id": 345078801076,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 155,
                "rounded_local_monthly_sold_count": 84,
                "local_monthly_sold_count_text": "84",
                "rounded_display_sold_count": 155,
                "display_sold_count_text": "155"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Wourigin ",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48300890925,
            "shopid": 74727677,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fr-mgshbd4tylu6ca\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,298938357,298888358,2018619,1718087960,1428713,844931064601283,844931086908638,700005490,1049120,1119699,700765096,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,2048660,2048661,298463379,1718093079,1015914,700190087,1400285055,1718088045,298468389,298938368,2098629,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":615,\"model_id\":345078801076,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fr-mgshbd4tylu6ca\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,298938357,298888358,2018619,1718087960,1428713,844931064601283,844931086908638,700005490,1049120,1119699,700765096,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,2048660,2048661,298463379,1718093079,1015914,700190087,1400285055,1718088045,298468389,298938368,2098629,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":615,\"model_id\":345078801076,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48300890925",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27293512710,
              "shopid": 1654636921,
              "name": "[NEW]SmartWatch S11 Pro Max IP68 Waterproof Tahan air, 45mm HD AMOLED Display , jam tangan olahraga,Smartwatch Wanita Pria Dan Ganti Wallpaper Jam tangan Pria Jam Tangan Wanita Jam Tangan Smartwatch Couple",
              "label_ids": [
                844931064601283,
                1059152,
                700005489,
                822059908662278,
                825465608499232,
                1428713,
                1718087960,
                1718093079,
                298463379,
                1400285055,
                700700063,
                844931086908638,
                1015914,
                700190087,
                2023641,
                2018619,
                298933384,
                299103323,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224v-mh7vk1ffqjgt6b",
              "images": [
                "id-11134207-8224v-mh7vk1ffqjgt6b",
                "id-11134207-8224w-micwgeteca2u18",
                "id-11134207-82252-mh7vk1fhndak79",
                "id-11134207-8224x-mh7vk1fhlyq431",
                "id-11134207-82252-mh7vk1fhorv0fd",
                "id-11134207-8224s-mh7vy9w9ksuj6a",
                "id-11134207-82252-mh7vy9w9p0jved",
                "id-11134207-82250-mh7vy9w9m7ez5d",
                "id-11134207-8224o-mh7vy9w9nlzf89"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762335496,
              "sold": 65,
              "historical_sold": 148,
              "liked": false,
              "liked_count": 110,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 95,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 17800000000,
              "price_min": 17800000000,
              "price_max": 17800000000,
              "price_min_before_discount": 69999900000,
              "price_max_before_discount": 69999900000,
              "hidden_price_display": null,
              "price_before_discount": 69999900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-75%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven9-mh7vqok6emmm0f.16000081763482481.mp4",
                  "thumb_url": "id-11110105-6ven9-mh7vqok6emmm0f_cover",
                  "duration": 22,
                  "version": 2,
                  "vid": "id-11110105-6ven9-mh7vqok6emmm0f",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven9-mh7vqok6emmm0f.16000081763482481.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven9-mh7vqok6emmm0f.16000081763482481.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven9-mh7vqok6emmm0f.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "11 Pro Max - Hitam",
                    "11 Pro Max - Pink",
                    "11 Pro Max - Golden",
                    "11 Pro Max - Silvery",
                    "11 Pro Max - Hitam."
                  ],
                  "images": [
                    "id-11134207-8224u-mh7vy9w9f6kr1b",
                    "id-11134207-8224x-mh7vy9w9gl578c",
                    "id-11134207-8224y-mh7vy9w9hzpn4f",
                    "id-11134207-8224w-mh7vy9w9jea32e",
                    "id-11134207-8224r-mj50jqs09fra6e"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.936842105263158,
                "rating_count": [
                  95,
                  0,
                  0,
                  1,
                  4,
                  90
                ],
                "rcount_with_context": 66,
                "rcount_with_image": 67
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227974909804545,
                "price": 17800000000,
                "strikethrough_price": 69999900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-75%",
                "model_id": 365077521141,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 69999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 148,
                "rounded_local_monthly_sold_count": 65,
                "local_monthly_sold_count_text": "65",
                "rounded_display_sold_count": 148,
                "display_sold_count_text": "148"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SEN LINSI SmartStore",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 27293512710,
            "shopid": 1654636921,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mh7vk1ffqjgt6b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005489,822059908662278,825465608499232,1428713,1718087960,1718093079,298463379,1400285055,700700063,844931086908638,1015914,700190087,2023641,2018619,298933384,299103323,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":616,\"model_id\":365077521141,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mh7vk1ffqjgt6b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005489,822059908662278,825465608499232,1428713,1718087960,1718093079,298463379,1400285055,700700063,844931086908638,1015914,700190087,2023641,2018619,298933384,299103323,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":616,\"model_id\":365077521141,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27293512710",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44850872013,
              "shopid": 1389189280,
              "name": "CARDIFF Jam Tangan Electra CE 002 | Pria Wanita | Smartwatch | Tahan Air | 5ATM",
              "label_ids": [
                2018619,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1718093079,
                298463379,
                1049116,
                1049117,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224w-mgow7zm2doned9",
              "images": [
                "id-11134207-8224w-mgow7zm2doned9",
                "id-11134207-8224s-mgow7zm2f37ud7",
                "id-11134207-8224v-mgow7zm2ghsa41",
                "id-11134207-8224o-mgow7zm2hwcqa3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762334865,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 54889000000,
              "price_min": 54889000000,
              "price_max": 54889000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Casing",
                  "options": [
                    "Titan/Hitam",
                    "Silver",
                    "Rosegold"
                  ],
                  "images": [
                    "id-11134207-8224w-mgox7z87982270",
                    "id-11134207-8224u-mgox7z810h71dd",
                    "id-11134207-8224o-mgox7z811vrh8f"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tali/Strap",
                  "options": [
                    "Abu",
                    "Army",
                    "Cokelat",
                    "Khaki",
                    "Kuning",
                    "Maroon",
                    "Merah",
                    "Navy",
                    "Pink",
                    "Peach"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 54789000000,
                "strikethrough_price": 54889000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1327914361831424,
                "discount_text": null,
                "model_id": 350077445574,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1327914361831424,
                  "voucher_code": "HARTS01",
                  "voucher_discount": 100000000,
                  "time_info": {
                    "start_time": 1767759000,
                    "end_time": 1770483540,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 18000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 54889000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Hartech Watch",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44850872013,
            "shopid": 1389189280,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mgow7zm2doned9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,844931086908638,1718093079,298463379,1049116,1049117,822059908662278,825465608499232,825465608497696,1119699,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":355,\"model_id\":350077445574,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mgow7zm2doned9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,844931086908638,1718093079,298463379,1049116,1049117,822059908662278,825465608499232,825465608497696,1119699,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":355,\"model_id\":350077445574,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44850872013",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44226146444,
              "shopid": 1589075157,
              "name": "Soft Sport Nylon Loop Strap for Huawei Band 10 / Huawei Band 9 / Huawei Band 8 Breathable Repalcement Band Belt Bracelet Wristband Accessories Tali Jam Tangan Smartwatch for Huawei Band 10 9 8 NFC",
              "label_ids": [
                1428713,
                1718087960,
                298463379,
                844931064601283,
                844931086908638,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                840990690654214,
                840955085144628,
                2048661,
                2048660,
                700765096,
                2023641,
                2018619,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-821e6-mgoqjov3pc0a66",
              "images": [
                "sg-11134201-821e6-mgoqjov3pc0a66",
                "sg-11134201-821df-mgoqjpr30r2n37",
                "sg-11134201-821db-mgoqjq5m0tn373",
                "sg-11134201-821f0-mgoqjqgowqvfd2",
                "sg-11134201-821eh-mgoqjqw217v3aa",
                "sg-11134201-821dv-mgoqjr9zm7t643",
                "sg-11134201-821ew-mgoqjroh0p3j0e",
                "sg-11134201-821eq-mgoqjs1k37db4e",
                "sg-11134201-821et-mgoqjss0nb4b67"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762323594,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3220000000,
              "price_min": 3220000000,
              "price_max": 3220000000,
              "price_min_before_discount": 7000000000,
              "price_max_before_discount": 7000000000,
              "hidden_price_display": null,
              "price_before_discount": 7000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "watery red(Strap)",
                    "grey(Strap)",
                    "tender green (Strap)",
                    "klein Blue(Strap)",
                    "lavender(Strap)",
                    "Island Blue(Strap)",
                    "pink sand (Strap)",
                    "starlight(Strap)",
                    "plum color(Strap)",
                    "orange(Strap)",
                    "olive(Strap)",
                    "azure(Strap)",
                    "green(Strap)",
                    "black(Strap)",
                    "Case"
                  ],
                  "images": [
                    "sg-11134201-821d4-mgoqk5w0zf9o64",
                    "sg-11134201-821dw-mgoqk6crz21b75",
                    "sg-11134201-821fr-mgoqk6vbgn4c43",
                    "sg-11134201-821fd-mgoqk7g1ugi5a0",
                    "sg-11134201-821g8-mgoqk7zr8nijd0",
                    "sg-11134201-821ex-mgoqk8gbhd6wd9",
                    "sg-11134201-821f7-mgoqk8ypgw7ccf",
                    "sg-11134201-821d5-mgoqk9g3k3617b",
                    "sg-11134201-821d4-mgoqk9z6vabz8c",
                    "sg-11134201-821e3-mgoqkak6krv057",
                    "sg-11134201-821ev-mgoqkb21pukpa1",
                    "sg-11134201-821g1-mgoqkbl9h6h5aa",
                    "sg-11134201-821ez-mgoqkcaz2knj8e",
                    "sg-11134201-821fp-mgoqkctrvx1o56",
                    "sg-11134201-821g2-mgoqkd06lngs80"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei band 10 9 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359068405608568,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 3220000000,
                "strikethrough_price": 7000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 355076078075,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 32.200",
                      "hidden_promotion_price": "Rp ?2.200",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MYAPULUA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44226146444,
            "shopid": 1589075157,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821e6-mgoqjov3pc0a66\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,298463379,844931064601283,844931086908638,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,840990690654214,840955085144628,2048661,2048660,700765096,2023641,2018619,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":617,\"model_id\":355076078075,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821e6-mgoqjov3pc0a66\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,298463379,844931064601283,844931086908638,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,840990690654214,840955085144628,2048661,2048660,700765096,2023641,2018619,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":617,\"model_id\":355076078075,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44226146444",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50450847896,
              "shopid": 1451037995,
              "name": "[Bisa Sim VideoCall] Zero 5G Smartwatch S9 Ultra Pro Sim Card 4G/5G Wifi 6+64GB Bisa PlayStore | hotspot | Goole Play | TikTok | Whatsapp | GPS | NFC Full Touch Screen Phone Call Bluetooth IP68 Waterproof Jam Tangan Couple Sport Smart Watch Pria Wanita",
              "label_ids": [
                1012729,
                2153644,
                2018618,
                298888358,
                298938357,
                700700063,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1049112,
                1059151,
                1718093079,
                822059908662278,
                825465608493600,
                825465608499232,
                2048660,
                2048661,
                1119699,
                700765096,
                1015914,
                700190087,
                1400285055,
                2213652,
                298938368,
                2098629,
                2098628,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224o-mhhdg1pyoohwf4",
              "images": [
                "id-11134207-8224o-mhhdg1pyoohwf4",
                "id-11134207-8224z-mgopgp0bn7d501",
                "id-11134207-8224u-mgopgp0bstmx9e",
                "id-11134207-82251-mgopgp0bolxl04",
                "id-11134207-8224q-mgopgp0bu87d80",
                "id-11134207-82252-mgopgp0bq0i155",
                "id-11134207-8224v-mgopgp0brf2hcd",
                "id-11134207-8224v-mgopgp0bvmrt92",
                "id-11134207-8224s-mgopgp0blsspf1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762322561,
              "sold": 74,
              "historical_sold": 160,
              "liked": false,
              "liked_count": 194,
              "view_count": null,
              "catid": 100013,
              "brand": "Zero",
              "cmt_count": 46,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 72800000000,
              "price_min": 72800000000,
              "price_max": 72800000000,
              "price_min_before_discount": 165000000000,
              "price_max_before_discount": 165000000000,
              "hidden_price_display": null,
              "price_before_discount": 165000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-56%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv4-mgophlwlgirt1c.16000031762321852.mp4",
                  "thumb_url": "id-11110105-6vdv4-mgophlwlgirt1c_cover",
                  "duration": 52,
                  "version": 2,
                  "vid": "id-11110105-6vdv4-mgophlwlgirt1c",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv4-mgophlwlgirt1c.16000031762321852.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mgophlwlgirt1c.16000031762321852.mp4",
                      "width": 854,
                      "height": 480
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mgophlwlgirt1c.default.mp4",
                    "width": 854,
                    "height": 480
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black (SIM Card)",
                    "Pink (SIM Card)",
                    "Grey (SIM Card)",
                    "Black SIM+360ยฐKamera",
                    "Pink SIM+360ยฐKamera",
                    "Grey SIM+360ยฐKamera",
                    "Watch."
                  ],
                  "images": [
                    "id-11134207-8224t-mgpz8fdcpjpp4c",
                    "id-11134207-82251-mgpz8fdkpi4qf2",
                    "id-11134207-8224y-mgpz8fdd97nz9b",
                    "id-11134207-8224t-mgoptq56cumgac",
                    "id-11134207-8224y-mgoptq56e96w47",
                    "id-11134207-8224t-mgoptq56fnrc68",
                    "id-11134207-8224w-mgoptq56jvgofe"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.956521739130435,
                "rating_count": [
                  46,
                  0,
                  0,
                  0,
                  2,
                  44
                ],
                "rcount_with_context": 31,
                "rcount_with_image": 30
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-8224o-mhhdg1pyoohwf4",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 385749564536155,
                "add_on_deal_label": "Kombo Hemat",
                "sub_type": 0,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp118RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227930458566658,
                "price": 70800000000,
                "strikethrough_price": 165000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1323527798538276,
                "discount_text": "-56%",
                "model_id": 320075990600,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1323527798538276,
                  "voucher_code": "ZEROERO13",
                  "voucher_discount": 2000000000,
                  "time_info": {
                    "start_time": 1768030500,
                    "end_time": 1776099540,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 60000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 165000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 160,
                "rounded_local_monthly_sold_count": 74,
                "local_monthly_sold_count_text": "74",
                "rounded_display_sold_count": 160,
                "display_sold_count_text": "160"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp118RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Zero Indonesia Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50450847896,
            "shopid": 1451037995,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mhhdg1pyoohwf4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2153644,2018618,298888358,298938357,700700063,1428713,1718087960,844931064601283,844931086908638,298463379,1049112,1059151,1718093079,822059908662278,825465608493600,825465608499232,2048660,2048661,1119699,700765096,1015914,700190087,1400285055,2213652,298938368,2098629,2098628,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":618,\"model_id\":320075990600,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mhhdg1pyoohwf4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2153644,2018618,298888358,298938357,700700063,1428713,1718087960,844931064601283,844931086908638,298463379,1049112,1059151,1718093079,822059908662278,825465608493600,825465608499232,2048660,2048661,1119699,700765096,1015914,700190087,1400285055,2213652,298938368,2098629,2098628,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":618,\"model_id\":320075990600,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50450847896",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56000811390,
              "shopid": 251163251,
              "name": "GPS Geodetik CHCNAV iBASE - I76 Ar-Camera Stakeout",
              "label_ids": [
                2018619,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                700005490,
                700005495,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224v-mi59it30ks8w72",
              "images": [
                "id-11134207-8224v-mi59it30ks8w72",
                "id-11134207-8224o-mi59it2ys64o90",
                "id-11134207-8224y-mi59it2ytkp4c0",
                "id-11134207-8224p-mi59it2yxseg56",
                "id-11134207-8224v-mi59it2yuz9k38",
                "id-11134207-8224q-mi59it2ywdu034",
                "id-11134207-8224t-mi59it2z0ljc8c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762274879,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "CHCNAV",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 9000000000000,
              "price_min": 9000000000000,
              "price_max": 9000000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 9000000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 415073770173,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 9000000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GEMILANG SURVEY",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56000811390,
            "shopid": 251163251,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mi59it30ks8w72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,700005490,700005495,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":393,\"model_id\":415073770173,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mi59it30ks8w72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,700005490,700005495,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":393,\"model_id\":415073770173,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56000811390",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56450792347,
              "shopid": 1251053993,
              "name": "[COD] Samsung SmartWatch 11 Pro Max Wanita Tahan Air Jam Pintar Bluetooth Olahraga Smart Watch Gps Peta Nfc Smartwatch Hd Touchscreen Jam Tangan Pintar Bisa Telpon Bisa Dan Wallpaper Ios Android Pria Digital Jam Tangan Monitor Detak Jantung",
              "label_ids": [
                2018619,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1049112,
                1059151,
                1718093079,
                822059908662278,
                825465608499232,
                1119699,
                1400285055,
                1015914,
                700190087,
                298933384,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82250-mhlolw5vgxe027",
              "images": [
                "id-11134207-82250-mhlolw5vgxe027",
                "id-11134207-8224s-mhlolw5uht6q83",
                "id-11134207-82250-mhlolw5uj7r607",
                "id-11134207-8224q-mhlolw5ukmbm3e",
                "id-11134207-8224v-mhlolw5um0w2d6",
                "id-11134207-82251-mhlolw5unfgi82",
                "id-11134207-8224t-mhlolw5uou0yb8",
                "id-11134207-8224v-mhlolw5uq8ledb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762251205,
              "sold": 3,
              "historical_sold": 62,
              "liked": false,
              "liked_count": 34,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 6,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 11660000000,
              "price_min": 11660000000,
              "price_max": 11660000000,
              "price_min_before_discount": 69990000000,
              "price_max_before_discount": 69990000000,
              "hidden_price_display": null,
              "price_before_discount": 69990000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-83%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvn-mhlomt5r3k7892.16000081764318014.mp4",
                  "thumb_url": "id-11110105-6vdvn-mhlomt5r3k7892_cover",
                  "duration": 44,
                  "version": 2,
                  "vid": "id-11110105-6vdvn-mhlomt5r3k7892",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvn-mhlomt5r3k7892.16000081764318014.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvn-mhlomt5r3k7892.16000081764318014.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvn-mhlomt5r3k7892.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "S11-Black",
                    "S11-gold",
                    "S11-White",
                    "S9-Black",
                    "S9-White",
                    "S9-Pink",
                    "S9-Blue",
                    "S9-Grey",
                    "S10-Black",
                    "S10-White",
                    "S10-Pink",
                    "S10-Blue",
                    "Black.",
                    "Pink."
                  ],
                  "images": [
                    "id-11134207-8224t-mhlolw5urn5u4f",
                    "id-11134207-8224o-mhlolw5ut1qa6e",
                    "id-11134207-8224t-mhlolw5uugaq70",
                    "id-11134207-8224p-mgniskksipzj9a",
                    "id-11134207-82250-mgniskksfwund2",
                    "id-11134207-8224z-mgniskkshbf377",
                    "id-11134207-8224u-mgnibgtfcz616e",
                    "id-11134207-8224y-mgnibgtfbkllbb",
                    "id-11134207-8224q-mi2tj8i7cfeo7e",
                    "id-11134207-8224x-mi2tj8i4xc7717",
                    "id-11134207-8224v-mi2tj8i4yqrn8c",
                    "id-11134207-8224s-mi2tj8i505c3e9",
                    "id-11134207-8224x-mgnjlovyi9scc8",
                    "id-11134207-8224q-mgnjlovyjocs29"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.833333333333333,
                "rating_count": [
                  6,
                  0,
                  0,
                  0,
                  1,
                  5
                ],
                "rcount_with_context": 5,
                "rcount_with_image": 5
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 779693020741632,
                "price": 11660000000,
                "strikethrough_price": 69990000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-83%",
                "model_id": 405072202544,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 69990000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 62,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 62,
                "display_sold_count_text": "62"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SpaceX.id",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56450792347,
            "shopid": 1251053993,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhlolw5vgxe027\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,844931086908638,298463379,1049112,1059151,1718093079,822059908662278,825465608499232,1119699,1400285055,1015914,700190087,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":621,\"model_id\":405072202544,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhlolw5vgxe027\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,844931086908638,298463379,1049112,1059151,1718093079,822059908662278,825465608499232,1119699,1400285055,1015914,700190087,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":621,\"model_id\":405072202544,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56450792347",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40776126120,
              "shopid": 1337826401,
              "name": "Citijungle Smartwatch GPS SE Olahraga โ€” Tahan Air 3ATM, GPS Ganda, Dukungan Strava, Wajib untuk Petualang dan Pecinta Olahraga",
              "label_ids": [
                2018619,
                2023641,
                298938357,
                298888358,
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                1049120,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1428713,
                1718087960,
                298933384,
                1015914,
                700190087,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                700765096,
                2098629,
                298938368,
                298468389,
                2098628,
                1718088045
              ],
              "image": "id-11134207-8224q-mgndwf868pal41",
              "images": [
                "id-11134207-8224q-mgndwf868pal41",
                "id-11134207-8224u-mg4z0q0lo5ql65",
                "id-11134207-8224q-mgnh58nlws98a5",
                "id-11134207-8224s-mgnh58nf4dfy46",
                "id-11134207-8224z-mgnh58m0a3go68",
                "id-11134207-8224x-mgnh58na366h9a",
                "id-11134207-8224t-mg4yl5576txp1d",
                "id-11134207-8224y-mg335seh7i19d7",
                "id-11134207-8224y-mgnh58n8stfzd6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762250377,
              "sold": 6,
              "historical_sold": 7,
              "liked": false,
              "liked_count": 15,
              "view_count": null,
              "catid": 100013,
              "brand": "CITIJUNGLE",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 59157000000,
              "price_min": 59157000000,
              "price_max": 59157000000,
              "price_min_before_discount": 150000000000,
              "price_max_before_discount": 150000000000,
              "hidden_price_display": null,
              "price_before_discount": 150000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-61%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vena-mgnh9wjpywwb16.16000081762247518.mp4",
                  "thumb_url": "id-11110105-6vena-mgnh9wjpywwb16_cover",
                  "duration": 38,
                  "version": 2,
                  "vid": "id-11110105-6vena-mgnh9wjpywwb16",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vena-mgnh9wjpywwb16.16000081762247518.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vena-mgnh9wjpywwb16.16000081762247518.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vena-mgnh9wjpywwb16.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Hijau"
                  ],
                  "images": [
                    "id-11134207-82252-mgnh58nly6toe1",
                    "id-11134207-8224z-mgnh58nlzle4b3"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  0,
                  4
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 402979933141427,
                "add_on_deal_label": "Kombo Hemat",
                "sub_type": 0,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp91RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 55157000000,
                "strikethrough_price": 150000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1332646098386944,
                "discount_text": "-61%",
                "model_id": 435072110575,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1332646098386944,
                  "voucher_code": "CITI163FD",
                  "voucher_discount": 4000000000,
                  "time_info": {
                    "start_time": 1768323480,
                    "end_time": 1770137940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 40000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 150000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 551.570",
                      "hidden_promotion_price": "Rp 5?1.570",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 7,
                "rounded_local_monthly_sold_count": 6,
                "local_monthly_sold_count_text": "6",
                "rounded_display_sold_count": 7,
                "display_sold_count_text": "7"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp91RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CitiJungle",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40776126120,
            "shopid": 1337826401,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mgndwf868pal41\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298938357,298888358,844931064601283,844931086908638,298463379,700005490,1049120,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1428713,1718087960,298933384,1015914,700190087,840990690654214,2048660,2048661,840955085144628,825465608493600,700765096,2098629,298938368,298468389,2098628,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":622,\"model_id\":435072110575,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mgndwf868pal41\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298938357,298888358,844931064601283,844931086908638,298463379,700005490,1049120,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1428713,1718087960,298933384,1015914,700190087,840990690654214,2048660,2048661,840955085144628,825465608493600,700765096,2098629,298938368,298468389,2098628,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":622,\"model_id\":435072110575,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40776126120",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47500799436,
              "shopid": 1443005160,
              "name": "[NEW PRODUCT]100%ori Samsung Jam Tangan Pintar10 Mxs Pria Wanita Tahan air Jam Pintar Bluetooth Olahraga Phone BluetoothCall Smartwatch wanita pria Dan Ganti Wallpapper JamTangan Smartwatch Jam Tangan Wanitasmartwatch pria jam tangan Couple",
              "label_ids": [
                844931064601283,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718093079,
                1400285055,
                1015914,
                700190087,
                1428713,
                1718087960,
                2018619,
                2023641,
                844931086908638,
                298933384
              ],
              "image": "id-11134207-82250-mh7bg9x2cqo99f",
              "images": [
                "id-11134207-82250-mh7bg9x2cqo99f",
                "id-11134207-8224r-mgneepedks2786",
                "id-11134207-8224r-mgneepedjdhrf4",
                "id-11134207-8224s-mgnexzy6xq191e",
                "id-11134207-8224q-mgnexzy5gcgfb1",
                "id-11134207-82251-mgnexzy6wbgt4e",
                "id-11134207-8224z-mgnexzxzhfkcd6",
                "id-11134207-8224u-mgndg9hbj56z59",
                "id-11134207-8224p-mgndg9hbexhnfd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762241067,
              "sold": 129,
              "historical_sold": 240,
              "liked": false,
              "liked_count": 130,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 119,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 13000000000,
              "price_min": 13000000000,
              "price_max": 13000000000,
              "price_min_before_discount": 120000000000,
              "price_max_before_discount": 120000000000,
              "hidden_price_display": null,
              "price_before_discount": 120000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-89%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvm-mgnef3b6r11o83.16000081762242671.mp4",
                  "thumb_url": "id-11110105-6vdvm-mgnef3b6r11o83_cover",
                  "duration": 54,
                  "version": 2,
                  "vid": "id-11110105-6vdvm-mgnef3b6r11o83",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvm-mgnef3b6r11o83.16000081762242671.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvm-mgnef3b6r11o83.16000081762242671.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvm-mgnef3b6r11o83.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "S10-Black",
                    "S10-White",
                    "S10-Pink",
                    "S9-Black",
                    "S9-Silver",
                    "S9-Pink",
                    "S10- Black",
                    "S10- White",
                    "S10- Pink"
                  ],
                  "images": [
                    "id-11134207-8224t-mgnexzy6joct81",
                    "id-11134207-8224r-mgnexzy6l2x95f",
                    "id-11134207-8224y-mgnexzy6mhhp23",
                    "id-11134207-8224v-mgnexzy6nw2592",
                    "id-11134207-8224z-mgnexzy6pamlbf",
                    "id-11134207-82251-mgnexzy6qp71fd",
                    "id-11134207-8224u-mgnexzy6s3rh47",
                    "id-11134207-8224z-mgnexzy6tibx51",
                    "id-11134207-8224q-mgnexzy6uwwd23"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.722689075630252,
                "rating_count": [
                  119,
                  2,
                  1,
                  5,
                  12,
                  99
                ],
                "rcount_with_context": 48,
                "rcount_with_image": 53
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 390081366212742,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227960229740545,
                "price": 12500000000,
                "strikethrough_price": 120000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1283156741996544,
                "discount_text": "-89%",
                "model_id": 445071379416,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1283156741996544,
                  "voucher_code": "IC9H27816",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1762423920,
                    "end_time": 1770541920,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 120000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 240,
                "rounded_local_monthly_sold_count": 129,
                "local_monthly_sold_count_text": "129",
                "rounded_display_sold_count": 240,
                "display_sold_count_text": "240"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Produk Digital Resmi",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47500799436,
            "shopid": 1443005160,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mh7bg9x2cqo99f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718093079,1400285055,1015914,700190087,1428713,1718087960,2018619,2023641,844931086908638,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":623,\"model_id\":445071379416,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mh7bg9x2cqo99f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718093079,1400285055,1015914,700190087,1428713,1718087960,2018619,2023641,844931086908638,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":623,\"model_id\":445071379416,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47500799436",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50200770770,
              "shopid": 1495053614,
              "name": "Silicone Rubber Band Strap for Huawei Watch Fit 4 /Fit 4 Pro /Fit 3 Polos Warna Sport Silikon Adjustable Wristband Tali Pengganti Belt Bracelet Accessories for Tali Jam Tangan Smartwatch Huawei Fit 3",
              "label_ids": [
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                840990690654214,
                840955085144628,
                298933384,
                2048660,
                2048661,
                700765096,
                2023641,
                2018619,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-821dt-mgn4juac3eh84c",
              "images": [
                "sg-11134201-821dt-mgn4juac3eh84c",
                "sg-11134201-821dw-mgn4juupafwtde",
                "sg-11134201-821dw-mgn4jv6dio7gcc",
                "sg-11134201-821cy-mgn4jvmups0ded",
                "sg-11134201-821e8-mgn4jw1mhxxpa0",
                "sg-11134201-821ez-mgn4jwgfsxl5af",
                "sg-11134201-821f4-mgn4jwtmmadqd5",
                "sg-11134201-821gd-mgn4jxc352q443",
                "sg-11134201-821fm-mgn4jxmg2waw90"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762226072,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2461000000,
              "price_min": 2461000000,
              "price_max": 2461000000,
              "price_min_before_discount": 5180000000,
              "price_max_before_discount": 5180000000,
              "hidden_price_display": null,
              "price_before_discount": 5180000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-52%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kip0-mab3f3rtx41ef6.16000081748422313.mp4",
                  "thumb_url": "sg-11110106-6kip0-mab3f3rtx41ef6_cover",
                  "duration": 42,
                  "version": 2,
                  "vid": "sg-11110106-6kip0-mab3f3rtx41ef6",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kip0-mab3f3rtx41ef6.16000081748422313.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip0-mab3f3rtx41ef6.16000081748422313.mp4",
                      "width": 1366,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kip0-mab3f3rtx41ef6.16003251752286430.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip0-mab3f3rtx41ef6.16003251752286430.mp4",
                      "width": 1366,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip0-mab3f3rtx41ef6.default.mp4",
                    "width": 1024,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Plum Seed(Strap)",
                    "Tea orange(Strap)",
                    "lilac(Strap)",
                    "sky blue(Strap)",
                    "Midnight Blue(Strap)",
                    "green(Strap)",
                    "Starlight(Strap)",
                    "yellow(Strap)",
                    "light pink(Strap)",
                    "Lilac Purple(Strap)",
                    "baby blue(Strap)",
                    "Light Green(Strap)",
                    "red(Strap)",
                    "white(Strap)",
                    "black(Strap)",
                    "Clear(Case)"
                  ],
                  "images": [
                    "sg-11134201-821d1-mgn4kahiwky074",
                    "sg-11134201-821cy-mgn4kaxh7tvt66",
                    "sg-11134201-821dx-mgn4kb8a8buz26",
                    "sg-11134201-821es-mgn4kbo4vjew1d",
                    "sg-11134201-821dk-mgn4kc20gt8v5f",
                    "sg-11134201-821g1-mgn4kcf6urd7eb",
                    "sg-11134201-821ex-mgn4kcrjgwlo4b",
                    "sg-11134201-821e3-mgn4kd7tg3rja0",
                    "sg-11134201-821fi-mgn4kdlqy8zz32",
                    "sg-11134201-821et-mgn4ke9fmex464",
                    "sg-11134201-821dh-mgn4kekytfykdb",
                    "sg-11134201-821da-mgn4kf184t1qfc",
                    "sg-11134201-821ev-mgn4kfh2ky6i21",
                    "sg-11134201-821d6-mgn4kg2nh7nyf9",
                    "sg-11134201-821dc-mgn4kge1bswf7f",
                    "sg-11134201-821e6-mgn4kgw988wf89"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei Fit 3",
                    "Huawei Fit 4",
                    "Huawei Fit 4 Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2461000000,
                "strikethrough_price": 5180000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-52%",
                "model_id": 297122920147,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5180000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 24.610",
                      "hidden_promotion_price": "Rp ?4.610",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BRADCET",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50200770770,
            "shopid": 1495053614,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821dt-mgn4juac3eh84c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,840990690654214,840955085144628,298933384,2048660,2048661,700765096,2023641,2018619,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":624,\"model_id\":297122920147,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821dt-mgn4juac3eh84c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,840990690654214,840955085144628,298933384,2048660,2048661,700765096,2023641,2018619,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":624,\"model_id\":297122920147,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50200770770",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40826088707,
              "shopid": 601498575,
              "name": "Coros Apex 4 GPS Ultimate Mountain Sport Watch - Garansi Resmi",
              "label_ids": [
                1400066568,
                1002164,
                1012729,
                2018618,
                2153644,
                1400285005,
                1400095067,
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1718093079,
                1119699,
                1015914,
                700190087,
                2213652,
                1400285055,
                822059908662278,
                825465608497696,
                825465608492064,
                825465608493600,
                825465608494624,
                825465608499232,
                1049112,
                1049117,
                1059156,
                1049116,
                1049127,
                700005499,
                1049130,
                700005503,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224y-mgm3pcecdbm142",
              "images": [
                "id-11134207-8224y-mgm3pcecdbm142",
                "id-11134207-8224s-mgm3pce6mu4t0f",
                "id-11134207-8224t-mgm3pce6o8p9c3",
                "id-11134207-8224p-mgm3pce6k0zxbe",
                "id-11134207-82250-mgm3pce6lfkd80"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762164948,
              "sold": 3,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 9,
              "view_count": null,
              "catid": 100013,
              "brand": "COROS",
              "cmt_count": 3,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 885000000000,
              "price_min": 885000000000,
              "price_max": 885000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven9-mgm43myro1e0d6.16000041762164779.mp4",
                  "thumb_url": "id-11110105-6ven9-mgm43myro1e0d6_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6ven9-mgm43myro1e0d6",
                  "formats": [
                    {
                      "format": 1600004,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven9-mgm43myro1e0d6.16000041762164779.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven9-mgm43myro1e0d6.16000041762164779.mp4",
                      "width": 640,
                      "height": 360
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven9-mgm43myro1e0d6.default.mp4",
                    "width": 640,
                    "height": 360
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "White"
                  ],
                  "images": [
                    "id-11134207-8224z-mgm3pce6r1u5de",
                    "id-11134207-8224p-mgm3pce6pn9pa5"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ukuran",
                  "options": [
                    "42mm",
                    "46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 885000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 380066567358,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 885000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Doran Authorized Store Semarang",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40826088707,
            "shopid": 601498575,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mgm3pcecdbm142\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1002164,1012729,2018618,2153644,1400285005,1400095067,1718087960,1428713,844931064601283,298463379,1718093079,1119699,1015914,700190087,2213652,1400285055,822059908662278,825465608497696,825465608492064,825465608493600,825465608494624,825465608499232,1049112,1049117,1059156,1049116,1049127,700005499,1049130,700005503,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":538,\"model_id\":380066567358,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mgm3pcecdbm142\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1002164,1012729,2018618,2153644,1400285005,1400095067,1718087960,1428713,844931064601283,298463379,1718093079,1119699,1015914,700190087,2213652,1400285055,822059908662278,825465608497696,825465608492064,825465608493600,825465608494624,825465608499232,1049112,1049117,1059156,1049116,1049127,700005499,1049130,700005503,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":538,\"model_id\":380066567358,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40826088707",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57200741325,
              "shopid": 1484087853,
              "name": "2 In 1 Rubber Case Strap for Huawei Band 10 9 8 7 Sport Adjustable Replacement Band Anti Gores Screen Protector Bumper Bracelet Belt Accessories Tali Jam Tangan Smartwatch for Huawei Band 9 8 NFC /Samsung Galaxy Fit 3",
              "label_ids": [
                2153644,
                298938357,
                298888358,
                2018618,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                1119699,
                298933384,
                1400285055,
                2213652,
                2048660,
                2048661,
                700765096,
                1015914,
                700190087,
                700810055,
                298938368,
                2098628,
                298468389,
                1718088045,
                2098629
              ],
              "image": "sg-11134201-821e0-mgm2u980glc828",
              "images": [
                "sg-11134201-821e0-mgm2u980glc828",
                "sg-11134201-821dn-mgm2u9haaxvw1f",
                "sg-11134201-821e4-mgm2uc7gv6ry07",
                "sg-11134201-821df-mgm2ue9ewdu250",
                "sg-11134201-821fg-mgm2ugnr6rk9dd",
                "sg-11134201-821gd-mgm2uky4jll616",
                "sg-11134201-821d5-mgm2umrzta8f78",
                "sg-11134201-821f4-mgm2un53xo9511",
                "sg-11134201-821f9-mgm2unccp34f53"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762162675,
              "sold": 62,
              "historical_sold": 75,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 18,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2190000000,
              "price_min": 2190000000,
              "price_max": 2190000000,
              "price_min_before_discount": 4380000000,
              "price_max_before_discount": 4380000000,
              "hidden_price_display": null,
              "price_before_discount": 4380000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Orange",
                    "Red",
                    "Light Pink",
                    "Black",
                    "Olive",
                    "Midnight",
                    "ivory",
                    "pine green",
                    "Khaki"
                  ],
                  "images": [
                    "sg-11134201-821ew-mgm2v16r4rnue8",
                    "sg-11134201-821er-mgm2v1ye524p93",
                    "sg-11134201-821du-mgm2v28zcmj357",
                    "sg-11134201-821fv-mgm2v2idn3tb78",
                    "sg-11134201-821fq-mgm2v2tyebkec2",
                    "sg-11134201-821es-mgm2v33c99fy13",
                    "sg-11134201-821d4-mgm2v3br03d5fa",
                    "sg-11134201-821er-mgm2v3mqkj639d",
                    "sg-11134201-821fs-mgm2v3w5rbig5c"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.944444444444445,
                "rating_count": [
                  18,
                  0,
                  0,
                  0,
                  1,
                  17
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372024811991523,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744049498177536,
                "price": 2190000000,
                "strikethrough_price": 4380000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 350066337309,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4380000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 75,
                "rounded_local_monthly_sold_count": 62,
                "local_monthly_sold_count_text": "62",
                "rounded_display_sold_count": 75,
                "display_sold_count_text": "75"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EIHAIHIS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57200741325,
            "shopid": 1484087853,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821e0-mgm2u980glc828\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,298938357,298888358,2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1119699,298933384,1400285055,2213652,2048660,2048661,700765096,1015914,700190087,700810055,298938368,2098628,298468389,1718088045,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":626,\"model_id\":350066337309,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821e0-mgm2u980glc828\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,298938357,298888358,2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1119699,298933384,1400285055,2213652,2048660,2048661,700765096,1015914,700190087,700810055,298938368,2098628,298468389,1718088045,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":626,\"model_id\":350066337309,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57200741325",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57500719586,
              "shopid": 69532627,
              "name": "MAYY Bisa Sim Card C95 Plus Smartwatch Android Jam Tangan IP67",
              "label_ids": [
                27,
                1000167,
                1668726,
                2018618,
                1000255,
                2153644,
                1000559,
                1000560,
                2018619,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                1718093079,
                1119699,
                1059152,
                700005489,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                1015914,
                700190087,
                2213652,
                2048660,
                2048661,
                700765096,
                1400285055
              ],
              "image": "id-11134207-8224w-miphu28mvhfk80",
              "images": [
                "id-11134207-8224w-miphu28mvhfk80",
                "id-11134207-8224r-mglydbf4i7tad0",
                "id-11134207-8224q-mglydbf4jmdqe6",
                "id-11134207-82251-mglydbf4gt8u22",
                "id-11134207-82250-mglydbf4mfimf6",
                "id-11134207-8224s-mglydbf4l0y670",
                "id-11134207-82250-mglydbf4feoee2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762156586,
              "sold": 57,
              "historical_sold": 66,
              "liked": false,
              "liked_count": 179,
              "view_count": null,
              "catid": 100013,
              "brand": "Mayy",
              "cmt_count": 20,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 57900000000,
              "price_min": 57900000000,
              "price_max": 57900000000,
              "price_min_before_discount": 109900000000,
              "price_max_before_discount": 109900000000,
              "hidden_price_display": null,
              "price_before_discount": 109900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-47%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvd-mgqbmr7oedjhdf.16000081762419583.mp4",
                  "thumb_url": "id-11110105-6vdvd-mgqbmr7oedjhdf_cover",
                  "duration": 32,
                  "version": 2,
                  "vid": "id-11110105-6vdvd-mgqbmr7oedjhdf",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvd-mgqbmr7oedjhdf.16000081762419583.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvd-mgqbmr7oedjhdf.16000081762419583.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvd-mgqbmr7oedjhdf.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Putih"
                  ],
                  "images": [
                    "id-11134207-8224t-mimjiaa0lq831e",
                    "id-11134207-8224u-mimjiaa0n4sj2a"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  20,
                  0,
                  0,
                  0,
                  0,
                  20
                ],
                "rcount_with_context": 7,
                "rcount_with_image": 7
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 827350699278336,
                "price": 57900000000,
                "strikethrough_price": 109900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-47%",
                "model_id": 320065624056,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 109900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 66,
                "rounded_local_monthly_sold_count": 57,
                "local_monthly_sold_count_text": "57",
                "rounded_display_sold_count": 66,
                "display_sold_count_text": "66"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Mayy Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57500719586,
            "shopid": 69532627,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-miphu28mvhfk80\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[27,1000167,1668726,2018618,1000255,2153644,1000559,1000560,2018619,1718087960,1428713,844931086908638,844931064601283,1718093079,1119699,1059152,700005489,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,1015914,700190087,2213652,2048660,2048661,700765096,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":627,\"model_id\":320065624056,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-miphu28mvhfk80\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[27,1000167,1668726,2018618,1000255,2153644,1000559,1000560,2018619,1718087960,1428713,844931086908638,844931064601283,1718093079,1119699,1059152,700005489,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,1015914,700190087,2213652,2048660,2048661,700765096,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":627,\"model_id\":320065624056,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57500719586",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44500739347,
              "shopid": 284175299,
              "name": "[NEW RELEASE] UltraWatch Series 11 Mini Smartwatch 42mm Jam Tangan Pintar Bluetooth 5.4 Amoled Display Sport & Health Mode Dynamic Island ChatGPT - by PodsIndonesia",
              "label_ids": [
                700700063,
                2023641,
                2018619,
                298888358,
                700025016,
                298938357,
                1718072935,
                1428713,
                1718087960,
                844931064601283,
                1049112,
                1049133,
                822059908662278,
                825465608499232,
                825465608497696,
                298463379,
                1718093079,
                1119699,
                1015914,
                700190087,
                2098628,
                298938368,
                2098629,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-821f4-mglyi7p8z4zxfe",
              "images": [
                "sg-11134201-821f4-mglyi7p8z4zxfe",
                "sg-11134201-821gb-mglyi89uy9se7b",
                "sg-11134201-821f8-mglyi8sfc5xnf2",
                "sg-11134201-821e4-mglyi95t4ydm66",
                "sg-11134201-821da-mglyi9s2qbri52",
                "sg-11134201-821do-mglyia5urthlb1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762155375,
              "sold": 8,
              "historical_sold": 27,
              "liked": false,
              "liked_count": 98,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 13,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 87802000000,
              "price_min": 87802000000,
              "price_max": 87802000000,
              "price_min_before_discount": 199900000000,
              "price_max_before_discount": 199900000000,
              "hidden_price_display": null,
              "price_before_discount": 199900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-56%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Silver",
                    "Rose Gold"
                  ],
                  "images": [
                    "sg-11134201-821f4-mglyibj5ztai82",
                    "sg-11134201-821fx-mglyibupi4ge59",
                    "sg-11134201-821dl-mglyiaicqg3u20"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 3.769230769230769,
                "rating_count": [
                  13,
                  4,
                  0,
                  0,
                  0,
                  9
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp143RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 809482544791552,
                "price": 86302000000,
                "strikethrough_price": 199900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1312033627455488,
                "discount_text": "-56%",
                "model_id": 249075387365,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1312033627455488,
                  "voucher_code": "PODS15K",
                  "voucher_discount": 1500000000,
                  "time_info": {
                    "start_time": 1765866360,
                    "end_time": 1772297940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 75000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 199900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 27,
                "rounded_local_monthly_sold_count": 8,
                "local_monthly_sold_count_text": "8",
                "rounded_display_sold_count": 27,
                "display_sold_count_text": "27"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp143RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Pods Indonesia Official Mall",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44500739347,
            "shopid": 284175299,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821f4-mglyi7p8z4zxfe\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2023641,2018619,298888358,700025016,298938357,1718072935,1428713,1718087960,844931064601283,1049112,1049133,822059908662278,825465608499232,825465608497696,298463379,1718093079,1119699,1015914,700190087,2098628,298938368,2098629,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":628,\"model_id\":249075387365,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821f4-mglyi7p8z4zxfe\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2023641,2018619,298888358,700025016,298938357,1718072935,1428713,1718087960,844931064601283,1049112,1049133,822059908662278,825465608499232,825465608497696,298463379,1718093079,1119699,1015914,700190087,2098628,298938368,2098629,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":628,\"model_id\":249075387365,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44500739347",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46250732880,
              "shopid": 1597120732,
              "name": "Skymicool X Fotime Amoled Daily Smartwatch SW09 Sports Bluetooth Call Unisex 1.43inch HD Screen",
              "label_ids": [
                2018618,
                844931064601283,
                1049112,
                1059151,
                822059908662278,
                2048661,
                825465608499232,
                2048660,
                1119699,
                700765096,
                298933384,
                1400285055,
                1718093079,
                2213652,
                1718087960,
                1428713,
                1015914,
                700190087
              ],
              "image": "id-11134207-8224q-mgriql68wqvg03",
              "images": [
                "id-11134207-8224q-mgriql68wqvg03",
                "id-11134207-8224z-mglv2bi0a87f8c",
                "id-11134207-8224u-mglv2bi037d720",
                "id-11134207-8224o-mglv7mmu6y31a9",
                "id-11134207-8224w-mglv2bi0bmrvd4",
                "id-11134207-8224r-mglv2bi07f2j96",
                "id-11134207-8224s-mglv7mmu8cnhfb",
                "id-11134207-8224s-mglv2bi04lxn6a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762149994,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "FOTIME",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 40999000000,
              "price_min": 40999000000,
              "price_max": 40999000000,
              "price_min_before_discount": 89990000000,
              "price_max_before_discount": 89990000000,
              "hidden_price_display": null,
              "price_before_discount": 89990000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvg-mglv83hdxcsq46.16000081762149857.mp4",
                  "thumb_url": "id-11110105-6vdvg-mglv83hdxcsq46_cover",
                  "duration": 43,
                  "version": 2,
                  "vid": "id-11110105-6vdvg-mglv83hdxcsq46",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvg-mglv83hdxcsq46.16000081762149857.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvg-mglv83hdxcsq46.16000081762149857.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvg-mglv83hdxcsq46.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Smartwatch",
                  "options": [
                    "Amoled SW09 - Black"
                  ],
                  "images": [
                    "id-11134207-8224w-mgriql68y5fw25"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 389425884578349,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 776700711993344,
                "price": 40799000000,
                "strikethrough_price": 89990000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1279353631817728,
                "discount_text": "-54%",
                "model_id": 385064932426,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1279353631817728,
                  "voucher_code": "SKYM2K",
                  "voucher_discount": 200000000,
                  "time_info": {
                    "start_time": 1761970200,
                    "end_time": 1769853600,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 89990000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Skymicool Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46250732880,
            "shopid": 1597120732,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mgriql68wqvg03\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,844931064601283,1049112,1059151,822059908662278,2048661,825465608499232,2048660,1119699,700765096,298933384,1400285055,1718093079,2213652,1718087960,1428713,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":629,\"model_id\":385064932426,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mgriql68wqvg03\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,844931064601283,1049112,1059151,822059908662278,2048661,825465608499232,2048660,1119699,700765096,298933384,1400285055,1718093079,2213652,1718087960,1428713,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":629,\"model_id\":385064932426,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46250732880",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 45550704020,
              "shopid": 1414572699,
              "name": "Max Pro I9 S1 Notifikasi Jam tangan Kalkulator Full HD Game Layar Battery Long-lasting Charger Wireless",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                700005490,
                1049120,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-7rat5-ma5eu17py31qa9",
              "images": [
                "sg-11134201-7rat5-ma5eu17py31qa9",
                "sg-11134201-7ratm-ma5etx89s03y2f",
                "sg-11134201-7ravs-ma5etxtwxpkbc2",
                "sg-11134201-7ravm-ma5etyeq1w3z58",
                "sg-11134201-7rau8-ma5etz0380ry7c",
                "sg-11134201-7rav7-ma5etzxdwp9qdf",
                "sg-11134201-7rat1-ma5eu0nqrbhq5d",
                "sg-11134201-7rasi-ma5eu1sj3n4fd3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762079620,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 20500000000,
              "price_min": 20500000000,
              "price_max": 20500000000,
              "price_min_before_discount": 36516000000,
              "price_max_before_discount": 36516000000,
              "hidden_price_display": null,
              "price_before_discount": 36516000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-44%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "white",
                    "pink",
                    "black"
                  ],
                  "images": [
                    "sg-11134201-7rfi4-m3yqbv6g67hbf5",
                    "sg-11134201-7rfg3-m3yqbvohfsr6e0",
                    "sg-11134201-7rfga-m3yqbw2wuqbs25"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 391156701868050,
                "bundle_deal_label": "Pilih 3, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 711533290651648,
                "price": 20200000000,
                "strikethrough_price": 36516000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1280981516435488,
                "discount_text": "-44%",
                "model_id": 297118123253,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1280981516435488,
                  "voucher_code": "ZWTH99215",
                  "voucher_discount": 300000000,
                  "time_info": {
                    "start_time": 1762168260,
                    "end_time": 1770224340,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 36516000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Chirangkapur Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 45550704020,
            "shopid": 1414572699,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rat5-ma5eu17py31qa9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,298463379,700005490,1049120,1718093079,822059908662278,825465608497696,825465608499232,1119699,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":633,\"model_id\":297118123253,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rat5-ma5eu17py31qa9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,298463379,700005490,1049120,1718093079,822059908662278,825465608497696,825465608499232,1119699,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":633,\"model_id\":297118123253,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_45550704020",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56600656100,
              "shopid": 1520534929,
              "name": "Kontrol Aplikasi 4G Motor Mematikan Pembongkaran GPS Tracker",
              "label_ids": [
                844931064601283,
                1718093079,
                1119699,
                1718087960,
                1428713,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                700810080,
                834230400556567,
                2218763
              ],
              "image": "id-11134207-7r98p-lsjldbgiol3h93",
              "images": [
                "id-11134207-7r98p-lsjldbgiol3h93",
                "id-11134207-7r98x-lsjldbgire8d14",
                "id-11134207-7r98t-lsjldbgipznxb5",
                "id-11134207-7r98x-ls6h49ltoxxpaa",
                "id-11134207-7r98q-ls6h49ltvyrx16",
                "id-11134207-7r98w-ls6h49ltuk7he6",
                "id-11134207-7r98o-ls6h49ltt5n139",
                "id-11134207-7r990-ls6h49ltqci5c2",
                "id-11134207-7rbkb-m9joaayp677x32"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1762001305,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 7078900000,
              "price_min": 7078900000,
              "price_max": 7078900000,
              "price_min_before_discount": 14902900000,
              "price_max_before_discount": 14902900000,
              "hidden_price_display": null,
              "price_before_discount": 14902900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-52%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Model",
                  "options": [
                    "GT02A",
                    "GF07"
                  ],
                  "images": [
                    "id-11134207-7r98t-ls6h49ltnj9i97",
                    "id-11134207-7rbk1-m9jmie8s2pkd47"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 738370863546368,
                "price": 6828900000,
                "strikethrough_price": 14902900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1284577621458944,
                "discount_text": "-52%",
                "model_id": 272116212532,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1284577621458944,
                  "voucher_code": "6JMU65776",
                  "voucher_discount": 250000000,
                  "time_info": {
                    "start_time": 1762640100,
                    "end_time": 1770699540,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 3000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 14902900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Nexus 3C Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56600656100,
            "shopid": 1520534929,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98p-lsjldbgiol3h93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1119699,1718087960,1428713,700005490,1049120,822059908662278,825465608499232,700810080,834230400556567,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":636,\"model_id\":272116212532,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98p-lsjldbgiol3h93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1119699,1718087960,1428713,700005490,1049120,822059908662278,825465608499232,700810080,834230400556567,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":636,\"model_id\":272116212532,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56600656100",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51200655903,
              "shopid": 128133650,
              "name": "Samsung Strap Watch Ultra Triple Layer Armor Tahan Lama dan Fleksibel untuk Kegunaan Harian",
              "label_ids": [
                2023641,
                2018619,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                825465608493600,
                1119699,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224p-mgj5wd8s4umm6b",
              "images": [
                "id-11134207-8224p-mgj5wd8s4umm6b",
                "id-11134207-8224z-mgjdupppsdfwc4",
                "id-11134207-8224t-mgjdupppv6ksb9",
                "id-11134207-8224o-mgjdupppts0c43",
                "id-11134207-8224s-mgjdupppqyvg70"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761999841,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Samsung",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 7410000000,
              "price_min": 7410000000,
              "price_max": 7410000000,
              "price_min_before_discount": 9500000000,
              "price_max_before_discount": 9500000000,
              "hidden_price_display": null,
              "price_before_discount": 9500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-22%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Orange",
                    "Black",
                    "Deep Blue",
                    "Army Green",
                    "White"
                  ],
                  "images": [
                    "id-11134207-8224s-mgjdupppqyvg70",
                    "id-11134207-8224o-mgjdupppts0c43",
                    "id-11134207-8224z-mgjdupppsdfwc4",
                    "id-11134207-8224t-mgjdupppv6ksb9",
                    "id-11134207-8224y-mj9psdtt4qh102"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 799105996079104,
                "price": 7410000000,
                "strikethrough_price": 9500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-22%",
                "model_id": 259139939332,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 9500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Star Shoppe",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51200655903,
            "shopid": 128133650,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mgj5wd8s4umm6b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,825465608493600,1119699,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":637,\"model_id\":259139939332,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mgj5wd8s4umm6b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,825465608493600,1119699,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":637,\"model_id\":259139939332,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51200655903",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50600639594,
              "shopid": 1480145035,
              "name": "[Baru] Meizu Smartwatch Watch S10 PRO MAX Original with 1.81 Inci AMOLED Display GPS NFC Waterproof PhoneBluetoothCall Smartwatch wanita Pintar Wanita Tahan Air Jam Tangan Pintar IP68  Ganti Wallpapper Monitor Monitor Detak Jantung Android IOS",
              "label_ids": [
                1012729,
                2018618,
                2153644,
                298938357,
                2068629,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                1400285055,
                1015914,
                700190087,
                2213652,
                700700063,
                299103323,
                298938368,
                2098628,
                298468389,
                1718088045,
                2098629
              ],
              "image": "id-11134207-82251-mh7dvq5pxafe5d",
              "images": [
                "id-11134207-82251-mh7dvq5pxafe5d",
                "id-11134207-82252-mgj7nxwoao0d45",
                "id-11134207-8224s-mgj7nxwo0u19ea",
                "id-11134207-8224o-mgj7nxwo28lp82",
                "id-11134207-8224z-mgj7nxwo3n6545",
                "id-11134207-8224r-mgj7nxwo6gb1a9",
                "id-11134207-8224r-mgj7nxwo51qlec",
                "id-11134207-8224y-mgj7nxwo7uvh2a",
                "id-11134207-8224p-mgj7nxwo99fxab"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761990829,
              "sold": 137,
              "historical_sold": 279,
              "liked": false,
              "liked_count": 216,
              "view_count": null,
              "catid": 100013,
              "brand": "Meizu",
              "cmt_count": 109,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 15400000000,
              "price_min": 15400000000,
              "price_max": 15400000000,
              "price_min_before_discount": 120000000000,
              "price_max_before_discount": 120000000000,
              "hidden_price_display": null,
              "price_before_discount": 120000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-87%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venf-mgj7srp42i2w96.16000101761989398.mp4",
                  "thumb_url": "id-11110105-6venf-mgj7srp42i2w96_cover",
                  "duration": 44,
                  "version": 2,
                  "vid": "id-11110105-6venf-mgj7srp42i2w96",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venf-mgj7srp42i2w96.16000101761989398.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venf-mgj7srp42i2w96.16000101761989398.mp4",
                      "width": 960,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venf-mgj7srp42i2w96.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black - 1 strap",
                    "Black - 2 strap",
                    "Pink - 1 strap",
                    "Pink - 2 strap",
                    "White - 1 strap",
                    "White - 2 strap",
                    "Starburst - 1 strap",
                    "Starburst - 2 strap",
                    "Blue - 1 strap",
                    "Blue - 2 strap"
                  ],
                  "images": [
                    "id-11134207-82250-mgvzyoweggzu27",
                    "id-11134207-82250-mgvzyowehvka94",
                    "id-11134207-8224v-mgvzyoweowei55",
                    "id-11134207-8224x-mgvzyowenhu274",
                    "id-11134207-8224x-mgvzyoweqayy62",
                    "id-11134207-8224o-mgvzyowerpje24",
                    "id-11134207-8224p-mh2zo9pmykuk02",
                    "id-11134207-8224v-mh2zo9pn1dzge4",
                    "id-11134207-8224p-mgw0159bxd7370",
                    "id-11134207-8224r-mgw0159dpzbh24"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.660550458715596,
                "rating_count": [
                  109,
                  5,
                  1,
                  3,
                  8,
                  92
                ],
                "rcount_with_context": 20,
                "rcount_with_image": 21
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 403848367977341,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp51RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227964344352768,
                "price": 15400000000,
                "strikethrough_price": 120000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-87%",
                "model_id": 360057522931,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 120000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 279,
                "rounded_local_monthly_sold_count": 137,
                "local_monthly_sold_count_text": "137",
                "rounded_display_sold_count": 279,
                "display_sold_count_text": "279"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp51RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Meizu Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50600639594,
            "shopid": 1480145035,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mh7dvq5pxafe5d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2018618,2153644,298938357,2068629,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,1400285055,1015914,700190087,2213652,700700063,299103323,298938368,2098628,298468389,1718088045,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":325,\"model_id\":360057522931,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mh7dvq5pxafe5d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2018618,2153644,298938357,2068629,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,1400285055,1015914,700190087,2213652,700700063,299103323,298938368,2098628,298468389,1718088045,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":325,\"model_id\":360057522931,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50600639594",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56000648520,
              "shopid": 69532627,
              "name": "Mayy-S9 5G Bisa Sim Card Smartwatch Android Jam Tangan",
              "label_ids": [
                1000560,
                1000255,
                1668726,
                1000167,
                2018618,
                2153644,
                1000559,
                27,
                2018619,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                1718093079,
                1119699,
                1015914,
                700190087,
                2213652,
                1400285055,
                700765096,
                1059152,
                700005489,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608499232,
                825465608497696,
                840990690654214
              ],
              "image": "id-11134207-8224w-miphu28mww0022",
              "images": [
                "id-11134207-8224w-miphu28mww0022",
                "id-11134207-8224x-mgj4ctib3w239b",
                "id-11134207-8224u-mgj4ctib5amjb0",
                "id-11134207-8224y-mgj4ctib6p6zca",
                "id-11134207-8224t-mgj4ctib83rfea",
                "id-11134207-82250-mgj4ctib9ibvfe",
                "id-11134207-8224q-mgj4ctibcbgr21",
                "id-11134207-8224u-mgj4ctibawwb0f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761985782,
              "sold": 73,
              "historical_sold": 124,
              "liked": false,
              "liked_count": 247,
              "view_count": null,
              "catid": 100013,
              "brand": "Mayy",
              "cmt_count": 55,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 50950000000,
              "price_min": 50950000000,
              "price_max": 50950000000,
              "price_min_before_discount": 108990000000,
              "price_max_before_discount": 108990000000,
              "hidden_price_display": null,
              "price_before_discount": 108990000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venb-mgx3qrlvw5qm9e.16000081762830067.mp4",
                  "thumb_url": "id-11110105-6venb-mgx3qrlvw5qm9e_cover",
                  "duration": 52,
                  "version": 2,
                  "vid": "id-11110105-6venb-mgx3qrlvw5qm9e",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venb-mgx3qrlvw5qm9e.16000081762830067.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mgx3qrlvw5qm9e.16000081762830067.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mgx3qrlvw5qm9e.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Oranye"
                  ],
                  "images": [
                    "id-11134207-8224r-mgj4ctibdq1733",
                    "id-11134207-8224p-mgj4ctibf4ln2d"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.636363636363637,
                "rating_count": [
                  55,
                  2,
                  0,
                  2,
                  8,
                  43
                ],
                "rcount_with_context": 18,
                "rcount_with_image": 13
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 827350699278336,
                "price": 50950000000,
                "strikethrough_price": 108990000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 365057115127,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 108990000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 124,
                "rounded_local_monthly_sold_count": 73,
                "local_monthly_sold_count_text": "73",
                "rounded_display_sold_count": 124,
                "display_sold_count_text": "124"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Mayy Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU4MTAwZmUxODk5ODIwNWQ5NDEwMDowMjAwMDA1ZjcxMjgzN2FkOjAxMDAwMWRmZDc5NGM4ZmJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56000648520,
            "shopid": 69532627,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-miphu28mww0022\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000560,1000255,1668726,1000167,2018618,2153644,1000559,27,2018619,1718087960,1428713,844931086908638,844931064601283,1718093079,1119699,1015914,700190087,2213652,1400285055,700765096,1059152,700005489,822059908662278,2048660,2048661,840955085144628,825465608499232,825465608497696,840990690654214],\"matched_keywords\":[\"\"],\"merge_rank\":639,\"model_id\":365057115127,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-miphu28mww0022\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000560,1000255,1668726,1000167,2018618,2153644,1000559,27,2018619,1718087960,1428713,844931086908638,844931064601283,1718093079,1119699,1015914,700190087,2213652,1400285055,700765096,1059152,700005489,822059908662278,2048660,2048661,840955085144628,825465608499232,825465608497696,840990690654214],\"matched_keywords\":[\"\"],\"merge_rank\":639,\"model_id\":365057115127,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56000648520",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48850668719,
              "shopid": 750849747,
              "name": "Itel 025 Smatwatch | Tahan Air IP68 | AMOLED 1.95โ€ | Tampilan Layar AI Selalu Aktif | Garansi Resmi",
              "label_ids": [
                2023641,
                2018619,
                1400285005,
                1400095067,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608497696,
                840990690654214,
                840955085144628,
                825465608492064,
                825465608493600,
                825465608494624,
                825465608499232,
                834403089593352,
                1119699,
                298933384,
                2048661,
                2048660,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-821ek-mgj5e2eabehb49",
              "images": [
                "sg-11134201-821ek-mgj5e2eabehb49",
                "sg-11134201-821eh-mgj5e2lcy8lpdf",
                "sg-11134201-821en-mgj5e2rcbzf0a0",
                "sg-11134201-821fl-mgj5e2wyyeiy79",
                "sg-11134201-821eo-mgj5e34k0aa42f",
                "sg-11134201-821et-mgj5e3iho07i16",
                "sg-11134201-821fq-mgj5e3olgirucb",
                "sg-11134201-821dq-mgj5e3urquiwa8",
                "sg-11134201-821do-mgj5e41ccqa716"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761985345,
              "sold": 1,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "Itel",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 30900000000,
              "price_min": 30900000000,
              "price_max": 30900000000,
              "price_min_before_discount": 69900000000,
              "price_max_before_discount": 69900000000,
              "hidden_price_display": null,
              "price_before_discount": 69900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-56%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black",
                    "Rose Gold"
                  ],
                  "images": [
                    "sg-11134201-821fd-mgj5e47up53hc6",
                    "sg-11134201-821ez-mgj5e4f8hr7x3c"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 717885337569280,
                "price": 30900000000,
                "strikethrough_price": 69900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-56%",
                "model_id": 400057067300,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 69900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Inovtek",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48850668719,
            "shopid": 750849747,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821ek-mgj5e2eabehb49\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1400285005,1400095067,844931064601283,844931086908638,298463379,1059152,1049122,1718093079,822059908662278,825465608497696,840990690654214,840955085144628,825465608492064,825465608493600,825465608494624,825465608499232,834403089593352,1119699,298933384,2048661,2048660,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":640,\"model_id\":400057067300,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821ek-mgj5e2eabehb49\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1400285005,1400095067,844931064601283,844931086908638,298463379,1059152,1049122,1718093079,822059908662278,825465608497696,840990690654214,840955085144628,825465608492064,825465608493600,825465608494624,825465608499232,834403089593352,1119699,298933384,2048661,2048660,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":640,\"model_id\":400057067300,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48850668719",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57450619533,
              "shopid": 1172558753,
              "name": "Strap Advan Se1 Sport Tali Jam Anti Gerah Xiaomi Redmi Se1 Two Tone",
              "label_ids": [
                2018619,
                2023641,
                844931064601283,
                700005490,
                700005495,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1119699
              ],
              "image": "sg-11134201-821ef-mgisiy729bf259",
              "images": [
                "sg-11134201-821ef-mgisiy729bf259",
                "sg-11134201-7rfi6-m445amcao5f801",
                "sg-11134201-7rfhv-m445asoxexrv1e",
                "sg-11134201-7rfh0-m445awijs5172a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761962314,
              "sold": 5,
              "historical_sold": 7,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2400000000,
              "price_min": 2400000000,
              "price_max": 2400000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black White",
                    "Black Red",
                    "Black Grey",
                    "Navy White",
                    "Black Blue",
                    "Black Green",
                    "Grey White"
                  ],
                  "images": [
                    "sg-11134201-7rfgy-m4457fal0zf69a",
                    "sg-11134201-7rbmz-m5fgjmtzsjrr38",
                    "sg-11134201-7rbm0-m5fgjx44qudq0e",
                    "sg-11134201-7rbmv-m5fgk7ghlzoe65",
                    "sg-11134201-7rbn4-m5fgkpsurmfsb7",
                    "sg-11134201-7rbm7-m5fgkzaywe8n86",
                    "sg-11134201-7rbkn-m5fgl8a7rd3r29"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  1,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 2400000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 380055374882,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2400000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 7,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 7,
                "display_sold_count_text": "7"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "strapsy",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57450619533,
            "shopid": 1172558753,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821ef-mgisiy729bf259\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,700005490,700005495,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":136,\"model_id\":380055374882,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821ef-mgisiy729bf259\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,700005490,700005495,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":136,\"model_id\":380055374882,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57450619533",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41776023386,
              "shopid": 1557399265,
              "name": "D21 Smart Watch & Earbud Set AMOLED Health TWS Siri",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1718093079,
                1119699,
                1400285055,
                1015914,
                700190087,
                2068629,
                298938357,
                298938368,
                2098628,
                1718088045,
                298468389,
                2098629
              ],
              "image": "id-11134207-8224q-mgi3no69inf088",
              "images": [
                "id-11134207-8224q-mgi3no69inf088",
                "id-11134207-8224o-mgi3no65ytqi7b",
                "id-11134207-82250-mgi3no69lgjwee"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761924823,
              "sold": 1,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 28279200000,
              "price_min": 28279200000,
              "price_max": 28279200000,
              "price_min_before_discount": 310000000000,
              "price_max_before_discount": 310000000000,
              "hidden_price_display": null,
              "price_before_discount": 310000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": ">90% off",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "silver",
                    "black",
                    "black."
                  ],
                  "images": [
                    "id-11134207-8224r-mgi3no69mv4ce2",
                    "id-11134207-8224x-mgi3no69o9os97",
                    "id-11134207-8224x-mgi3no69po98e1"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp92RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 27779200000,
                "strikethrough_price": 310000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1327463398785032,
                "discount_text": ">90% off",
                "model_id": 315054335410,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1327463398785032,
                  "voucher_code": "MERAZ002",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1767705720,
                    "end_time": 1775820120,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 310000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 277.792",
                      "hidden_promotion_price": "Rp 2?7.792",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp92RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MerakTek",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41776023386,
            "shopid": 1557399265,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mgi3no69inf088\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1049122,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,1400285055,1015914,700190087,2068629,298938357,298938368,2098628,1718088045,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":66,\"model_id\":315054335410,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mgi3no69inf088\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1049122,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,1400285055,1015914,700190087,2068629,298938357,298938368,2098628,1718088045,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":66,\"model_id\":315054335410,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41776023386",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41026013966,
              "shopid": 1484087853,
              "name": "Hollow Diamond Biling PC Case for Huawei Band 10 /Huawei Band 9 /Huawei Band 8 Anti Gores Hard Screen Protector Full Bumper Cover Frame Accessories Jam Tangan Smartwatch for Huawei Band 10 9 8 NFC",
              "label_ids": [
                2153644,
                2018618,
                298938357,
                298888358,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                1119699,
                298933384,
                2213652,
                2048660,
                2048661,
                700765096,
                700810055,
                1400285055,
                298468389,
                2098629,
                1718088045,
                2098628,
                298938368
              ],
              "image": "sg-11134201-821fw-mghknxzz59u5ed",
              "images": [
                "sg-11134201-821fw-mghknxzz59u5ed",
                "sg-11134201-821fc-mghknyka48wc39",
                "sg-11134201-821g6-mghknz561ixbf9",
                "sg-11134201-821er-mghknznwa5u2b9",
                "sg-11134201-821g4-mghko0celtsa1b",
                "sg-11134201-821ge-mghko0ww8zyna1",
                "sg-11134201-821dl-mghko1bxmo0a49",
                "sg-11134201-821cx-mghko1vcamff0a",
                "sg-11134201-821ff-mghko2czh3pmfc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761889963,
              "sold": 7,
              "historical_sold": 21,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 7,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1472000000,
              "price_min": 1472000000,
              "price_max": 1472000000,
              "price_min_before_discount": 3200000000,
              "price_max_before_discount": 3200000000,
              "hidden_price_display": null,
              "price_before_discount": 3200000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kips-m8kinaqysxlh39.16000081744634249.mp4",
                  "thumb_url": "sg-11110106-6kips-m8kinaqysxlh39_cover",
                  "duration": 12,
                  "version": 2,
                  "vid": "sg-11110106-6kips-m8kinaqysxlh39",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kips-m8kinaqysxlh39.16006711747763987.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kips-m8kinaqysxlh39.16006711747763987.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kips-m8kinaqysxlh39.16000081744634249.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kips-m8kinaqysxlh39.16000081744634249.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kips-m8kinaqysxlh39.16003251747763987.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kips-m8kinaqysxlh39.16003251747763987.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kips-m8kinaqysxlh39.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Gold(Case)",
                    "Rose(Case)",
                    "Starlight(Case)",
                    "Black(Case)",
                    "Rose Gold(Case)",
                    "Silver(Case)",
                    "Transparent(Case)",
                    "Film"
                  ],
                  "images": [
                    "sg-11134201-821dm-mghkof52ornse4",
                    "sg-11134201-821e0-mghkofr50vf29d",
                    "sg-11134201-821ek-mghkog5gxdsf91",
                    "sg-11134201-821ei-mghkogol68zyc4",
                    "sg-11134201-821fj-mghkoh3h649847",
                    "sg-11134201-821dv-mghkohr23e2zcd",
                    "sg-11134201-821e1-mghkoi4psx6y71",
                    "sg-11134201-821d4-mghkoilsw1l825"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei Band 8/9/10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  7,
                  0,
                  0,
                  0,
                  0,
                  7
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372024811991523,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 1472000000,
                "strikethrough_price": 3200000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 330050692098,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3200000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 14.720",
                      "hidden_promotion_price": "Rp ?4.720",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 21,
                "rounded_local_monthly_sold_count": 7,
                "local_monthly_sold_count_text": "7",
                "rounded_display_sold_count": 21,
                "display_sold_count_text": "21"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EIHAIHIS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41026013966,
            "shopid": 1484087853,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fw-mghknxzz59u5ed\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,298938357,298888358,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1119699,298933384,2213652,2048660,2048661,700765096,700810055,1400285055,298468389,2098629,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":642,\"model_id\":330050692098,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fw-mghknxzz59u5ed\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,298938357,298888358,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1119699,298933384,2213652,2048660,2048661,700765096,700810055,1400285055,298468389,2098629,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":642,\"model_id\":330050692098,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41026013966",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41026013960,
              "shopid": 1484087853,
              "name": "Anti Gores PC Case For Huawei Band 10 9 8 Tempered Glass Screen Protector Cover Bumper Accessories for Jam Tangan Smartwatch Huawei Band Anti Gores Huawei Band 10 9 8 NFC",
              "label_ids": [
                2153644,
                298888358,
                298938357,
                2018618,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                840990690654214,
                840955085144628,
                825465608492064,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384,
                1400285055,
                2213652,
                1015914,
                700190087,
                700810055,
                299103323,
                298468389,
                2098629,
                1718088045,
                2098628,
                298938368
              ],
              "image": "sg-11134201-821fb-mghknydojaiwe2",
              "images": [
                "sg-11134201-821fb-mghknydojaiwe2",
                "sg-11134201-821fi-mghknyxveqdq64",
                "sg-11134201-821fd-mghknzek972j2c",
                "sg-11134201-821e9-mghknzo6dyx65f",
                "sg-11134201-821eg-mghknzwdn0ni21",
                "sg-11134201-821fj-mghko09v9gqxe3",
                "sg-11134201-821gh-mghko0jeic5p7b",
                "sg-11134201-821gc-mghko0z1tgy32c",
                "sg-11134201-821f5-mghko1e4agw83a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761889961,
              "sold": 136,
              "historical_sold": 293,
              "liked": false,
              "liked_count": 26,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 105,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1590000000,
              "price_min": 1590000000,
              "price_max": 1590000000,
              "price_min_before_discount": 3180000000,
              "price_max_before_discount": 3180000000,
              "hidden_price_display": null,
              "price_before_discount": 3180000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Transparent",
                    "Black color",
                    "Ivory Tusk",
                    "Pink color",
                    "Navy blue",
                    "Green color",
                    "Clear"
                  ],
                  "images": [
                    "sg-11134201-821dz-mghkodziojrh0d",
                    "sg-11134201-821fk-mghkoe5j46bu99",
                    "sg-11134201-821dz-mghkoediyfbd2d",
                    "sg-11134201-821es-mghkoerzp2ixba",
                    "sg-11134201-821ft-mghkof891slm44",
                    "sg-11134201-821ds-mghkofikfdvudc",
                    "sg-11134201-821e6-mghkog0r5n9r8b"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei Band 8/9/10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.876190476190477,
                "rating_count": [
                  105,
                  1,
                  0,
                  2,
                  5,
                  97
                ],
                "rcount_with_context": 16,
                "rcount_with_image": 14
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372024811991523,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744049498177536,
                "price": 1590000000,
                "strikethrough_price": 3180000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 297111876100,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3180000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 293,
                "rounded_local_monthly_sold_count": 136,
                "local_monthly_sold_count_text": "136",
                "rounded_display_sold_count": 293,
                "display_sold_count_text": "293"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EIHAIHIS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41026013960,
            "shopid": 1484087853,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fb-mghknydojaiwe2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,298888358,298938357,2018618,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,840990690654214,840955085144628,825465608492064,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,1400285055,2213652,1015914,700190087,700810055,299103323,298468389,2098629,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":643,\"model_id\":297111876100,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821fb-mghknydojaiwe2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,298888358,298938357,2018618,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,840990690654214,840955085144628,825465608492064,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,1400285055,2213652,1015914,700190087,700810055,299103323,298468389,2098629,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":643,\"model_id\":297111876100,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41026013960",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42075988564,
              "shopid": 1664036134,
              "name": "LAXASFIT smartwatch H9 , Jam tangan olahraga 2.01 inci,calling, Bluetooth,Pemantauan denyut jantung",
              "label_ids": [
                844931064601283,
                700005490,
                1049120,
                822059908662278,
                825465608494624,
                825465608499232,
                1718087960,
                1428713,
                1015914,
                700190087,
                298463379,
                1119699,
                1718093079,
                700700063,
                1400285055,
                2023641,
                844931086908638,
                2018619,
                298933384,
                825465608497696,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224y-mhwpsc91i22te5",
              "images": [
                "id-11134207-8224y-mhwpsc91i22te5",
                "id-11134207-8224y-mh7dgln3tmvj1a",
                "id-11134207-8224t-mhx4oyqr7cw851",
                "id-11134207-8224p-mhwpsc91qhhh6d",
                "id-11134207-8224v-mhwpsc91p2x1d6",
                "id-11134207-82252-mhwpsc91jgn919",
                "id-11134207-8224x-mhwpsc91nocl70",
                "id-11134207-8224u-mik0jtadmbd03c",
                "id-11134207-8224t-mhwpsc91kv7p6b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761825491,
              "sold": 35,
              "historical_sold": 39,
              "liked": false,
              "liked_count": 112,
              "view_count": null,
              "catid": 100013,
              "brand": "laxasfit",
              "cmt_count": 21,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 9403000000,
              "price_min": 9403000000,
              "price_max": 9403000000,
              "price_min_before_discount": 24800000000,
              "price_max_before_discount": 24800000000,
              "hidden_price_display": null,
              "price_before_discount": 24800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-62%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvk-mhx4rfo0terp53.16000101765011013.mp4",
                  "thumb_url": "id-11110105-6vdvk-mhx4rfo0terp53_cover",
                  "duration": 32,
                  "version": 2,
                  "vid": "id-11110105-6vdvk-mhx4rfo0terp53",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvk-mhx4rfo0terp53.16000101765011013.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvk-mhx4rfo0terp53.16000101765011013.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvk-mhx4rfo0terp53.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "merah muda",
                    "Perak",
                    "Hitam",
                    "+ Tali Jam Gratis"
                  ],
                  "images": [
                    "id-11134207-8224q-migo5fo5aadiff",
                    "id-11134207-8224q-migo5fo75pmse5",
                    "id-11134207-8224r-migo5fo774781e",
                    "id-11134207-8224u-mhwpsc91f8xxa5"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.9523809523809526,
                "rating_count": [
                  21,
                  0,
                  0,
                  0,
                  1,
                  20
                ],
                "rcount_with_context": 8,
                "rcount_with_image": 6
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 392407086807696,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 9403000000,
                "strikethrough_price": 24800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-62%",
                "model_id": 375047353362,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 24800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 94.030",
                      "hidden_promotion_price": "Rp ?4.030",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 39,
                "rounded_local_monthly_sold_count": 35,
                "local_monthly_sold_count_text": "35",
                "rounded_display_sold_count": 39,
                "display_sold_count_text": "39"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "LAXASFIT Toko Lokal",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42075988564,
            "shopid": 1664036134,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mhwpsc91i22te5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,1049120,822059908662278,825465608494624,825465608499232,1718087960,1428713,1015914,700190087,298463379,1119699,1718093079,700700063,1400285055,2023641,844931086908638,2018619,298933384,825465608497696,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":31,\"model_id\":375047353362,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mhwpsc91i22te5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,1049120,822059908662278,825465608494624,825465608499232,1718087960,1428713,1015914,700190087,298463379,1119699,1718093079,700700063,1400285055,2023641,844931086908638,2018619,298933384,825465608497696,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":31,\"model_id\":375047353362,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42075988564",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 57600529392,
              "shopid": 984170441,
              "name": "AmazeFan Muslim Smartwatch M77 MAX - 114 surah Al-Qur'an Jam Tangan Pintar Pria Wanita dengan Adzan Reminder Al-Qur'an-Tasbih Custom Wallpaper | Pemantauan Tidur dan Detak Jantung",
              "label_ids": [
                700700063,
                1012729,
                2018618,
                997921094,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1049120,
                700005490,
                822059908662278,
                825465608497696,
                2048660,
                2048661,
                825465608499232,
                1119699,
                700765096,
                1400285055,
                2213652,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224t-mgggbh3gcxe426",
              "images": [
                "id-11134207-8224t-mgggbh3gcxe426",
                "id-11134207-8224t-mgggbh3g0aa4a7",
                "id-11134207-8224t-mgggbh3g7b4c7b",
                "id-11134207-8224y-mgggbh3g5wjwab",
                "id-11134207-82250-mgggbh3g1ouk64",
                "id-11134207-8224p-mgggbh3g33f02d",
                "id-11134207-8224v-mgggbh3g4hzgd3",
                "id-11134207-8224u-mgggbh3ga49863",
                "id-11134207-8224w-mgggbh3gbito77"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761823018,
              "sold": 73,
              "historical_sold": 128,
              "liked": false,
              "liked_count": 126,
              "view_count": null,
              "catid": 100013,
              "brand": "AmazeFan",
              "cmt_count": 67,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 31898000000,
              "price_min": 31898000000,
              "price_max": 31898000000,
              "price_min_before_discount": 76800000000,
              "price_max_before_discount": 76800000000,
              "hidden_price_display": null,
              "price_before_discount": 76800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-58%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venf-mgggn0u8uy2x83.16000081761822662.mp4",
                  "thumb_url": "id-11110105-6venf-mgggn0u8uy2x83_cover",
                  "duration": 55,
                  "version": 2,
                  "vid": "id-11110105-6venf-mgggn0u8uy2x83",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venf-mgggn0u8uy2x83.16000081761822662.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venf-mgggn0u8uy2x83.16000081761822662.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venf-mgggn0u8uy2x83.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Hitam + Tali Hitam",
                    "Hitam + Tali Silver"
                  ],
                  "images": [
                    "id-11134207-8224t-mgggbh3c6mmn44",
                    "id-11134207-8224o-mgggpsk05xce2a",
                    "id-11134207-8224v-mgggpsk81o257f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.940298507462686,
                "rating_count": [
                  67,
                  0,
                  0,
                  1,
                  2,
                  64
                ],
                "rcount_with_context": 24,
                "rcount_with_image": 23
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-8224t-mgggbh3gcxe426",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 823056738615296,
                "price": 31898000000,
                "strikethrough_price": 76800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-58%",
                "model_id": 345047152635,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 76800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 128,
                "rounded_local_monthly_sold_count": 73,
                "local_monthly_sold_count_text": "73",
                "rounded_display_sold_count": 128,
                "display_sold_count_text": "128"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "AmazeFan Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 57600529392,
            "shopid": 984170441,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mgggbh3gcxe426\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,1012729,2018618,997921094,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1049120,700005490,822059908662278,825465608497696,2048660,2048661,825465608499232,1119699,700765096,1400285055,2213652,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":619,\"model_id\":345047152635,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mgggbh3gcxe426\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,1012729,2018618,997921094,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1049120,700005490,822059908662278,825465608497696,2048660,2048661,825465608499232,1119699,700765096,1400285055,2213652,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":619,\"model_id\":345047152635,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_57600529392",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50650521571,
              "shopid": 1111346496,
              "name": "Garmin Venu 3S | Smartwatch 41mm Silicone Band - Garansi Resmi 2 Tahun",
              "label_ids": [
                1400066568,
                1012729,
                2018618,
                2153644,
                1428713,
                1718087960,
                844931064601283,
                1718093079,
                1119699,
                700765096,
                2213652,
                1059152,
                700005489,
                1049112,
                1049127,
                825465608494624,
                822059908662278,
                2048660,
                2048661,
                825465608499232,
                834403089593352,
                825465608497696,
                700005503,
                1049130,
                1049156,
                1049116,
                1059156,
                1049126,
                700005507,
                1049141,
                700005506,
                1049117,
                700005499,
                1049135
              ],
              "image": "id-11134207-8224r-mj9q573yl4hvcc",
              "images": [
                "id-11134207-8224r-mj9q573yl4hvcc",
                "id-11134207-8224z-mggbpqm4u80aeb",
                "id-11134207-8224z-mggc4v2n395535",
                "id-11134207-8224v-mggc4v2nlij3d0",
                "id-11134207-8224r-mggbpqm4ke1638"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761815255,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 619900000000,
              "price_min": 619900000000,
              "price_max": 619900000000,
              "price_min_before_discount": 799900000000,
              "price_max_before_discount": 799900000000,
              "hidden_price_display": null,
              "price_before_discount": 799900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-23%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv8-mggbv6x95q15c9.16000081761814632.mp4",
                  "thumb_url": "id-11110105-6vdv8-mggbv6x95q15c9_cover",
                  "duration": 30,
                  "version": 2,
                  "vid": "id-11110105-6vdv8-mggbv6x95q15c9",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv8-mggbv6x95q15c9.16000081761814632.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv8-mggbv6x95q15c9.16000081761814632.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv8-mggbv6x95q15c9.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Pebble Gray",
                    "Sage Gray",
                    "French Gray",
                    "Dust Rose",
                    "Ivory"
                  ],
                  "images": [
                    "id-11134207-8224v-mggbpqm4n7628b",
                    "id-11134207-82252-mggbpqm4olqidf",
                    "id-11134207-8224w-mggbpqm4q0ay36",
                    "id-11134207-8224z-mggbpqm4revec6",
                    "id-11134207-82250-mggbpqm4stfub1"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 823758269498368,
                "price": 619900000000,
                "strikethrough_price": 799900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-23%",
                "model_id": 435046227259,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 799900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Doran Wearable Authorized Store Bandung",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50650521571,
            "shopid": 1111346496,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mj9q573yl4hvcc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1012729,2018618,2153644,1428713,1718087960,844931064601283,1718093079,1119699,700765096,2213652,1059152,700005489,1049112,1049127,825465608494624,822059908662278,2048660,2048661,825465608499232,834403089593352,825465608497696,700005503,1049130,1049156,1049116,1059156,1049126,700005507,1049141,700005506,1049117,700005499,1049135],\"matched_keywords\":[\"\"],\"merge_rank\":190,\"model_id\":435046227259,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mj9q573yl4hvcc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1012729,2018618,2153644,1428713,1718087960,844931064601283,1718093079,1119699,700765096,2213652,1059152,700005489,1049112,1049127,825465608494624,822059908662278,2048660,2048661,825465608499232,834403089593352,825465608497696,700005503,1049130,1049156,1049116,1059156,1049126,700005507,1049141,700005506,1049117,700005499,1049135],\"matched_keywords\":[\"\"],\"merge_rank\":190,\"model_id\":435046227259,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50650521571",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43275974225,
              "shopid": 1191507022,
              "name": "Sport Nylon Loop Strap for Huawei Band 10 / Huawei Band 9 / Huawei Band 8 Breathable Repalcement Nylon Wrist Band Belt Accessories Tali Jam Tangan Smartwatch for Huawei Band 10 9 8 NFC",
              "label_ids": [
                2023641,
                2018619,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1718093079,
                1119699,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-825b4-mgg7qz2xpo951e",
              "images": [
                "sg-11134201-825b4-mgg7qz2xpo951e",
                "sg-11134201-825a6-mgg7qzoyubkdf6",
                "sg-11134201-8258l-mgg7r01nzd3g88",
                "sg-11134201-825a0-mgg7r0ssowsqa8",
                "sg-11134201-8258s-mgg7r183h3pp3e",
                "sg-11134201-8259k-mgg7r1p1u9e3a4",
                "sg-11134201-8258o-mgg7r25hsf0qf3",
                "sg-11134201-825aa-mgg7r2o9xvrfd3",
                "sg-11134201-825ay-mgg7r39qgs2642"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761807710,
              "sold": 3,
              "historical_sold": 9,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3220000000,
              "price_min": 3220000000,
              "price_max": 3220000000,
              "price_min_before_discount": 7000000000,
              "price_max_before_discount": 7000000000,
              "hidden_price_display": null,
              "price_before_discount": 7000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "watery red(Strap)",
                    "grey(Strap)",
                    "tender green (Strap)",
                    "Klein Blue(Strap)",
                    "lavender(Strap)",
                    "Island Blue(Strap)",
                    "pink sand (Strap)",
                    "starlight(Strap)",
                    "plum color(Strap)",
                    "orange(Strap)",
                    "olive(Strap)",
                    "azure(Strap)",
                    "Green(Strap)",
                    "black(Strap)",
                    "Case"
                  ],
                  "images": [
                    "sg-11134201-825b4-mgg7rfy6dpfs31",
                    "sg-11134201-8257v-mgg7rg765lvvd3",
                    "sg-11134201-8259c-mgg7rgfhs2dldb",
                    "sg-11134201-825ai-mgg7rgo9lde1d2",
                    "sg-11134201-8258m-mgg7rgwc34zyc4",
                    "sg-11134201-8258n-mgg7rh3evle089",
                    "sg-11134201-8258f-mgg7rhbhixoq14",
                    "sg-11134201-825ai-mgg7rhjmjymhff",
                    "sg-11134201-8259y-mgg7rhtzc2rxeb",
                    "sg-11134201-825ah-mgg7ri2016o883",
                    "sg-11134201-82591-mgg7ribhk7in14",
                    "sg-11134201-8258w-mgg7rikd1n2gd0",
                    "sg-11134201-8259x-mgg7risixix727",
                    "sg-11134201-8259i-mgg7rj0f2bym40",
                    "sg-11134201-825b5-mgg7rj6gsb9of6"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei band 10 9 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.666666666666667,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  1,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 370310260212244,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 3220000000,
                "strikethrough_price": 7000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 287108359790,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 32.200",
                      "hidden_promotion_price": "Rp ?2.200",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 9,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 9,
                "display_sold_count_text": "9"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RCAT STORE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43275974225,
            "shopid": 1191507022,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825b4-mgg7qz2xpo951e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":645,\"model_id\":287108359790,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825b4-mgg7qz2xpo951e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":645,\"model_id\":287108359790,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43275974225",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54550490908,
              "shopid": 1481276809,
              "name": "Anti Gores Tempered Glass / Soft Film for Garmin Forerunner 165/Forerunner 55/Forerunner 158 Screen Protector Accessories for Jam Tangan for Smartwatch Garmin Forerunner 165/Forerunner 55/Forerunner 158",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384,
                1015914,
                700190087,
                1400285055,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-82588-mgg772afint4c0",
              "images": [
                "sg-11134201-82588-mgg772afint4c0",
                "sg-11134201-8257y-mgg772xckbnz68",
                "sg-11134201-8259k-mgg773azezuw0c",
                "sg-11134201-8258w-mgg773lkz7d862",
                "sg-11134201-825b2-mgg773u86sy758",
                "sg-11134201-825a4-mgg77446gdu7e1",
                "sg-11134201-8259y-mgg774b4n37z74",
                "sg-11134201-825ae-mgg774nsosuh7f",
                "sg-11134201-825ai-mgg774tycp3fb0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761806778,
              "sold": 8,
              "historical_sold": 39,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 13,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1590000000,
              "price_min": 1590000000,
              "price_max": 1590000000,
              "price_min_before_discount": 2680000000,
              "price_max_before_discount": 2680000000,
              "hidden_price_display": null,
              "price_before_discount": 2680000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-41%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Tempered Glass film",
                    " Soft Film"
                  ],
                  "images": [
                    "sg-11134201-825aa-mgg77hr4og7f03",
                    "sg-11134201-8257y-mgg77i0hlq16e4"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Forerunner 165",
                    "Forerunner 55",
                    "Forerunner 158"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.6923076923076925,
                "rating_count": [
                  13,
                  0,
                  1,
                  0,
                  1,
                  11
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372022693871686,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744045069009920,
                "price": 1590000000,
                "strikethrough_price": 2680000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-41%",
                "model_id": 297108270168,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2680000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 39,
                "rounded_local_monthly_sold_count": 8,
                "local_monthly_sold_count_text": "8",
                "rounded_display_sold_count": 39,
                "display_sold_count_text": "39"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SOLOLUP",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54550490908,
            "shopid": 1481276809,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82588-mgg772afint4c0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,1015914,700190087,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":646,\"model_id\":297108270168,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82588-mgg772afint4c0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,1015914,700190087,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":646,\"model_id\":297108270168,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54550490908",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43125978138,
              "shopid": 1609664907,
              "name": "Tempered Glass PC Case for Smart Watch Xiaomi Band Mi Band 10 9 8 NFC Anti Gores Full Coverage Bumper Shell Screen Protector Cover Accessories Jam Tangan Smartwatch for Miband 10 9 8 NFC",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8259q-mgg6g8zz2y30c2",
              "images": [
                "sg-11134201-8259q-mgg6g8zz2y30c2",
                "sg-11134201-8258j-mgg6g9f9cvm357",
                "sg-11134201-8259i-mgg6g9qdaq6mf2",
                "sg-11134201-8259t-mgg6ga0blr7xbf",
                "sg-11134201-825az-mgg6gab9nggeef",
                "sg-11134201-825aw-mgg6gazruwp652",
                "sg-11134201-8258r-mgg6gboxfpjh23",
                "sg-11134201-825aq-mgg6gch3ssuk37",
                "sg-11134201-825b0-mgg6gcyth82781"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761805527,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1739000000,
              "price_min": 1739000000,
              "price_max": 1739000000,
              "price_min_before_discount": 3780000000,
              "price_max_before_discount": 3780000000,
              "hidden_price_display": null,
              "price_before_discount": 3780000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "green(Case)",
                    "pink(Case)",
                    "blue(Case)",
                    "ivory(Case)",
                    "black(Case)",
                    "transparent(Case)",
                    "2*(Soft Film)"
                  ],
                  "images": [
                    "sg-11134201-825b1-mgg6gph943k92f",
                    "sg-11134201-825bb-mgg6gppz91ql2d",
                    "sg-11134201-825a2-mgg6gq1yhe6l4e",
                    "sg-11134201-825a7-mgg6gqavu7f1a0",
                    "sg-11134201-8259i-mgg6gqi5ro5o5d",
                    "sg-11134201-8258e-mgg6gqq7k5jha1",
                    "sg-11134201-825b3-mgg6gqyrx6329f"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Mi Band 10 9 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 370281332093398,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 1739000000,
                "strikethrough_price": 3780000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 425044197869,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3780000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 17.390",
                      "hidden_promotion_price": "Rp ?7.390",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "fegmilde",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43125978138,
            "shopid": 1609664907,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8259q-mgg6g8zz2y30c2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":647,\"model_id\":425044197869,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8259q-mgg6g8zz2y30c2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":647,\"model_id\":425044197869,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43125978138",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 54350324899,
              "shopid": 1589172126,
              "name": "20mm Quick Release Rubber Strap Only for Garmin Watch Sport Soft Silicone Bracelet Band Accessories Tali Jam Tangan Smartwatch for Garmin Watch Garmin Forerunner 165 55 158 570 42mm /vivoactive 5/Active /D2 Air X10/Bounce/VivoMove/Venu/approach/vivoactive",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1119699,
                1400285055,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-82587-mgejhfe9pjin61",
              "images": [
                "sg-11134201-82587-mgejhfe9pjin61",
                "sg-11134201-825a4-mgejhfy3xwy302",
                "sg-11134201-825bc-mgejhgh2uccrae",
                "sg-11134201-8259l-mgejhh1ssr2id7",
                "sg-11134201-825a6-mgejhhhkecr1b1",
                "sg-11134201-8257s-mgejhhwmy7f28d",
                "sg-11134201-8257v-mgejhi4ldudob8",
                "sg-11134201-82587-mgejhijxf2mg9f",
                "sg-11134201-825as-mgejhiuzsnbjaa"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761706372,
              "sold": 1,
              "historical_sold": 7,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2751000000,
              "price_min": 2751000000,
              "price_max": 2751000000,
              "price_min_before_discount": 5980000000,
              "price_max_before_discount": 5980000000,
              "hidden_price_display": null,
              "price_before_discount": 5980000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Wine Red(Strap)",
                    "Turquoise(Strap)",
                    "Deep Sea Blue(Strap)",
                    "red(Strap)",
                    "Roland Purple(Strap)",
                    "orange(Strap)",
                    "Midnight(Strap)",
                    "Grey(Strap)",
                    "White(Strap)",
                    "Light Pink(Strap)",
                    "Black(Strap)"
                  ],
                  "images": [
                    "sg-11134201-8259r-mgejhvhrnua1e9",
                    "sg-11134201-8258t-mgejhw0olzpo2b",
                    "sg-11134201-825ax-mgejhwiv9hjg1f",
                    "sg-11134201-825a1-mgejhwtjplhp96",
                    "sg-11134201-825b2-mgejhx9juv4823",
                    "sg-11134201-825a2-mgejhy1q6jv00d",
                    "sg-11134201-825az-mgejhybgerrib3",
                    "sg-11134201-825aj-mgejhylu38jz88",
                    "sg-11134201-8258l-mgejhyv7zmkt4b",
                    "sg-11134201-8259n-mgejhz4pvaj1eb",
                    "sg-11134201-825an-mgejhzd37k0bed"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm for Garmin"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359070448239000,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2751000000,
                "strikethrough_price": 5980000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 277100309766,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5980000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 27.510",
                      "hidden_promotion_price": "Rp ?7.510",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 7,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 7,
                "display_sold_count_text": "7"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Fulsaxad",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 54350324899,
            "shopid": 1589172126,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82587-mgejhfe9pjin61\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699,1400285055,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":649,\"model_id\":277100309766,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82587-mgejhfe9pjin61\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699,1400285055,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":649,\"model_id\":277100309766,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_54350324899",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 47650339819,
              "shopid": 1589172126,
              "name": "Anti Gores Tempered Glass PC Case for Xiaomi Band Mi Band 10 9 8 NFC Full Coverage Bumper Shell Screen Protector Bumper Frame Cover Accessories Jam Tangan Smartwatch for Miband 10 9 8",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1119699,
                298933384,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-825ab-mgejhf78zkss12",
              "images": [
                "sg-11134201-825ab-mgejhf78zkss12",
                "sg-11134201-825ak-mgejhfom0ufda1",
                "sg-11134201-8257t-mgejhfy8tjik87",
                "sg-11134201-825a1-mgejhg9trqiz03",
                "sg-11134201-825aq-mgejhgksac5q0f",
                "sg-11134201-8257w-mgejhgxbm1ho43",
                "sg-11134201-825ak-mgejhh7rlfd547",
                "sg-11134201-825a0-mgejhhg8buoedb",
                "sg-11134201-825ak-mgejhhn5p0jxda"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761706371,
              "sold": 2,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1739000000,
              "price_min": 1739000000,
              "price_max": 1739000000,
              "price_min_before_discount": 3780000000,
              "price_max_before_discount": 3780000000,
              "hidden_price_display": null,
              "price_before_discount": 3780000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "green(Case)",
                    "pink(Case)",
                    "blue(Case)",
                    "ivory(Case)",
                    "black(Case)",
                    "transparent(Case)",
                    "2*(Soft Film)"
                  ],
                  "images": [
                    "sg-11134201-8259h-mgejhu7a75zdd4",
                    "sg-11134201-8259f-mgejhukmed56e1",
                    "sg-11134201-8259f-mgejhusjmi2z5e",
                    "sg-11134201-8259f-mgejhv8gudjg59",
                    "sg-11134201-825al-mgejhvgp3zm50e",
                    "sg-11134201-825ay-mgejhvphl7uz86",
                    "sg-11134201-8257z-mgejhw2tv85k65"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Mi Band 10 9 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359070448239000,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 1739000000,
                "strikethrough_price": 3780000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 400030769840,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3780000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 17.390",
                      "hidden_promotion_price": "Rp ?7.390",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Fulsaxad",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 47650339819,
            "shopid": 1589172126,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825ab-mgejhf78zkss12\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,1119699,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":650,\"model_id\":400030769840,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825ab-mgejhf78zkss12\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,1119699,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":650,\"model_id\":400030769840,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_47650339819",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56250291141,
              "shopid": 1386251174,
              "name": "SmartWatch Jam Tangan Asli iwo Watch 8 Ultra 1,89 inci Seri Cerdas 49MM 8 SOS NFC Siri EKG Panggilan Bluetooth Smartwatch Watch 8 Ultra Jam Tangan Tahan Air 49mm Bluetooth 1,85 Inci Panggilan Dialing Pria Detak Jantung Sportwatch",
              "label_ids": [
                1012729,
                2153644,
                2018618,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1049120,
                700005490,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1119699,
                2213652,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-825b0-mgdjjuvdtz4fa4",
              "images": [
                "sg-11134201-825b0-mgdjjuvdtz4fa4",
                "sg-11134201-82593-mgdjjxqrludr94",
                "sg-11134201-825ad-mgdjk7892jgp17",
                "sg-11134201-82592-mgdjka8ds8p761",
                "sg-11134201-8258k-mgdjkf89vc3v1a",
                "sg-11134201-82586-mgdimldxs8p876",
                "sg-11134201-82582-mgdjkfqki2a4ca",
                "sg-11134201-825b4-mgdjkh9i9o2301",
                "sg-11134201-825az-mgdjkhq79pfy06"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761646137,
              "sold": 16,
              "historical_sold": 16,
              "liked": false,
              "liked_count": 11,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4599900000,
              "price_min": 4599900000,
              "price_max": 4599900000,
              "price_min_before_discount": 15600000000,
              "price_max_before_discount": 15600000000,
              "hidden_price_display": null,
              "price_before_discount": 15600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-71%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Hitam",
                    "Putih",
                    "Krem"
                  ],
                  "images": [
                    "sg-11134201-8259v-mgdjeszaxt725a",
                    "sg-11134201-825a7-mgdjeu4ww7wp74",
                    "sg-11134201-825a8-mgdjexpragb2ca"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 3.25,
                "rating_count": [
                  4,
                  1,
                  0,
                  1,
                  1,
                  1
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 774616059004928,
                "price": 4499900000,
                "strikethrough_price": 15600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1272931717365760,
                "discount_text": "-71%",
                "model_id": 297098482510,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1272931717365760,
                  "voucher_code": "XKEI1000",
                  "voucher_discount": 100000000,
                  "time_info": {
                    "start_time": 1761205080,
                    "end_time": 1769244360,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 100000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 15600000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 16,
                "rounded_local_monthly_sold_count": 16,
                "local_monthly_sold_count_text": "16",
                "rounded_display_sold_count": 16,
                "display_sold_count_text": "16"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "XKE Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56250291141,
            "shopid": 1386251174,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825b0-mgdjjuvdtz4fa4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2153644,2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1049120,700005490,822059908662278,825465608497696,825465608494624,825465608499232,1119699,2213652,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":653,\"model_id\":297098482510,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825b0-mgdjjuvdtz4fa4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2153644,2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1049120,700005490,822059908662278,825465608497696,825465608494624,825465608499232,1119699,2213652,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":653,\"model_id\":297098482510,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56250291141",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56800300677,
              "shopid": 1344414745,
              "name": "Anti Gores Case for Xiaomi Band Mi Band 10 9 8 NFC Full Coverage Bumper Shell Tempered Glass PC Screen Protector Cover Accessories Jam Tangan Smartwatch for Miband 10 9 8",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1718093079,
                1119699,
                298933384,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                700765096,
                1015914,
                700190087,
                1400285055,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8257t-mgdiwj5llmvid6",
              "images": [
                "sg-11134201-8257t-mgdiwj5llmvid6",
                "sg-11134201-825af-mgdiwje10ave28",
                "sg-11134201-825ah-mgdiwk4w036581",
                "sg-11134201-825am-mgdiwkp6jlzfc5",
                "sg-11134201-8258k-mgdiwky3s7ij2f",
                "sg-11134201-82599-mgdiwl7xaia7f3",
                "sg-11134201-82594-mgdiwlinc93dec",
                "sg-11134201-8259b-mgdiwmelyccp84",
                "sg-11134201-8259d-mgdiwmvkldl9c8"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761644862,
              "sold": 1,
              "historical_sold": 12,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1739000000,
              "price_min": 1739000000,
              "price_max": 1739000000,
              "price_min_before_discount": 3780000000,
              "price_max_before_discount": 3780000000,
              "hidden_price_display": null,
              "price_before_discount": 3780000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "green(Case)",
                    "pink(Case)",
                    "blue(Case)",
                    "ivory(Case)",
                    "black(Case)",
                    "transparent(Case)",
                    "2*(Soft Film)"
                  ],
                  "images": [
                    "sg-11134201-82590-mgdiwzho86q557",
                    "sg-11134201-8258a-mgdiwzurkiyxe5",
                    "sg-11134201-82583-mgdix0ccke15e3",
                    "sg-11134201-825b6-mgdix0qkzua57d",
                    "sg-11134201-8258i-mgdix17dmk2354",
                    "sg-11134201-825ag-mgdix1oozf9q59",
                    "sg-11134201-825as-mgdix24qdonc5e"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Mi Band 10 9 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 374886765965807,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 1739000000,
                "strikethrough_price": 3780000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 415027487409,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3780000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 17.390",
                      "hidden_promotion_price": "Rp ?7.390",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 12,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 12,
                "display_sold_count_text": "12"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "LCAPLE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56800300677,
            "shopid": 1344414745,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8257t-mgdiwj5llmvid6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,298933384,840990690654214,2048660,2048661,840955085144628,700765096,1015914,700190087,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":654,\"model_id\":415027487409,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8257t-mgdiwj5llmvid6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,298933384,840990690654214,2048660,2048661,840955085144628,700765096,1015914,700190087,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":654,\"model_id\":415027487409,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56800300677",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44750295823,
              "shopid": 1391884684,
              "name": "Smartwatch JETE LUXE Jam Tangan 1.85\" AMOLED Screen Display ChatGPT NFC AI System Bluetooth Call IP68 Waterproof Tahan Air 100+ Sport Mode Heart Rate Sleep Monitoring Jam Pria Wanita",
              "label_ids": [
                1400066568,
                700700063,
                1012729,
                2018618,
                2153644,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1049116,
                1049117,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                825465608493600,
                825465608494624,
                700005499,
                700005507,
                1059156,
                700005489,
                1049112,
                1049135,
                1049130,
                700005503,
                700005506,
                1049156,
                1049127,
                1049141,
                1049126,
                1059152,
                1119699,
                700765096,
                1015914,
                700190087,
                2213652,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224w-mgd32l4xupzh89",
              "images": [
                "id-11134207-8224w-mgd32l4xupzh89",
                "id-11134207-82251-mg9262qu6tce14",
                "id-11134207-8224x-mg9262qu87wu46",
                "id-11134207-8224y-mgbq5msht53i11",
                "id-11134207-82250-mgbq5mshujny22",
                "id-11134207-82251-mg9262qub11q8b",
                "id-11134207-8224y-mg928ejvvl6x98",
                "id-11134207-82250-mg928ek19fka88"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761624864,
              "sold": 1,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100013,
              "brand": "JETE",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 59790000000,
              "price_min": 59790000000,
              "price_max": 59790000000,
              "price_min_before_discount": 99990000000,
              "price_max_before_discount": 99990000000,
              "hidden_price_display": null,
              "price_before_discount": 99990000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-40%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Gold"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 412638794498090,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 820983787749376,
                "price": 57790000000,
                "strikethrough_price": 99990000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1331615155240960,
                "discount_text": "-40%",
                "model_id": 350025570099,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1331615155240960,
                  "voucher_code": "JETEJT2P",
                  "voucher_discount": 2000000000,
                  "time_info": {
                    "start_time": 1768200660,
                    "end_time": 1774976340,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 30000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 99990000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "JETE Authorized Store Yogyakarta",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44750295823,
            "shopid": 1391884684,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mgd32l4xupzh89\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,700700063,1012729,2018618,2153644,1718087960,1428713,844931086908638,844931064601283,298463379,1049116,1049117,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,825465608494624,700005499,700005507,1059156,700005489,1049112,1049135,1049130,700005503,700005506,1049156,1049127,1049141,1049126,1059152,1119699,700765096,1015914,700190087,2213652,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":655,\"model_id\":350025570099,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mgd32l4xupzh89\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,700700063,1012729,2018618,2153644,1718087960,1428713,844931086908638,844931064601283,298463379,1049116,1049117,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,825465608494624,700005499,700005507,1059156,700005489,1049112,1049135,1049130,700005503,700005506,1049156,1049127,1049141,1049126,1059152,1119699,700765096,1015914,700190087,2213652,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":655,\"model_id\":350025570099,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44750295823",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50550264550,
              "shopid": 1485723077,
              "name": "20mm 22mm Quick Release Milanese Loop Strap for Redmi Watch 5 Active/ 5 Lite /Samsung Galaxy Watch Fe 7 6 5 4 44mm 40mm Stainless Steel Metal Band Bracelet Wristband Tali Jam Tangan Smartwatch for Huawei GT 6 5/4/3/2 for Amazfit Bip 6 for Xiaomi Watch",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1119699,
                840990690654214,
                840955085144628,
                298888358,
                298938357,
                298933384,
                1015914,
                700190087,
                2103651,
                2143613,
                2098628,
                298468389,
                2098629,
                1718088045,
                298938368
              ],
              "image": "sg-11134201-825ag-mgd40r37tix9b2",
              "images": [
                "sg-11134201-825ag-mgd40r37tix9b2",
                "sg-11134201-825aq-mgd40rrcn6dq4a",
                "sg-11134201-8259z-mgc2j2s7ytc8c8",
                "sg-11134201-82594-mgd40u9w8r9n86",
                "sg-11134201-8259h-mgd40we7ard7f8",
                "sg-11134201-8258c-mgd40yf2l4i1ac",
                "sg-11134201-82593-mgd4106n3h1raa",
                "sg-11134201-825ad-mgd411w37hmwf8",
                "sg-11134201-8258a-mgd413jdzgnc58"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761619848,
              "sold": 9,
              "historical_sold": 11,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3564000000,
              "price_min": 3564000000,
              "price_max": 3564000000,
              "price_min_before_discount": 8000000000,
              "price_max_before_discount": 8000000000,
              "hidden_price_display": null,
              "price_before_discount": 8000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-55%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16000081721134627.mp4",
                  "thumb_url": "sg-11110106-7rdx7-lxsbd0y1c30vb5",
                  "duration": 36,
                  "version": 2,
                  "vid": "sg-11110106-6khwt-lxsbc5vksgau6e",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16003221721921509.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16003221721921509.mp4",
                      "width": 640,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004081745518721.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004081745518721.mp4",
                      "width": 640,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16006711722578947.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16006711722578947.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16006731726512023.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16006731726512023.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16006591721744141.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16006591721744141.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004091721744127.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004091721744127.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16000081721134627.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16000081721134627.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16003241721921509.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16003241721921509.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16003251721921509.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16003251721921509.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004111721744141.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004111721744141.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004101745518721.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004101745518721.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16005581721921509.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16005581721921509.mp4",
                      "width": 1920,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16005681721744142.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16005681721744142.mp4",
                      "width": 1920,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Silver",
                    "Black",
                    "Space Gray",
                    "Gunmetal",
                    "Gold",
                    "Old Gold",
                    "Rose gold",
                    "Pink Gold",
                    "multicolor",
                    "Coffee",
                    "Red",
                    "Blue",
                    "Sky blue",
                    "Baby Pink",
                    "Grass green",
                    "Lavender",
                    "Dark green",
                    "tortoise",
                    "Wine",
                    "Pine green",
                    "Porcelain Green",
                    "Light Pink",
                    "Antique white",
                    "dark purple",
                    "Orange"
                  ],
                  "images": [
                    "sg-11134201-8259d-mgd41gwh7uofb3",
                    "sg-11134201-825at-mgd41he2rc3z84",
                    "sg-11134201-8257w-mgd41i2ztyq211",
                    "sg-11134201-8259g-mgd41irt2xooc2",
                    "sg-11134201-825bb-mgd41j87z5zg4a",
                    "sg-11134201-8258r-mgd41jqlqb644f",
                    "sg-11134201-825aw-mgd41kdc2a6hac",
                    "sg-11134201-8259j-mgd41ky91hjda5",
                    "sg-11134201-8257t-mgd41m2991cf6a",
                    "sg-11134201-8258n-mgd41nfeusy275",
                    "sg-11134201-825b2-mgd41okrpxca99",
                    "sg-11134201-825az-mgd41pjf7vv2b2",
                    "sg-11134201-8258n-mgd41qhkt0jvaa",
                    "sg-11134201-825ag-mgd41rk9rk7hca",
                    "sg-11134201-8258v-mgd41sd0hsst06",
                    "sg-11134201-8258g-mgd41tcqfb4f6e",
                    "sg-11134201-825b1-mgd41uacdxqic1",
                    "sg-11134201-82593-mgd41v9ldv6176",
                    "sg-11134201-825ao-mgc2khgthj4c4d",
                    "sg-11134201-8258f-mgd41y07cydqcf",
                    "sg-11134201-82582-mgd41yw29oukdf",
                    "sg-11134201-8259s-mgd41zukdpu67b",
                    "sg-11134201-82597-mgd420ro5rtb18",
                    "sg-11134201-825az-mgc2koansz63b9",
                    "sg-11134201-82595-mgd4229x6tjh7b"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm watch band",
                    "22mm watch band"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 225630138679297,
                "price": 3564000000,
                "strikethrough_price": 8000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-55%",
                "model_id": 360025078934,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 8000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 11,
                "rounded_local_monthly_sold_count": 9,
                "local_monthly_sold_count_text": "9",
                "rounded_display_sold_count": 11,
                "display_sold_count_text": "11"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50550264550,
            "shopid": 1485723077,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825ag-mgd40r37tix9b2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699,840990690654214,840955085144628,298888358,298938357,298933384,1015914,700190087,2103651,2143613,2098628,298468389,2098629,1718088045,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":657,\"model_id\":360025078934,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825ag-mgd40r37tix9b2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699,840990690654214,840955085144628,298888358,298938357,298933384,1015914,700190087,2103651,2143613,2098628,298468389,2098629,1718088045,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":657,\"model_id\":360025078934,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50550264550",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 49850274607,
              "shopid": 1485723077,
              "name": "Anti Gores Tempered Glass PC Case for Xiaomi Band Mi Band 10 9 8 NFC Full Coverage Shell Bumper Screen Protector Cover Frame Accessories Jam Tangan Smartwatch for Miband 10 9 8",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                840955085144628,
                840990690654214,
                2048660,
                2048661,
                298888358,
                298938357,
                700765096,
                2098629,
                298938368,
                1718088045,
                298468389,
                2098628
              ],
              "image": "sg-11134201-8259v-mgd40tsp97nx85",
              "images": [
                "sg-11134201-8259v-mgd40tsp97nx85",
                "sg-11134201-8259b-mgd40wfencb139",
                "sg-11134201-825bd-mgd40xowvimh0c",
                "sg-11134201-8258o-mgd40zaqv0uj09",
                "sg-11134201-825ac-mgd410wgcwlmdb",
                "sg-11134201-82596-mgd412gkum8eb9",
                "sg-11134201-8258c-mgd413j42mtk16",
                "sg-11134201-8258s-mgd414hnzd3f88",
                "sg-11134201-825a9-mgd415if6brhf6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761619851,
              "sold": 1,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1890000000,
              "price_min": 1890000000,
              "price_max": 1890000000,
              "price_min_before_discount": 3780000000,
              "price_max_before_discount": 3780000000,
              "hidden_price_display": null,
              "price_before_discount": 3780000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "green(Case)",
                    "pink(Case)",
                    "blue(Case)",
                    "ivory(Case)",
                    "black(Case)",
                    "transparent(Case)",
                    "2*(Soft Film)"
                  ],
                  "images": [
                    "sg-11134201-82588-mgd41i9p5t6z58",
                    "sg-11134201-825ag-mgd41j1mgz61cd",
                    "sg-11134201-8258y-mgd41jwskavg78",
                    "sg-11134201-8258e-mgd41l8vf8jz03",
                    "sg-11134201-82584-mgd41lxinuh90a",
                    "sg-11134201-8259i-mgd41nbmbua633",
                    "sg-11134201-8258p-mgd41nwoaubz60"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Mi Band 10 9 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 393092813566800,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744055084991488,
                "price": 1890000000,
                "strikethrough_price": 3780000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 297097011476,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3780000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 49850274607,
            "shopid": 1485723077,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8259v-mgd40tsp97nx85\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,298933384,840955085144628,840990690654214,2048660,2048661,298888358,298938357,700765096,2098629,298938368,1718088045,298468389,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":656,\"model_id\":297097011476,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8259v-mgd40tsp97nx85\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,298933384,840955085144628,840990690654214,2048660,2048661,298888358,298938357,700765096,2098629,298938368,1718088045,298468389,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":656,\"model_id\":297097011476,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_49850274607",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28493422313,
              "shopid": 1452289600,
              "name": " Smart band Y68 d20 Jam Tangan Tahan Air IP68 Monitor Denyut Jantung  bisa ubah walpeper dan Terima Notif Pesan Smart watch y68 Smartband Y68 Y68 smartwatch ",
              "label_ids": [
                298513322,
                2018618,
                700025282,
                2153644,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                700005490,
                1049120,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                2213652,
                1400285055,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8258w-mgc3adlztt6zba",
              "images": [
                "sg-11134201-8258w-mgc3adlztt6zba",
                "sg-11134201-825as-mgc3a9u973t53e",
                "sg-11134201-8259j-mgc3aamsh53c0b",
                "sg-11134201-825a2-mgc3abf2jl71e3",
                "sg-11134201-82598-mgc3afvl6bd9b9",
                "sg-11134201-8258a-mgc3aihlfua79d",
                "sg-11134201-8258l-mgc3aldl7zez50",
                "sg-11134201-8258l-mgc3apyhsqvfc9",
                "sg-11134201-825b7-mgc3aw0r26ffa5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761559144,
              "sold": 24,
              "historical_sold": 49,
              "liked": false,
              "liked_count": 25,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 21,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2599900000,
              "price_min": 2599900000,
              "price_max": 2599900000,
              "price_min_before_discount": 10000000000,
              "price_max_before_discount": 10000000000,
              "hidden_price_display": null,
              "price_before_discount": 10000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-74%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v98r-mgc5x6gu366j2d.16000101761562512.mp4",
                  "thumb_url": "sg-11110106-6v98r-mgc5x6gu366j2d_cover",
                  "duration": 40,
                  "version": 2,
                  "vid": "sg-11110106-6v98r-mgc5x6gu366j2d",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v98r-mgc5x6gu366j2d.16000101761562512.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v98r-mgc5x6gu366j2d.16000101761562512.mp4",
                      "width": 540,
                      "height": 952
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v98r-mgc5x6gu366j2d.default.mp4",
                    "width": 540,
                    "height": 952
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "Biru tua",
                    "langit biru",
                    "abu-abu",
                    "Putih",
                    "kuning"
                  ],
                  "images": [
                    "sg-11134201-825bd-mgc3a3w2df673d",
                    "sg-11134201-8257t-mgc3a45k7ojyd6",
                    "sg-11134201-825bb-mgc3a4lx74ln25",
                    "sg-11134201-8257w-mgc3a5yb7r4c54",
                    "sg-11134201-825a4-mgc3a7buv5l404"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.380952380952381,
                "rating_count": [
                  21,
                  2,
                  0,
                  0,
                  5,
                  14
                ],
                "rcount_with_context": 7,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 774708929282048,
                "price": 2499900000,
                "strikethrough_price": 10000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1272946858409988,
                "discount_text": "-74%",
                "model_id": 435022478384,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1272946858409988,
                  "voucher_code": "KEXT1000",
                  "voucher_discount": 100000000,
                  "time_info": {
                    "start_time": 1761206880,
                    "end_time": 1769245680,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 100000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 10000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 49,
                "rounded_local_monthly_sold_count": 24,
                "local_monthly_sold_count_text": "24",
                "rounded_display_sold_count": 49,
                "display_sold_count_text": "49"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Monster TWS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 28493422313,
            "shopid": 1452289600,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8258w-mgc3adlztt6zba\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298513322,2018618,700025282,2153644,1718087960,1428713,844931086908638,844931064601283,298463379,700005490,1049120,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,2213652,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":659,\"model_id\":435022478384,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8258w-mgc3adlztt6zba\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298513322,2018618,700025282,2153644,1718087960,1428713,844931086908638,844931064601283,298463379,700005490,1049120,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,2213652,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":659,\"model_id\":435022478384,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28493422313",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 46800266697,
              "shopid": 1098918100,
              "name": "Ralker D18  darah smart watch Bluetooth Heart Rate Sport Wtach Smartwatch Jam Tangan digital Pria Wanita d18 Olahraga bisa Custom wallpaper Kontrol musik Pengukuran detak jantung  tekanan",
              "label_ids": [
                700700063,
                2018619,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                700005490,
                1049120,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384,
                2023641,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-82588-mgc1zlycdjik94",
              "images": [
                "sg-11134201-82588-mgc1zlycdjik94",
                "sg-11134201-825a8-mgc1z2opxslm56",
                "sg-11134201-8258w-mgc1z7x27nd56f",
                "sg-11134201-825a6-mgc1z9wdnxu52a",
                "sg-11134201-825ba-mgc1zdcidafe19",
                "sg-11134201-8258s-mgc1zgj31pu2d7",
                "sg-11134201-8259g-mgc1zgxrpibvd4",
                "sg-11134201-8257t-mgc1zhd41vyn08",
                "sg-11134201-82584-mgc1zjvbintbf6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761556090,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2599900000,
              "price_min": 2599900000,
              "price_max": 2599900000,
              "price_min_before_discount": 16900000000,
              "price_max_before_discount": 16900000000,
              "hidden_price_display": null,
              "price_before_discount": 16900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-85%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8ja-mgc24f92e3nz41.16000101761556117.mp4",
                  "thumb_url": "sg-11110106-6v8ja-mgc24f92e3nz41_cover",
                  "duration": 19,
                  "version": 2,
                  "vid": "sg-11110106-6v8ja-mgc24f92e3nz41",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8ja-mgc24f92e3nz41.16000101761556117.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8ja-mgc24f92e3nz41.16000101761556117.mp4",
                      "width": 540,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8ja-mgc24f92e3nz41.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "WARNA",
                  "options": [
                    "berwarna merah muda",
                    "abu-abu",
                    "Putih",
                    "BIRU"
                  ],
                  "images": [
                    "sg-11134201-82581-mgc1yzuyvy1723",
                    "sg-11134201-8257w-mgc1z0rfludkdc",
                    "sg-11134201-82586-mgc1z1p64tfs26",
                    "sg-11134201-825ah-mgc1z24kcnwv9d"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  1,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 774713509462016,
                "price": 2599900000,
                "strikethrough_price": 16900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-85%",
                "model_id": 310022739796,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 16900000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Ralker Official",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 46800266697,
            "shopid": 1098918100,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82588-mgc1zlycdjik94\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,1428713,1718087960,844931086908638,844931064601283,298463379,700005490,1049120,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,2023641,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":660,\"model_id\":310022739796,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82588-mgc1zlycdjik94\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,1428713,1718087960,844931086908638,844931064601283,298463379,700005490,1049120,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,2023641,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":660,\"model_id\":310022739796,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_46800266697",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53950241701,
              "shopid": 1224688845,
              "name": "Soft TPU Case for Huawei Watch GT 6 41mm / Huawei Watch GT 6 46mm Screen Protector Anti Gores Cover Bumper Frame Accessories Jam Tangan Smartwatch for Huawei Watch GT 6 41mm/46mm",
              "label_ids": [
                2153644,
                2018618,
                298938357,
                298888358,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1119699,
                700765096,
                1015914,
                700190087,
                1400285055,
                2213652,
                700810055,
                299103323,
                1718088045,
                2098629,
                2098628,
                298468389,
                298938368
              ],
              "image": "sg-11134201-825b2-mgc1plxrwr2i09",
              "images": [
                "sg-11134201-825b2-mgc1plxrwr2i09",
                "sg-11134201-82583-mgc1pmpn198qd6",
                "sg-11134201-825ai-mgc1pnh3ltl9fa",
                "sg-11134201-825b6-mgc1po6c6vbcd0",
                "sg-11134201-8259m-mgc1port3uvi82",
                "sg-11134201-8259t-mgc1ppm7t2bv58",
                "sg-11134201-8259m-mgc1pqqz6az1a7",
                "sg-11134201-8257z-mgc1prxrw9ou55",
                "sg-11134201-82591-mgc1pszhciz1e1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761555424,
              "sold": 149,
              "historical_sold": 323,
              "liked": false,
              "liked_count": 49,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 104,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3190000000,
              "price_min": 3190000000,
              "price_max": 3190000000,
              "price_min_before_discount": 6380000000,
              "price_max_before_discount": 6380000000,
              "hidden_price_display": null,
              "price_before_discount": 6380000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Transparent(Case)",
                    "Silver(Case)",
                    "Black(Case)",
                    "Rose Gold(Case)",
                    "Gold(Case)",
                    "Light Gold(Case)",
                    "Pink(Case)",
                    "Midnight Blue(Case)",
                    "Gray(Case)",
                    "Red(Case)",
                    "2*Glass Film"
                  ],
                  "images": [
                    "sg-11134201-8257t-mgc1q67ldamm9d",
                    "sg-11134201-825b5-mgc1q6lut824ac",
                    "sg-11134201-825ac-mgc1q6y8vcay57",
                    "sg-11134201-8259n-mgc1q7ere8zyc1",
                    "sg-11134201-82593-mgc1q7tg0lce6b",
                    "sg-11134201-8258l-mgc1q82eckcr6d",
                    "sg-11134201-8258i-mgc1q8gieozs7b",
                    "sg-11134201-8257u-mgc1q8rhe2a04b",
                    "sg-11134201-825b0-mgc1q8zqeeq09d",
                    "sg-11134201-825an-mgc1q9ffb37ua2",
                    "sg-11134201-8259i-mgc1q9v1kc9a09"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei GT 6 41mm",
                    "Huawei GT 6 46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.9423076923076925,
                "rating_count": [
                  104,
                  0,
                  0,
                  0,
                  6,
                  98
                ],
                "rcount_with_context": 10,
                "rcount_with_image": 9
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 392412463907329,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 784824206409728,
                "price": 3190000000,
                "strikethrough_price": 6380000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 435022092547,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6380000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 323,
                "rounded_local_monthly_sold_count": 149,
                "local_monthly_sold_count_text": "149",
                "rounded_display_sold_count": 323,
                "display_sold_count_text": "323"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KMAIXA Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53950241701,
            "shopid": 1224688845,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825b2-mgc1plxrwr2i09\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,298938357,298888358,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,700765096,1015914,700190087,1400285055,2213652,700810055,299103323,1718088045,2098629,2098628,298468389,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":661,\"model_id\":435022092547,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825b2-mgc1plxrwr2i09\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,298938357,298888358,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1119699,700765096,1015914,700190087,1400285055,2213652,700810055,299103323,1718088045,2098629,2098628,298468389,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":661,\"model_id\":435022092547,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53950241701",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44800261626,
              "shopid": 1336703448,
              "name": "iwatch Samsung Original S10/S11 Max Smartwatch Wanita Pria 2.3 inci Waterproof Bluetooth iphone Call Custom Wallpaper Jam Tangan Wanita Pria Jam Tangan Pasangan Sport Watch Heart Rate Monitor Blood Oxygen Monitoring",
              "label_ids": [
                2018619,
                1718087960,
                1428713,
                298463379,
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1400285055,
                1015914,
                700190087,
                298933384,
                2023641,
                700810080,
                299103323,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82250-mgc1d1vcmwwce2",
              "images": [
                "id-11134207-82250-mgc1d1vcmwwce2",
                "id-11134207-8224p-mgc1d1vck3rg97",
                "id-11134207-8224r-mgc1d1v9pkb2c1",
                "id-11134207-8224z-mgc1d1vclibwa9",
                "id-11134207-8224x-mgc1d1v9a420f4",
                "id-11134207-8224t-mgc1d1v8xgy5ce",
                "id-11134207-8224w-mgc1d1uzaioeec",
                "id-11134207-8224z-mgc1d1vbfdanb1",
                "id-11134207-8224o-mgc1d1vecpvuff"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761555355,
              "sold": 1000,
              "historical_sold": 1000,
              "liked": false,
              "liked_count": 1768,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 651,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 13000000000,
              "price_min": 13000000000,
              "price_max": 13000000000,
              "price_min_before_discount": 130000000000,
              "price_max_before_discount": 130000000000,
              "hidden_price_display": null,
              "price_before_discount": 130000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-90%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6venb-mgc1dlus3pjhf4.16000081761554879.mp4",
                  "thumb_url": "id-11110105-6venb-mgc1dlus3pjhf4_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6venb-mgc1dlus3pjhf4",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6venb-mgc1dlus3pjhf4.16000081761554879.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mgc1dlus3pjhf4.16000081761554879.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mgc1dlus3pjhf4.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "Series10 Black",
                    "Series10 White",
                    "Series10 Pink",
                    "Series9 Black",
                    "Series9 Silver",
                    "Series9 Pink",
                    "Series11 Black",
                    "Series11 White",
                    "Series11 Pink",
                    "Series11 Blue",
                    "Series11 Silver",
                    "Series10  Black",
                    "Series10  White",
                    "Series10  Pink"
                  ],
                  "images": [
                    "id-11134207-8224s-mgc1d1vcobgs6d",
                    "id-11134207-8224x-mgc1d1vcpq1870",
                    "id-11134207-8224r-mgc1d1vcr4lo48",
                    "id-11134207-8224q-mgc1d1vcwqvg6c",
                    "id-11134207-82251-mgc1d1vcy5fw23",
                    "id-11134207-8224y-mgc1d1vczk0c56",
                    "id-11134207-8224t-mgufai9ahb0u69",
                    "id-11134207-8224p-mgufai9kqqdq7a",
                    "id-11134207-8224y-mi1bht24phc803",
                    "id-11134207-82250-mgufai9ks4y6d8",
                    "id-11134207-8224t-mgufai9knx8u67",
                    "id-11134207-8224u-mgc1d1vcsj641f",
                    "id-11134207-82252-mgc1d1vctxqk96",
                    "id-11134207-8224v-mgc1d1vcvcb04c"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.6620583717357915,
                "rating_count": [
                  651,
                  15,
                  13,
                  29,
                  63,
                  531
                ],
                "rcount_with_context": 95,
                "rcount_with_image": 75
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 386924183564460,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227550525931520,
                "price": 12500000000,
                "strikethrough_price": 130000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1275878433374208,
                "discount_text": "-90%",
                "model_id": 89900049803,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1275878433374208,
                  "voucher_code": "TIME65465",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1761556320,
                    "end_time": 1769674320,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 130000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1000,
                "rounded_local_monthly_sold_count": 1000,
                "local_monthly_sold_count_text": "1RB+",
                "rounded_display_sold_count": 1000,
                "display_sold_count_text": "1RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Resmi OUTLETS Indonesia",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44800261626,
            "shopid": 1336703448,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mgc1d1vcmwwce2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,298463379,844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1400285055,1015914,700190087,298933384,2023641,700810080,299103323,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":662,\"model_id\":89900049803,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mgc1d1vcmwwce2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,298463379,844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1400285055,1015914,700190087,298933384,2023641,700810080,299103323,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":662,\"model_id\":89900049803,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44800261626",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 56750231525,
              "shopid": 1224688845,
              "name": "20mm Quick Release Strap Only for Garmin Watch Sport Soft Rubber Silicone Bracelet Band Accessories Tali Jam Tangan Smartwatch for Garmin Watch Garmin Forerunner 165 55 158 570 42MM /vivoactive 5/Active /D2 Air X10/Bounce/VivoMove/Venu/approach/vivoactive",
              "label_ids": [
                2018618,
                2153644,
                298888358,
                298938357,
                1428713,
                1718087960,
                298463379,
                844931064601283,
                844931086908638,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                1119699,
                700765096,
                1015914,
                700190087,
                2213652,
                1400285055,
                700810055,
                298468389,
                2098629,
                1718088045,
                2098628,
                298938368
              ],
              "image": "sg-11134201-8258y-mgc1at3lg8i067",
              "images": [
                "sg-11134201-8258y-mgc1at3lg8i067",
                "sg-11134201-8259p-mgc1atk74x6y76",
                "sg-11134201-8258c-mgc1atzhzyto3f",
                "sg-11134201-82585-mgc1auhzvx1r8d",
                "sg-11134201-825bb-mgc1av66s0ll56",
                "sg-11134201-82590-mgc1avmx80zt99",
                "sg-11134201-8257w-mgc1aw47ammhf9",
                "sg-11134201-82595-mgc1awkmw55a14",
                "sg-11134201-825az-mgc1ax1csg0ce4"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761554728,
              "sold": 209,
              "historical_sold": 325,
              "liked": false,
              "liked_count": 59,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 118,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3290000000,
              "price_min": 3290000000,
              "price_max": 3290000000,
              "price_min_before_discount": 6578000000,
              "price_max_before_discount": 6578000000,
              "hidden_price_display": null,
              "price_before_discount": 6578000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Wine Red(Strap)",
                    "Turquoise(Strap)",
                    "Deep Sea Blue(Strap)",
                    "red(Strap)",
                    "Roland Purple(Strap)",
                    "orange(Strap)",
                    "Midnight(Strap)",
                    "Grey(Strap)",
                    "White(Strap)",
                    "Light Pink(Strap)",
                    "Black(Strap)"
                  ],
                  "images": [
                    "sg-11134201-825a0-mgc1ba9347wpc5",
                    "sg-11134201-825aj-mgc1bb0ak1sfe5",
                    "sg-11134201-8258g-mgc1bbqtj76500",
                    "sg-11134201-8259e-mgc1bcg5saa5a0",
                    "sg-11134201-82589-mgc1bd4f4u1bfb",
                    "sg-11134201-825a9-mgc1bdu3iq6ldb",
                    "sg-11134201-825ak-mgc1bel35o231e",
                    "sg-11134201-8259r-mgc1bfcc5q8a05",
                    "sg-11134201-825aa-mgc1bfxcgdfu8a",
                    "sg-11134201-8258g-mgc1bgl812q2e9",
                    "sg-11134201-82585-mgc1bh67fdah09"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm for Garmin"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.991525423728813,
                "rating_count": [
                  118,
                  0,
                  0,
                  0,
                  1,
                  117
                ],
                "rcount_with_context": 9,
                "rcount_with_image": 10
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 392412463907329,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 784824206409728,
                "price": 3290000000,
                "strikethrough_price": 6578000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 375022025408,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6578000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 325,
                "rounded_local_monthly_sold_count": 209,
                "local_monthly_sold_count_text": "209",
                "rounded_display_sold_count": 325,
                "display_sold_count_text": "325"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KMAIXA Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 56750231525,
            "shopid": 1224688845,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8258y-mgc1at3lg8i067\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,298888358,298938357,1428713,1718087960,298463379,844931064601283,844931086908638,1059152,1059154,1718093079,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1119699,700765096,1015914,700190087,2213652,1400285055,700810055,298468389,2098629,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":663,\"model_id\":375022025408,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8258y-mgc1at3lg8i067\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,298888358,298938357,1428713,1718087960,298463379,844931064601283,844931086908638,1059152,1059154,1718093079,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,1119699,700765096,1015914,700190087,2213652,1400285055,700810055,298468389,2098629,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":663,\"model_id\":375022025408,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_56750231525",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26943437154,
              "shopid": 1224688845,
              "name": "20mm 22mm Quick Release Stainless Steel Metal Strap for Redmi Watch 5 Active/ 5 Lite /Samsung Galaxy Watch Fe 7 6 5 4 44mm 40mm Band Milanese Loop Tali Jam Tangan Smartwatch for Huawei GT 6 5/4/3/2 / Amazfit Bip 6 /Xiaomi Watch/Itel 011 12/Aolon/advan",
              "label_ids": [
                2153644,
                2018618,
                298888358,
                298938357,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                1119699,
                700765096,
                1400285055,
                2213652,
                1015914,
                700190087,
                2103651,
                2143613,
                700810055,
                2098628,
                298468389,
                298938368,
                2098629,
                1718088045
              ],
              "image": "sg-11134201-8257w-mgc126g3e2od59",
              "images": [
                "sg-11134201-8257w-mgc126g3e2od59",
                "sg-11134201-8258m-mgc1271azaxb35",
                "sg-11134201-8258p-mgc127i7h1cbb3",
                "sg-11134201-8259a-mgc1280p60b0d5",
                "sg-11134201-825bb-mgc128fhj8qw3d",
                "sg-11134201-825ba-mgc1292bkpai62",
                "sg-11134201-825ab-mgc129nxiw3t0c",
                "sg-11134201-8259l-mgc12a5m16a073",
                "sg-11134201-8258l-mgc12aprgqa6d9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761554325,
              "sold": 126,
              "historical_sold": 191,
              "liked": false,
              "liked_count": 62,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 66,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3960000000,
              "price_min": 3960000000,
              "price_max": 3960000000,
              "price_min_before_discount": 8800000000,
              "price_max_before_discount": 8800000000,
              "hidden_price_display": null,
              "price_before_discount": 8800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-55%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16000081721134627.mp4",
                  "thumb_url": "sg-11110106-7rdx7-lxsbd0y1c30vb5",
                  "duration": 36,
                  "version": 2,
                  "vid": "sg-11110106-6khwt-lxsbc5vksgau6e",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16003221721921509.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16003221721921509.mp4",
                      "width": 640,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004081745518721.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004081745518721.mp4",
                      "width": 640,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16006711722578947.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16006711722578947.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16006731726512023.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16006731726512023.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16006591721744141.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16006591721744141.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004091721744127.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004091721744127.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16000081721134627.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16000081721134627.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16003241721921509.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16003241721921509.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16003251721921509.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16003251721921509.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004101745518721.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004101745518721.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004111721744141.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004111721744141.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16005581721921509.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16005581721921509.mp4",
                      "width": 1920,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16005681721744142.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16005681721744142.mp4",
                      "width": 1920,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Silver",
                    "Black",
                    "Space Gray",
                    "Gunmetal",
                    "Gold",
                    "Old Gold",
                    "Rose gold",
                    "Pink Gold",
                    "multicolor",
                    "Coffee",
                    "Red",
                    "Blue",
                    "Sky blue",
                    "Baby Pink",
                    "Grass green",
                    "Lavender",
                    "Dark green",
                    "tortoise",
                    "Wine",
                    "Pine green",
                    "Porcelain Green",
                    "Light Pink",
                    "Antique white",
                    "dark purple",
                    "Orange"
                  ],
                  "images": [
                    "sg-11134201-82592-mgc12nhceyvj6f",
                    "sg-11134201-8257y-mgc12nvs6hvt82",
                    "sg-11134201-8258v-mgc12o4ktatm4c",
                    "sg-11134201-825az-mgc12od4e9l949",
                    "sg-11134201-8259p-mgc12oo7h62w2d",
                    "sg-11134201-8259i-mgc12p10eia4e7",
                    "sg-11134201-8258m-mgc12pai1p8o87",
                    "sg-11134201-8258p-mgc12pjhid58f1",
                    "sg-11134201-8257u-mgc12prb82z2d5",
                    "sg-11134201-825an-mgc12q0ix34f4d",
                    "sg-11134201-82587-mgc12q8y0ikqdd",
                    "sg-11134201-825aj-mgc12qgjas5ld2",
                    "sg-11134201-825aa-mgc12qq1ant414",
                    "sg-11134201-825a9-mgc12r0yahan49",
                    "sg-11134201-82583-mgc12rdqzci09c",
                    "sg-11134201-82598-mgc12rsm72tod9",
                    "sg-11134201-8259c-mgc12s3f7mdr64",
                    "sg-11134201-8257u-mgc12sdevrpkd3",
                    "sg-11134201-8259v-mgc12slg7cp75b",
                    "sg-11134201-82583-mgc12subewp69f",
                    "sg-11134201-825as-mgc12t5awmixe4",
                    "sg-11134201-825a8-mgc12uwf7zt6a4",
                    "sg-11134201-82594-mgc12v6abvv20b",
                    "sg-11134201-825af-mgc12velfzt540",
                    "sg-11134201-8258v-mgc12vok9bt82c"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm watch band",
                    "22mm watch band"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.833333333333333,
                "rating_count": [
                  66,
                  0,
                  0,
                  2,
                  7,
                  57
                ],
                "rcount_with_context": 9,
                "rcount_with_image": 10
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 392412463907329,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 784824206409728,
                "price": 3960000000,
                "strikethrough_price": 8800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-55%",
                "model_id": 238191157470,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 8800000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 191,
                "rounded_local_monthly_sold_count": 126,
                "local_monthly_sold_count_text": "126",
                "rounded_display_sold_count": 191,
                "display_sold_count_text": "191"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KMAIXA Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26943437154,
            "shopid": 1224688845,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8257w-mgc126g3e2od59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,298888358,298938357,1718087960,1428713,844931086908638,844931064601283,298463379,1059154,1059152,1718093079,822059908662278,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1119699,700765096,1400285055,2213652,1015914,700190087,2103651,2143613,700810055,2098628,298468389,298938368,2098629,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":664,\"model_id\":238191157470,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8257w-mgc126g3e2od59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,298888358,298938357,1718087960,1428713,844931086908638,844931064601283,298463379,1059154,1059152,1718093079,822059908662278,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1119699,700765096,1400285055,2213652,1015914,700190087,2103651,2143613,700810055,2098628,298468389,298938368,2098629,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":664,\"model_id\":238191157470,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26943437154",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41225856983,
              "shopid": 1224688845,
              "name": "Anti Gores Soft TPU Case for Redmi Watch 4 Screen Protector Bumper Cover Frame Accessories for Jam Tangan Smartwatch Xiaomi Redmi Watch 4",
              "label_ids": [
                2153644,
                2018618,
                298938357,
                298888358,
                1718087960,
                1428713,
                298463379,
                844931064601283,
                844931086908638,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                1119699,
                700765096,
                2213652,
                1015914,
                700190087,
                1400285055,
                2098629,
                2098628,
                298938368,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-825b7-mgbzkghsu8sp59",
              "images": [
                "sg-11134201-825b7-mgbzkghsu8sp59",
                "sg-11134201-8258l-mgbzkh78n2fhd1",
                "sg-11134201-8259m-mgbzkhtgmw3ub5",
                "sg-11134201-825aj-mgbzkidowzkc56",
                "sg-11134201-825a5-mgbzkisyhoga80",
                "sg-11134201-8257w-mgbzkjhh5xxq50",
                "sg-11134201-8259u-mgbzkkedx5os5c",
                "sg-11134201-82597-mgbzkl93fi1af7",
                "sg-11134201-825ba-mgbzklx4nx8oc2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761551818,
              "sold": 20,
              "historical_sold": 39,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 9,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1420000000,
              "price_min": 1420000000,
              "price_max": 1420000000,
              "price_min_before_discount": 3720000000,
              "price_max_before_discount": 3720000000,
              "hidden_price_display": null,
              "price_before_discount": 3720000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-62%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khxs-lynns70u57ag43.16000081723032089.mp4",
                  "thumb_url": "sg-11110106-7rdws-lynnscf29bre9c",
                  "duration": 47,
                  "version": 2,
                  "vid": "sg-11110106-6khxs-lynns70u57ag43",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxs-lynns70u57ag43.16000081723032089.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxs-lynns70u57ag43.16000081723032089.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxs-lynns70u57ag43.16003251752250316.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxs-lynns70u57ag43.16003251752250316.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxs-lynns70u57ag43.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "pink(Case)",
                    "navy(Case)",
                    "rose(Case)",
                    "silver(Case)",
                    "clear(Case)",
                    "black(Case)",
                    "gold(Case)",
                    "2* 3D Film"
                  ],
                  "images": [
                    "sg-11134201-8258h-mgbzkyv9hedr58",
                    "sg-11134201-8258w-mgbzkz9vg9oqcc",
                    "sg-11134201-82595-mgbzkzqebrwpca",
                    "sg-11134201-825b0-mgbzl04jpma200",
                    "sg-11134201-8259p-mgbzl0jzoob220",
                    "sg-11134201-825ai-mgbzl0t4kmq11f",
                    "sg-11134201-825az-mgbzl148o1zg9c",
                    "sg-11134201-82580-mgbzl1lh3klp02"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi watch 4"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  9,
                  0,
                  0,
                  0,
                  0,
                  9
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 392412463907329,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 784824206409728,
                "price": 1420000000,
                "strikethrough_price": 3720000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-62%",
                "model_id": 375021704573,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3720000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 39,
                "rounded_local_monthly_sold_count": 20,
                "local_monthly_sold_count_text": "20",
                "rounded_display_sold_count": 39,
                "display_sold_count_text": "39"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KMAIXA Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41225856983,
            "shopid": 1224688845,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825b7-mgbzkghsu8sp59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,298938357,298888358,1718087960,1428713,298463379,844931064601283,844931086908638,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1119699,700765096,2213652,1015914,700190087,1400285055,2098629,2098628,298938368,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":665,\"model_id\":375021704573,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825b7-mgbzkghsu8sp59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,298938357,298888358,1718087960,1428713,298463379,844931064601283,844931086908638,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,1119699,700765096,2213652,1015914,700190087,1400285055,2098629,2098628,298938368,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":665,\"model_id\":375021704573,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41225856983",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26993447223,
              "shopid": 1224688845,
              "name": "Anti Gores Case for Xiaomi Band 10 /Mi Band 9 8 NFC Full Coverage Tempered Glass PC Screen Protector Bumper with Film Shell Cover Accessories Jam Tangan Smartwatch for Miband 10 9 8",
              "label_ids": [
                2153644,
                2018618,
                298938357,
                298888358,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                700765096,
                1400285055,
                2213652,
                2098629,
                2098628,
                298468389,
                1718088045,
                298938368
              ],
              "image": "sg-11134201-82589-mgbyjix5jfuw46",
              "images": [
                "sg-11134201-82589-mgbyjix5jfuw46",
                "sg-11134201-825aw-mgbyjje34i6hd5",
                "sg-11134201-8259u-mgbyjjtngvt919",
                "sg-11134201-8259n-mgbyjkdt7ocqd5",
                "sg-11134201-8259b-mgbyjktehrm49e",
                "sg-11134201-825a3-mgbyjl938tu276",
                "sg-11134201-825am-mgbyjlqjy80dbd",
                "sg-11134201-825au-mgbyjm4v400e57",
                "sg-11134201-825a7-mgbyjmpczk0e91"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761550091,
              "sold": 18,
              "historical_sold": 32,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 14,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2080000000,
              "price_min": 2080000000,
              "price_max": 2080000000,
              "price_min_before_discount": 4158000000,
              "price_max_before_discount": 4158000000,
              "hidden_price_display": null,
              "price_before_discount": 4158000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "green(Case)",
                    "pink(Case)",
                    "blue(Case)",
                    "ivory(Case)",
                    "black(Case)",
                    "transparent(Case)",
                    "2*(Soft Film)"
                  ],
                  "images": [
                    "sg-11134201-8259b-mgbyjzx4spho55",
                    "sg-11134201-82593-mgbyk0j9jwg83a",
                    "sg-11134201-8258m-mgbyk14tzb4d90",
                    "sg-11134201-8258w-mgbyk1rf0ah77e",
                    "sg-11134201-82581-mgbyk2bxe70qf2",
                    "sg-11134201-82586-mgbyk2y7c7im84",
                    "sg-11134201-82584-mgbyk3b1wjkcdc"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Mi Band 10 9 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.857142857142857,
                "rating_count": [
                  14,
                  0,
                  0,
                  0,
                  2,
                  12
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 392412463907329,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 784824206409728,
                "price": 2080000000,
                "strikethrough_price": 4158000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 425021518058,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4158000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 32,
                "rounded_local_monthly_sold_count": 18,
                "local_monthly_sold_count_text": "18",
                "rounded_display_sold_count": 32,
                "display_sold_count_text": "32"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KMAIXA Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26993447223,
            "shopid": 1224688845,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82589-mgbyjix5jfuw46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,298938357,298888358,1718087960,1428713,844931086908638,844931064601283,298463379,1059154,1059152,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,1400285055,2213652,2098629,2098628,298468389,1718088045,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":666,\"model_id\":425021518058,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82589-mgbyjix5jfuw46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,298938357,298888358,1718087960,1428713,844931086908638,844931064601283,298463379,1059154,1059152,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,1400285055,2213652,2098629,2098628,298468389,1718088045,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":666,\"model_id\":425021518058,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26993447223",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42725806072,
              "shopid": 1638623857,
              "name": "WEKOI Hydrogel Huawei Watch Fit 3/4 Pro Pelindung Layar Lentur, HD & Touch Sensitif",
              "label_ids": [
                844931064601283,
                844931086908638,
                700005490,
                700005495,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                825465608493600,
                1718093079,
                2048660,
                2048661,
                298463379,
                298933384,
                2023641,
                2018619,
                1015914,
                700190087,
                700765096,
                298468389,
                1718088045
              ],
              "image": "id-11134207-82252-mglzarbyoglpdc",
              "images": [
                "id-11134207-82252-mglzarbyoglpdc",
                "id-11134207-81ztg-mfl0iu21105kd3",
                "id-11134207-81zto-mfkp4rupk8b0ee",
                "id-11134207-81ztd-mfl0iu212eq01b",
                "id-11134207-81ztc-mfl0iu213tag0a",
                "id-11134207-81zte-mf7t0l7bpq8fbe"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761365194,
              "sold": 16,
              "historical_sold": 61,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "WEKOI",
              "cmt_count": 5,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 850000000,
              "price_min": 850000000,
              "price_max": 850000000,
              "price_min_before_discount": 3500000000,
              "price_max_before_discount": 3500000000,
              "hidden_price_display": null,
              "price_before_discount": 3500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-76%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven8-mg8wbzgi6cqw2e.16000031761364780.mp4",
                  "thumb_url": "id-11110105-6ven8-mg8wbzgi6cqw2e_cover",
                  "duration": 59,
                  "version": 2,
                  "vid": "id-11110105-6ven8-mg8wbzgi6cqw2e",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven8-mg8wbzgi6cqw2e.16000031761364780.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven8-mg8wbzgi6cqw2e.16000031761364780.mp4",
                      "width": 480,
                      "height": 856
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven8-mg8wbzgi6cqw2e.default.mp4",
                    "width": 480,
                    "height": 856
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "MODEL",
                  "options": [
                    "Fit 3",
                    "Fit 4",
                    "Fit 4 Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.6,
                "rating_count": [
                  5,
                  0,
                  0,
                  1,
                  0,
                  4
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 397106603110854,
                "add_on_deal_label": "Kombo Hemat",
                "sub_type": 0,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 795625059303424,
                "price": 850000000,
                "strikethrough_price": 3500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-76%",
                "model_id": 435012976419,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 61,
                "rounded_local_monthly_sold_count": 16,
                "local_monthly_sold_count_text": "16",
                "rounded_display_sold_count": 61,
                "display_sold_count_text": "61"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "WEKOI Guard Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42725806072,
            "shopid": 1638623857,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mglzarbyoglpdc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,700005490,700005495,822059908662278,825465608494624,825465608499232,825465608497696,825465608493600,1718093079,2048660,2048661,298463379,298933384,2023641,2018619,1015914,700190087,700765096,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":17,\"model_id\":435012976419,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mglzarbyoglpdc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,700005490,700005495,822059908662278,825465608494624,825465608499232,825465608497696,825465608493600,1718093079,2048660,2048661,298463379,298933384,2023641,2018619,1015914,700190087,700765096,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":17,\"model_id\":435012976419,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42725806072",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 58100137688,
              "shopid": 385104110,
              "name": "LIGE Smartwatch  Pria  Tahan air  Panggilan Bluetooth  1,38 inci Pelacakan Olahraga Kebugaran Jam Tangan Pintar Oksigen Darah",
              "label_ids": [
                2018619,
                2023641,
                298938357,
                298888358,
                1718087960,
                1428713,
                844931064601283,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                1015914,
                700190087
              ],
              "image": "id-11134207-8224v-mg8v9e47mcjv0c",
              "images": [
                "id-11134207-8224v-mg8v9e47mcjv0c",
                "id-11134207-82251-mg8v9e42gxl441",
                "id-11134207-8224w-mg8v9e42cpvsa0",
                "id-11134207-82252-mg8v9e42bbbcfd",
                "id-11134207-82251-mg8v9e42fj0odb",
                "id-11134207-82251-mg8v9e42e4g8ca",
                "id-11134207-8224r-mg8v9e42ic5k55"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761364123,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "Lige",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 27900000000,
              "price_min": 27900000000,
              "price_max": 27900000000,
              "price_min_before_discount": 74700000000,
              "price_max_before_discount": 74700000000,
              "hidden_price_display": null,
              "price_before_discount": 74700000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-63%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemy-mg8vbukzg83u80.16000081761363108.mp4",
                  "thumb_url": "id-11110105-6vemy-mg8vbukzg83u80_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6vemy-mg8vbukzg83u80",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemy-mg8vbukzg83u80.16000081761363108.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemy-mg8vbukzg83u80.16000081761363108.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemy-mg8vbukzg83u80.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "BW0910",
                  "options": [
                    "Silikon Hitam",
                    "Perak Silikon",
                    "Silikon Biru",
                    "Baja Hitam + Tali",
                    "Baja Perak + Tali"
                  ],
                  "images": [
                    "id-11134207-8224z-mg8v9e42jqq007",
                    "id-11134207-8224r-mil1i137flzb36",
                    "id-11134207-8224o-mg8v9e42l5ag95",
                    "id-11134207-8224y-mg8v9e42mjuwe1",
                    "id-11134207-8224p-mg8v9e42nyfcdf"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 388339933135145,
                "bundle_deal_label": "Pilih 2, diskon Rp5.000"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp46RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 752635364311040,
                "price": 27900000000,
                "strikethrough_price": 74700000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-63%",
                "model_id": 282089933653,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 74700000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp46RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "LIGE_Watch",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 58100137688,
            "shopid": 385104110,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mg8v9e47mcjv0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298938357,298888358,1718087960,1428713,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,298933384,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":173,\"model_id\":282089933653,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mg8v9e47mcjv0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298938357,298888358,1718087960,1428713,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,298933384,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":173,\"model_id\":282089933653,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_58100137688",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28743408132,
              "shopid": 663763564,
              "name": "Wireless Smartwatch Bluetooth T900 Ultra Waterproof Full Touch Hd Screen Series Jam Tangan 8 Charging Smartwatch Full Touch",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                1049120,
                700005490,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384,
                1015914,
                700190087
              ],
              "image": "id-11134207-7r98q-lq8yfwmbpmlu1c",
              "images": [
                "id-11134207-7r98q-lq8yfwmbpmlu1c",
                "id-11134207-7r98r-lloe6t74gf7g0f",
                "id-11134207-7r990-lloe6t74f0n0ea",
                "id-11134207-7r98x-lloe6t74kmpz6d",
                "id-11134207-7r98w-lloe6t74m1af6f",
                "id-11134207-7r98q-lloe6t74nfuv2c",
                "id-11134207-7r98u-lloe6t74asxob6",
                "id-11134207-7r98y-lloe6t74htrw93",
                "id-11134207-7r98x-lloe6t74dm2k4e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761302915,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 12760000000,
              "price_min": 12760000000,
              "price_max": 12760000000,
              "price_min_before_discount": 36816800000,
              "price_max_before_discount": 36816800000,
              "hidden_price_display": null,
              "price_before_discount": 36816800000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-65%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "colour",
                  "options": [
                    "orange",
                    "black"
                  ],
                  "images": [
                    "id-11134207-7r98z-lloe6t74j8cce6",
                    "id-11134207-7r98u-lloe6t74kmwsb3"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 403116755529769,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 817141788508160,
                "price": 12380000000,
                "strikethrough_price": 36816800000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1283079651082240,
                "discount_text": "-65%",
                "model_id": 335009688162,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1283079651082240,
                  "voucher_code": "WZL011613",
                  "voucher_discount": 380000000,
                  "time_info": {
                    "start_time": 1762414320,
                    "end_time": 1770194340,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 12000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 36816800000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "IKOOL Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 28743408132,
            "shopid": 663763564,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-lq8yfwmbpmlu1c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,1049120,700005490,822059908662278,825465608499232,825465608497696,1718093079,1119699,298933384,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":671,\"model_id\":335009688162,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-lq8yfwmbpmlu1c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,1049120,700005490,822059908662278,825465608499232,825465608497696,1718093079,1119699,298933384,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":671,\"model_id\":335009688162,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28743408132",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27743407961,
              "shopid": 1496409734,
              "name": "18mm Nylon Elastic Strap for Huawei Watch GT 6 5 4 41mm 5 Pro 42mm Quick Release Nilon WristBand band Tali Jam Tangan Smartwatch for Garmin Venu 3/ 2S /Garmin Forerunner 265S/Fossil GEN6 42mm /Fossil Women's Sport/Gen 4 Q Venture HR",
              "label_ids": [
                2023641,
                2018619,
                298513322,
                700025282,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                2048660,
                2048661,
                840955085144628,
                840990690654214,
                700765096,
                1400285055,
                1015914,
                700190087,
                2103651,
                2143613,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8257t-mg7teqz9rswe43",
              "images": [
                "sg-11134201-8257t-mg7teqz9rswe43",
                "sg-11134201-8258p-mg7tesv3s3kc43",
                "sg-11134201-825ab-mg7teu8ixyq011",
                "sg-11134201-82586-mg7teuik4zd615",
                "sg-11134201-825ba-mg7teuoxokr0fa",
                "sg-11134201-825b1-mg7tew3xt91q13",
                "sg-11134201-8258n-mg7tex0v2q6ha8",
                "sg-11134201-8258l-mg7texh65cele9",
                "sg-11134201-825b4-mg7texp6c6x886"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761299326,
              "sold": 34,
              "historical_sold": 82,
              "liked": false,
              "liked_count": 28,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 26,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3496000000,
              "price_min": 3496000000,
              "price_max": 3496000000,
              "price_min_before_discount": 7600000000,
              "price_max_before_discount": 7600000000,
              "hidden_price_display": null,
              "price_before_discount": 7600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Light blue(Strap)",
                    "Beige(Strap)",
                    "Lavender(Strap)",
                    "Red(Strap)",
                    "Smoke Purple(Strap)",
                    "Orange(Strap)",
                    "Pink(Strap)",
                    "Multicolor(Strap)",
                    "Green(Strap)",
                    "Navy Blue(Strap)",
                    "Star(Strap)",
                    "Black(Strap)"
                  ],
                  "images": [
                    "sg-11134201-8258d-mg7tfame6olpff",
                    "sg-11134201-8258l-mg7tfayiq0p879",
                    "sg-11134201-82593-mg7tfbm4z1u399",
                    "sg-11134201-825an-mg7tfc59ue4v22",
                    "sg-11134201-8259v-mg7tfcinzv9q24",
                    "sg-11134201-8258x-mg7tfcydlvka83",
                    "sg-11134201-8258g-mg7tfdbye3ny71",
                    "sg-11134201-8259i-mg7tfduyjh8p5c",
                    "sg-11134201-8259e-mg7tfe7qooi628",
                    "sg-11134201-825ag-mg7tfeftonwta4",
                    "sg-11134201-82585-mg7tfewtm0b130",
                    "sg-11134201-825ao-mg7tff7jqioec4"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "18mm watch band"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.846153846153846,
                "rating_count": [
                  26,
                  0,
                  1,
                  0,
                  1,
                  24
                ],
                "rcount_with_context": 7,
                "rcount_with_image": 8
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372028133880509,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 3496000000,
                "strikethrough_price": 7600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 302087829051,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7600000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 34.960",
                      "hidden_promotion_price": "Rp ?4.960",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 82,
                "rounded_local_monthly_sold_count": 34,
                "local_monthly_sold_count_text": "34",
                "rounded_display_sold_count": 82,
                "display_sold_count_text": "82"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BXUXOHS",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1ODExOWNmNzJlZmFlZjc2MDQyMDA6MDIwMDAwNTFhOGEzZjYzNzowMTAwMDE2NmI3MmFmZTNifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 27743407961,
            "shopid": 1496409734,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8257t-mg7teqz9rswe43\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,298513322,700025282,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,2048660,2048661,840955085144628,840990690654214,700765096,1400285055,1015914,700190087,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":673,\"model_id\":302087829051,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8257t-mg7teqz9rswe43\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,298513322,700025282,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,2048660,2048661,840955085144628,840990690654214,700765096,1400285055,1015914,700190087,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":673,\"model_id\":302087829051,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27743407961",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51000107897,
              "shopid": 1535897020,
              "name": "SNAPFIT Case Airpods Pro 3 SNAPFIT Carbon Lock Carabiner Full Cover Rugged Protective Cover Casing",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1718093079,
                1119699,
                700765096,
                298933384,
                1400285055,
                1015914,
                700190087,
                1400066568,
                1059154,
                1059152,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224x-mg8vd2aii498ac",
              "images": [
                "id-11134207-8224x-mg8vd2aii498ac",
                "sg-11134201-825au-mg7sjxozxh5ac7",
                "sg-11134201-825b7-mg7sjxye28zx4d",
                "sg-11134201-825am-mg7sjy6k6nf221",
                "sg-11134201-8259i-mg7sjyhjwpho15",
                "sg-11134201-8258o-mg7sjysq88p9b5",
                "sg-11134201-825b8-mg7sjz2luayyd9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761297881,
              "sold": 9,
              "historical_sold": 29,
              "liked": false,
              "liked_count": 8,
              "view_count": null,
              "catid": 100013,
              "brand": "SNAPFIT",
              "cmt_count": 10,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5499000000,
              "price_min": 5499000000,
              "price_max": 5499000000,
              "price_min_before_discount": 8000000000,
              "price_max_before_discount": 8000000000,
              "hidden_price_display": null,
              "price_before_discount": 8000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-31%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven6-mj2j0iq2xnnp43.16000081767516891.mp4",
                  "thumb_url": "id-11110105-6ven6-mj2j0iq2xnnp43_cover",
                  "duration": 58,
                  "version": 2,
                  "vid": "id-11110105-6ven6-mj2j0iq2xnnp43",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven6-mj2j0iq2xnnp43.16000081767516891.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven6-mj2j0iq2xnnp43.16000081767516891.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven6-mj2j0iq2xnnp43.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Yellow",
                    "Red",
                    "Grey",
                    "Blue",
                    "Camo Grey",
                    "Camo Green",
                    "Camo Blue",
                    "Carabiner Only"
                  ],
                  "images": [
                    "sg-11134201-8258o-mg7sjza0f0gd36",
                    "sg-11134201-82587-mg7sjzimoutrd7",
                    "sg-11134201-82596-mg7sjzqvi4um72",
                    "sg-11134201-825a0-mg7sjzzxi3nz93",
                    "sg-11134201-825b8-mg7sk07b2adlab",
                    "id-11134207-82252-miqspytz4b2b3a",
                    "id-11134207-82250-miqspytz2whv91",
                    "id-11134207-8224r-miqspytz1hxf82",
                    "id-11134207-82250-miwjg66ornk2d2"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.1,
                "rating_count": [
                  10,
                  2,
                  0,
                  0,
                  1,
                  7
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 829458915835904,
                "price": 4999000000,
                "strikethrough_price": 8000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1320680034287632,
                "discount_text": "-31%",
                "model_id": 430009144882,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1320680034287632,
                  "voucher_code": "SNAPNEWFL",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1766897040,
                    "end_time": 1774935840,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 8000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 29,
                "rounded_local_monthly_sold_count": 9,
                "local_monthly_sold_count_text": "9",
                "rounded_display_sold_count": 29,
                "display_sold_count_text": "29"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Snapfit Indonesia",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51000107897,
            "shopid": 1535897020,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mg8vd2aii498ac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,298463379,1718093079,1119699,700765096,298933384,1400285055,1015914,700190087,1400066568,1059154,1059152,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,2048660,2048661,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":674,\"model_id\":430009144882,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mg8vd2aii498ac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,298463379,1718093079,1119699,700765096,298933384,1400285055,1015914,700190087,1400066568,1059154,1059152,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,2048660,2048661,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":674,\"model_id\":430009144882,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51000107897",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 50950092399,
              "shopid": 1118224551,
              "name": "20mm 22mm Quick Release Milanese Loop Strap for Redmi Watch 5 Active/ 5 Lite /Samsung Galaxy Watch Fe 7 6 5 4 44mm 40mm Stainless Steel Metal Band Tali Jam Tangan Smartwatch for Huawei Watch GT 6 5/4/3/2 for Amazfit Bip 6 for Xiaomi Watch",
              "label_ids": [
                2018619,
                2023641,
                298888358,
                298938357,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                2048660,
                2048661,
                700765096,
                1400285055,
                1015914,
                700190087,
                298933384,
                2103651,
                2143613,
                298938368,
                1718088045,
                2098629,
                2098628,
                298468389
              ],
              "image": "sg-11134201-82590-mg7r4zeyu6tq41",
              "images": [
                "sg-11134201-82590-mg7r4zeyu6tq41",
                "sg-11134201-8258k-mg7r4zzvte6h41",
                "sg-11134201-825aj-mg7r50jlsm4p1f",
                "sg-11134201-825a5-mg7r513so55af3",
                "sg-11134201-8258m-mg7r51latf64e8",
                "sg-11134201-82583-mg7r51xntnnu33",
                "sg-11134201-8259g-mg7r52g6udxpd2",
                "sg-11134201-8258g-mg7r52xvjoy01a",
                "sg-11134201-8258w-mg7r53aoz8y489"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761295503,
              "sold": 41,
              "historical_sold": 72,
              "liked": false,
              "liked_count": 9,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 26,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3036000000,
              "price_min": 3036000000,
              "price_max": 3036000000,
              "price_min_before_discount": 7600000000,
              "price_max_before_discount": 7600000000,
              "hidden_price_display": null,
              "price_before_discount": 7600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-60%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16000081721134627.mp4",
                  "thumb_url": "sg-11110106-7rdx7-lxsbd0y1c30vb5",
                  "duration": 36,
                  "version": 2,
                  "vid": "sg-11110106-6khwt-lxsbc5vksgau6e",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16003221721921509.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16003221721921509.mp4",
                      "width": 640,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004081745518721.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004081745518721.mp4",
                      "width": 640,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16006711722578947.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16006711722578947.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16006731726512023.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16006731726512023.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16006591721744141.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16006591721744141.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004091721744127.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004091721744127.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16000081721134627.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16000081721134627.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16003251721921509.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16003251721921509.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16003241721921509.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16003241721921509.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004101745518721.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004101745518721.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004111721744141.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16004111721744141.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16005581721921509.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16005581721921509.mp4",
                      "width": 1920,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16005681721744142.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.16005681721744142.mp4",
                      "width": 1920,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwt-lxsbc5vksgau6e.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Silver",
                    "Black",
                    "Space Gray",
                    "Gunmetal",
                    "Gold",
                    "Old Gold",
                    "Rose gold",
                    "Pink Gold",
                    "multicolor",
                    "Coffee",
                    "Red",
                    "Blue",
                    "Sky blue",
                    "Baby Pink",
                    "Grass green",
                    "Lavender",
                    "Dark green",
                    "tortoise",
                    "Wine",
                    "Pine green",
                    "Porcelain Green",
                    "Light Pink",
                    "Antique white",
                    "dark purple",
                    "Orange"
                  ],
                  "images": [
                    "sg-11134201-825ah-mg7r5gdbrea582",
                    "sg-11134201-8259o-mg7r5gp5yjgv3d",
                    "sg-11134201-825av-mg7r5h18737wca",
                    "sg-11134201-8257v-mg7r5hk7epl60b",
                    "sg-11134201-82581-mg7r5hyqzw9973",
                    "sg-11134201-8259j-mg7r5ib87si69c",
                    "sg-11134201-8259e-mg7r5iont72lc0",
                    "sg-11134201-8258g-mg7r5j1cfz7z6a",
                    "sg-11134201-825ad-mg7r5jfnbx8s5c",
                    "sg-11134201-8259e-mg7r5jxbg7be04",
                    "sg-11134201-82581-mg7r5kgnxgcpcb",
                    "sg-11134201-82582-mg7r5kucqbd4e3",
                    "sg-11134201-825aa-mg7r5l7e1m2xa0",
                    "sg-11134201-825a4-mg7r5ltagaoa09",
                    "sg-11134201-825an-mg7r5mb5lbt915",
                    "sg-11134201-825a0-mg7r5mpa8kjy04",
                    "sg-11134201-82590-mg7r5n2p8v0q59",
                    "sg-11134201-825a3-mg7r5nim44y624",
                    "sg-11134201-8258v-mg7r5nwcef4d79",
                    "sg-11134201-825as-mg7r5oag85xk26",
                    "sg-11134201-82595-mg7r5p0b8t1l50",
                    "sg-11134201-825b1-mg7r5psnkt8rd5",
                    "sg-11134201-8259m-mg7r5q8wf9xlcb",
                    "sg-11134201-825bb-mg7r5qjyaoen3a",
                    "sg-11134201-8258k-mg7r5qxo1aml63"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm watch band",
                    "22mm watch band"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.961538461538462,
                "rating_count": [
                  26,
                  0,
                  0,
                  0,
                  1,
                  25
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 3036000000,
                "strikethrough_price": 7600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-60%",
                "model_id": 297087607405,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7600000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 30.360",
                      "hidden_promotion_price": "Rp ?0.360",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 72,
                "rounded_local_monthly_sold_count": 41,
                "local_monthly_sold_count_text": "41",
                "rounded_display_sold_count": 72,
                "display_sold_count_text": "72"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "APBAND",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 50950092399,
            "shopid": 1118224551,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82590-mg7r4zeyu6tq41\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298888358,298938357,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,2048660,2048661,700765096,1400285055,1015914,700190087,298933384,2103651,2143613,298938368,1718088045,2098629,2098628,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":675,\"model_id\":297087607405,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82590-mg7r4zeyu6tq41\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298888358,298938357,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,2048660,2048661,700765096,1400285055,1015914,700190087,298933384,2103651,2143613,298938368,1718088045,2098629,2098628,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":675,\"model_id\":297087607405,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_50950092399",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 55350107043,
              "shopid": 1118224551,
              "name": "Anti Gores TPU Case for Huawei Watch GT 6 41mm / Huawei Watch GT 6 46mm Soft Screen Protector Cover Bumper Frame Accessories Jam Tangan Smartwatch for Huawei Watch GT 6 41mm/46mm",
              "label_ids": [
                2023641,
                2018619,
                298938357,
                298888358,
                1718087960,
                1428713,
                298463379,
                844931086908638,
                844931064601283,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                840990690654214,
                840955085144628,
                825465608494624,
                825465608499232,
                1119699,
                298933384,
                1400285055,
                2048660,
                2048661,
                700765096,
                1015914,
                700190087,
                298938368,
                298468389,
                1718088045,
                2098628,
                2098629
              ],
              "image": "sg-11134201-825a7-mg7qybc5e2a6d5",
              "images": [
                "sg-11134201-825a7-mg7qybc5e2a6d5",
                "sg-11134201-82583-mg7qyc0ogdft29",
                "sg-11134201-825b2-mg7qyctknb4bd6",
                "sg-11134201-825a2-mg7qydtab11p77",
                "sg-11134201-825ar-mg7qyexx12j302",
                "sg-11134201-82582-mg7qyg0pjea7cd",
                "sg-11134201-8259q-mg7qygxi8iz128",
                "sg-11134201-8259u-mg7qyhobqw3x4c",
                "sg-11134201-825b5-mg7qyiiavq4vf2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761295196,
              "sold": 72,
              "historical_sold": 171,
              "liked": false,
              "liked_count": 20,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 45,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2668000000,
              "price_min": 2668000000,
              "price_max": 2668000000,
              "price_min_before_discount": 5800000000,
              "price_max_before_discount": 5800000000,
              "hidden_price_display": null,
              "price_before_discount": 5800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Transparent(Case)",
                    "Silver(Case)",
                    "Black(Case)",
                    "Rose Gold(Case)",
                    "Gold(Case)",
                    "Light Gold(Case)",
                    "Pink(Case)",
                    "Midnight Blue(Case)",
                    "Gray(Case)",
                    "Red(Case)",
                    "2*Glass Film"
                  ],
                  "images": [
                    "sg-11134201-8258q-mg7qyvfze0aw0a",
                    "sg-11134201-8258v-mg7qyvr7qjgp3d",
                    "sg-11134201-8259e-mg7qyw11imml2c",
                    "sg-11134201-8258a-mg7qywapitqk43",
                    "sg-11134201-8259x-mg7qywnig4cu3a",
                    "sg-11134201-8259o-mg7qywxnte6id7",
                    "sg-11134201-825at-mg7qyx6r2b6335",
                    "sg-11134201-8259s-mg7qyxew0iz21a",
                    "sg-11134201-8258w-mg7qyxqt3klr9f",
                    "sg-11134201-825a1-mg7qyxyy61orcf",
                    "sg-11134201-8258k-mg7qyydguxak7b"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei GT 6 41mm",
                    "Huawei GT 6 46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.822222222222222,
                "rating_count": [
                  45,
                  1,
                  0,
                  0,
                  4,
                  40
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 6
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 390465501544583,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2668000000,
                "strikethrough_price": 5800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 440008857885,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5800000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 26.680",
                      "hidden_promotion_price": "Rp ?6.680",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 171,
                "rounded_local_monthly_sold_count": 72,
                "local_monthly_sold_count_text": "72",
                "rounded_display_sold_count": 171,
                "display_sold_count_text": "171"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "APBAND",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 55350107043,
            "shopid": 1118224551,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825a7-mg7qybc5e2a6d5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,298938357,298888358,1718087960,1428713,298463379,844931086908638,844931064601283,1718093079,1059152,1059154,822059908662278,825465608497696,840990690654214,840955085144628,825465608494624,825465608499232,1119699,298933384,1400285055,2048660,2048661,700765096,1015914,700190087,298938368,298468389,1718088045,2098628,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":676,\"model_id\":440008857885,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825a7-mg7qybc5e2a6d5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,298938357,298888358,1718087960,1428713,298463379,844931086908638,844931064601283,1718093079,1059152,1059154,822059908662278,825465608497696,840990690654214,840955085144628,825465608494624,825465608499232,1119699,298933384,1400285055,2048660,2048661,700765096,1015914,700190087,298938368,298468389,1718088045,2098628,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":676,\"model_id\":440008857885,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_55350107043",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 51750097141,
              "shopid": 1484087853,
              "name": "Transparent Soft TPU Case Strap for Huawei Band 10 9 8 Strap Anti Gores Screen Protector Bumper Cover Band Belt Accessories Tali Jam Tangan Smartwatch for Huawei Band 9 8 7 NFC",
              "label_ids": [
                2153644,
                2018618,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                1119699,
                298888358,
                298938357,
                298933384,
                1015914,
                700190087,
                2213652,
                1400285055,
                2048660,
                2048661,
                700765096,
                700810055,
                298938368,
                2098628,
                1718088045,
                2098629,
                298468389
              ],
              "image": "sg-11134201-825aq-mg7qtu614tn1ac",
              "images": [
                "sg-11134201-825aq-mg7qtu614tn1ac",
                "sg-11134201-8258c-mg7qtufftb0sb8",
                "sg-11134201-825as-mg7qtuojho9bf8",
                "sg-11134201-8259p-mg7qtv5v8mq0b4",
                "sg-11134201-825b9-mg7qtvpy91xqcf",
                "sg-11134201-8259f-mg7qtw72e22x0e",
                "sg-11134201-82583-mg7qtwpxe0p7a0",
                "sg-11134201-825an-mg7qtx0c77yl6d",
                "sg-11134201-825aj-mg7qtx8h19mxe3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761294981,
              "sold": 21,
              "historical_sold": 45,
              "liked": false,
              "liked_count": 18,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 17,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2926000000,
              "price_min": 2926000000,
              "price_max": 2926000000,
              "price_min_before_discount": 6360000000,
              "price_max_before_discount": 6360000000,
              "hidden_price_display": null,
              "price_before_discount": 6360000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khyg-lyoyff0o0bef47.16000081723110524.mp4",
                  "thumb_url": "sg-11110106-7rdwp-lyoyfl4f1oc016",
                  "duration": 49,
                  "version": 2,
                  "vid": "sg-11110106-6khyg-lyoyff0o0bef47",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khyg-lyoyff0o0bef47.16003251728602956.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyg-lyoyff0o0bef47.16003251728602956.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khyg-lyoyff0o0bef47.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "transparent",
                    "black",
                    "pink",
                    "yellow",
                    "green",
                    "orange"
                  ],
                  "images": [
                    "sg-11134201-8258m-mg7qua3u1ki0b6",
                    "sg-11134201-8259x-mg7quajkxvyg46",
                    "sg-11134201-8259z-mg7quau2vgnh45",
                    "sg-11134201-82587-mg7qub4jha1605",
                    "sg-11134201-8257x-mg7qubh4vimh1c",
                    "sg-11134201-8258t-mg7qubyk21hlf1"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.823529411764706,
                "rating_count": [
                  17,
                  0,
                  0,
                  0,
                  3,
                  14
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372024811991523,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2926000000,
                "strikethrough_price": 6360000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 415008837046,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6360000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 29.260",
                      "hidden_promotion_price": "Rp ?9.260",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 45,
                "rounded_local_monthly_sold_count": 21,
                "local_monthly_sold_count_text": "21",
                "rounded_display_sold_count": 45,
                "display_sold_count_text": "45"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EIHAIHIS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 51750097141,
            "shopid": 1484087853,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825aq-mg7qtu614tn1ac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1119699,298888358,298938357,298933384,1015914,700190087,2213652,1400285055,2048660,2048661,700765096,700810055,298938368,2098628,1718088045,2098629,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":677,\"model_id\":415008837046,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825aq-mg7qtu614tn1ac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1119699,298888358,298938357,298933384,1015914,700190087,2213652,1400285055,2048660,2048661,700765096,700810055,298938368,2098628,1718088045,2098629,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":677,\"model_id\":415008837046,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_51750097141",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 48900117065,
              "shopid": 1484087853,
              "name": "20mm 22mm Trail Loop Nylon Strap for Samsung Galaxy Watch FE 7 6 5 4 40mm 44mm 4 Classic 42 46mm 6 Classic 43 47mm 5 LTE 5 Pro Active 2 Quick Release Band Tali Jam Tangan Smartwatch for Huawei GT 6 5 4/Redmi 5 Active/Itel 011/Amazfit Bip 6/Garmin/Xiaomi",
              "label_ids": [
                2153644,
                2018618,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059154,
                1059152,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                1718093079,
                1119699,
                298888358,
                298938357,
                1400285055,
                2213652,
                2048660,
                2048661,
                700765096,
                298933384,
                2103651,
                2143613,
                700810055,
                1718088045,
                298468389,
                298938368,
                2098629,
                2098628
              ],
              "image": "sg-11134201-82593-mg7qmlap73t4fd",
              "images": [
                "sg-11134201-82593-mg7qmlap73t4fd",
                "sg-11134201-8257t-mg7qmlrjnsp825",
                "sg-11134201-825a4-mg7qmm3xagp682",
                "sg-11134201-8258o-mg7qmmdsv5zifa",
                "sg-11134201-825ad-mg7qmmovk2dr03",
                "sg-11134201-825b8-mg7qmn32nrbe49",
                "sg-11134201-8258v-mg7qmneouwi1b3",
                "sg-11134201-8258o-mg7qmnt5iqks8b",
                "sg-11134201-825bd-mg7qmo5au7m5d9"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761294642,
              "sold": 174,
              "historical_sold": 324,
              "liked": false,
              "liked_count": 130,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 143,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2567000000,
              "price_min": 2567000000,
              "price_max": 2567000000,
              "price_min_before_discount": 5580000000,
              "price_max_before_discount": 5580000000,
              "hidden_price_display": null,
              "price_before_discount": 5580000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "dark gray",
                    "white red",
                    "white blue",
                    "Blue",
                    "light Gray",
                    "Blue green",
                    "Midnight blue",
                    "Army Green",
                    "Star",
                    "Wine",
                    "Orange",
                    "Orange light",
                    "Black",
                    "Black Gray",
                    "Blue Gray",
                    "Beige"
                  ],
                  "images": [
                    "sg-11134201-8259y-mg7qn0voeia11f",
                    "sg-11134201-825aj-mg7qn15aauq220",
                    "sg-11134201-825ai-mg7qn1fvcsui3e",
                    "sg-11134201-825bc-mg7qn1r8xk3sde",
                    "sg-11134201-8258q-mg7qn1zml0juab",
                    "sg-11134201-8259r-mg7qn28nal1mb5",
                    "sg-11134201-82598-mg7qn2g3e13c07",
                    "sg-11134201-825b6-mg7qn2o3tclk7f",
                    "sg-11134201-8258e-mg7qn2vtmiha82",
                    "sg-11134201-8257z-mg7qn34stdzca1",
                    "sg-11134201-8259l-mg7qn3cz1yizbb",
                    "sg-11134201-8259o-mg7qn3mv6brhab",
                    "sg-11134201-8258v-mg7qn3yl05c835",
                    "sg-11134201-8259u-mg7qn47ehurx62",
                    "sg-11134201-8259i-mg7qn4i0kbns73",
                    "sg-11134201-8259b-mg7qn59ztrm4c4"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm watch band",
                    "22mm watch band"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.839160839160839,
                "rating_count": [
                  143,
                  1,
                  1,
                  3,
                  10,
                  128
                ],
                "rcount_with_context": 23,
                "rcount_with_image": 21
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372024811991523,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2567000000,
                "strikethrough_price": 5580000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 410008797858,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5580000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 25.670",
                      "hidden_promotion_price": "Rp ?5.670",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 324,
                "rounded_local_monthly_sold_count": 174,
                "local_monthly_sold_count_text": "174",
                "rounded_display_sold_count": 324,
                "display_sold_count_text": "324"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EIHAIHIS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 48900117065,
            "shopid": 1484087853,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82593-mg7qmlap73t4fd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059154,1059152,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1718093079,1119699,298888358,298938357,1400285055,2213652,2048660,2048661,700765096,298933384,2103651,2143613,700810055,1718088045,298468389,298938368,2098629,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":678,\"model_id\":410008797858,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82593-mg7qmlap73t4fd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1059154,1059152,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1718093079,1119699,298888358,298938357,1400285055,2213652,2048660,2048661,700765096,298933384,2103651,2143613,700810055,1718088045,298468389,298938368,2098629,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":678,\"model_id\":410008797858,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_48900117065",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 53700100719,
              "shopid": 1484087853,
              "name": "Sport Braided Nylon Elastic Strap for Apple Watch Ultra/SE 2 Iwatch Series 9 8 7 6 3 5 4 46mm 49 45 41 44 40 42 38mm Scrunchie Band Belt Bracelet Accessories Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2153644,
                2018618,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                1059154,
                1059152,
                298463379,
                822059908662278,
                825465608492064,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                1718093079,
                1119699,
                298888358,
                298938357,
                298933384,
                2213652,
                2103651,
                2143613,
                1015914,
                700190087,
                700810055,
                1400285055,
                1718088045,
                298468389,
                2098628,
                2098629,
                298938368
              ],
              "image": "sg-11134201-8258x-mg7og7lo71n313",
              "images": [
                "sg-11134201-8258x-mg7og7lo71n313",
                "sg-11134201-825am-mg7og7yonfv130",
                "sg-11134201-8259m-mg7og8e3eya6a2",
                "sg-11134201-825ba-mg7og8o01mh44a",
                "sg-11134201-8259w-mg7og98qb85n5a",
                "sg-11134201-825ba-mg7og9hv045l7e",
                "sg-11134201-8259n-mg7og9qso4cr92",
                "sg-11134201-8259s-mg7oga1ufb4c60",
                "sg-11134201-8257x-mg7oga9vfnka0e"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761290981,
              "sold": 26,
              "historical_sold": 45,
              "liked": false,
              "liked_count": 8,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 18,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2140000000,
              "price_min": 2140000000,
              "price_max": 2140000000,
              "price_min_before_discount": 3900000000,
              "price_max_before_discount": 3900000000,
              "hidden_price_display": null,
              "price_before_discount": 3900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-45%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16000081704435644.mp4",
                  "thumb_url": "sg-11110106-7rbmy-lq4gfjiecmit06",
                  "duration": 32,
                  "version": 2,
                  "vid": "sg-11110106-6khxr-lq4gfe7i27wk39",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16003221707100448.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16003221707100448.mp4",
                      "width": 360,
                      "height": 480
                    },
                    {
                      "format": 1600393,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16003931742603912.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16003931742603912.mp4",
                      "width": 360,
                      "height": 480
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16004081714968638.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16004081714968638.mp4",
                      "width": 360,
                      "height": 480
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16006731724138469.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16006731724138469.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16006711723607131.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16006711723607131.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600266,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16002661723399879.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16002661723399879.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600394,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16003941742603912.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16003941742603912.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16006591722966300.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16006591722966300.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600265,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16002651723399871.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16002651723399871.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600658,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16006581742603911.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16006581742603911.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16004091722966301.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16004091722966301.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16000081704435644.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16000081704435644.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16003251706589645.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16003251706589645.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16003241706589645.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16003241706589645.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600395,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16003951742603911.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16003951742603911.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600396,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16003961742603911.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16003961742603911.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16004101714968638.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16004101714968638.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16004111722966301.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16004111722966301.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600267,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16002671723399879.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.16002671723399879.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxr-lq4gfe7i27wk39.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black",
                    "Green",
                    "Red",
                    "Deep Blue",
                    "Star",
                    "Blue",
                    "Multicolor",
                    "Dark Ash",
                    "Dark Heather",
                    "Light pink",
                    "Beige",
                    "Light mint",
                    "Lilac",
                    "smoke purple",
                    "Light green",
                    "Cherry",
                    "Stars",
                    "Deep gray",
                    "Olive",
                    "Lavender purple",
                    "Black Grey",
                    "Strawberry",
                    "Rainbow",
                    "peach",
                    "star pink",
                    "Blueberry",
                    "Grape",
                    "Yellow",
                    "Light Gray",
                    "Lime"
                  ],
                  "images": [
                    "sg-11134201-825a8-mg7ogn2f18gd5a",
                    "sg-11134201-8258x-mg7ognp4nx8ueb",
                    "sg-11134201-8258t-mg7ogo0zlsstd5",
                    "sg-11134201-8257y-mg7ogobdvc3s3f",
                    "sg-11134201-8258c-mg7ogorautqmfd",
                    "sg-11134201-825ap-mg7ogp5bfw98a2",
                    "sg-11134201-825aa-mg7ogph1fc3t7e",
                    "sg-11134201-8259s-mg7ogpt1a5mye1",
                    "sg-11134201-825av-mg7ogq8zo9aie5",
                    "sg-11134201-82587-mg7ogqj8o5xn48",
                    "sg-11134201-8258b-mg7ogqyuxde383",
                    "sg-11134201-8258c-mg7ograyhmvhee",
                    "sg-11134201-82586-mg7ogrpa5mo97d",
                    "sg-11134201-825aq-mg7ogs4n8s950c",
                    "sg-11134201-825b4-mg7ogsii20aw5d",
                    "sg-11134201-825aj-mg7ogsvlwlxkd9",
                    "sg-11134201-8259g-mg7ogt7hmhore2",
                    "sg-11134201-825a3-mg7ogtj1r8cq87",
                    "sg-11134201-8259i-mg7ogtw0ouffb4",
                    "sg-11134201-8258r-mg7ogu80nvny4f",
                    "sg-11134201-825a0-mg7ogupykop6d8",
                    "sg-11134201-8258x-mg7ogwz0oqh704",
                    "sg-11134201-825ak-mg7ogxje2sqz55",
                    "sg-11134201-8259f-mg7ogxwnuwp656",
                    "sg-11134201-8259q-mg7ogy8sfnd9e0",
                    "sg-11134201-8258f-mg7ogylwpp8q83",
                    "sg-11134201-8257z-mg7ogyx1toum9c",
                    "sg-11134201-825ad-mg7ogzamn9xr31",
                    "sg-11134201-825b3-mg7ogznhzpccea",
                    "sg-11134201-8258e-mg7oh0y7rj0v69"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/42(S3)mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.944444444444445,
                "rating_count": [
                  18,
                  0,
                  0,
                  0,
                  1,
                  17
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372024811991523,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744049498177536,
                "price": 2140000000,
                "strikethrough_price": 3900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-45%",
                "model_id": 350008389640,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3900000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 45,
                "rounded_local_monthly_sold_count": 26,
                "local_monthly_sold_count_text": "26",
                "rounded_display_sold_count": 45,
                "display_sold_count_text": "45"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EIHAIHIS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 53700100719,
            "shopid": 1484087853,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8258x-mg7og7lo71n313\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,1428713,1718087960,844931086908638,844931064601283,1059154,1059152,298463379,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1718093079,1119699,298888358,298938357,298933384,2213652,2103651,2143613,1015914,700190087,700810055,1400285055,1718088045,298468389,2098628,2098629,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":679,\"model_id\":350008389640,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8258x-mg7og7lo71n313\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,2018618,1428713,1718087960,844931086908638,844931064601283,1059154,1059152,298463379,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1718093079,1119699,298888358,298938357,298933384,2213652,2103651,2143613,1015914,700190087,700810055,1400285055,1718088045,298468389,2098628,2098629,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":679,\"model_id\":350008389640,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_53700100719",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44550108042,
              "shopid": 90733099,
              "name": "Ringke Silicone Case Airpods Pro 3 - Soft Casing",
              "label_ids": [
                1000167,
                700700063,
                2018619,
                1000544,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                1119699,
                700765096,
                1015914,
                700190087,
                2068629,
                298938357,
                298623321,
                1993623,
                998091078,
                298938368,
                1718088045,
                298468389,
                2098628,
                2098629
              ],
              "image": "id-11134207-8224y-mg7hsnfjcnbff3",
              "images": [
                "id-11134207-8224y-mg7hsnfjcnbff3",
                "id-11134207-82250-mg7hsnfjgv0r23",
                "id-11134207-8224t-mg7hsnfje1vv15",
                "id-11134207-8224x-mg7hsnfj8fm320",
                "id-11134207-82251-mg7hsnepdv67ac",
                "id-11134207-8224x-mg7hsnep416z45"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761278788,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 23660400000,
              "price_min": 23660400000,
              "price_max": 23660400000,
              "price_min_before_discount": 26900000000,
              "price_max_before_discount": 26900000000,
              "hidden_price_display": null,
              "price_before_discount": 26900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-12%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvh-mgd10qinu2ofe0.16000081761614790.mp4",
                  "thumb_url": "id-11110105-6vdvh-mgd10qinu2ofe0_cover",
                  "duration": 31,
                  "version": 2,
                  "vid": "id-11110105-6vdvh-mgd10qinu2ofe0",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvh-mgd10qinu2ofe0.16000081761614790.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvh-mgd10qinu2ofe0.16000081761614790.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvh-mgd10qinu2ofe0.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "colour",
                  "options": [
                    "Black",
                    "Pink Sand",
                    "Stone",
                    "Light Purple"
                  ],
                  "images": [
                    "id-11134207-8224o-mg7fwq4n65fxad",
                    "id-11134207-8224q-mg7fwq4n8ykt6c",
                    "id-11134207-82251-mg7fwq4n7k0df6",
                    "id-11134207-8224o-mg7fwq4nad5991"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp78RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 324,
                "promotion_id": 10000013670,
                "price": 23660400000,
                "strikethrough_price": 26900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-12%",
                "model_id": 445007319700,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 26900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp78RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GadgetCheckShop Official Shop",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44550108042,
            "shopid": 90733099,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mg7hsnfjcnbff3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,700700063,2018619,1000544,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,1119699,700765096,1015914,700190087,2068629,298938357,298623321,1993623,998091078,298938368,1718088045,298468389,2098628,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":680,\"model_id\":445007319700,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mg7hsnfjcnbff3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,700700063,2018619,1000544,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,840990690654214,2048660,2048661,840955085144628,825465608493600,825465608494624,1119699,700765096,1015914,700190087,2068629,298938357,298623321,1993623,998091078,298938368,1718088045,298468389,2098628,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":680,\"model_id\":445007319700,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44550108042",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25397569816,
              "shopid": 38395550,
              "name": "Jam Tangan Smartwatch Sport Wanita D13 Bluetooth",
              "label_ids": [
                47,
                1000559,
                1000255,
                1000211,
                700700063,
                1000167,
                1011735,
                1000560,
                2018619,
                1000196,
                298938357,
                700190019,
                2023641,
                298888358,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                1049122,
                1059152,
                822059908662278,
                825465608493600,
                825465608499232,
                825465608497696,
                825465608492064,
                1718093079,
                1119699,
                1015914,
                700190087,
                1400285055,
                298463379,
                2098629,
                1718088045,
                298938368,
                2098628,
                298468389
              ],
              "image": "id-11134207-8224v-mg3idvzux34b60",
              "images": [
                "id-11134207-8224v-mg3idvzux34b60",
                "id-11134207-8224r-mg3idvzuzw97ab",
                "id-11134207-8224x-mg3idvzv43yjbe",
                "id-11134207-8224u-mg1zk2wo37d485",
                "id-11134207-8224o-mg3idvzv2pe30f",
                "id-11134207-8224s-mg1zk2wo4lxk58",
                "id-11134207-8224r-mg3idvzuyhor7c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761059195,
              "sold": 2,
              "historical_sold": 10,
              "liked": false,
              "liked_count": 3,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5400000000,
              "price_min": 5400000000,
              "price_max": 5400000000,
              "price_min_before_discount": 20000000000,
              "price_max_before_discount": 20000000000,
              "hidden_price_display": null,
              "price_before_discount": 20000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-73%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven1-mg3udv6onqx772.16000081761058825.mp4",
                  "thumb_url": "id-11110105-6ven1-mg3udv6onqx772_cover",
                  "duration": 59,
                  "version": 2,
                  "vid": "id-11110105-6ven1-mg3udv6onqx772",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven1-mg3udv6onqx772.16000081761058825.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven1-mg3udv6onqx772.16000081761058825.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven1-mg3udv6onqx772.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam"
                  ],
                  "images": [
                    "id-11134207-82252-mg3idvzv1atn84"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.5,
                "rating_count": [
                  4,
                  0,
                  0,
                  1,
                  0,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228239998205953,
                "price": 5130000000,
                "strikethrough_price": 20000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1333079201955840,
                "discount_text": "-73%",
                "model_id": 282056300156,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1333079201955840,
                  "voucher_code": "KAIR20262",
                  "voucher_discount": 270000000,
                  "time_info": {
                    "start_time": 1768375140,
                    "end_time": 1776413940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 0
                },
                "recommended_platform_voucher_info": null,
                "original_price": 20000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 10,
                "display_sold_count_text": "10"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "kairoswatch17",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 25397569816,
            "shopid": 38395550,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mg3idvzux34b60\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000559,1000255,1000211,700700063,1000167,1011735,1000560,2018619,1000196,298938357,700190019,2023641,298888358,1718087960,1428713,844931086908638,844931064601283,1049122,1059152,822059908662278,825465608493600,825465608499232,825465608497696,825465608492064,1718093079,1119699,1015914,700190087,1400285055,298463379,2098629,1718088045,298938368,2098628,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":502,\"model_id\":282056300156,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mg3idvzux34b60\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000559,1000255,1000211,700700063,1000167,1011735,1000560,2018619,1000196,298938357,700190019,2023641,298888358,1718087960,1428713,844931086908638,844931064601283,1049122,1059152,822059908662278,825465608493600,825465608499232,825465608497696,825465608492064,1718093079,1119699,1015914,700190087,1400285055,298463379,2098629,1718088045,298938368,2098628,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":502,\"model_id\":282056300156,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25397569816",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29243232877,
              "shopid": 634180660,
              "name": "LIGE Smart Watch Men Wanita Pelacak Kebugaran Panggilan Bluetooth Smartwatch Pria Beberapa Mode Olahraga Pemantauan Tidur Jam Tangan Pria",
              "label_ids": [
                2018619,
                298888358,
                2023641,
                1668726,
                298938357,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1015914,
                700190087,
                298933384,
                2098629
              ],
              "image": "id-11134207-8224z-mg96fi3r8qofd0",
              "images": [
                "id-11134207-8224z-mg96fi3r8qofd0",
                "id-11134207-8224t-mg96fi3rcydr6d",
                "id-11134207-8224p-mg9a386jwaha2c",
                "id-11134207-8224s-mg96fi3ra58v2a",
                "id-11134207-8224z-mg9a386l2figaa",
                "id-11134207-8224x-mg96fi3recy779",
                "id-11134207-8224u-mg96fi3rbjtb8d",
                "id-11134207-8224u-mg96fi3r7c3z87"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761033235,
              "sold": 1,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100013,
              "brand": "Lige",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 15900000000,
              "price_min": 15900000000,
              "price_max": 15900000000,
              "price_min_before_discount": 32900000000,
              "price_max_before_discount": 32900000000,
              "hidden_price_display": null,
              "price_before_discount": 32900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-52%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven1-mg3f06rpj5laec.16000031761033138.mp4",
                  "thumb_url": "id-11110105-6ven1-mg3f06rpj5laec_cover",
                  "duration": 31,
                  "version": 2,
                  "vid": "id-11110105-6ven1-mg3f06rpj5laec",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven1-mg3f06rpj5laec.16000031761033138.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven1-mg3f06rpj5laec.16000031761033138.mp4",
                      "width": 480,
                      "height": 854
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven1-mg3f06rpj5laec.default.mp4",
                    "width": 480,
                    "height": 854
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "BWZ81",
                  "options": [
                    "Black(Slicone)",
                    "Pink(Slicone)",
                    "Yellow(Slicone)",
                    "Black(Mesh + slicone"
                  ],
                  "images": [
                    "id-11134207-82251-mg3ex7r8p9fw01",
                    "id-11134207-8224q-mg3ex7r8qo0ceb",
                    "id-11134207-8224s-mg3ex7r8s2ksdb",
                    "id-11134207-82250-mg3ex7r8th58b2"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp26RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 773934476230656,
                "price": 15900000000,
                "strikethrough_price": 32900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-52%",
                "model_id": 307051175330,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 32900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp26RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "LIGE Jam Tangan",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 29243232877,
            "shopid": 634180660,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mg96fi3r8qofd0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298888358,2023641,1668726,298938357,1718087960,1428713,844931086908638,844931064601283,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699,1015914,700190087,298933384,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":686,\"model_id\":307051175330,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mg96fi3r8qofd0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298888358,2023641,1668726,298938357,1718087960,1428713,844931086908638,844931064601283,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699,1015914,700190087,298933384,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":686,\"model_id\":307051175330,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29243232877",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28943241408,
              "shopid": 1546277385,
              "name": "Amazfit T Rex 3 Pro 48mm Smartwatch Outdoor GPS AMOLED Sapphire Glass 25 Days Battery 700mAh 180 Sport Modes Titanium Grade 5 10ATM Waterproof",
              "label_ids": [
                1400066568,
                2018618,
                2153644,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608493600,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                1015914,
                700190087,
                2213652,
                298933384,
                1400285055,
                2048660,
                2048661,
                700765096,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224r-mg3doelce9l699",
              "images": [
                "id-11134207-8224r-mg3doelce9l699",
                "id-11134207-82252-mg3doelc5u6i19",
                "id-11134207-8224z-mg3doelccv0q54",
                "id-11134207-82250-mg3doelc78qyd9",
                "id-11134207-8224t-mg3doelc8nbeb2",
                "id-11134207-8224v-mg3doelcbggaa5",
                "id-11134207-8224s-mg3doelca1vuf1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761031099,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 20,
              "view_count": null,
              "catid": 100013,
              "brand": "Amazfit",
              "cmt_count": 2,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 625900000000,
              "price_min": 625900000000,
              "price_max": 625900000000,
              "price_min_before_discount": 699900000000,
              "price_max_before_discount": 699900000000,
              "hidden_price_display": null,
              "price_before_discount": 699900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-11%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv6-mg3dv6pdroy779.16000081761031046.mp4",
                  "thumb_url": "id-11110105-6vdv6-mg3dv6pdroy779_cover",
                  "duration": 32,
                  "version": 2,
                  "vid": "id-11110105-6vdv6-mg3dv6pdroy779",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv6-mg3dv6pdroy779.16000081761031046.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv6-mg3dv6pdroy779.16000081761031046.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv6-mg3dv6pdroy779.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Gold"
                  ],
                  "images": [
                    "id-11134207-8224t-mjf4o33tymmbb5",
                    "id-11134207-8224x-mjf4o33u016rc6"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 730292566949888,
                "price": 615900000000,
                "strikethrough_price": 699900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1301908224753664,
                "discount_text": "-11%",
                "model_id": 420427653564,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1301908224753664,
                  "voucher_code": "KINSOPAD1",
                  "voucher_discount": 10000000000,
                  "time_info": {
                    "start_time": 1764659340,
                    "end_time": 1772698140,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 30000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 699900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KINS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 28943241408,
            "shopid": 1546277385,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mg3doelce9l699\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018618,2153644,1428713,1718087960,844931064601283,298463379,1059152,1059154,822059908662278,825465608497696,825465608493600,825465608494624,825465608499232,1718093079,1119699,1015914,700190087,2213652,298933384,1400285055,2048660,2048661,700765096,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":687,\"model_id\":420427653564,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mg3doelce9l699\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018618,2153644,1428713,1718087960,844931064601283,298463379,1059152,1059154,822059908662278,825465608497696,825465608493600,825465608494624,825465608499232,1718093079,1119699,1015914,700190087,2213652,298933384,1400285055,2048660,2048661,700765096,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":687,\"model_id\":420427653564,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28943241408",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27593245812,
              "shopid": 1592030327,
              "name": "22mm 20mm Soft Silicone Strap Band for Tali Jam Tangan Smartwatch Samsung Watch Galaxy Watch 7 6 5 4 FE for Garmin Watch /Huawei Watch GT 6 5 4 3 2 /Amazfit GTS GTR /Xiaomi Watch S4 S1 S2 S3/ Active/Redmi Watch 5 Active/5 Lite/Itel 011 12/Aolon/advan",
              "label_ids": [
                2023641,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                2018619,
                840955085144628,
                840990690654214,
                2048660,
                2048661,
                700765096,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-82597-mg3cbysuwsuie5",
              "images": [
                "sg-11134201-82597-mg3cbysuwsuie5",
                "sg-11134201-8259e-mg3cbznagwsr7e",
                "sg-11134201-82595-mg3cc1f322hb75",
                "sg-11134201-82594-mg3cc282eqku43",
                "sg-11134201-8257x-mg3cc3p1jwgf6c",
                "sg-11134201-8258d-mg3cc551gp3jc5",
                "sg-11134201-82580-mg3cc7epryff91",
                "sg-11134201-8259s-mg3cc8mdblsefe",
                "sg-11134201-825ag-mg3cca0eew3x61"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761028478,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5060000000,
              "price_min": 5060000000,
              "price_max": 5060000000,
              "price_min_before_discount": 11800000000,
              "price_max_before_discount": 11800000000,
              "hidden_price_display": null,
              "price_before_discount": 11800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-57%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Starlight(Strap)",
                    "Orange(Strap)",
                    "Midnight Blue(Strap)",
                    "Dark(Strap)",
                    "Chocolate(Strap)",
                    "Rose Grey(Strap)",
                    "army green(Strap)",
                    "red(Strap)",
                    "black(Strap)",
                    "Black  red(Strap)",
                    "Black gray(Strap)",
                    "Black Orange(Strap)",
                    "white blue(Strap)",
                    "pink(Strap)",
                    "White black(Strap)"
                  ],
                  "images": [
                    "sg-11134201-825av-mg3ccmsy1tzh96",
                    "sg-11134201-8259t-mg3ccn8yqrkbff",
                    "sg-11134201-82594-mg3ccnpak0zz79",
                    "sg-11134201-825as-mg3cco83bytle1",
                    "sg-11134201-825bd-mg3ccou2wdu44d",
                    "sg-11134201-8259s-mg3ccpb54k5p1e",
                    "sg-11134201-8259w-mg3ccpq6e231aa",
                    "sg-11134201-8258e-mg3ccqf61frd9b",
                    "sg-11134201-8259u-mg3ccr1na6173b",
                    "sg-11134201-8259o-mg3ccronvlze38",
                    "sg-11134201-8258y-mg3ccsckp9ft3a",
                    "sg-11134201-8258x-mg3cct0iduz112",
                    "sg-11134201-825b0-mg3cctnkmaru37",
                    "sg-11134201-8258d-mg3ccufqbifd2b",
                    "sg-11134201-825b9-mg3ccuzsfkzx0a"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm",
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359074252468611,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5060000000,
                "strikethrough_price": 11800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-57%",
                "model_id": 262049968191,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 11800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 50.600",
                      "hidden_promotion_price": "Rp ?0.600",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANSLOOP Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 27593245812,
            "shopid": 1592030327,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82597-mg3cbysuwsuie5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,1428713,1718087960,844931064601283,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,2018619,840955085144628,840990690654214,2048660,2048661,700765096,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":688,\"model_id\":262049968191,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82597-mg3cbysuwsuie5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,1428713,1718087960,844931064601283,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,2018619,840955085144628,840990690654214,2048660,2048661,700765096,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":688,\"model_id\":262049968191,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27593245812",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27943209835,
              "shopid": 1337826401,
              "name": "Gratis Botol Minum Sport | Citijungle NeoGPS Smartwatch 1.43\" AMOLED | GPS Tracker | Kompas | Altimeter | Barometer | Tahan Air 5ATM | Bluetooth Call | Multi Bahasa | Dukungan Strava | Pelacakan Real-Time",
              "label_ids": [
                2018619,
                298888358,
                298938357,
                2023641,
                844931086908638,
                844931064601283,
                298463379,
                1718093079,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                298933384,
                1718087960,
                1428713,
                1015914,
                700190087,
                2048661,
                840955085144628,
                825465608493600,
                840990690654214,
                2048660,
                700765096,
                298468389,
                2098629,
                1718088045,
                2098628,
                298938368
              ],
              "image": "id-11134207-8224x-mgbvlgvjjkzz49",
              "images": [
                "id-11134207-8224x-mgbvlgvjjkzz49",
                "id-11134207-8224p-mg32y87470um50",
                "id-11134207-8224q-mg32y874000e9e",
                "id-11134207-8224z-mg32y8741eku8b",
                "id-11134207-8224x-mg32y87447pq71",
                "id-11134207-8224o-mg1xet02enez25",
                "id-11134207-8224q-mg1xet02g1zf94",
                "id-11134207-8224z-mg335seguux9fd",
                "id-11134207-8224r-mg335segw9hpeb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1761014113,
              "sold": 1,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 19,
              "view_count": null,
              "catid": 100013,
              "brand": "CITIJUNGLE",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 68800000000,
              "price_min": 68800000000,
              "price_max": 68800000000,
              "price_min_before_discount": 150000000000,
              "price_max_before_discount": 150000000000,
              "hidden_price_display": null,
              "price_before_discount": 150000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdve-mg33fzdormrw68.16000081761013564.mp4",
                  "thumb_url": "id-11110105-6vdve-mg33fzdormrw68_cover",
                  "duration": 58,
                  "version": 2,
                  "vid": "id-11110105-6vdve-mg33fzdormrw68",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdve-mg33fzdormrw68.16000081761013564.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdve-mg33fzdormrw68.16000081761013564.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdve-mg33fzdormrw68.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Perak"
                  ],
                  "images": [
                    "id-11134207-8224v-mj5a4eq7xszn6c",
                    "id-11134207-82250-mj5alp32tjwn24"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.333333333333333,
                "rating_count": [
                  3,
                  0,
                  0,
                  1,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 401759512310225,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp108RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 64800000000,
                "strikethrough_price": 150000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1332646098386944,
                "discount_text": "-54%",
                "model_id": 292046863894,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1332646098386944,
                  "voucher_code": "CITI163FD",
                  "voucher_discount": 4000000000,
                  "time_info": {
                    "start_time": 1768323480,
                    "end_time": 1770137940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 40000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 150000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 648.000",
                      "hidden_promotion_price": "Rp 6?8.000",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp108RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CitiJungle",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 27943209835,
            "shopid": 1337826401,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mgbvlgvjjkzz49\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298888358,298938357,2023641,844931086908638,844931064601283,298463379,1718093079,700005490,1049120,822059908662278,825465608499232,825465608497696,825465608494624,298933384,1718087960,1428713,1015914,700190087,2048661,840955085144628,825465608493600,840990690654214,2048660,700765096,298468389,2098629,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":689,\"model_id\":292046863894,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mgbvlgvjjkzz49\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298888358,298938357,2023641,844931086908638,844931064601283,298463379,1718093079,700005490,1049120,822059908662278,825465608499232,825465608497696,825465608494624,298933384,1718087960,1428713,1015914,700190087,2048661,840955085144628,825465608493600,840990690654214,2048660,700765096,298468389,2098629,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":689,\"model_id\":292046863894,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27943209835",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43725167741,
              "shopid": 1344444411,
              "name": "Anti Gores PC Case Cover for Huawei Watch GT 6 41mm / Huawei Watch GT 6 46mm Tempered Glass Screen Protector Hard Bumper Frame Accessories Jam Tangan Smartwatch for Huawei Watch GT 6 41mm/46mm",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                1400285055,
                1015914,
                700190087,
                2048661,
                840955085144628,
                840990690654214,
                2048660,
                700765096,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-825bc-mg257lq0hamn15",
              "images": [
                "sg-11134201-825bc-mg257lq0hamn15",
                "sg-11134201-825ax-mg257m5c5u6nb5",
                "sg-11134201-825aj-mg257mlwr5e62c",
                "sg-11134201-825b7-mg257mtxdg5n8f",
                "sg-11134201-825b4-mg257n3iaoegaa",
                "sg-11134201-8257w-mg257na71ersf6",
                "sg-11134201-8259z-mg257ngc2viid6",
                "sg-11134201-825b2-mg257no58vt4fa",
                "sg-11134201-825ae-mg257nvz8e1956"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760955957,
              "sold": 12,
              "historical_sold": 66,
              "liked": false,
              "liked_count": 12,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 21,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2695000000,
              "price_min": 2695000000,
              "price_max": 2695000000,
              "price_min_before_discount": 5800000000,
              "price_max_before_discount": 5800000000,
              "hidden_price_display": null,
              "price_before_discount": 5800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Transparent",
                    "Red",
                    "Black",
                    "Midnight Blue",
                    "Green",
                    "White",
                    "Pink",
                    "Star",
                    "Silver",
                    "Rose Pink",
                    "Black2",
                    "Ivory",
                    "light Pink ",
                    "Blue",
                    "Pine Green"
                  ],
                  "images": [
                    "sg-11134201-825bb-mg2582q46nf35f",
                    "sg-11134201-82599-mg25859z5hqhb9",
                    "sg-11134201-8258q-mg2585wm3ax9c9",
                    "sg-11134201-82591-mg25867l1b7wd6",
                    "sg-11134201-8258r-mg2586h1cu18ee",
                    "sg-11134201-8257y-mg2586pk9x5414",
                    "sg-11134201-8259u-mg2586wo2wb0c6",
                    "sg-11134201-8258d-mg258747vqq41b",
                    "sg-11134201-825ac-mg2587cunxn382",
                    "sg-11134201-82586-mg2587r22v4f0f",
                    "sg-11134201-82593-mg2587zknb48f3",
                    "sg-11134201-825as-mg25887qj6yw35",
                    "sg-11134201-825at-mg2588eyigwba7",
                    "sg-11134201-82583-mg2588lfoqoa38",
                    "sg-11134201-825ar-mg2588z287wp56"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "huawei GT 6 41mm",
                    "huawei GT 6 46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.904761904761905,
                "rating_count": [
                  21,
                  0,
                  0,
                  1,
                  0,
                  20
                ],
                "rcount_with_context": 6,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 374890880581698,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2695000000,
                "strikethrough_price": 5800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 302040828355,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5800000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 26.950",
                      "hidden_promotion_price": "Rp ?6.950",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 66,
                "rounded_local_monthly_sold_count": 12,
                "local_monthly_sold_count_text": "12",
                "rounded_display_sold_count": 66,
                "display_sold_count_text": "66"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RMUTANE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43725167741,
            "shopid": 1344444411,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825bc-mg257lq0hamn15\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1119699,298933384,1400285055,1015914,700190087,2048661,840955085144628,840990690654214,2048660,700765096,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":695,\"model_id\":302040828355,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825bc-mg257lq0hamn15\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1119699,298933384,1400285055,1015914,700190087,2048661,840955085144628,840990690654214,2048660,700765096,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":695,\"model_id\":302040828355,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43725167741",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40675149339,
              "shopid": 1025397556,
              "name": "SNAPFIT Case Airpods Pro 3 2025 SNAPFIT Silicone Softcase Macaron Protective Cover Casing - Primary Focuss",
              "label_ids": [
                700700063,
                2018619,
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                2048660,
                2048661,
                825465608493600,
                825465608494624,
                825465608499232,
                1119699,
                700765096,
                2023641,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82251-mjdzavak50xte1",
              "images": [
                "id-11134207-82251-mjdzavak50xte1",
                "sg-11134201-825b9-mg22013bbdhq77",
                "sg-11134201-8258g-mg2201ao20p767",
                "sg-11134201-8257z-mg2201n4c7bi48",
                "sg-11134201-8259n-mg2201xemgp991",
                "sg-11134201-8258s-mg2202dw0lca85",
                "sg-11134201-8258h-mg2202jbjeobe3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760950561,
              "sold": 12,
              "historical_sold": 40,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100013,
              "brand": "SNAPFIT",
              "cmt_count": 6,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2050000000,
              "price_min": 2050000000,
              "price_max": 2050000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven0-mimi2gwpa8074c.16000081766546752.mp4",
                  "thumb_url": "id-11110105-6ven0-mimi2gwpa8074c_cover",
                  "duration": 56,
                  "version": 2,
                  "vid": "id-11110105-6ven0-mimi2gwpa8074c",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven0-mimi2gwpa8074c.16000081766546752.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven0-mimi2gwpa8074c.16000081766546752.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven0-mimi2gwpa8074c.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Dark Blue",
                    "Grey",
                    "Pine Green",
                    "Pink",
                    "Sky Blue",
                    "White",
                    "Black With Chain",
                    "Dark Blue With Chain",
                    "Dark Grey With Chain",
                    "Matcha Green Chain",
                    "Lilac With Chain",
                    "Yellow With Chain",
                    "Dark Green Chain",
                    "Apple Green Chain",
                    "Green With Chain",
                    "Lavender Grey Chain",
                    "Pink With Chain",
                    "Dusty WIth Chain",
                    "Orange With Chain",
                    "Red With Chain",
                    "Burgundy With Chain",
                    "White With Chain",
                    "Clear With Chain",
                    "Milk Tea Chain",
                    "Mint With Chain",
                    "Grey With Chain"
                  ],
                  "images": [
                    "sg-11134201-825a5-mg2202r9ckjuaf",
                    "sg-11134201-8258c-mg220320j1u051",
                    "sg-11134201-825a8-mg2203aav2ff8b",
                    "sg-11134201-8259u-mg2203jbgidl77",
                    "sg-11134201-825ap-mg2203ssioehc8",
                    "sg-11134201-825a3-mg22042q78ct66",
                    "sg-11134201-825a4-mg2204b3cff1d0",
                    "id-11134207-8224t-mijykbl9v6knb1",
                    "id-11134207-8224p-mijykblh31mqf5",
                    "id-11134207-8224o-mijykblh4g7637",
                    "id-11134207-8224q-mijyvrpk464o07",
                    "id-11134207-8224p-mijykblh79c2c7",
                    "id-11134207-8224w-mijykblh8nwi61",
                    "id-11134207-8224v-mijyvrpt61vqa1",
                    "id-11134207-82251-mijykblhbh1e87",
                    "id-11134207-8224s-mijyvrpt4nba0f",
                    "id-11134207-8224t-mijyvrpt38qud6",
                    "id-11134207-8224s-mijykblhfoqqfd",
                    "id-11134207-8224t-mijylggdboxvff",
                    "id-11134207-8224o-mijylggeuh3a6c",
                    "id-11134207-8224r-mijylggevvnqe5",
                    "id-11134207-8224u-mijyvrpt1u6e0b",
                    "id-11134207-8224y-mijylggeyosm2e",
                    "id-11134207-82251-mijylggf03d257",
                    "id-11134207-8224s-mijylggf1hxica",
                    "id-11134207-8224s-mijyvrpt0flycd",
                    "id-11134207-8224u-mijylggf5pmu1d"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  6,
                  0,
                  0,
                  0,
                  0,
                  6
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 2050000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 310332339864,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2050000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 40,
                "rounded_local_monthly_sold_count": 12,
                "local_monthly_sold_count_text": "12",
                "rounded_display_sold_count": 40,
                "display_sold_count_text": "40"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Primary Focuss",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40675149339,
            "shopid": 1025397556,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mjdzavak50xte1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,1718087960,1428713,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,2048660,2048661,825465608493600,825465608494624,825465608499232,1119699,700765096,2023641,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":696,\"model_id\":310332339864,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mjdzavak50xte1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,1718087960,1428713,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,2048660,2048661,825465608493600,825465608494624,825465608499232,1119699,700765096,2023641,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":696,\"model_id\":310332339864,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40675149339",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28143187034,
              "shopid": 780264230,
              "name": "Apple Watch Series 9 2023 41mm Silver Midnight Starlight Pink Red Smartwatch 329 PPI - S/M, Silver Blue",
              "label_ids": [
                2018619,
                844931064601283,
                298463379,
                1059152,
                700005489,
                1718093079,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                825465608492064,
                1119699,
                1400066568,
                2048660,
                2048661,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-825al-mg1yj7gx14w982",
              "images": [
                "sg-11134201-825al-mg1yj7gx14w982",
                "sg-11134201-8259j-mg1yj7n4sxe094",
                "sg-11134201-825b2-mg1yj7rzyf4fac"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760944726,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple Watch",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 554900000000,
              "price_min": 554900000000,
              "price_max": 554900000000,
              "price_min_before_discount": 874400000000,
              "price_max_before_discount": 874400000000,
              "hidden_price_display": null,
              "price_before_discount": 874400000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-37%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Ukuran",
                  "options": [
                    "S/M",
                    "M/L"
                  ],
                  "images": [
                    "sg-11134201-825an-mg1yj7xdygb3e0",
                    "sg-11134201-825an-mg1yj7xdygb3e0"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Warna",
                  "options": [
                    "Silver Blue",
                    "Starlight",
                    "Nike Midnight",
                    "Red",
                    "Pink",
                    "Midnight"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 799002891698176,
                "price": 554900000000,
                "strikethrough_price": 874400000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-37%",
                "model_id": 282037874354,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 874400000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Teknotrend.id",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 28143187034,
            "shopid": 780264230,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825al-mg1yj7gx14w982\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1059152,700005489,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,825465608492064,1119699,1400066568,2048660,2048661,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":697,\"model_id\":282037874354,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825al-mg1yj7gx14w982\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1059152,700005489,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,825465608492064,1119699,1400066568,2048660,2048661,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":697,\"model_id\":282037874354,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28143187034",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26693200954,
              "shopid": 1578203004,
              "name": "SmartWatch 10 SE Mini 38mm Pria Wanita jam amoled Pemantauan Detak Jantung Oksigen Darah Pelacak Kebugaran Panggilan Bluetooth Wallpaper Kustom Jam Tangan Pintar Anti Air untuk Pria Olahraga Kompatibel dengan Android & iOS",
              "label_ids": [
                700700063,
                298513322,
                2018619,
                700025282,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                700005489,
                822059908662278,
                825465608499232,
                1718093079,
                1119699,
                1015914,
                700190087,
                1400285055,
                298933384,
                2023641,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224z-mjdw20purlkwba",
              "images": [
                "id-11134207-8224z-mjdw20purlkwba",
                "id-11134207-8224u-mg3ft0ehl72n47",
                "id-11134207-8224u-mg1xq0vbauix95",
                "id-11134207-8224s-mg1xq0vbc93da6",
                "id-11134207-8224x-mg1xq0vbdnntbf",
                "id-11134207-8224o-mg1xq0vbf28952",
                "id-11134207-8224x-mg3ft0eiwydm25",
                "id-11134207-8224z-mg3ft0ewvtopd8",
                "id-11134207-8224o-mg3ft0eivjt680"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760944115,
              "sold": 68,
              "historical_sold": 188,
              "liked": false,
              "liked_count": 171,
              "view_count": null,
              "catid": 100013,
              "brand": "Buds Indonesia",
              "cmt_count": 75,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 17700000000,
              "price_min": 17700000000,
              "price_max": 17700000000,
              "price_min_before_discount": 59999900000,
              "price_max_before_discount": 59999900000,
              "hidden_price_display": null,
              "price_before_discount": 59999900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-70%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvh-mg1xtmw1ee4pd4.16000081760943540.mp4",
                  "thumb_url": "id-11110105-6vdvh-mg1xtmw1ee4pd4_cover",
                  "duration": 44,
                  "version": 2,
                  "vid": "id-11110105-6vdvh-mg1xtmw1ee4pd4",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvh-mg1xtmw1ee4pd4.16000081760943540.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvh-mg1xtmw1ee4pd4.16000081760943540.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvh-mg1xtmw1ee4pd4.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "BlacK+2strap (38mm)",
                    "Pink+2strap (38mm)",
                    "Abu-abu+2strap(38mm)",
                    "BlacK+3strap (38mm)",
                    "Pink+3strap[38mm]",
                    "Abu-abu+3strap(38mm)",
                    "BlacK+2strap (38mm).",
                    "Pink+2strap (38mm)."
                  ],
                  "images": [
                    "id-11134207-8224o-mg3ft0eu9pn10d",
                    "id-11134207-8224v-mg3ft0eub47h04",
                    "id-11134207-82252-mg3ft0eucirx80",
                    "id-11134207-82252-mg3ft0eugqh95e",
                    "id-11134207-8224v-mg3ft0eufbwtc8",
                    "id-11134207-8224p-mg3ft0eui51p82",
                    "id-11134207-8224x-mg1y46ewsu89a4",
                    "id-11134207-8224r-mg1y46ewu8sp76"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.76,
                "rating_count": [
                  75,
                  2,
                  0,
                  2,
                  6,
                  65
                ],
                "rcount_with_context": 21,
                "rcount_with_image": 22
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227963635511301,
                "price": 17700000000,
                "strikethrough_price": 59999900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-70%",
                "model_id": 282037706759,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 59999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 188,
                "rounded_local_monthly_sold_count": 68,
                "local_monthly_sold_count_text": "68",
                "rounded_display_sold_count": 188,
                "display_sold_count_text": "188"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Digital Berwarna-Warni",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26693200954,
            "shopid": 1578203004,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjdw20purlkwba\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,298513322,2018619,700025282,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,700005489,822059908662278,825465608499232,1718093079,1119699,1015914,700190087,1400285055,298933384,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":698,\"model_id\":282037706759,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjdw20purlkwba\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,298513322,2018619,700025282,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,700005489,822059908662278,825465608499232,1718093079,1119699,1015914,700190087,1400285055,298933384,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":698,\"model_id\":282037706759,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26693200954",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29243183892,
              "shopid": 11722931,
              "name": "VIVAN Curved Smart Watch 2.01 Inch Waterproof 1 ATM 100+ Sports Mode Professional Health Monitoring Battery 350mAh Up To 10 Days VWF19S Garansi 12 Bulan",
              "label_ids": [
                27,
                700700063,
                37,
                48,
                40,
                38,
                1000109,
                58,
                1000167,
                1000230,
                1000425,
                1000381,
                1011692,
                1000442,
                1002164,
                1016119,
                1000448,
                1000549,
                1518617,
                1000544,
                2018618,
                1668726,
                2153644,
                1400285005,
                1400095067,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                1049120,
                822059908662278,
                825465608497696,
                840990690654214,
                840955085144628,
                825465608492064,
                825465608499232,
                1718093079,
                1119699,
                1015914,
                700190087,
                1400285055,
                2213652,
                700810055,
                2008656,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224v-mijxfdo7dm2o49",
              "images": [
                "id-11134207-8224v-mijxfdo7dm2o49",
                "id-11134207-8224z-mg1rhk5k10cte7",
                "id-11134207-8224y-mg1rhk5k2ex974",
                "id-11134207-82252-mg1rhk5jsky505",
                "id-11134207-8224v-mg1rhk5jtzil61",
                "id-11134207-8224u-mg1rhk5jve31e7",
                "id-11134207-8224u-mg1rhk5jwsnh27",
                "id-11134207-8224r-mg1rhk5jy77xfe",
                "id-11134207-8224v-mg1rhk5jzlsd3b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760933318,
              "sold": 221,
              "historical_sold": 412,
              "liked": false,
              "liked_count": 348,
              "view_count": null,
              "catid": 100013,
              "brand": "Vivan",
              "cmt_count": 198,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 21590000000,
              "price_min": 21590000000,
              "price_max": 21590000000,
              "price_min_before_discount": 119900000000,
              "price_max_before_discount": 119900000000,
              "hidden_price_display": null,
              "price_before_discount": 119900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-82%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "VWF19S Black",
                    "VWF19S Silver",
                    "VWF19S Pink"
                  ],
                  "images": [
                    "id-11134207-8224t-mijxfdo7f0n4dd",
                    "id-11134207-82251-mijxfdo7asxs01",
                    "id-11134207-8224u-mj9ju6gikg01d3"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.9393939393939394,
                "rating_count": [
                  198,
                  0,
                  0,
                  0,
                  12,
                  186
                ],
                "rcount_with_context": 57,
                "rcount_with_image": 48
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-8224v-mijxfdo7dm2o49",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 410030172287027,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227534205894657,
                "price": 21090000000,
                "strikethrough_price": 119900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1323318620078132,
                "discount_text": "-82%",
                "model_id": 297035661366,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1323318620078132,
                  "voucher_code": "VIVANBY5",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1767211200,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 119900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 412,
                "rounded_local_monthly_sold_count": 221,
                "local_monthly_sold_count_text": "221",
                "rounded_display_sold_count": 412,
                "display_sold_count_text": "412"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Vivan Official Shop",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 29243183892,
            "shopid": 11722931,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mijxfdo7dm2o49\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[27,700700063,37,48,40,38,1000109,58,1000167,1000230,1000425,1000381,1011692,1000442,1002164,1016119,1000448,1000549,1518617,1000544,2018618,1668726,2153644,1400285005,1400095067,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,1049120,822059908662278,825465608497696,840990690654214,840955085144628,825465608492064,825465608499232,1718093079,1119699,1015914,700190087,1400285055,2213652,700810055,2008656,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":699,\"model_id\":297035661366,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mijxfdo7dm2o49\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[27,700700063,37,48,40,38,1000109,58,1000167,1000230,1000425,1000381,1011692,1000442,1002164,1016119,1000448,1000549,1518617,1000544,2018618,1668726,2153644,1400285005,1400095067,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,1049120,822059908662278,825465608497696,840990690654214,840955085144628,825465608492064,825465608499232,1718093079,1119699,1015914,700190087,1400285055,2213652,700810055,2008656,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":699,\"model_id\":297035661366,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29243183892",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43225100381,
              "shopid": 1482478368,
              "name": "Anti Gores PC Case+Silicone Strap for Redmi Watch 3 Active/3 Lite Rubber Band Adjustable Belt Bracelet Hard Tempered Glass Screen Protector Bumper Cover Accessories Tali Jam Tangan for Smartwatch Xiaomi Mi Watch 3 Lite",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                700765096,
                1400285055,
                1015914,
                700190087,
                298623321,
                1993623,
                998091078,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82251-mj6mj4d39j4474",
              "images": [
                "id-11134207-82251-mj6mj4d39j4474",
                "sg-11134201-8258o-mg1pfvheq70s03",
                "sg-11134201-8258h-mg1pfvrs3f9l8d",
                "sg-11134201-8259s-mg1pfw2v94we7e",
                "sg-11134201-8257s-mg1pfwe21fri5d",
                "sg-11134201-8258w-mg1pfwlj6uq361",
                "sg-11134201-8258n-mg1pfx01zwg864",
                "sg-11134201-8259x-mg1pfxh0fwugab",
                "sg-11134201-8258q-mg1pfxpofk7j25"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760929440,
              "sold": 31,
              "historical_sold": 90,
              "liked": false,
              "liked_count": 7,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 23,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2580000000,
              "price_min": 2580000000,
              "price_max": 2580000000,
              "price_min_before_discount": 5428000000,
              "price_max_before_discount": 5428000000,
              "hidden_price_display": null,
              "price_before_discount": 5428000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-52%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black (case+strap)",
                    "Beige (case+strap)",
                    "Pink (case+strap)",
                    "Blue (case+strap)",
                    "Green (case+strap)",
                    "Black (strap)",
                    "Beige (strap)",
                    "Pink (strap)",
                    "Blue (strap)",
                    "Green (strap)",
                    "Red (strap)",
                    "Orange (strap)",
                    "Lime color (strap)",
                    "Teal (strap)",
                    "Purple color(strap)",
                    "Light blue (strap)",
                    "White (strap)",
                    "Black (case)",
                    "Beige (case)",
                    "Pink (case)",
                    "Blue (case)",
                    "Green (case)",
                    "Transparent (case)"
                  ],
                  "images": [
                    "sg-11134201-825a4-mg1pgaibmex6c9",
                    "sg-11134201-8257w-mg1pgat2ygw902",
                    "sg-11134201-8258t-mg1pgb6vclqmd4",
                    "sg-11134201-82592-mg1pgbfondho13",
                    "sg-11134201-8259h-mg1pgbqs74sv1a",
                    "sg-11134201-825ac-mg1pgc055t7113",
                    "sg-11134201-8259e-mg1pgc8h4tn13e",
                    "sg-11134201-825ad-mg1pgcgvrea75f",
                    "sg-11134201-8257z-mg1pgcppiz9q61",
                    "sg-11134201-8259n-mg1pgczqsrgufd",
                    "sg-11134201-8257s-mg1pgdak5wjv00",
                    "sg-11134201-825aj-mg1pgdl5zzm29f",
                    "sg-11134201-8258i-mg1pgdv7cky2eb",
                    "sg-11134201-8259y-mg1pge50xn9p30",
                    "sg-11134201-8258g-mg1pgeezzbil17",
                    "sg-11134201-825b2-mg1pget84zd403",
                    "sg-11134201-825b9-mg1pgf49qgp7d7",
                    "sg-11134201-8258v-mg1pgfez76kt78",
                    "sg-11134201-8259h-mg1pgfnwbitr6f",
                    "sg-11134201-8259k-mg1pgfxd2hvxa0",
                    "sg-11134201-8258g-mg1pgg71rz7u41",
                    "sg-11134201-82599-mg1pggycq87c4e",
                    "sg-11134201-8259d-mg1pgh9e3dajd9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.6521739130434785,
                "rating_count": [
                  23,
                  1,
                  0,
                  1,
                  2,
                  19
                ],
                "rcount_with_context": 6,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 746803109085184,
                "price": 2580000000,
                "strikethrough_price": 5428000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-52%",
                "model_id": 297034875015,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5428000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 90,
                "rounded_local_monthly_sold_count": 31,
                "local_monthly_sold_count_text": "31",
                "rounded_display_sold_count": 90,
                "display_sold_count_text": "90"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Wowstrap",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43225100381,
            "shopid": 1482478368,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj6mj4d39j4474\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059154,1059152,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,298933384,840990690654214,2048660,2048661,840955085144628,700765096,1400285055,1015914,700190087,298623321,1993623,998091078,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":700,\"model_id\":297034875015,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj6mj4d39j4474\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059154,1059152,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,298933384,840990690654214,2048660,2048661,840955085144628,700765096,1400285055,1015914,700190087,298623321,1993623,998091078,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":700,\"model_id\":297034875015,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43225100381",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 25747529806,
              "shopid": 74727677,
              "name": "Strap Xiaomi Redmi Watch 3 Active Tali Jam Silikon Polos Pengunci Pin-and-Tuck Softband Silicone",
              "label_ids": [
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                2023641,
                298938357,
                298888358,
                2018619,
                700005490,
                1049120,
                822059908662278,
                2048660,
                2048661,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                700765096,
                298463379,
                1718093079,
                1400285055,
                1015914,
                700190087,
                298468389,
                2098629,
                2098628,
                1718088045,
                298938368
              ],
              "image": "sg-11134201-82587-mgfekoam366l3e",
              "images": [
                "sg-11134201-82587-mgfekoam366l3e",
                "sg-11134201-825a2-mgfebcce9vym71",
                "sg-11134201-82590-mgfebchennda08",
                "sg-11134201-825bb-mgfebcmatnv164",
                "sg-11134201-82590-mgfebcr7t9fsb7",
                "sg-11134201-8259n-mgfebcwjv0ng7e",
                "sg-11134201-825aj-mgfebd1effuye6",
                "sg-11134201-8259s-mgfebd6j3rbd91",
                "sg-11134201-825b9-mgfebdb1njm61f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760895240,
              "sold": 63,
              "historical_sold": 119,
              "liked": false,
              "liked_count": 7,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 45,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2380000000,
              "price_min": 2380000000,
              "price_max": 2380000000,
              "price_min_before_discount": 4400000000,
              "price_max_before_discount": 4400000000,
              "hidden_price_display": null,
              "price_before_discount": 4400000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-46%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna Strap",
                  "options": [
                    "Hitam",
                    "Putih",
                    "Putih Gading",
                    "Ungu",
                    "Biru Muda",
                    "Biru Tua",
                    "Merah",
                    "Merah Muda",
                    "Hijau",
                    "Hijau Terang",
                    "Hijau Tentara",
                    "Oranye"
                  ],
                  "images": [
                    "sg-11134201-825ae-mgfebdtuwaofb3",
                    "sg-11134201-8257z-mgfebdzz2tcf7e",
                    "sg-11134201-825ar-mgfebe4xperv58",
                    "sg-11134201-825az-mgfebelvd8ne0c",
                    "sg-11134201-8258i-mgfebere0du319",
                    "sg-11134201-825a5-mgfebewm72tl07",
                    "sg-11134201-825a5-mgfebf2iroqzf1",
                    "sg-11134201-825b9-mgfebf9whg5off",
                    "sg-11134201-825a7-mgfebff7ljbda3",
                    "sg-11134201-8259u-mgfebfkth821fd",
                    "sg-11134201-8259j-mgfebfqbawwa44",
                    "sg-11134201-8257x-mgfebfw5q9l622"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Model Redmi",
                  "options": [
                    "Watch 3 Active"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.933333333333334,
                "rating_count": [
                  45,
                  0,
                  0,
                  0,
                  3,
                  42
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 6
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 392324266078636,
                "add_on_deal_label": "Kombo Hemat",
                "sub_type": 0,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 772383556829184,
                "price": 2380000000,
                "strikethrough_price": 4400000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-46%",
                "model_id": 262031952205,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4400000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 119,
                "rounded_local_monthly_sold_count": 63,
                "local_monthly_sold_count_text": "63",
                "rounded_display_sold_count": 119,
                "display_sold_count_text": "119"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Wourigin ",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 25747529806,
            "shopid": 74727677,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82587-mgfekoam366l3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,2023641,298938357,298888358,2018619,700005490,1049120,822059908662278,2048660,2048661,825465608493600,825465608494624,825465608499232,825465608497696,1119699,700765096,298463379,1718093079,1400285055,1015914,700190087,298468389,2098629,2098628,1718088045,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":119,\"model_id\":262031952205,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82587-mgfekoam366l3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,2023641,298938357,298888358,2018619,700005490,1049120,822059908662278,2048660,2048661,825465608493600,825465608494624,825465608499232,825465608497696,1119699,700765096,298463379,1718093079,1400285055,1015914,700190087,298468389,2098629,2098628,1718088045,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":119,\"model_id\":262031952205,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_25747529806",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42924931330,
              "shopid": 1224688845,
              "name": "Trail Loop Nylon Strap for Iwatch Series 11 10 9 8 7 6 5 4 SE 3 2 1 Ultra/ Ultra 3 2 I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500 49mm 46mm 45mm 38mm 40mm 41mm 42mm 44mm Tali Jam Sport Band for Tali Jam Tangan Smartwatch Apple Watch",
              "label_ids": [
                2018618,
                2153644,
                298888358,
                298938357,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059154,
                1059152,
                822059908662278,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                700765096,
                2213652,
                1015914,
                700190087,
                2098629,
                298468389,
                298938368,
                1718088045,
                2098628
              ],
              "image": "sg-11134201-82582-mfzf2hiy0qhbe6",
              "images": [
                "sg-11134201-82582-mfzf2hiy0qhbe6",
                "sg-11134201-825b2-mfzf2i9werrh36",
                "sg-11134201-82586-mfzf2ja65szza2",
                "sg-11134201-8259j-mfzf2karcg7ge1",
                "sg-11134201-825af-mfzf2lbmd2iy21",
                "sg-11134201-825ay-mfzf2m19179o2a",
                "sg-11134201-82583-mfzf2mvkrp5474",
                "sg-11134201-8258k-mfzf2nsjqz9p80",
                "sg-11134201-825a7-mfzf2on4t6vh48"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760790937,
              "sold": 29,
              "historical_sold": 58,
              "liked": false,
              "liked_count": 8,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 15,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2630000000,
              "price_min": 2630000000,
              "price_max": 2630000000,
              "price_min_before_discount": 5260000000,
              "price_max_before_discount": 5260000000,
              "hidden_price_display": null,
              "price_before_discount": 5260000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16000081704176057.mp4",
                  "thumb_url": "sg-11110106-7rbk7-lq061z1k28mz24",
                  "duration": 21,
                  "version": 2,
                  "vid": "sg-11110106-6khx9-lq061v73oig0c9",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16003221721516676.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16003221721516676.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16004081740781946.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16004081740781946.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16006711723489831.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16006711723489831.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16006731724808594.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16006731724808594.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16004091721245590.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16004091721245590.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16006591721245596.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16006591721245596.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16000081704176057.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16000081704176057.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16003251709327140.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16003251709327140.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16003241709327140.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16003241709327140.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16004111721245596.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16004111721245596.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16004101740781946.mp4",
                      "url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16004101740781946.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Beige",
                    "Black Gray",
                    "khaki",
                    "black",
                    "blue",
                    "green",
                    "star",
                    "Dark blue",
                    "Grey Green Assorted",
                    "Orange light",
                    "midnight"
                  ],
                  "images": [
                    "sg-11134201-8259p-mfzf31owasr288",
                    "sg-11134201-8257y-mfzf3295zgnd8c",
                    "sg-11134201-825ab-mfzf32vn2knh26",
                    "sg-11134201-825ak-mfzf33hyf5l5ea",
                    "sg-11134201-8259i-mfzf3427iqyz7b",
                    "sg-11134201-82595-mfzf34o2wv7y95",
                    "sg-11134201-825b4-mfzf35ax3y1867",
                    "sg-11134201-825ay-mfzf35zl61vzb4",
                    "sg-11134201-8258t-mfzf36pegz67db",
                    "sg-11134201-8259h-mfzf37ob24uh48",
                    "sg-11134201-82588-mfzf395mt1qh81"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  15,
                  0,
                  0,
                  0,
                  0,
                  15
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 392412463907329,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 784824206409728,
                "price": 2630000000,
                "strikethrough_price": 5260000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 262020146727,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5260000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 58,
                "rounded_local_monthly_sold_count": 29,
                "local_monthly_sold_count_text": "29",
                "rounded_display_sold_count": 58,
                "display_sold_count_text": "58"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KMAIXA Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42924931330,
            "shopid": 1224688845,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82582-mfzf2hiy0qhbe6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,298888358,298938357,1428713,1718087960,844931064601283,844931086908638,298463379,1059154,1059152,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1718093079,1119699,700765096,2213652,1015914,700190087,2098629,298468389,298938368,1718088045,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":704,\"model_id\":262020146727,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82582-mfzf2hiy0qhbe6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,298888358,298938357,1428713,1718087960,844931064601283,844931086908638,298463379,1059154,1059152,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608494624,825465608499232,1718093079,1119699,700765096,2213652,1015914,700190087,2098629,298468389,298938368,1718088045,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":704,\"model_id\":262020146727,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42924931330",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40274936560,
              "shopid": 1224688845,
              "name": "Silicone Strap Band for Iwatch Ultra 3 2 Ultra 49mm Series 11 10 9 8 7 46mm 42mm 41mm 45mm 44mm 40mm 38mm 42mm Apple Watch SE 3 6 3 4 5 2 1 Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500 Breathable Soft Accessories",
              "label_ids": [
                298938357,
                2018618,
                2153644,
                298888358,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059154,
                1059152,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1718093079,
                1119699,
                700765096,
                1015914,
                700190087,
                1400285055,
                2213652,
                2103651,
                2143613,
                700810055,
                2098629,
                2098628,
                298468389,
                1718088045,
                298938368
              ],
              "image": "sg-11134201-82588-mfzes6k3uubs70",
              "images": [
                "sg-11134201-82588-mfzes6k3uubs70",
                "sg-11134201-825a3-mfzes737cz66fa",
                "sg-11134201-825ab-mfzes7m2tslmec",
                "sg-11134201-8259w-mfzes83rhqmg06",
                "sg-11134201-825ap-mfzes8oyysqxb7",
                "sg-11134201-82582-mfzes97ruwpa85",
                "sg-11134201-825a5-mfzes9q0rsaz17",
                "sg-11134201-8259l-mfzesa9r6i2x00",
                "sg-11134201-8259t-mfzesarx39jg02"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760790452,
              "sold": 60,
              "historical_sold": 134,
              "liked": false,
              "liked_count": 19,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 52,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3290000000,
              "price_min": 3290000000,
              "price_max": 3290000000,
              "price_min_before_discount": 4620000000,
              "price_max_before_discount": 4620000000,
              "hidden_price_display": null,
              "price_before_discount": 4620000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-29%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8hu-mfyvfczhpvd691.16000081760757903.mp4",
                  "thumb_url": "sg-11110106-6v8hu-mfyvfczhpvd691_cover",
                  "duration": 22,
                  "version": 2,
                  "vid": "sg-11110106-6v8hu-mfyvfczhpvd691",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8hu-mfyvfczhpvd691.16000081760757903.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8hu-mfyvfczhpvd691.16000081760757903.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8hu-mfyvfczhpvd691.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Teal",
                    "White",
                    "Red",
                    "Pink",
                    "Olive",
                    "Mint",
                    "Green",
                    "Gray",
                    "Dark yellow",
                    "Coffee",
                    "Blue",
                    "Black white",
                    "Black Red Assorted",
                    "Black Gray",
                    "Black Blue",
                    "Black",
                    "Candy pink",
                    "Best Black",
                    "Bright white",
                    "Stone",
                    "khaki",
                    "blue&orange"
                  ],
                  "images": [
                    "sg-11134201-82596-mfzesnowtmob80",
                    "sg-11134201-825b7-mfzeso53so3vb0",
                    "sg-11134201-8259x-mfzesolc3ifge9",
                    "sg-11134201-825a5-mfzesp23mwb1d7",
                    "sg-11134201-8258i-mfzespigcgsve5",
                    "sg-11134201-825a8-mfzesq0s83kb4b",
                    "sg-11134201-8259k-mfzesqgkeux6b3",
                    "sg-11134201-8259v-mfzesqvki68a1f",
                    "sg-11134201-825al-mfzesrjtw7pn38",
                    "sg-11134201-8259b-mfzesrya8rnx59",
                    "sg-11134201-8258b-mfzesse6j0ni6b",
                    "sg-11134201-82588-mfzesstjkq3269",
                    "sg-11134201-8259a-mfzest9th5ov55",
                    "sg-11134201-8259w-mfzestrop1jd86",
                    "sg-11134201-8258y-mfzesu9oef4c8c",
                    "sg-11134201-825b7-mfzesuok4gegc9",
                    "sg-11134201-8257t-mfzesvbofdvx40",
                    "sg-11134201-825b2-mfzesw4ict1me4",
                    "sg-11134201-825ax-mfzeswxka9s9a5",
                    "sg-11134201-8258c-mfzesxppqyvfc7",
                    "sg-11134201-8258y-mfzesyi5pkb0c4",
                    "sg-11134201-82598-mfzeszb3fa4s13"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.75,
                "rating_count": [
                  52,
                  1,
                  1,
                  2,
                  2,
                  46
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 392412463907329,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 784824206409728,
                "price": 3290000000,
                "strikethrough_price": 4620000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-29%",
                "model_id": 297019863703,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4620000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 134,
                "rounded_local_monthly_sold_count": 60,
                "local_monthly_sold_count_text": "60",
                "rounded_display_sold_count": 134,
                "display_sold_count_text": "134"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KMAIXA Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40274936560,
            "shopid": 1224688845,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82588-mfzes6k3uubs70\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298938357,2018618,2153644,298888358,1428713,1718087960,844931064601283,844931086908638,298463379,1059154,1059152,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,1119699,700765096,1015914,700190087,1400285055,2213652,2103651,2143613,700810055,2098629,2098628,298468389,1718088045,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":705,\"model_id\":297019863703,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82588-mfzes6k3uubs70\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298938357,2018618,2153644,298888358,1428713,1718087960,844931064601283,844931086908638,298463379,1059154,1059152,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1718093079,1119699,700765096,1015914,700190087,1400285055,2213652,2103651,2143613,700810055,2098629,2098628,298468389,1718088045,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":705,\"model_id\":297019863703,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40274936560",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27043126858,
              "shopid": 321826221,
              "name": "SNAPFIT Strap Compatible for Apple Watch S11 Watch Ultra 2 49 45 44 42 mm SNAPFIT Leather Cowhide Kulit Strap",
              "label_ids": [
                1002164,
                2153644,
                2018618,
                1011692,
                1012729,
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608497696,
                825465608493600,
                825465608494624,
                825465608499232,
                1119699,
                2048660,
                2048661,
                700765096,
                2213652,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8257y-mfza4bevcgzs15",
              "images": [
                "sg-11134201-8257y-mfza4bevcgzs15",
                "sg-11134201-825b5-mfza4bvvjndb0c",
                "sg-11134201-825ad-mfza4c843nym73",
                "sg-11134201-825b9-mfza4cj9zpcfea",
                "sg-11134201-82586-mfza4cpn5c7i1e",
                "sg-11134201-825a5-mfza4cv0en0q10",
                "sg-11134201-82586-mfza4d0k0utr6e",
                "sg-11134201-825a8-mfza4d5a2fbddd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760782609,
              "sold": 4,
              "historical_sold": 4,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 25900000000,
              "price_min": 25900000000,
              "price_max": 25900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv7-mgdgay5m4qa328.16000081761640493.mp4",
                  "thumb_url": "id-11110105-6vdv7-mgdgay5m4qa328_cover",
                  "duration": 52,
                  "version": 2,
                  "vid": "id-11110105-6vdv7-mgdgay5m4qa328",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv7-mgdgay5m4qa328.16000081761640493.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv7-mgdgay5m4qa328.16000081761640493.mp4",
                      "width": 720,
                      "height": 1282
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv7-mgdgay5m4qa328.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Brown",
                    "Dark Brown",
                    "Red Brown",
                    "White",
                    "Dark Blue"
                  ],
                  "images": [
                    "sg-11134201-8257s-mfza4dcxghzc47",
                    "sg-11134201-8258n-mfza4dhrabke5c",
                    "sg-11134201-8259d-mfza4dnmlxqjce",
                    "sg-11134201-8259b-mfza4dvgk1e697",
                    "sg-11134201-825aj-mfza4e1b277y5e",
                    "sg-11134201-825b7-mfza4e74jua30d"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 25382000000,
                "strikethrough_price": 25900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1320677190025244,
                "discount_text": null,
                "model_id": 272018796873,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1320677190025244,
                  "voucher_code": "PRIMJAN2C",
                  "voucher_discount": 518000000,
                  "time_info": {
                    "start_time": 1767200460,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 15000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 25900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 4,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 4,
                "display_sold_count_text": "4"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Primary Cares Official",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 27043126858,
            "shopid": 321826221,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8257y-mfza4bevcgzs15\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,2153644,2018618,1011692,1012729,1718087960,1428713,844931064601283,298463379,1059154,1059152,1718093079,822059908662278,825465608497696,825465608493600,825465608494624,825465608499232,1119699,2048660,2048661,700765096,2213652,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":706,\"model_id\":272018796873,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8257y-mfza4bevcgzs15\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,2153644,2018618,1011692,1012729,1718087960,1428713,844931064601283,298463379,1059154,1059152,1718093079,822059908662278,825465608497696,825465608493600,825465608494624,825465608499232,1119699,2048660,2048661,700765096,2213652,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":706,\"model_id\":272018796873,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27043126858",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41574907100,
              "shopid": 1578972965,
              "name": "[COD]SUMSUNG SmartWatch 10PRO MAX Waterproof Bluetooth Call JamSmartwatch Wanita Pria Monitor DetakJantung Tekanan Darah wireless chargingDan Ganti Wallpapper Jam Tangan WanitaJam Tangan Couple Jam Tangan DigitalWanita",
              "label_ids": [
                700700063,
                2018619,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                700005489,
                1059152,
                822059908662278,
                825465608499232,
                1718093079,
                1119699,
                1015914,
                700190087,
                1400285055,
                2023641,
                298933384,
                299103323,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224z-miphx1uaa32gcc",
              "images": [
                "id-11134207-8224z-miphx1uaa32gcc",
                "id-11134207-8224o-mgge5fida0wbc8",
                "id-11134207-82251-mfz8abub55vy91",
                "id-11134207-82251-mfz8abub6kge6a",
                "id-11134207-8224t-mfz8abub7z0u7d",
                "id-11134207-8224r-mfz8abub9dla3c",
                "id-11134207-82251-mfz8abubas5qd4",
                "id-11134207-8224o-mfz8abubc6q6c7",
                "id-11134207-8224u-mfz8abubdlam6a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760779952,
              "sold": 93,
              "historical_sold": 273,
              "liked": false,
              "liked_count": 244,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 156,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 8449600000,
              "price_min": 8449600000,
              "price_max": 8449600000,
              "price_min_before_discount": 36999900000,
              "price_max_before_discount": 36999900000,
              "hidden_price_display": null,
              "price_before_discount": 36999900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-77%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven7-mfz8dqvr60p581.16000081760779690.mp4",
                  "thumb_url": "id-11110105-6ven7-mfz8dqvr60p581_cover",
                  "duration": 44,
                  "version": 2,
                  "vid": "id-11110105-6ven7-mfz8dqvr60p581",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven7-mfz8dqvr60p581.16000081760779690.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven7-mfz8dqvr60p581.16000081760779690.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven7-mfz8dqvr60p581.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "S11 PRO MAX Black",
                    "S11 PRO MAX Pink",
                    "S11 PRO MAX Blue",
                    "S11 PRO MAX White",
                    "S11 PROMAX Starlight",
                    "S10 PRO MAX Black",
                    "S10 PRO MAX Pink",
                    "S10 PRO MAX Blue",
                    "S10 PRO MAX White",
                    "S10 PROMAX Starlight",
                    "S9 PRO MAX Black",
                    "S9 PRO MAX Pink",
                    "S8 PRO MAX Black",
                    "WATCH",
                    "tali jam tangan"
                  ],
                  "images": [
                    "id-11134207-8224x-mjdjp9d4r66f49",
                    "id-11134207-82251-mjdjp9d4skqv5c",
                    "id-11134207-8224z-mjdjp9d4tzbb2c",
                    "id-11134207-82250-mjdjp9d4vdvr57",
                    "id-11134207-82251-mjdjp9d4wsg775",
                    "id-11134207-8224y-mipdxtmph2iv66",
                    "id-11134207-8224v-mipdxtmunw1y16",
                    "id-11134207-82251-mipdxtmumhhic8",
                    "id-11134207-8224y-mipdxtmupamea0",
                    "id-11134207-8224o-mipdxtmuqp6u2c",
                    "id-11134207-8224s-mipdxtmutibq77",
                    "id-11134207-8224z-mipdxtmuwbgmfe",
                    "id-11134207-82250-mipdxtmuxq1297",
                    "id-11134207-8224u-mfz8hgwydwjv29",
                    "id-11134207-8224o-mjbhzrqc64g019"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.884615384615385,
                "rating_count": [
                  156,
                  1,
                  0,
                  1,
                  12,
                  142
                ],
                "rcount_with_context": 99,
                "rcount_with_image": 93
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 767344629039104,
                "price": 8449600000,
                "strikethrough_price": 36999900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-77%",
                "model_id": 340416146336,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 36999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 273,
                "rounded_local_monthly_sold_count": 93,
                "local_monthly_sold_count_text": "93",
                "rounded_display_sold_count": 273,
                "display_sold_count_text": "273"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Smart watch pengecer",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41574907100,
            "shopid": 1578972965,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-miphx1uaa32gcc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,1428713,1718087960,844931064601283,844931086908638,298463379,700005489,1059152,822059908662278,825465608499232,1718093079,1119699,1015914,700190087,1400285055,2023641,298933384,299103323,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":707,\"model_id\":340416146336,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-miphx1uaa32gcc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,1428713,1718087960,844931064601283,844931086908638,298463379,700005489,1059152,822059908662278,825465608499232,1718093079,1119699,1015914,700190087,1400285055,2023641,298933384,299103323,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":707,\"model_id\":340416146336,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41574907100",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40624900441,
              "shopid": 1173283244,
              "name": "Strap Imoo 15mm Strap Imoo Z5\\y06\\z6\\z7\\z8\\z9\\d2\\d3\\q1\\q2 Strap Smart Watch Strap Jam Tangan Smartwatch",
              "label_ids": [
                2018619,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1718093079,
                1049112,
                700005512,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224q-mfz6jiwitxccc4",
              "images": [
                "id-11134207-8224q-mfz6jiwitxccc4",
                "id-11134207-8224u-mfz6jiwisirw71",
                "id-11134207-8224s-mfz6jiwiwqh8bb",
                "id-11134207-8224p-mfz6jiwivbws67",
                "id-11134207-8224y-mfz6jiwiy51oea",
                "id-11134207-8224x-mfz6jiwizjm4cf",
                "id-11134207-8224r-mfz6jiwj0y6k48",
                "id-11134207-8224x-mfz6jiwj2cr070",
                "id-11134207-8224u-mfz6jiwj3rbgbb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760776768,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3900000000,
              "price_min": 3900000000,
              "price_max": 3900000000,
              "price_min_before_discount": 7800000000,
              "price_max_before_discount": 7800000000,
              "hidden_price_display": null,
              "price_before_discount": 7800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vemx-mfz6l4eo3f9r55.16000081760776672.mp4",
                  "thumb_url": "id-11110105-6vemx-mfz6l4eo3f9r55_cover",
                  "duration": 24,
                  "version": 2,
                  "vid": "id-11110105-6vemx-mfz6l4eo3f9r55",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vemx-mfz6l4eo3f9r55.16000081760776672.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemx-mfz6l4eo3f9r55.16000081760776672.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemx-mfz6l4eo3f9r55.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Biru",
                    "Merah muda",
                    "Hijau"
                  ],
                  "images": [
                    "id-11134207-8224s-mfz6999lk0ei49",
                    "id-11134207-82251-mfz6b5100f0r15",
                    "id-11134207-82251-mfz6b50w85xpb8"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 390820096393747,
                "bundle_deal_label": "Pilih 3, diskon 3%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 754761314385920,
                "price": 3900000000,
                "strikethrough_price": 7800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 249042404283,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7800000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Berkah_Bazaar",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40624900441,
            "shopid": 1173283244,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mfz6jiwitxccc4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,1049112,700005512,822059908662278,825465608494624,825465608499232,825465608497696,1119699,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":708,\"model_id\":249042404283,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mfz6jiwitxccc4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,1049112,700005512,822059908662278,825465608494624,825465608499232,825465608497696,1119699,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":708,\"model_id\":249042404283,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40624900441",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41224882088,
              "shopid": 720115227,
              "name": "Aksesori Wajib AirTag Untuk Peliharaan Case Kerah Anjing Anti Air Perekat Kuat Aman Dan Nyaman Untuk Kucing Anjing",
              "label_ids": [
                1143621,
                700700063,
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                700005495,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                1119699,
                298933384,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8259u-mfz53qe947iie6",
              "images": [
                "sg-11134201-8259u-mfz53qe947iie6",
                "sg-11134201-825az-mfz3dtnrlfd91d",
                "sg-11134201-825ax-mfz3dtvos45r59",
                "sg-11134201-8259b-mfz3du45cvm282",
                "sg-11134201-825bb-mfz3ducyayof7a",
                "sg-11134201-825ad-mfz3dupe1ix93d",
                "sg-11134201-825aq-mfz3duzeq8lp7a",
                "sg-11134201-825bc-mfz3dv9542rs57",
                "sg-11134201-8257s-mfz3dvexifii0b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760771281,
              "sold": 1,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2850000000,
              "price_min": 2850000000,
              "price_max": 2850000000,
              "price_min_before_discount": 5700000000,
              "price_max_before_discount": 5700000000,
              "hidden_price_display": null,
              "price_before_discount": 5700000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8hi-mfz3b39xltze81.16000081760771159.mp4",
                  "thumb_url": "sg-11110106-6v8hi-mfz3b39xltze81_cover",
                  "duration": 59,
                  "version": 2,
                  "vid": "sg-11110106-6v8hi-mfz3b39xltze81",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8hi-mfz3b39xltze81.16000081760771159.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8hi-mfz3b39xltze81.16000081760771159.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8hi-mfz3b39xltze81.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam"
                  ],
                  "images": [
                    "sg-11134201-8259k-mfz3dvldv7d4cf"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 383681642640789,
                "bundle_deal_label": "Pilih 3, diskon 2%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 703507657654272,
                "price": 2850000000,
                "strikethrough_price": 5700000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 249041998680,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5700000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "meetqlt.mall",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41224882088,
            "shopid": 720115227,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8259u-mfz53qe947iie6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1143621,700700063,2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,1119699,298933384,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":709,\"model_id\":249041998680,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8259u-mfz53qe947iie6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1143621,700700063,2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,1119699,298933384,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":709,\"model_id\":249041998680,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41224882088",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40124859093,
              "shopid": 1588294952,
              "name": "Apple Watch Series 4 40mm/44mm MulusLike NEW Bergaransi",
              "label_ids": [
                1400066568,
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82251-mfyvp68vyrrfc5",
              "images": [
                "id-11134207-82251-mfyvp68vyrrfc5",
                "id-11134207-8224o-mfyvp68w06bv2e",
                "id-11134207-8224u-mfyvp68w1kwb2c",
                "id-11134207-8224z-mfyxmvmxyrd605"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760762680,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 19,
              "view_count": null,
              "catid": 100013,
              "brand": "Apple Watch",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 127900000000,
              "price_min": 127900000000,
              "price_max": 127900000000,
              "price_min_before_discount": 130000000000,
              "price_max_before_discount": 130000000000,
              "hidden_price_display": null,
              "price_before_discount": 130000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-2%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "SERIES",
                  "options": [
                    "SERIES 4"
                  ],
                  "images": [
                    "id-11134207-8224y-mfyxmvmy05xma8"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "WARNA",
                  "options": [
                    "BLACK 40MM",
                    "GOLD 40MM",
                    "BLACK 44MM"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 767232582402048,
                "price": 127900000000,
                "strikethrough_price": 130000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-2%",
                "model_id": 292014994874,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 130000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Apple Sure91",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40124859093,
            "shopid": 1588294952,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mfyvp68vyrrfc5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,2023641,1428713,1718087960,844931064601283,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":710,\"model_id\":292014994874,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mfyvp68vyrrfc5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,2023641,1428713,1718087960,844931064601283,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":710,\"model_id\":292014994874,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40124859093",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28293127547,
              "shopid": 1164480617,
              "name": "Perekam Gprs Mendukung Operasi Jarak Jauh Gf07 Gps Lokasi Ponsel Pelacak Mini Anti Hilang Kemasan Kotak Gps Alat",
              "label_ids": [
                2018619,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                700005495,
                700005490,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384,
                700810080,
                1015914,
                700190087
              ],
              "image": "id-11134207-7r98o-lkltglbtpv730d",
              "images": [
                "id-11134207-7r98o-lkltglbtpv730d",
                "id-11134207-7r98o-lkltglbtpuow2a",
                "id-11134207-7r98o-lkltglbtpv7t0d",
                "id-11134207-7r98o-lkltglbtpulnb3",
                "id-11134207-7r98o-lkltglbu5b8187",
                "id-11134207-7r98o-lkltglbu5b8r29",
                "id-11134207-7r98o-lkltglbtpv0fa0",
                "id-11134207-7r98o-lkltglbtpv6d0f",
                "id-11134207-7r98o-lkltglbtpuz5db"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760760811,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 9360000000,
              "price_min": 9360000000,
              "price_max": 9360000000,
              "price_min_before_discount": 24680300000,
              "price_max_before_discount": 24680300000,
              "hidden_price_display": null,
              "price_before_discount": 24680300000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-62%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Gaya",
                  "options": [
                    "GF-07"
                  ],
                  "images": [
                    "id-11134207-7r98o-lkltglbtr9qtc6"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 364436963734297,
                "bundle_deal_label": "Pilih 3, diskon 2%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 830363610431488,
                "price": 9260000000,
                "strikethrough_price": 24680300000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1317934786560004,
                "discount_text": "-62%",
                "model_id": 262015004845,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1317934786560004,
                  "voucher_code": "U3YL12345",
                  "voucher_discount": 100000000,
                  "time_info": {
                    "start_time": 1766570400,
                    "end_time": 1772297940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 3000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 24680300000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "My Car",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 28293127547,
            "shopid": 1164480617,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98o-lkltglbtpv730d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,844931086908638,700005495,700005490,822059908662278,825465608499232,825465608497696,1718093079,1119699,298933384,700810080,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":711,\"model_id\":262015004845,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98o-lkltglbtpv730d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,844931086908638,700005495,700005490,822059908662278,825465608499232,825465608497696,1718093079,1119699,298933384,700810080,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":711,\"model_id\":262015004845,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28293127547",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40774854247,
              "shopid": 1512672355,
              "name": "IOS Smart Tag Locator Bluetooth/GPS Tracker/Locator Smart Tracker/Wireless with Alarm/ Smart Tracker/Find My Support / Pelacak Lokasi Pintar for Apple Find My Airtag",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8259p-mfyu2oh2p2q30d",
              "images": [
                "sg-11134201-8259p-mfyu2oh2p2q30d",
                "sg-11134201-8259w-mfyu2opc7ojx71",
                "sg-11134201-8257t-mfyu2oua94ax38",
                "sg-11134201-8258y-mfyu2ozvjs3s31",
                "sg-11134201-825aa-mfyu2p7da8098f",
                "sg-11134201-825a0-mfyu2pe8w7wub4",
                "sg-11134201-825ac-mfyu2prczaj2db",
                "sg-11134201-8258f-mfyu2pxx1ibz66",
                "sg-11134201-8259j-mfyu2q5jqccubf"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760755627,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 7800000000,
              "price_min": 7800000000,
              "price_max": 7800000000,
              "price_min_before_discount": 19180000000,
              "price_max_before_discount": 19180000000,
              "hidden_price_display": null,
              "price_before_discount": 19180000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-59%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8hs-mfytzpq0l43u45.16000081760755491.mp4",
                  "thumb_url": "sg-11110106-6v8hs-mfytzpq0l43u45_cover",
                  "duration": 21,
                  "version": 2,
                  "vid": "sg-11110106-6v8hs-mfytzpq0l43u45",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8hs-mfytzpq0l43u45.16000081760755491.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8hs-mfytzpq0l43u45.16000081760755491.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8hs-mfytzpq0l43u45.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "White"
                  ],
                  "images": [
                    "sg-11134201-825b9-mfyu2qbk1ssv12",
                    "sg-11134201-8259d-mfyu2qimomx6c5"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 364786022105620,
                "bundle_deal_label": "Pilih 3, diskon 3%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 754949554749440,
                "price": 7800000000,
                "strikethrough_price": 19180000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-59%",
                "model_id": 287013881663,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 19180000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Kagura(ใ‹ใใ‚‰)",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40774854247,
            "shopid": 1512672355,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8259p-mfyu2oh2p2q30d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059154,1059152,1718093079,822059908662278,825465608497696,825465608499232,1119699,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":712,\"model_id\":287013881663,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8259p-mfyu2oh2p2q30d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059154,1059152,1718093079,822059908662278,825465608497696,825465608499232,1119699,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":712,\"model_id\":287013881663,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40774854247",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44174842931,
              "shopid": 1512598257,
              "name": "IOS Locator Smart Tracker/Smart Tag Locator Bluetooth/Wireless with Alarm/for Apple Find My Airtag",
              "label_ids": [
                2018619,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-825a6-mfysd88ds2dl37",
              "images": [
                "sg-11134201-825a6-mfysd88ds2dl37",
                "sg-11134201-825a0-mfysd8fm3zf0a9",
                "sg-11134201-82590-mfysd8l32q6m6d",
                "sg-11134201-8258z-mfysd8s1f1u3d5",
                "sg-11134201-825ac-mfysd8xwe0wc70",
                "sg-11134201-825b2-mfysd937kvm0cf",
                "sg-11134201-825ab-mfysd990g3633e",
                "sg-11134201-825b1-mfysd9emzp5527",
                "sg-11134201-82594-mfysd9jx4mix28"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760752757,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 7800000000,
              "price_min": 7800000000,
              "price_max": 7800000000,
              "price_min_before_discount": 20300000000,
              "price_max_before_discount": 20300000000,
              "hidden_price_display": null,
              "price_before_discount": 20300000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-62%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8gu-mfys53e5sq2w32.16000081760752377.mp4",
                  "thumb_url": "sg-11110106-6v8gu-mfys53e5sq2w32_cover",
                  "duration": 21,
                  "version": 2,
                  "vid": "sg-11110106-6v8gu-mfys53e5sq2w32",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8gu-mfys53e5sq2w32.16000081760752377.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8gu-mfys53e5sq2w32.16000081760752377.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8gu-mfys53e5sq2w32.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "White"
                  ],
                  "images": [
                    "sg-11134201-825ad-mfysd9r3e3gr6b",
                    "sg-11134201-82592-mfti8tgoyxvt31"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 364756334821469,
                "bundle_deal_label": "Pilih 2, diskon 3%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 754944555139072,
                "price": 7800000000,
                "strikethrough_price": 20300000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-62%",
                "model_id": 297013410628,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 20300000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gintoki๏ผˆใจใ†ใถใ‚“๏ผ‰",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44174842931,
            "shopid": 1512598257,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825a6-mfysd88ds2dl37\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":713,\"model_id\":297013410628,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825a6-mfysd88ds2dl37\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":713,\"model_id\":297013410628,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44174842931",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42424846979,
              "shopid": 1496409734,
              "name": "Silicone Rubber Case for IWatch Apple Watch Ultra 3 2 Series 11 10 9 8 7 6 5 4 SE 3 2 49mm 46mm 42mm 45mm 44mm 40mm 41mm 38mm Soft Candy Screen Protector Anti Gores Silikon Material Cover Bumper Jam Tangan Smartwatch for DT No 1 HW22 W26 IWO",
              "label_ids": [
                2018619,
                2023641,
                298513322,
                700025282,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                700765096,
                1015914,
                700190087,
                1400285055,
                298623321,
                1993623,
                998091078,
                2103651,
                2143613,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-825a8-mfyrlkmor66n29",
              "images": [
                "sg-11134201-825a8-mfyrlkmor66n29",
                "sg-11134201-825b1-mfyrll8rvevc7a",
                "sg-11134201-825ar-mfyrllmf5jbcb5",
                "sg-11134201-8258a-mfyrlm9381e48e",
                "sg-11134201-825a7-mfyrlmohskju1a",
                "sg-11134201-8258p-mfyrln2ruz2g19",
                "sg-11134201-825b5-mfyrlnijw45m8a",
                "sg-11134201-825b9-mfyrlnv1p2xb64",
                "sg-11134201-8258y-mfyrlo2usa2yf3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760751467,
              "sold": 28,
              "historical_sold": 64,
              "liked": false,
              "liked_count": 7,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 14,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1040000000,
              "price_min": 1040000000,
              "price_max": 1040000000,
              "price_min_before_discount": 1898000000,
              "price_max_before_discount": 1898000000,
              "hidden_price_display": null,
              "price_before_discount": 1898000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-45%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kios-mc7ai4elnzk0e6.16000081752550575.mp4",
                  "thumb_url": "sg-11110106-6kios-mc7ai4elnzk0e6_cover",
                  "duration": 38,
                  "version": 2,
                  "vid": "sg-11110106-6kios-mc7ai4elnzk0e6",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kios-mc7ai4elnzk0e6.16006711755921755.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kios-mc7ai4elnzk0e6.16006711755921755.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kios-mc7ai4elnzk0e6.16000081752550575.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kios-mc7ai4elnzk0e6.16000081752550575.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kios-mc7ai4elnzk0e6.16003251755921755.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kios-mc7ai4elnzk0e6.16003251755921755.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kios-mc7ai4elnzk0e6.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Pink(case)",
                    "lavender(case)",
                    "black(case)",
                    "baby pink(case)",
                    "white(case)",
                    "Star(case)",
                    "dark gray(case)",
                    "midnight blue(case)",
                    "yellow(case)",
                    "green(case)"
                  ],
                  "images": [
                    "sg-11134201-825b5-mfyrm0x0ac5l1f",
                    "sg-11134201-82581-mfyrm1fp302244",
                    "sg-11134201-8259r-mfyrm1pk41e5e7",
                    "sg-11134201-8259f-mfyrm2arp9mw93",
                    "sg-11134201-82588-mfyrm2s3rgng5e",
                    "sg-11134201-825bc-mfyrm36lpp1k75",
                    "sg-11134201-825ay-mfyrm3oojhmxef",
                    "sg-11134201-8257v-mfyrm445na4s40",
                    "sg-11134201-825a3-mfyrm4ip47ila7",
                    "sg-11134201-8258a-mfyrm52wkrgp23"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Watch Size",
                  "options": [
                    "41mm",
                    "49mm",
                    "44mm",
                    "38mm",
                    "40mm",
                    "45mm",
                    "42mm",
                    "46mm Series 11 10",
                    "42mm Series 11 10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.928571428571429,
                "rating_count": [
                  14,
                  0,
                  0,
                  0,
                  1,
                  13
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 225635054403584,
                "price": 1040000000,
                "strikethrough_price": 1898000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-45%",
                "model_id": 282013246439,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1898000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 64,
                "rounded_local_monthly_sold_count": 28,
                "local_monthly_sold_count_text": "28",
                "rounded_display_sold_count": 64,
                "display_sold_count_text": "64"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BXUXOHS",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE4N197YjExYmEzYWY0ODU1ODEzMjY0ODk0MGRhZTY4ZWYyMDA6MDIwMDAwNmJmZGJmNzM1MzowMTAwMDEwY2ZjN2Q3ZTQzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDYwMjQ2Nzc3Mg==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42424846979,
            "shopid": 1496409734,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825a8-mfyrlkmor66n29\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298513322,700025282,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,298933384,840990690654214,2048660,2048661,840955085144628,700765096,1015914,700190087,1400285055,298623321,1993623,998091078,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":714,\"model_id\":282013246439,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825a8-mfyrlkmor66n29\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,298513322,700025282,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,298933384,840990690654214,2048660,2048661,840955085144628,700765096,1015914,700190087,1400285055,298623321,1993623,998091078,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":714,\"model_id\":282013246439,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42424846979",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41474733881,
              "shopid": 1482501769,
              "name": "Soft Elastic Nylon Strap PC Case for Mi Band 9 Active /8 Active Magnetic Buckle Braided Scrunchie Band Adjustable Belt Anti Gores Screen Protector Cover Accessories Tali Jam Tangan Smartwatch for Redmi Band 3 2",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                2018619,
                2023641,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1119699,
                298933384,
                2048661,
                840955085144628,
                840990690654214,
                2048660,
                700765096,
                1400285055,
                1015914,
                700190087,
                2103651,
                2143613,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-825a0-mfxuwc99ywwd4d",
              "images": [
                "sg-11134201-825a0-mfxuwc99ywwd4d",
                "sg-11134201-825a9-mfxuwcp5qux59e",
                "sg-11134201-825aa-mfxuwdjc7q4ue3",
                "sg-11134201-82580-mfxuweof8vex5d",
                "sg-11134201-8259n-mfxuwf5zfa4qa5",
                "sg-11134201-825b1-mfxuwfh46jgs13",
                "sg-11134201-825b5-mfxuwg2abua4a3",
                "sg-11134201-82588-mfxuwgcqxnns20",
                "sg-11134201-825b0-mfxuwgsonu3230"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760696482,
              "sold": 69,
              "historical_sold": 77,
              "liked": false,
              "liked_count": 24,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 27,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3211000000,
              "price_min": 3211000000,
              "price_max": 3211000000,
              "price_min_before_discount": 6980000000,
              "price_max_before_discount": 6980000000,
              "hidden_price_display": null,
              "price_before_discount": 6980000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kioq-mans7hed74upa8.16000081749190413.mp4",
                  "thumb_url": "sg-11110106-6kioq-mans7hed74upa8_cover",
                  "duration": 46,
                  "version": 2,
                  "vid": "sg-11110106-6kioq-mans7hed74upa8",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kioq-mans7hed74upa8.16006711754786298.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kioq-mans7hed74upa8.16006711754786298.mp4",
                      "width": 1028,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kioq-mans7hed74upa8.16000081749190413.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kioq-mans7hed74upa8.16000081749190413.mp4",
                      "width": 1280,
                      "height": 672
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kioq-mans7hed74upa8.16003251754786298.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kioq-mans7hed74upa8.16003251754786298.mp4",
                      "width": 1280,
                      "height": 672
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kioq-mans7hed74upa8.default.mp4",
                    "width": 1028,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Red 2(Case Strap)",
                    "Star(Case Strap)",
                    "Dark(Case Strap)",
                    "Powder(Case Strap)",
                    "Blue 2(Case Strap)",
                    "Red(Case Strap)",
                    "Black 2(Case Strap)",
                    "Pink 2(Case Strap)",
                    "Rainbow(Case Strap)",
                    "Black(Case Strap)",
                    "Green(Case Strap)",
                    "Denim(Case Strap)",
                    "Grey(Case Strap)",
                    "Blue(Case Strap)"
                  ],
                  "images": [
                    "sg-11134201-8258l-mfxuwtnv9te2db",
                    "sg-11134201-825az-mfxuwtyfb8r340",
                    "sg-11134201-8259a-mfxuwuakwjrh03",
                    "sg-11134201-8257y-mfxuwuimxeyw76",
                    "sg-11134201-8259v-mfxuwuuiq3ux84",
                    "sg-11134201-8258a-mfxuwv3iw1zjc6",
                    "sg-11134201-825ac-mfxuwvc30qa6f6",
                    "sg-11134201-8259g-mfxuwvmwta1a1b",
                    "sg-11134201-8259h-mfxuwvw1jm6la0",
                    "sg-11134201-825aj-mfxuww3zuzv3ba",
                    "sg-11134201-82598-mfxuwwd2aexa76",
                    "sg-11134201-8259j-mfxuwwm3l53if6",
                    "sg-11134201-8259i-mfxuwx28ly4v95",
                    "sg-11134201-8259j-mfxuwxbm756wf2"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Variation",
                  "options": [
                    "Mi band 9 active",
                    "Redmi watch 3",
                    "Mi band 8 active",
                    "Redmi watch 2"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.962962962962963,
                "rating_count": [
                  27,
                  0,
                  0,
                  0,
                  1,
                  26
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372023830524999,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 3211000000,
                "strikethrough_price": 6980000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 307004623029,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6980000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 32.110",
                      "hidden_promotion_price": "Rp ?2.110",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 77,
                "rounded_local_monthly_sold_count": 69,
                "local_monthly_sold_count_text": "69",
                "rounded_display_sold_count": 77,
                "display_sold_count_text": "77"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KILPILLS",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41474733881,
            "shopid": 1482501769,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825a0-mfxuwc99ywwd4d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,2018619,2023641,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,1119699,298933384,2048661,840955085144628,840990690654214,2048660,700765096,1400285055,1015914,700190087,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":716,\"model_id\":307004623029,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825a0-mfxuwc99ywwd4d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,2018619,2023641,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,1119699,298933384,2048661,840955085144628,840990690654214,2048660,700765096,1400285055,1015914,700190087,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":716,\"model_id\":307004623029,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41474733881",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41624732880,
              "shopid": 1025397556,
              "name": "SNAPFIT Case Apple Watch S11 Watch Ultra 2 49 46 45 mm SNAPFIT Alumunium Alloy Protective Cover Casing - Primary Focuss",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                298463379,
                700700063,
                2018619,
                1718093079,
                1119699,
                700765096,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                825465608493600,
                825465608494624,
                2023641,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-825a4-mfxulnzpebrh0e",
              "images": [
                "sg-11134201-825a4-mfxulnzpebrh0e",
                "sg-11134201-825b5-mfxuloaa991me3",
                "sg-11134201-8258k-mfxulojmv8r0ca",
                "sg-11134201-8257x-mfxulospdiix9f",
                "sg-11134201-825ay-mfxulp36kefc38",
                "sg-11134201-8258o-mfxulpcdmxhl81",
                "sg-11134201-8259n-mfxulplbp0y6a6",
                "sg-11134201-8259o-mfxulpty0bgqae"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760695980,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 18900000000,
              "price_min": 18900000000,
              "price_max": 18900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvn-mgdj5rjyiz2hc8.16000081761645296.mp4",
                  "thumb_url": "id-11110105-6vdvn-mgdj5rjyiz2hc8_cover",
                  "duration": 40,
                  "version": 2,
                  "vid": "id-11110105-6vdvn-mgdj5rjyiz2hc8",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvn-mgdj5rjyiz2hc8.16000081761645296.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvn-mgdj5rjyiz2hc8.16000081761645296.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvn-mgdj5rjyiz2hc8.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black"
                  ],
                  "images": [
                    "sg-11134201-82586-mfxulq4jos9630"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ukuran",
                  "options": [
                    "45MM",
                    "46MM",
                    "49MM"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 18333000000,
                "strikethrough_price": 18900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1320682617978896,
                "discount_text": null,
                "model_id": 267004533985,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1320682617978896,
                  "voucher_code": "PRIM3FCSJ",
                  "voucher_discount": 567000000,
                  "time_info": {
                    "start_time": 1767200460,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 10000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 18900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Primary Focuss",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41624732880,
            "shopid": 1025397556,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825a4-mfxulnzpebrh0e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,700700063,2018619,1718093079,1119699,700765096,1059152,1059154,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,825465608494624,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":717,\"model_id\":267004533985,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825a4-mfxulnzpebrh0e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,700700063,2018619,1718093079,1119699,700765096,1059152,1059154,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,825465608494624,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":717,\"model_id\":267004533985,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41624732880",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41574677276,
              "shopid": 1606678681,
              "name": "Loopline Silicone Bumper Case Mi Band 10/9/8 Softcase Lucu Xiaomi Mi Band 8 Mi Band 9 Silicone Polos Warna Model Telinga Lucu",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                298463379,
                844931064601283,
                844931086908638,
                1718093079,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1400285055,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-82588-mfxqpzqxxyx597",
              "images": [
                "sg-11134201-82588-mfxqpzqxxyx597",
                "sg-11134201-8259u-mfxqpzwbmpzg29",
                "sg-11134201-8258z-mfxqq02giham48",
                "sg-11134201-825a9-mfxqq07m8oi54a",
                "sg-11134201-825aw-mfxqq0cjkvm02e",
                "sg-11134201-8258y-mfxqq0i1d5vx5f",
                "sg-11134201-825aw-mfxqq0n177rd2c",
                "sg-11134201-825ae-mfxqq0rtmfbi84",
                "sg-11134201-8257v-mfxqq0wsg00f25"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760689461,
              "sold": 11,
              "historical_sold": 41,
              "liked": false,
              "liked_count": 36,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 13,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3566200000,
              "price_min": 3566200000,
              "price_max": 3566200000,
              "price_min_before_discount": 4099000000,
              "price_max_before_discount": 4099000000,
              "hidden_price_display": null,
              "price_before_discount": 4099000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-13%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Case Jerapah",
                    "Case Kelinci White",
                    "Case Kelinci Hitam",
                    "Case Kelinci Pink",
                    "Case Kelinci Cream",
                    "Case Meong White",
                    "Case Saint",
                    "Case Devil",
                    "Case Meong Pink",
                    "Case Meong Black",
                    "Case Kuromi",
                    "Case Apel Hijau",
                    "Case Apel Merah",
                    "Black",
                    "White",
                    "Navy",
                    "Army",
                    "Orange",
                    "Yellow",
                    "Cream",
                    "Seagull",
                    "Grey",
                    "Soft Blue",
                    "Tosca",
                    "Skyblue",
                    "Light Blue",
                    "Red",
                    "Brown",
                    "WhiteTransparan",
                    "Violet",
                    "Pink"
                  ],
                  "images": [
                    "sg-11134201-825a9-mfxqq12yrthre7",
                    "sg-11134201-825ae-mfxqq1aoi7t70c",
                    "sg-11134201-8259z-mfxqq1hybgunf0",
                    "sg-11134201-8258l-mfxqq1p1m6mgb7",
                    "sg-11134201-8258k-mfxqq1ypgt1re5",
                    "sg-11134201-825ap-mfxqq2538tu728",
                    "sg-11134201-825am-mfxqq2bqjocq55",
                    "sg-11134201-8259a-mfxqq2hxvxft3f",
                    "sg-11134201-825au-mfxqq2o2dondeb",
                    "sg-11134201-825ae-mfxqq2u2w5xn37",
                    "sg-11134201-82586-mfxqq32lm87ec4",
                    "sg-11134201-8259j-mfxqq39nwgspfc",
                    "sg-11134201-825ah-mfxqq3goe03w0b",
                    "sg-11134201-825ad-mfxqq3nexfrgd6",
                    "sg-11134201-825a5-mfxqq3rd16ha6d",
                    "sg-11134201-8259i-mfxqq3wu8cnfd0",
                    "sg-11134201-8258n-mfxqq41bj9xka0",
                    "sg-11134201-8259w-mfxqq46b7pjgc5",
                    "sg-11134201-8258z-mfxqq4a77oqz1a",
                    "sg-11134201-8257s-mfxqq4euyako02",
                    "sg-11134201-8258v-mfxqq4pc6l1lfa",
                    "sg-11134201-825af-mfxqq4tqy5u7db",
                    "sg-11134201-8258j-mfxqq4zdt0cp4d",
                    "sg-11134201-825a3-mfxqq580qrymbc",
                    "sg-11134201-825an-mfxqq5di7s3v2c",
                    "sg-11134201-8258q-mfxqq5hzbojx04",
                    "sg-11134201-8257y-mfxqq5mpog0d0b",
                    "sg-11134201-825ay-mfxqq5sa5lvx71",
                    "sg-11134201-82588-mfxqq5xiawax93",
                    "sg-11134201-8259c-mfxqq622c26nc2",
                    "sg-11134201-8259t-mfxqq67cmnf0dd"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tipe",
                  "options": [
                    "Miband 10/9/8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  13,
                  0,
                  0,
                  0,
                  0,
                  13
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 364432693932900,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 722961326194688,
                "price": 3566200000,
                "strikethrough_price": 4099000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-13%",
                "model_id": 302000385974,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4099000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 41,
                "rounded_local_monthly_sold_count": 11,
                "local_monthly_sold_count_text": "11",
                "rounded_display_sold_count": 41,
                "display_sold_count_text": "41"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Loopline",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41574677276,
            "shopid": 1606678681,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82588-mfxqpzqxxyx597\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,298463379,844931064601283,844931086908638,1718093079,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":718,\"model_id\":302000385974,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82588-mfxqpzqxxyx597\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,298463379,844931064601283,844931086908638,1718093079,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":718,\"model_id\":302000385974,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41574677276",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27593071188,
              "shopid": 978748732,
              "name": "Bandify Premium Strap Xiaomi Mi Band 10/9/8 Kulit Love Tali Jam Wanita Mi Band 10 Mi Band 9 Bahan Kulit Model Love",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1718093079,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                1015914,
                700190087,
                1400285055,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8258c-mfxqjpdcdtsf83",
              "images": [
                "sg-11134201-8258c-mfxqjpdcdtsf83",
                "sg-11134201-825ab-mfxqjphs4h6zc7",
                "sg-11134201-8259b-mfxqjpmqsh709b",
                "sg-11134201-825ah-mfxqjpsco7ii09",
                "sg-11134201-8258n-mfxqjpx33qiz9b",
                "sg-11134201-825b0-mfxqjq2t06xa29",
                "sg-11134201-825at-mfxqjq8kxn9r88",
                "sg-11134201-825a9-mfxqjqe2snij1c",
                "sg-11134201-8258j-mfxqjqkvy77tf0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760689169,
              "sold": 12,
              "historical_sold": 20,
              "liked": false,
              "liked_count": 60,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 6,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1500000000,
              "price_min": 1500000000,
              "price_max": 1500000000,
              "price_min_before_discount": 2000000000,
              "price_max_before_discount": 2000000000,
              "hidden_price_display": null,
              "price_before_discount": 2000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-25%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Love Black",
                    "Love White",
                    "Love Maroon",
                    "Love Red",
                    "Love Army",
                    "Love Aprikot",
                    "Love Ungu",
                    "Love Pink",
                    "Case Devil",
                    "Case Angel",
                    "Case Jerapah",
                    "Case Kelinci Hitam",
                    "Case Kelinci Putih",
                    "Case Kelinci Cream",
                    "Case Kelinci Pink",
                    "Case Meong Hitam",
                    "Case Meong Pink",
                    "Case Meong Putih",
                    "Case Kuromi",
                    "Case Apel Hijau",
                    "Case Apel Merah",
                    "TPU Bening",
                    "TPU Black",
                    "TPU Pink",
                    "TPU Silver",
                    "TPU Rosegold",
                    "TPU Blue",
                    "TPU Gold",
                    "TPU Green"
                  ],
                  "images": [
                    "sg-11134201-825a0-mfxqjqriz66nfc",
                    "sg-11134201-825a2-mfxqjqy1qznwe8",
                    "sg-11134201-82599-mfxqjr5tmospaf",
                    "sg-11134201-825a4-mfxqjrekjqbwc7",
                    "sg-11134201-825a7-mfxqjrkzqd58f9",
                    "sg-11134201-825a9-mfxqjrstyarv63",
                    "sg-11134201-825b2-mfxqjrzxisy677",
                    "sg-11134201-825a6-mfxqjs8c3z0p1f",
                    "sg-11134201-8259z-mfxqjsg4uj2i5d",
                    "sg-11134201-825ae-mfxqjsol5jpp87",
                    "sg-11134201-82595-mfxqjsuzwqa416",
                    "sg-11134201-8258q-mfxqjt1h4d1r77",
                    "sg-11134201-8258j-mfxqjt98c6iz0d",
                    "sg-11134201-8258p-mfxqjtg2l0jt96",
                    "sg-11134201-8258k-mfxqjtlvvl6zc7",
                    "sg-11134201-8258z-mfxqjtt5ggeh17",
                    "sg-11134201-82584-mfxqjtyxut5b6d",
                    "sg-11134201-825a2-mfxqju77g6j047",
                    "sg-11134201-825b9-mfxqjufnsiko88",
                    "sg-11134201-8258o-mfxqjurnc556f0",
                    "sg-11134201-8259r-mfxqjuyxxhjh28",
                    "sg-11134201-825b1-mfxqjv6f03d45d",
                    "sg-11134201-825ba-mfxqjvdv7r4d6c",
                    "sg-11134201-825az-mfxqjviw2bri66",
                    "sg-11134201-8259n-mfxqjvq6kwlk7a",
                    "sg-11134201-8259t-mfxqjvw6nz7t55",
                    "sg-11134201-825az-mfxqjw2k90r230",
                    "sg-11134201-825ar-mfxqjw86u1ahf0",
                    "sg-11134201-8259b-mfxqjwpw309bdf"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tipe",
                  "options": [
                    "Miband 10/9/8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  6,
                  0,
                  0,
                  0,
                  0,
                  6
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 394593233551501,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 789185645036544,
                "price": 1500000000,
                "strikethrough_price": 2000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-25%",
                "model_id": 287000261396,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 20,
                "rounded_local_monthly_sold_count": 12,
                "local_monthly_sold_count_text": "12",
                "rounded_display_sold_count": 20,
                "display_sold_count_text": "20"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANDIFY",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 27593071188,
            "shopid": 978748732,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8258c-mfxqjpdcdtsf83\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,298933384,1015914,700190087,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":719,\"model_id\":287000261396,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8258c-mfxqjpdcdtsf83\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,298933384,1015914,700190087,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":719,\"model_id\":287000261396,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27593071188",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44374685125,
              "shopid": 1082428099,
              "name": "Nothing CMF Watch 3 Pro",
              "label_ids": [
                2018618,
                2153644,
                844931064601283,
                1718093079,
                700005490,
                1049120,
                822059908662278,
                1119699,
                2213652,
                1015914,
                700190087,
                2143658,
                998151040,
                825465608499232,
                1400285055
              ],
              "image": "id-11134207-8224q-mfxps9l2rr4f58",
              "images": [
                "id-11134207-8224q-mfxps9l2rr4f58",
                "id-11134207-8224q-mfxps9l6r11nd7",
                "id-11134207-8224y-mfxps9l6k07f9a",
                "id-11134207-82250-mfxps9l6lerv0a",
                "id-11134207-82250-mfxps9l6mtcbfd",
                "id-11134207-8224s-mfxps9l6o7wr36"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760688767,
              "sold": 3,
              "historical_sold": 9,
              "liked": false,
              "liked_count": 97,
              "view_count": null,
              "catid": 100013,
              "brand": "Nothing",
              "cmt_count": 6,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 169900000000,
              "price_min": 169900000000,
              "price_max": 169900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Dark Grey",
                    "Light Grey",
                    "Light Orange",
                    "Light Green"
                  ],
                  "images": [
                    "id-11134207-8224r-mfxps9l6sfm34e",
                    "id-11134207-8224o-mfxps9l6tu6jdb",
                    "id-11134207-8224p-mfxps9l6v8qz5a",
                    "id-11134207-8224v-mfxps9l6wnbfc9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  6,
                  0,
                  0,
                  0,
                  0,
                  6
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 169900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 277000086298,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 169900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 9,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 9,
                "display_sold_count_text": "9"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Nothing Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44374685125,
            "shopid": 1082428099,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mfxps9l2rr4f58\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,844931064601283,1718093079,700005490,1049120,822059908662278,1119699,2213652,1015914,700190087,2143658,998151040,825465608499232,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":721,\"model_id\":277000086298,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mfxps9l2rr4f58\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,844931064601283,1718093079,700005490,1049120,822059908662278,1119699,2213652,1015914,700190087,2143658,998151040,825465608499232,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":721,\"model_id\":277000086298,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44374685125",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40474674959,
              "shopid": 978748732,
              "name": "Bandify Silicone Case Xiaomi Mi Band 10 / Xiaomi Mi Band 9 TPU Mi Band 8 Softcase Xiaomi Mi Band 9 Bumper TPU Bahan Lembut Model Telinga",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1015914,
                700190087,
                700810080,
                1400285055,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8259p-mfxqbk5sbjm175",
              "images": [
                "sg-11134201-8259p-mfxqbk5sbjm175",
                "sg-11134201-8258d-mfxqbkdtlq174b",
                "sg-11134201-8257w-mfxqbkjvhd7143",
                "sg-11134201-825a1-mfxqbkp6lerxd7",
                "sg-11134201-8257y-mfxqbkv666fdc0",
                "sg-11134201-8258k-mfxqbkzyij9q57",
                "sg-11134201-825an-mfxqbl5wkkcod2",
                "sg-11134201-82591-mfxqbla8eqyy32",
                "sg-11134201-825at-mfxqblfomuiwe5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760688788,
              "sold": 9,
              "historical_sold": 21,
              "liked": false,
              "liked_count": 37,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 5,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3607200000,
              "price_min": 3607200000,
              "price_max": 3607200000,
              "price_min_before_discount": 4099000000,
              "price_max_before_discount": 4099000000,
              "hidden_price_display": null,
              "price_before_discount": 4099000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-12%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Case Devil",
                    "Case Angel",
                    "Case Jerapah",
                    "Case Kelinci Hitam",
                    "Case Kelinci Putih",
                    "Case Kelinci Cream",
                    "Case Kelinci Pink",
                    "Case Meong Hitam",
                    "Case Meong Pink",
                    "Case Meong Putih",
                    "Case Kuromi",
                    "Case Apel Hijau",
                    "Case Apel Merah",
                    "TPU Bening",
                    "TPU Black",
                    "TPU Pink",
                    "TPU Silver",
                    "TPU Rosegold",
                    "TPU Blue",
                    "TPU Gold",
                    "TPU Green"
                  ],
                  "images": [
                    "sg-11134201-8259l-mfxqbloiv8r0a1",
                    "sg-11134201-82596-mfxqbm33e6ml0e",
                    "sg-11134201-8259r-mfxqbmdbncwc56",
                    "sg-11134201-825ae-mfxqbmm4bnkc31",
                    "sg-11134201-8257w-mfxqbmxn4lce9a",
                    "sg-11134201-8259k-mfxqbn9je6mi92",
                    "sg-11134201-82582-mfxqbnhhzfuxd6",
                    "sg-11134201-825a3-mfxqbnuk2txn73",
                    "sg-11134201-8257x-mfxqbo5fbea39d",
                    "sg-11134201-8259m-mfxqbodod3pp83",
                    "sg-11134201-8259f-mfxqbopscv0pee",
                    "sg-11134201-8258w-mfxqbp3vvbpmee",
                    "sg-11134201-8258w-mfxqbphwj8y684",
                    "sg-11134201-82598-mfxqbpwdcpaj91",
                    "sg-11134201-825a9-mfxqbq2evpcd13",
                    "sg-11134201-8258k-mfxqbq97eqdn22",
                    "sg-11134201-825a9-mfxqbqfl85qk0e",
                    "sg-11134201-8259x-mfxqbqlsc2ku90",
                    "sg-11134201-8259g-mfxqbqsfr37wb6",
                    "sg-11134201-8259d-mfxqbqyvu13jb6",
                    "sg-11134201-8258z-mfxqbr5vi426cf"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tipe",
                  "options": [
                    "Miband 10/9/8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 394593233551501,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 789185645036544,
                "price": 3607200000,
                "strikethrough_price": 4099000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-12%",
                "model_id": 177346859037,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4099000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 21,
                "rounded_local_monthly_sold_count": 9,
                "local_monthly_sold_count_text": "9",
                "rounded_display_sold_count": 21,
                "display_sold_count_text": "21"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANDIFY",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40474674959,
            "shopid": 978748732,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8259p-mfxqbk5sbjm175\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699,1015914,700190087,700810080,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":720,\"model_id\":177346859037,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8259p-mfxqbk5sbjm175\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699,1015914,700190087,700810080,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":720,\"model_id\":177346859037,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40474674959",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41024546152,
              "shopid": 663763564,
              "name": "Waterproof Smartwatch Hd Screen Phone Bisa Touch Call Full 1.99 Inch Bluetooth Pro T800 Max Ultra Ip68 Watch",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                2018619,
                2023641,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699
              ],
              "image": "id-11134207-7r98t-llswhc5qu52c4f",
              "images": [
                "id-11134207-7r98t-llswhc5qu52c4f",
                "id-11134207-7r98u-llswhc5qlpmvec",
                "id-11134207-7r98u-llswhc5qwy7828",
                "id-11134207-7r990-llswhc5qycro7d",
                "id-11134207-7r991-llswhc5qn47bbb",
                "id-11134207-7r98w-llswhc5qpxc720",
                "id-11134207-7r98q-llswhc5qrbwn87",
                "id-11134207-7r98r-llswhc5qvjmsca",
                "id-11134207-7r98t-llswhc5qoirrd0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760630730,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 15600000000,
              "price_min": 15600000000,
              "price_max": 15600000000,
              "price_min_before_discount": 45664800000,
              "price_max_before_discount": 45664800000,
              "hidden_price_display": null,
              "price_before_discount": 45664800000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-66%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "colour",
                  "options": [
                    "white",
                    "pink",
                    "black"
                  ],
                  "images": [
                    "id-11134207-7r98x-llswhc5qzrc4fe",
                    "id-11134207-7r991-llswhc5r15wk45",
                    "id-11134207-7r98p-llswhc5r2kh0b9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 403116755529769,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 817141788508160,
                "price": 15220000000,
                "strikethrough_price": 45664800000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1283079651082240,
                "discount_text": "-66%",
                "model_id": 296990659394,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1283079651082240,
                  "voucher_code": "WZL011613",
                  "voucher_discount": 380000000,
                  "time_info": {
                    "start_time": 1762414320,
                    "end_time": 1770194340,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 12000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 45664800000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "IKOOL Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41024546152,
            "shopid": 663763564,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98t-llswhc5qu52c4f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,2018619,2023641,700005490,1049120,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":723,\"model_id\":296990659394,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98t-llswhc5qu52c4f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,2018619,2023641,700005490,1049120,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":723,\"model_id\":296990659394,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41024546152",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40224531900,
              "shopid": 1587643058,
              "name": "[4G Sim card] ORUSS Smartwatch B31G Ultra Bisa Nonton Youtube Wifi PlayStore 2.02 Inci Layar Sentuh GPS NFC Waterproof Bluetooth Call Health Monitoring Jam Tangan Wanita smartwatch pria jam tangan Couple",
              "label_ids": [
                2153644,
                1428713,
                1718087960,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                844931064601283,
                844931086908638,
                1718093079,
                298463379,
                2018619,
                2068629,
                298938357,
                2018618,
                825465608492064,
                2213652,
                1400285055,
                1015914,
                700190087,
                2098628,
                298938368,
                2098629,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224o-mfwmrhfhmcy074",
              "images": [
                "id-11134207-8224o-mfwmrhfhmcy074",
                "id-11134207-82250-mfwmrhfmjci2b1",
                "id-11134207-8224x-mfwmrhfmrrwq99",
                "id-11134207-8224t-mfwmrhfmkr2ied",
                "id-11134207-82252-mfwmrhfmt6h6d5",
                "id-11134207-82250-mfwmrhfmm5my82",
                "id-11134207-8224w-mfwmrhfmnk7e34",
                "id-11134207-82250-mfwmrhfmoyru7a",
                "id-11134207-82251-mfwmrhfmqdcae1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760622502,
              "sold": 10,
              "historical_sold": 10,
              "liked": false,
              "liked_count": 17,
              "view_count": null,
              "catid": 100013,
              "brand": "ORUSS",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 72800000000,
              "price_min": 72800000000,
              "price_max": 72800000000,
              "price_min_before_discount": 199000000000,
              "price_max_before_discount": 199000000000,
              "hidden_price_display": null,
              "price_before_discount": 199000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-63%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvk-mfwmrwa6gydq8e.16000081760622287.mp4",
                  "thumb_url": "id-11110105-6vdvk-mfwmrwa6gydq8e_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6vdvk-mfwmrwa6gydq8e",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvk-mfwmrwa6gydq8e.16000081760622287.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvk-mfwmrwa6gydq8e.16000081760622287.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvk-mfwmrwa6gydq8e.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black(Ada kamera)",
                    "Pink(Ada kamera)",
                    "White(Ada kamera)",
                    "Black(360ยฐ kamera)"
                  ],
                  "images": [
                    "id-11134207-8224z-mfwmrhfmul1mba",
                    "id-11134207-82252-mfwmrhfmvzm29c",
                    "id-11134207-81ztd-mf11t8qffpxp0c",
                    "id-11134207-8224q-mia9oibha2gx93"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.75,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  1,
                  3
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp235RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228046330408962,
                "price": 70700000000,
                "strikethrough_price": 199000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1321705440952344,
                "discount_text": "-63%",
                "model_id": 266989671697,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1321705440952344,
                  "voucher_code": "ORUSY3",
                  "voucher_discount": 2100000000,
                  "time_info": {
                    "start_time": 1767018900,
                    "end_time": 1775134800,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 60000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 199000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10,
                "rounded_local_monthly_sold_count": 10,
                "local_monthly_sold_count_text": "10",
                "rounded_display_sold_count": 10,
                "display_sold_count_text": "10"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp235RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ORUSS Indonesia Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40224531900,
            "shopid": 1587643058,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mfwmrhfhmcy074\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,1428713,1718087960,1059152,1049122,822059908662278,825465608499232,844931064601283,844931086908638,1718093079,298463379,2018619,2068629,298938357,2018618,825465608492064,2213652,1400285055,1015914,700190087,2098628,298938368,2098629,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":724,\"model_id\":266989671697,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mfwmrhfhmcy074\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2153644,1428713,1718087960,1059152,1049122,822059908662278,825465608499232,844931064601283,844931086908638,1718093079,298463379,2018619,2068629,298938357,2018618,825465608492064,2213652,1400285055,1015914,700190087,2098628,298938368,2098629,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":724,\"model_id\":266989671697,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40224531900",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43474467180,
              "shopid": 1629046872,
              "name": "Baggioo Premium Aksesoris Wanita Premium Strap Xiaomi Mi Band 10 / Mi Band 9 Stainless Kepang Mewah Tali Mi Band 8 Strap Bahan Stainless Model Kepang",
              "label_ids": [
                844931086908638,
                844931064601283,
                298463379,
                2018619,
                2023641,
                1718093079,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                1428713,
                1718087960,
                1400285055,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-825ap-mfw9ch0rgu8fbe",
              "images": [
                "sg-11134201-825ap-mfw9ch0rgu8fbe",
                "sg-11134201-8258v-mfw9ch7lv8y135",
                "sg-11134201-82587-mfw9chdtzoju0b",
                "sg-11134201-8259b-mfw9chjorocpcd",
                "sg-11134201-82580-mfw9chpa2c5k6c",
                "sg-11134201-82597-mfw9chuy1vkd1e",
                "sg-11134201-8257w-mfw9ci0m49op53",
                "sg-11134201-82596-mfw9ci6xfua097"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760599704,
              "sold": 3,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 8,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2850000000,
              "price_min": 2850000000,
              "price_max": 2850000000,
              "price_min_before_discount": 3000000000,
              "price_max_before_discount": 3000000000,
              "hidden_price_display": null,
              "price_before_discount": 3000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-5%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Wave Black",
                    "Black",
                    "Gold",
                    "Rose Gold",
                    "Silver"
                  ],
                  "images": [
                    "sg-11134201-825b6-mfw9cicrtseg95",
                    "sg-11134201-8259v-mfw9cipz16vf65",
                    "sg-11134201-825b3-mfw9cj00kt1n84",
                    "sg-11134201-8259y-mfw9cj6efojwb6",
                    "sg-11134201-8258o-mfw9cjcm7fgq00"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tipe",
                  "options": [
                    "Mi Band 10/9/8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 3,
                "rating_count": [
                  2,
                  1,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372763051438433,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 740407617585152,
                "price": 2850000000,
                "strikethrough_price": 3000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-5%",
                "model_id": 206314892912,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Baggioo",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43474467180,
            "shopid": 1629046872,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825ap-mfw9ch0rgu8fbe\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,2018619,2023641,1718093079,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,298933384,1428713,1718087960,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":725,\"model_id\":206314892912,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825ap-mfw9ch0rgu8fbe\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,2018619,2023641,1718093079,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,298933384,1428713,1718087960,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":725,\"model_id\":206314892912,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43474467180",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42074399165,
              "shopid": 1636788204,
              "name": "SAMSUNG SmartWatch S11 Pro Max 1.9\" HD AMOLED Display GPS NFC Waterproof IP68 Bluetooth Call Smartwatch wanita pria wireless charging Dan Ganti Wallpapper Jam Tangan Smartwatch Jam Tangan Wanita",
              "label_ids": [
                844931086908638,
                844931064601283,
                298463379,
                1049122,
                1059152,
                822059908662278,
                825465608499232,
                1119699,
                1428713,
                1718087960,
                1718093079,
                1015914,
                700190087,
                700700063,
                1400285055,
                2023641,
                2018619,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224o-mjgsfkhbtt6qa2",
              "images": [
                "id-11134207-8224o-mjgsfkhbtt6qa2",
                "id-11134207-8224z-mg3678uc00sra0",
                "id-11134207-8224p-mfvy0rz0w7495a",
                "id-11134207-82252-mfvy0rz137yh3e",
                "id-11134207-8224u-mfvy0rz14mix7c",
                "id-11134207-8224t-mfvy0rz0z0959b",
                "id-11134207-8224y-mfvy0rz1613dd1",
                "id-11134207-82252-mfvy0rz10etlc7",
                "id-11134207-8224y-mfvy0rz0xlopb2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760581358,
              "sold": 30,
              "historical_sold": 90,
              "liked": false,
              "liked_count": 93,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 64,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 16800000000,
              "price_min": 16800000000,
              "price_max": 16800000000,
              "price_min_before_discount": 100000000000,
              "price_max_before_discount": 100000000000,
              "hidden_price_display": null,
              "price_before_discount": 100000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-83%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven3-mi711890aih444.16000031765610088.mp4",
                  "thumb_url": "id-11110105-6ven3-mi711890aih444_cover",
                  "duration": 53,
                  "version": 2,
                  "vid": "id-11110105-6ven3-mi711890aih444",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven3-mi711890aih444.16000031765610088.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven3-mi711890aih444.16000031765610088.mp4",
                      "width": 854,
                      "height": 480
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven3-mi711890aih444.default.mp4",
                    "width": 854,
                    "height": 480
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "S11 PRO Max - BLACK",
                    "S11 PRO Max - WHITE",
                    "S11 PRO Max - PINK",
                    "S11 PRO Max - GOLD",
                    "S11 PRO Max"
                  ],
                  "images": [
                    "id-11134207-8224u-mjgsfkhls005e4",
                    "id-11134207-8224o-mjgsfkhltekld5",
                    "id-11134207-8224v-mjgsfkhlut51bd",
                    "id-11134207-8224z-mjgsfkhlw7phba",
                    "id-11134207-8224x-mfvy8xsoqk22ce"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.984375,
                "rating_count": [
                  64,
                  0,
                  0,
                  0,
                  1,
                  63
                ],
                "rcount_with_context": 48,
                "rcount_with_image": 45
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227966810599425,
                "price": 16800000000,
                "strikethrough_price": 100000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-83%",
                "model_id": 276979881840,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 100000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 90,
                "rounded_local_monthly_sold_count": 30,
                "local_monthly_sold_count_text": "30",
                "rounded_display_sold_count": 90,
                "display_sold_count_text": "90"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Teknologi dan Kesehatan",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42074399165,
            "shopid": 1636788204,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjgsfkhbtt6qa2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1049122,1059152,822059908662278,825465608499232,1119699,1428713,1718087960,1718093079,1015914,700190087,700700063,1400285055,2023641,2018619,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":323,\"model_id\":276979881840,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjgsfkhbtt6qa2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1049122,1059152,822059908662278,825465608499232,1119699,1428713,1718087960,1718093079,1015914,700190087,700700063,1400285055,2023641,2018619,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":323,\"model_id\":276979881840,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42074399165",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40224345276,
              "shopid": 1641385477,
              "name": "Smartwatch Series S11 Pro MAX 2.0\" HD Touch Screen Bluetooth Call Custom Wallpaper Jam Tangan Pria Heart Rate Monitor Blood Oxygen Monitoring Jam Tangan Wanita Waterproof Sport Watch Jam Pintar Smartwatch Wanita Pria",
              "label_ids": [
                844931064601283,
                1049128,
                700005504,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718093079,
                1428713,
                1718087960,
                298933384
              ],
              "image": "id-11134207-8224p-mj876ulf826d18",
              "images": [
                "id-11134207-8224p-mj876ulf826d18",
                "id-11134207-8224t-mj876ulignbadc",
                "id-11134207-8224x-mj876ulii1vqe5",
                "id-11134207-8224z-mj876ulijgg63e",
                "id-11134207-8224o-mj876ulim9l2b4",
                "id-11134207-8224r-mj876ulikv0ma9",
                "id-11134207-8224s-mj876ulino5i9f",
                "id-11134207-8224u-mj876ulif8qufa"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760532103,
              "sold": 2,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 9,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 4,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 11500000000,
              "price_min": 11500000000,
              "price_max": 11500000000,
              "price_min_before_discount": 59800000000,
              "price_max_before_discount": 59800000000,
              "hidden_price_display": null,
              "price_before_discount": 59800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-81%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "silver",
                    "pink",
                    "starlight",
                    "black"
                  ],
                  "images": [
                    "id-11134207-82251-mj87lnwjxipy60",
                    "id-11134207-82251-mj87lnwjtb0m92",
                    "id-11134207-8224t-mj87lnwjupl2ff",
                    "id-11134207-8224t-mj87lnwjw45ie7"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  0,
                  4
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Palembang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227919402385409,
                "price": 11500000000,
                "strikethrough_price": 59800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-81%",
                "model_id": 370406646719,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 59800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gadjah Mada Teknologi",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40224345276,
            "shopid": 1641385477,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mj876ulf826d18\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049128,700005504,822059908662278,825465608499232,825465608497696,1119699,1718093079,1428713,1718087960,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":726,\"model_id\":370406646719,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mj876ulf826d18\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049128,700005504,822059908662278,825465608499232,825465608497696,1119699,1718093079,1428713,1718087960,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":726,\"model_id\":370406646719,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40224345276",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41374336217,
              "shopid": 1484087853,
              "name": "Scrunchie Braided Nylon Strap for IWatch Apple Watch Ultra 3 2 49mm Series 11 10 9 8 7 6 5 4 SE 3 2 46mm 41 45 38 40 42 44mm Elastic Nylon Band Sport Belt Accessories for Tali Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018618,
                2153644,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                1119699,
                298888358,
                298938357,
                2213652,
                2048660,
                2048661,
                700765096,
                1400285055,
                1015914,
                700190087,
                700810055,
                1718088045,
                298468389,
                2098629,
                298938368,
                2098628
              ],
              "image": "sg-11134201-825ar-mfv4srz1v9qi58",
              "images": [
                "sg-11134201-825ar-mfv4srz1v9qi58",
                "sg-11134201-825ay-mfv4ssxnug3ye9",
                "sg-11134201-8258p-mfv4stk2ct1n7e",
                "sg-11134201-8258x-mfv4stzsh4b275",
                "sg-11134201-82598-mfv4suqdio7h35",
                "sg-11134201-825aa-mfv4sv0gthxm9f",
                "sg-11134201-825aj-mfv4svbb2y2w15",
                "sg-11134201-8257z-mfv4svrufcp662",
                "sg-11134201-82587-mfv4swdthgr355"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760531526,
              "sold": 8,
              "historical_sold": 31,
              "liked": false,
              "liked_count": 14,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 7,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1760000000,
              "price_min": 1760000000,
              "price_max": 1760000000,
              "price_min_before_discount": 2860000000,
              "price_max_before_discount": 2860000000,
              "hidden_price_display": null,
              "price_before_discount": 2860000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-38%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "d45cada6d84e1a6549dd1d6781c48248",
                  "thumb_url": "58a558da213a660acbc8db8f2692b711",
                  "duration": 43,
                  "version": 2,
                  "vid": "sg-11110106-6jrnr-leqsr18avzs248",
                  "formats": [
                    {
                      "format": 1600323,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6jrnr-leqsr18avzs248.default.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6jrnr-leqsr18avzs248.default.mp4",
                      "width": 540,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6jrnr-leqsr18avzs248.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black",
                    "Mate Black",
                    "Black Gray",
                    "Cherry",
                    "Milk white",
                    "Dark green",
                    "Charcoal",
                    "Peach",
                    "Beige",
                    "Rainbow",
                    "Dark blue",
                    "Pink Sand"
                  ],
                  "images": [
                    "sg-11134201-8259t-mfv4t90878r2ee",
                    "sg-11134201-825a5-mfv4t9crke8ed3",
                    "sg-11134201-825aq-mfv4t9mnkjrec6",
                    "sg-11134201-825a2-mfv4t9wpxpfv1f",
                    "sg-11134201-825as-mfv4ta70vuhbc4",
                    "sg-11134201-825b5-mfv4taihqjuxab",
                    "sg-11134201-8259q-mfv4tatv9y4vc4",
                    "sg-11134201-8259n-mfv4tb5k38y702",
                    "sg-11134201-8259a-mfv4tbfwoc95e4",
                    "sg-11134201-825ag-mfv4tbrzvymj09",
                    "sg-11134201-82595-mfv4tc2jrtahcd",
                    "sg-11134201-82588-mfv4tcbh8u8e08"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "M 41/40/38/(S11)42mm",
                    "M 49/46/45/44/42mm",
                    "S 41/40/38/(S11)42mm",
                    "S 49/46/45/44/42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  7,
                  0,
                  0,
                  0,
                  0,
                  7
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372024811991523,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744049498177536,
                "price": 1760000000,
                "strikethrough_price": 2860000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-38%",
                "model_id": 271974552168,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2860000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 31,
                "rounded_local_monthly_sold_count": 8,
                "local_monthly_sold_count_text": "8",
                "rounded_display_sold_count": 31,
                "display_sold_count_text": "31"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EIHAIHIS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41374336217,
            "shopid": 1484087853,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825ar-mfv4srz1v9qi58\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1119699,298888358,298938357,2213652,2048660,2048661,700765096,1400285055,1015914,700190087,700810055,1718088045,298468389,2098629,298938368,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":727,\"model_id\":271974552168,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825ar-mfv4srz1v9qi58\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1119699,298888358,298938357,2213652,2048660,2048661,700765096,1400285055,1015914,700190087,700810055,1718088045,298468389,2098629,298938368,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":727,\"model_id\":271974552168,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41374336217",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40824312858,
              "shopid": 1636411275,
              "name": "[COD] SmartWatch S11 PRO MAX Wanita Tahan Air Jam Pintar Bluetooth Olahraga Smart Watch Gps Peta Nfc Smartwatch Hd Touchscreen Jam Tangan Pintar Bisa Telpon Bisa Dan Wallpaper Jam Tangan Monitor Detak Jantung jam tangan smartwatch",
              "label_ids": [
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                1119699,
                298463379,
                1718087960,
                1428713,
                1718093079,
                1015914,
                700190087,
                700700063,
                1400285055,
                298933384,
                2023641,
                2018619,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82250-mg7f8ajx22vf72",
              "images": [
                "id-11134207-82250-mg7f8ajx22vf72",
                "id-11134207-8224t-mgbyc4wx258r9c",
                "id-11134207-8224u-mgbyc4x6jh8v32",
                "id-11134207-8224o-mgbyc4wwsb9l96",
                "id-11134207-8224w-mgbyc4wyyz2g12",
                "id-11134207-8224x-mgbyc4wz1s7cf9",
                "id-11134207-82250-mgbyc4wx3jt750",
                "id-11134207-8224z-mgbyc4wwxxje2b",
                "id-11134207-8224s-mgbyc4ww311r7f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760522422,
              "sold": 33,
              "historical_sold": 87,
              "liked": false,
              "liked_count": 98,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 57,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 14800000000,
              "price_min": 14800000000,
              "price_max": 14800000000,
              "price_min_before_discount": 100000000000,
              "price_max_before_discount": 100000000000,
              "hidden_price_display": null,
              "price_before_discount": 100000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-85%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven1-mfuywr4ghtl919.16000081760521625.mp4",
                  "thumb_url": "id-11110105-6ven1-mfuywr4ghtl919_cover",
                  "duration": 44,
                  "version": 2,
                  "vid": "id-11110105-6ven1-mfuywr4ghtl919",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven1-mfuywr4ghtl919.16000081760521625.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven1-mfuywr4ghtl919.16000081760521625.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven1-mfuywr4ghtl919.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "COLOR",
                  "options": [
                    "S10 Pro Max - BLACK",
                    "S11 Pro Max - BLACK",
                    "S10 Pro Max - PINK",
                    "S11 Pro Max - PINK",
                    "S10 Pro Max - WHITE",
                    "S11 Pro Max - WHITE",
                    "S10 Pro Max - BLUE",
                    "S11 Pro Max - BLUE",
                    "S10 ProMax-Starlight",
                    "S11 ProMax-Starlight",
                    "S11 pro max"
                  ],
                  "images": [
                    "id-11134207-8224o-mgxa5jmn72mgcf",
                    "id-11134207-82251-mgxa5jmnbabs64",
                    "id-11134207-8224y-mgxa5jmn9vrcdd",
                    "id-11134207-8224v-mgxa5jmne3gof5",
                    "id-11134207-8224x-mgxa5jmn8h6wcd",
                    "id-11134207-8224v-mgxa5jmncow827",
                    "id-11134207-8224y-mgxa5jmh9kaz0e",
                    "id-11134207-8224p-mgxa5jmnfi145e",
                    "id-11134207-8224q-mgxa5jmngwlkb7",
                    "id-11134207-8224z-mgxa5jmnib609a",
                    "id-11134207-8224y-mfuzc39vyj2j93"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.807017543859649,
                "rating_count": [
                  57,
                  1,
                  1,
                  1,
                  2,
                  52
                ],
                "rcount_with_context": 47,
                "rcount_with_image": 44
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227965732663296,
                "price": 14800000000,
                "strikethrough_price": 100000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-85%",
                "model_id": 262143519462,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 100000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 87,
                "rounded_local_monthly_sold_count": 33,
                "local_monthly_sold_count_text": "33",
                "rounded_display_sold_count": 87,
                "display_sold_count_text": "87"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SmarWatch Terpercaya Store-01",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40824312858,
            "shopid": 1636411275,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mg7f8ajx22vf72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,1119699,298463379,1718087960,1428713,1718093079,1015914,700190087,700700063,1400285055,298933384,2023641,2018619,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":324,\"model_id\":262143519462,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mg7f8ajx22vf72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,1119699,298463379,1718087960,1428713,1718093079,1015914,700190087,700700063,1400285055,298933384,2023641,2018619,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":324,\"model_id\":262143519462,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40824312858",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40624279188,
              "shopid": 127679489,
              "name": "SCUDOS GPS Tracker Motor 4G Kontrol Aplikasi Untuk Mematikan Mesin Alarm Pembongkaran",
              "label_ids": [
                1000167,
                1012868,
                1012865,
                2018619,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1049112,
                1049127,
                1718093079,
                822059908662278,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                298933384,
                1718088045,
                298468389
              ],
              "image": "id-11134207-82250-mfuw93hcbevfbd",
              "images": [
                "id-11134207-82250-mfuw93hcbevfbd",
                "id-11134207-8224w-mfuw93iokzd689",
                "id-11134207-8224t-mfuw93graarx0c",
                "id-11134207-82250-mfuw93gr8w7h5b",
                "id-11134207-8224t-mfuw93i6eeq301",
                "id-11134207-82251-mfuw93i65zbj45",
                "id-11134207-8224p-mfuw93gymdjd02",
                "id-11134207-82251-mfuw93gyns3tf2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760517371,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 17900000000,
              "price_min": 17900000000,
              "price_max": 17900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven5-mfuw97ofpzpof9.16000031760517181.mp4",
                  "thumb_url": "id-11110105-6ven5-mfuw97ofpzpof9_cover",
                  "duration": 46,
                  "version": 2,
                  "vid": "id-11110105-6ven5-mfuw97ofpzpof9",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven5-mfuw97ofpzpof9.16000031760517181.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven5-mfuw97ofpzpof9.16000031760517181.mp4",
                      "width": 480,
                      "height": 854
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven5-mfuw97ofpzpof9.default.mp4",
                    "width": 480,
                    "height": 854
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Model",
                  "options": [
                    "PG07 - 4G",
                    "PG08 - 2G",
                    "+GARANSI 6 BULAN"
                  ],
                  "images": [
                    "id-11134207-82251-mfuw93ip8v0t81",
                    "id-11134207-8224q-mfuw93ipa9l9b4",
                    "id-11134207-8224t-mfuw93ipbo5p13"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Accesoris",
                  "options": [
                    "2 Cores",
                    "4 Cores + Relay"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 17900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 291970794723,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 17900000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SCUDOS",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40624279188,
            "shopid": 127679489,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mfuw93hcbevfbd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1012868,1012865,2018619,1428713,1718087960,844931064601283,844931086908638,298463379,1049112,1049127,1718093079,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":729,\"model_id\":291970794723,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mfuw93hcbevfbd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1012868,1012865,2018619,1428713,1718087960,844931064601283,844931086908638,298463379,1049112,1049127,1718093079,822059908662278,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":729,\"model_id\":291970794723,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40624279188",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40924221839,
              "shopid": 1344427364,
              "name": "TPU Case Milanese Loop Strap for Samsung Galaxy Fit 3 Strap Magnetic Stainless Steel Metal Band With Soft Anti Gores Screen Protective Cover Bumper Accessories Tali Jam Tangan Smartwatch for Samsung Fit 3",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1400285055,
                1015914,
                700190087,
                2103651,
                2143613,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-825ab-mfumcraz1atlf8",
              "images": [
                "sg-11134201-825ab-mfumcraz1atlf8",
                "sg-11134201-8257u-mfumcs1zhqmm36",
                "sg-11134201-8258s-mfumcskywff146",
                "sg-11134201-8259d-mfumcstx43k9ac",
                "sg-11134201-825a4-mfumctiq639oda",
                "sg-11134201-825a9-mfumcuv25moee4",
                "sg-11134201-82583-mfumcwxryy2wb3",
                "sg-11134201-8257w-mfumcyqcynm787",
                "sg-11134201-825ah-mfumcyx1mmfj75"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760500515,
              "sold": 17,
              "historical_sold": 51,
              "liked": false,
              "liked_count": 8,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 18,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5700000000,
              "price_min": 5700000000,
              "price_max": 5700000000,
              "price_min_before_discount": 9000000000,
              "price_max_before_discount": 9000000000,
              "hidden_price_display": null,
              "price_before_discount": 9000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-37%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kiqh-mata2twfhyznaa.16000081749523134.mp4",
                  "thumb_url": "sg-11110106-6kiqh-mata2twfhyznaa_cover",
                  "duration": 34,
                  "version": 2,
                  "vid": "sg-11110106-6kiqh-mata2twfhyznaa",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiqh-mata2twfhyznaa.16000081749523134.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiqh-mata2twfhyznaa.16000081749523134.mp4",
                      "width": 1280,
                      "height": 672
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiqh-mata2twfhyznaa.default.mp4",
                    "width": 1028,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "silvery+transparent",
                    "black+black",
                    "rose pink+rose pink ",
                    "rose gold+rose gold",
                    "gold+gold",
                    "starlight+gold",
                    "Gray+transparent",
                    "silvery (Strap)",
                    "black (Strap)",
                    "rose pink (Strap)",
                    " rose gold (Strap)",
                    "gold (Strap)",
                    " starlight (Strap)",
                    "Space Gray (Strap)",
                    "transparent (Case)",
                    "silvery (Case)",
                    "black (Case)",
                    "rose pink (Case)",
                    "rose gold (Case)",
                    "gold (Case)",
                    "green (Case)",
                    "blue (Case)"
                  ],
                  "images": [
                    "sg-11134201-8258i-mfumdbi7cv7v8a",
                    "sg-11134201-825b1-mfumdbo5euq51e",
                    "sg-11134201-825b9-mfumdbur17nx09",
                    "sg-11134201-825al-mfumdc0svhu136",
                    "sg-11134201-8259t-mfumdcic2p6x3a",
                    "sg-11134201-825a5-mfumdcs8we8de3",
                    "sg-11134201-82581-mfumdd8jjh1nca",
                    "sg-11134201-825bb-mfumddn9x2iw77",
                    "sg-11134201-8258v-mfumde5cihaie2",
                    "sg-11134201-825aj-mfumdemfve2z00",
                    "sg-11134201-825b3-mfumdf5yeeq4f2",
                    "sg-11134201-82596-mfumdfr3exhn90",
                    "sg-11134201-8259w-mfumdg5yv4su62",
                    "sg-11134201-82593-mfumdglq2qdk75",
                    "sg-11134201-825az-mfumdh19iuix20",
                    "sg-11134201-825a0-mfumdhbj6mtrc6",
                    "sg-11134201-825al-mfumdhmore33a0",
                    "sg-11134201-82586-mfumdht14xl491",
                    "sg-11134201-8259y-mfumdi17oqobe1",
                    "sg-11134201-825ab-mfumdi9vpu6k65",
                    "sg-11134201-8258u-mfumdift6pl6fb",
                    "sg-11134201-8258d-mfumdim7xxqia5"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "for Samsung Fit 3"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.944444444444445,
                "rating_count": [
                  18,
                  0,
                  0,
                  0,
                  1,
                  17
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 749779244613632,
                "price": 5700000000,
                "strikethrough_price": 9000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-37%",
                "model_id": 254025875179,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 9000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 51,
                "rounded_local_monthly_sold_count": 17,
                "local_monthly_sold_count_text": "17",
                "rounded_display_sold_count": 51,
                "display_sold_count_text": "51"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "eameasca",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40924221839,
            "shopid": 1344427364,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825ab-mfumcraz1atlf8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1400285055,1015914,700190087,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":730,\"model_id\":254025875179,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825ab-mfumcraz1atlf8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1400285055,1015914,700190087,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":730,\"model_id\":254025875179,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40924221839",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26892934761,
              "shopid": 1631903708,
              "name": "Z83 Max AMOLED Layar Denyut Bluetooth Studiowatch Jantung Pelacakan 49mm SERIES ANDROID i0s ultrA HD Z IP68 SUPPORT &",
              "label_ids": [
                844931064601283,
                1718093079,
                700005490,
                1400005528,
                822059908662278,
                825465608499232,
                1119699
              ],
              "image": "id-11134207-7rbk3-ma13t964ku9ca2",
              "images": [
                "id-11134207-7rbk3-ma13t964ku9ca2",
                "id-11134207-7r991-lqy7tn20wcxl3b",
                "id-11134207-7r98y-lqy7tn20uyd50f",
                "id-11134207-7r98t-lqy7tn2072va26",
                "id-11134207-7r990-lqy7tn20bakm09",
                "id-11134207-7r98u-lqy7tn20xri1a7",
                "id-11134207-7r990-lqy7tn20z62h30",
                "id-11134207-7r991-lqy7tn208hfqcc",
                "id-11134207-7r98v-lqy7tn209w067c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760498980,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 35874000000,
              "price_min": 35874000000,
              "price_max": 35874000000,
              "price_min_before_discount": 75524200000,
              "price_max_before_discount": 75524200000,
              "hidden_price_display": null,
              "price_before_discount": 75524200000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-52%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "black",
                    "blue"
                  ],
                  "images": [
                    "id-11134207-7rbke-ma13t964m8tsa4",
                    "id-11134207-7rbk4-ma13t964nne8c8"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Lebak",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 761531575354368,
                "price": 35874000000,
                "strikethrough_price": 75524200000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-52%",
                "model_id": 234575016104,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 75524200000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "gjn8c01bif",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26892934761,
            "shopid": 1631903708,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-ma13t964ku9ca2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005490,1400005528,822059908662278,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":731,\"model_id\":234575016104,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-ma13t964ku9ca2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005490,1400005528,822059908662278,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":731,\"model_id\":234575016104,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26892934761",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41424093696,
              "shopid": 383740795,
              "name": "Tali Jam Magnetik Logam untuk Huawei Watch GT4/GT5/GT6 41mm - Strap Metal Magnetic, Gaya Telinga Gandum, Quick Release",
              "label_ids": [
                2023641,
                2018619,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1400285055,
                298933384,
                844931086908638,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8257u-mftio60ysh708c",
              "images": [
                "sg-11134201-8257u-mftio60ysh708c",
                "sg-11134201-8257u-mftio6k50zdb47",
                "sg-11134201-825ao-mftio6x986iw6e",
                "sg-11134201-825bb-mftio7axg0lk31",
                "sg-11134201-825ax-mftio7pnjtot98",
                "sg-11134201-8258d-mftio8231wy35b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760433781,
              "sold": 34,
              "historical_sold": 82,
              "liked": false,
              "liked_count": 29,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 28,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5999900000,
              "price_min": 5999900000,
              "price_max": 5999900000,
              "price_min_before_discount": 12000000000,
              "price_max_before_discount": 12000000000,
              "hidden_price_display": null,
              "price_before_discount": 12000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv4-mftiqp53kutned.16000081760433903.mp4",
                  "thumb_url": "id-11110105-6vdv4-mftiqp53kutned_cover",
                  "duration": 22,
                  "version": 2,
                  "vid": "id-11110105-6vdv4-mftiqp53kutned",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv4-mftiqp53kutned.16000081760433903.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mftiqp53kutned.16000081760433903.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mftiqp53kutned.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Silver",
                    "Starlight",
                    "Rose Gold",
                    "Black",
                    "Pelindung layar"
                  ],
                  "images": [
                    "sg-11134201-82584-mftiokrbhngt4e",
                    "sg-11134201-8259r-mftiol0431u161",
                    "sg-11134201-825as-mftiold9f2mg58",
                    "sg-11134201-825bb-mftiolpmtb7uf3",
                    "id-11134207-8224v-micgdj7dxkowc9"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "TYPE",
                  "options": [
                    "for Watch GT6 41mm",
                    "for Watch GT5 41mm",
                    "for Watch GT4 41mm",
                    "for GT5Pro 42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.785714285714286,
                "rating_count": [
                  28,
                  0,
                  0,
                  2,
                  2,
                  24
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 389531803336751,
                "bundle_deal_label": "Pilih 2, diskon 4%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 753580752027648,
                "price": 5999900000,
                "strikethrough_price": 12000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 271956686953,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 12000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 82,
                "rounded_local_monthly_sold_count": 34,
                "local_monthly_sold_count_text": "34",
                "rounded_display_sold_count": 82,
                "display_sold_count_text": "82"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Topfine Smartwatch&Accessories",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41424093696,
            "shopid": 383740795,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8257u-mftio60ysh708c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931064601283,298463379,700005490,1049120,822059908662278,825465608499232,825465608497696,1718093079,1119699,1400285055,298933384,844931086908638,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":733,\"model_id\":271956686953,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8257u-mftio60ysh708c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931064601283,298463379,700005490,1049120,822059908662278,825465608499232,825465608497696,1718093079,1119699,1400285055,298933384,844931086908638,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":733,\"model_id\":271956686953,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41424093696",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27792925180,
              "shopid": 1513079490,
              "name": "Smart Tracker Wireless Dengan Alarm, Cocok Untuk Apple Find My Airtag",
              "label_ids": [
                700700063,
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-8259v-mfthva6gvyfd96",
              "images": [
                "sg-11134201-8259v-mfthva6gvyfd96",
                "sg-11134201-825a6-mfthvad1ezgv32",
                "sg-11134201-825b2-mfthvaimk0zzd4",
                "sg-11134201-8257t-mfthvao7m9e733",
                "sg-11134201-825a7-mfthvatbbgnhf0",
                "sg-11134201-82592-mfthvayyahage6",
                "sg-11134201-8259l-mfthvb3z3oy0e9",
                "sg-11134201-82594-mfthvb8ueuj379",
                "sg-11134201-825ay-mfthvbfaez9me0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760432431,
              "sold": 2,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 7800000000,
              "price_min": 7800000000,
              "price_max": 7800000000,
              "price_min_before_discount": 15500000000,
              "price_max_before_discount": 15500000000,
              "hidden_price_display": null,
              "price_before_discount": 15500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8gq-mftgnflj1bm4d0.16000081760430382.mp4",
                  "thumb_url": "sg-11110106-6v8gq-mftgnflj1bm4d0_cover",
                  "duration": 21,
                  "version": 2,
                  "vid": "sg-11110106-6v8gq-mftgnflj1bm4d0",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8gq-mftgnflj1bm4d0.16000081760430382.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8gq-mftgnflj1bm4d0.16000081760430382.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8gq-mftgnflj1bm4d0.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "White"
                  ],
                  "images": [
                    "sg-11134201-825b7-mfthvbnu8dfx34",
                    "sg-11134201-82591-mfthvbxy49osd2"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 364763297362429,
                "bundle_deal_label": "Pilih 2, diskon 3%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 771569073307648,
                "price": 7800000000,
                "strikethrough_price": 15500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 281956285372,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 15500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko Impia-9",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 27792925180,
            "shopid": 1513079490,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8259v-mfthva6gvyfd96\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,2023641,1428713,1718087960,844931064601283,298463379,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":734,\"model_id\":281956285372,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8259v-mfthva6gvyfd96\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,2023641,1428713,1718087960,844931064601283,298463379,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":734,\"model_id\":281956285372,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27792925180",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43174033086,
              "shopid": 1578982953,
              "name": "Samrt watch S10 Pro Max with 2.3\" HD AMOLED Display GPS NFC Waterproof  Smartwatch wanita pria wireless charging Dan Ganti Wallpapper Jam Tangan Smartwatch Jam Tangan Wanita",
              "label_ids": [
                700700063,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                1718093079,
                1119699,
                1015914,
                700190087,
                1400285055,
                2023641,
                2018619,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224w-miyacpes426e3e",
              "images": [
                "id-11134207-8224w-miyacpes426e3e",
                "id-11134207-8224y-mgf84hj2vm6g24",
                "id-11134207-82252-mgf84hj2kdmw26",
                "id-11134207-8224x-mgf84hj2n6rscf",
                "id-11134207-82252-mgf84hj2x0qw4f",
                "id-11134207-8224u-mgf84hj2st1k54",
                "id-11134207-82251-mgf84hj2olc85f",
                "id-11134207-8224y-mgf84hj2pzwo32",
                "id-11134207-8224y-mgf84hj2ls7c03"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760413479,
              "sold": 38,
              "historical_sold": 182,
              "liked": false,
              "liked_count": 136,
              "view_count": null,
              "catid": 100013,
              "brand": "Buds Indonesia",
              "cmt_count": 114,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 14800000000,
              "price_min": 14800000000,
              "price_max": 14800000000,
              "price_min_before_discount": 68000000000,
              "price_max_before_discount": 68000000000,
              "hidden_price_display": null,
              "price_before_discount": 68000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-78%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvl-mft6c1u552bwa7.16000081760413042.mp4",
                  "thumb_url": "id-11110105-6vdvl-mft6c1u552bwa7_cover",
                  "duration": 44,
                  "version": 2,
                  "vid": "id-11110105-6vdvl-mft6c1u552bwa7",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvl-mft6c1u552bwa7.16000081760413042.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvl-mft6c1u552bwa7.16000081760413042.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvl-mft6c1u552bwa7.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "S10 Pro Max BLACK",
                    "S10 Pro Max PINK",
                    "S10 Pro Max WHITE",
                    "S10 Pro Max BLUE",
                    "S10 ProMax STARLIGHT",
                    "S10 Pro Max BLACK.",
                    "S10 Pro Max PINK.",
                    "S10ProMax STARLIGHT."
                  ],
                  "images": [
                    "id-11134207-8224x-mft691ka3ocrdb",
                    "id-11134207-8224v-mft691ka52x75e",
                    "id-11134207-8224o-mft691ka6hhn98",
                    "id-11134207-8224x-mft691ka7w2333",
                    "id-11134207-8224z-mft691ka9amj94",
                    "id-11134207-82252-mft691kaap6zbc",
                    "id-11134207-82250-mft691kac3rfae",
                    "id-11134207-8224v-mft691kadibv01"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.850877192982456,
                "rating_count": [
                  114,
                  2,
                  0,
                  1,
                  7,
                  104
                ],
                "rcount_with_context": 84,
                "rcount_with_image": 83
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227971369807873,
                "price": 14800000000,
                "strikethrough_price": 68000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-78%",
                "model_id": 224572573663,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 68000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 182,
                "rounded_local_monthly_sold_count": 38,
                "local_monthly_sold_count_text": "38",
                "rounded_display_sold_count": 182,
                "display_sold_count_text": "182"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Situs Cerdas ",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43174033086,
            "shopid": 1578982953,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-miyacpes426e3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1049122,822059908662278,825465608499232,1718093079,1119699,1015914,700190087,1400285055,2023641,2018619,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":736,\"model_id\":224572573663,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-miyacpes426e3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1049122,822059908662278,825465608499232,1718093079,1119699,1015914,700190087,1400285055,2023641,2018619,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":736,\"model_id\":224572573663,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43174033086",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27042886307,
              "shopid": 1344420450,
              "name": "Soft Case Stainless Steel Magnetic Strap for Huawei Watch Fit 4 Pro / Huawei Watch Fit 4 / Huawei Watch Fit 3 Metal Milanese Loop Band TPU Screen Protector Cover Bumper Bracelet Accessories for Tali Jam Tangan Smartwatch Huawei Fit 4 Pro/4/3",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-8259i-mft4g7b7o2z239",
              "images": [
                "sg-11134201-8259i-mft4g7b7o2z239",
                "sg-11134201-8258q-mft4g81jmcjt13",
                "sg-11134201-8258d-mft4g8mrvjm7c3",
                "sg-11134201-8258f-mft4g8vxnpxl70",
                "sg-11134201-8259r-mft4g94bxp1rb1",
                "sg-11134201-8258c-mft4g9dbebd8d1",
                "sg-11134201-825a6-mft4g9y9wavhba",
                "sg-11134201-8257z-mft4gabde9e597",
                "sg-11134201-82582-mft4gatppdzj29"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760409869,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5769000000,
              "price_min": 5769000000,
              "price_max": 5769000000,
              "price_min_before_discount": 10840000000,
              "price_max_before_discount": 10840000000,
              "hidden_price_display": null,
              "price_before_discount": 10840000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-47%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwi-lz8zkg2ad96f91.16000081724323134.mp4",
                  "thumb_url": "sg-11110106-7rdwu-lz8zkpgio28qce",
                  "duration": 12,
                  "version": 2,
                  "vid": "sg-11110106-6khwi-lz8zkg2ad96f91",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwi-lz8zkg2ad96f91.16006711750693718.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwi-lz8zkg2ad96f91.16006711750693718.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwi-lz8zkg2ad96f91.16003251728045249.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwi-lz8zkg2ad96f91.16003251728045249.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwi-lz8zkg2ad96f91.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Pink",
                    "Black",
                    "Gray",
                    "Gold",
                    "Rose Gold",
                    "Siliver"
                  ],
                  "images": [
                    "sg-11134201-825b8-mft4gnnvmxvvc0",
                    "sg-11134201-825b0-mft4gnwgqqdq9e",
                    "sg-11134201-825a9-mft4go5ocyz28b",
                    "sg-11134201-8257y-mft4gof7vl6z1e",
                    "sg-11134201-825ag-mft4gopf2xakbd",
                    "sg-11134201-8259h-mft4goxi1gjz36"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei Fit 3",
                    "Huawei Fit 4",
                    "Huawei Fit 4 Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 374887344785170,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5769000000,
                "strikethrough_price": 10840000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-47%",
                "model_id": 276951035749,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 10840000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 57.690",
                      "hidden_promotion_price": "Rp ?7.690",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "I LOVE LUO",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 27042886307,
            "shopid": 1344420450,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8259i-mft4g7b7o2z239\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":738,\"model_id\":276951035749,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8259i-mft4g7b7o2z239\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":738,\"model_id\":276951035749,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27042886307",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41974014248,
              "shopid": 1191507022,
              "name": "PC Case Silicone Rubber Strap for Samsung Galaxy Fit 3 Anti Gores Screen Protector Bumper Replacement Band Belt Bracelet Cover Accessories for Tali Jam Tangan Smartwatch Samsung Fit 3",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059154,
                1059152,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                298933384,
                1400285055,
                1015914,
                700190087,
                700810080,
                298623321,
                1993623,
                998091078,
                299103323,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-82586-mft3nsgb39xq50",
              "images": [
                "sg-11134201-82586-mft3nsgb39xq50",
                "sg-11134201-8258s-mft3nstu1ix5f1",
                "sg-11134201-825az-mft3nt5yw558b0",
                "sg-11134201-8258j-mft3ntdeha8dba",
                "sg-11134201-82585-mft3ntk0dkaxa4",
                "sg-11134201-8259t-mft3ntqisqo8a0",
                "sg-11134201-825a9-mft3nu5k51qg02",
                "sg-11134201-82585-mft3nun2fzm580",
                "sg-11134201-8258h-mft3nv3mn95b8f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760408541,
              "sold": 38,
              "historical_sold": 179,
              "liked": false,
              "liked_count": 12,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 48,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3090000000,
              "price_min": 3090000000,
              "price_max": 3090000000,
              "price_min_before_discount": 6180000000,
              "price_max_before_discount": 6180000000,
              "hidden_price_display": null,
              "price_before_discount": 6180000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8hl-mfcgp9blqn0qac.16000081759401387.mp4",
                  "thumb_url": "sg-11110106-6v8hl-mfcgp9blqn0qac_cover",
                  "duration": 35,
                  "version": 2,
                  "vid": "sg-11110106-6v8hl-mfcgp9blqn0qac",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8hl-mfcgp9blqn0qac.16000081759401387.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8hl-mfcgp9blqn0qac.16000081759401387.mp4",
                      "width": 1366,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8hl-mfcgp9blqn0qac.default.mp4",
                    "width": 1024,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Transparent + ivory",
                    "Transparent + White ",
                    "Transparent pink",
                    "Transparent + mint",
                    "Transparent + Blue 1",
                    "Purple transparent",
                    "Transparent + yellow",
                    "Transparent + Orange",
                    "Transparent + Green",
                    "Transparent + Red ",
                    "Transparent red wine",
                    "Transparent + Gray ",
                    "Transparent + Blue 2",
                    "Transparent + Black ",
                    "Black + Space Gray",
                    "Black + Blue",
                    "Black + black",
                    " Blue + Space Gray",
                    "Blue + Blue",
                    "Blue + Black",
                    "ivory + ivory",
                    "Pink + Pink",
                    "Green + Green",
                    "ivory",
                    "White",
                    "pink",
                    "mint",
                    "Sky Blue",
                    "Purple",
                    "yellow",
                    "Orange",
                    "Green ",
                    "Red",
                    "Red wine",
                    "Space Gray",
                    "Blue",
                    "Black",
                    "Transparent 1",
                    "Black 1",
                    "Blue 1",
                    "Pink 1",
                    "ivory 1",
                    "Green 1"
                  ],
                  "images": [
                    "sg-11134201-8259b-mft3o7q48z6299",
                    "sg-11134201-8257y-mft3o862oft44e",
                    "sg-11134201-825av-mft3o8exysy2e5",
                    "sg-11134201-825a9-mft3o8mr0lje88",
                    "sg-11134201-825b3-mft3ntcptjbg39",
                    "sg-11134201-8258t-mft3o90qv0uge1",
                    "sg-11134201-82595-mft3o976wlqh44",
                    "sg-11134201-8259u-mft3o9d8qsqy3c",
                    "sg-11134201-825b4-mft3o9pbal1lc4",
                    "sg-11134201-82592-mft3o9wt6ln28a",
                    "sg-11134201-8257t-mft3oa3abifc94",
                    "sg-11134201-82595-mft3oa92adca1f",
                    "sg-11134201-82591-mft3oah8pyq063",
                    "sg-11134201-82597-mft3oampvor106",
                    "sg-11134201-8257t-mft3oasg0kjw7e",
                    "sg-11134201-82590-mft3oayl7kenff",
                    "sg-11134201-825a6-mft3ob4kfoy5cc",
                    "sg-11134201-825am-mft3obaznrwu12",
                    "sg-11134201-825an-mft3obgk95hp89",
                    "sg-11134201-82589-mft3obm9ga303f",
                    "sg-11134201-82581-mft3obt6s2yw10",
                    "sg-11134201-82595-mft3oc5ba22y61",
                    "sg-11134201-825a9-mft3occ6jdajd8",
                    "sg-11134201-825ah-mft3ochues5m37",
                    "sg-11134201-8257x-mft3ocoqhlan00",
                    "sg-11134201-8258u-mft3ocvl09ahe7",
                    "sg-11134201-825bb-mft3od3dl8nda8",
                    "sg-11134201-8258t-mft3odhlwh6x8f",
                    "sg-11134201-825az-mft3odoa6cr20e",
                    "sg-11134201-8258j-mft3odupa6fi89",
                    "sg-11134201-825ac-mft3oe13lwr16c",
                    "sg-11134201-825bd-mft3oe79e0p5e2",
                    "sg-11134201-82593-mft3oefmvwg838",
                    "sg-11134201-825b9-mft3oem3eaksff",
                    "sg-11134201-825as-mft3oesbftvz0a",
                    "sg-11134201-825b7-mft3oeyq70gf1c",
                    "sg-11134201-8259q-mft3of45zm6h0a",
                    "sg-11134201-8259u-mft3ofaa64ug38",
                    "sg-11134201-8259e-mft3ofj2vu3281",
                    "sg-11134201-8259y-mft3ofoqwtmw94",
                    "sg-11134201-82599-mft3ofw5sq2z43",
                    "sg-11134201-82583-mft3og25zx8o3d",
                    "sg-11134201-82596-mft3og7nuz2i49"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.979166666666667,
                "rating_count": [
                  48,
                  0,
                  0,
                  0,
                  1,
                  47
                ],
                "rcount_with_context": 8,
                "rcount_with_image": 13
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 740616519090176,
                "price": 3090000000,
                "strikethrough_price": 6180000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 281950694021,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6180000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 179,
                "rounded_local_monthly_sold_count": 38,
                "local_monthly_sold_count_text": "38",
                "rounded_display_sold_count": 179,
                "display_sold_count_text": "179"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RCAT STORE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41974014248,
            "shopid": 1191507022,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82586-mft3nsgb39xq50\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059154,1059152,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,298933384,1400285055,1015914,700190087,700810080,298623321,1993623,998091078,299103323,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":739,\"model_id\":281950694021,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82586-mft3nsgb39xq50\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059154,1059152,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,298933384,1400285055,1015914,700190087,700810080,298623321,1993623,998091078,299103323,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":739,\"model_id\":281950694021,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41974014248",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44473912434,
              "shopid": 54085967,
              "name": "GARMIN GPSMAP H1 GPS TOUCHSCREEN TOMBOL Garasni Resmi",
              "label_ids": [
                1400066568,
                2018619,
                2023641,
                844931064601283,
                298463379,
                700005495,
                700005490,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608492064,
                825465608493600,
                1119699,
                2048661,
                2048660,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224z-mfrywto8p0r1a8",
              "images": [
                "id-11134207-8224z-mfrywto8p0r1a8",
                "id-11134207-8224o-mfrywto8qfbh40",
                "id-11134207-8224x-mfrywto8rtvxe0",
                "id-11134207-8224u-mfrywto8t8gd6c",
                "id-11134207-8224x-mfrywto8un0t2d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760340609,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 8,
              "view_count": null,
              "catid": 100013,
              "brand": "Garmin",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1199500000000,
              "price_min": 1199500000000,
              "price_max": 1199500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 1199500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 296942408413,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1199500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GFJ Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44473912434,
            "shopid": 54085967,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mfrywto8p0r1a8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,2023641,844931064601283,298463379,700005495,700005490,1718093079,822059908662278,825465608494624,825465608499232,825465608492064,825465608493600,1119699,2048661,2048660,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":270,\"model_id\":296942408413,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mfrywto8p0r1a8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,2023641,844931064601283,298463379,700005495,700005490,1718093079,822059908662278,825465608494624,825465608499232,825465608492064,825465608493600,1119699,2048661,2048660,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":270,\"model_id\":296942408413,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44473912434",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44223895824,
              "shopid": 1485723077,
              "name": "22mm Milanese Loop Strap TPU Case for Redmi Watch 5 Active / 5 Lite Soft Anti Gores Bumper Screen Protector Cover Metal Stainless Steel Band Belt Accessories for Tali Jam Tangan Smartwatch Xiaomi Redmi Watch 5 Active / Mi Watch 5 Lite",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                298463379,
                844931086908638,
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384,
                840955085144628,
                840990690654214,
                298888358,
                298938357,
                2143613,
                2103651,
                1718088045,
                2098628,
                298938368,
                298468389,
                2098629
              ],
              "image": "sg-11134201-824gl-mfrwp6nktmo9c7",
              "images": [
                "sg-11134201-824gl-mfrwp6nktmo9c7",
                "sg-11134201-824jh-mfrwp7et1lho20",
                "sg-11134201-824gy-mfrwp7vlo83x86",
                "sg-11134201-824il-mfrwp8b6bua708",
                "sg-11134201-824ir-mfrwp8q9uuq09d",
                "sg-11134201-824iw-mfrwp904ynm032",
                "sg-11134201-824ix-mfrwp99axwcr62",
                "sg-11134201-824jl-mfrwp9jkivikf3",
                "sg-11134201-824h4-mfrwpa0rzbil05"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760336302,
              "sold": 0,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5690000000,
              "price_min": 5690000000,
              "price_max": 5690000000,
              "price_min_before_discount": 9680000000,
              "price_max_before_discount": 9680000000,
              "hidden_price_display": null,
              "price_before_discount": 9680000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-41%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8j8-mf6obk5kjz0rf4.16000081759050991.mp4",
                  "thumb_url": "sg-11110106-6v8j8-mf6obk5kjz0rf4_cover",
                  "duration": 26,
                  "version": 2,
                  "vid": "sg-11110106-6v8j8-mf6obk5kjz0rf4",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8j8-mf6obk5kjz0rf4.16000081759050991.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8j8-mf6obk5kjz0rf4.16000081759050991.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8j8-mf6obk5kjz0rf4.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "silvery 1",
                    "black 1",
                    "gold 1",
                    "rose gold 1",
                    "Barbie pink 1",
                    "Lavender 1",
                    "sky blue 1",
                    "Space Gray 1",
                    "blue 1",
                    "red 1",
                    "rose pink 1",
                    "vintage gold 1",
                    "Porcelain blue 1",
                    "silvery 2",
                    "black 2",
                    "gold 2",
                    "rose gold 2",
                    "Barbie pink 2",
                    "Lavender 2",
                    "sky blue 2",
                    "Space Gray 2",
                    "blue 2",
                    "red 2",
                    "rose pink 3",
                    "vintage gold 2",
                    "Porcelain blue 2",
                    "black 3",
                    "Space Gray 3",
                    "blue 3",
                    "silvery (Strap)",
                    "black (Strap)",
                    "gold (Strap)",
                    "rose gold (Strap)",
                    "Barbie pink (Strap)",
                    "Lavender (Strap)",
                    "sky blue (Strap)",
                    "Space Gray (Strap)",
                    "blue (Strap)",
                    "red (Strap)",
                    "rose pink (Strap)",
                    "vintage gold (Strap)",
                    "Porcelainblue(Strap)",
                    "transparent",
                    "silvery",
                    "black",
                    "blue",
                    "rose gold",
                    "gold",
                    "pink"
                  ],
                  "images": [
                    "sg-11134201-824hm-mfrwpp4c05jedb",
                    "sg-11134201-824ii-mfrwppefytcef1",
                    "sg-11134201-824h8-mfrwpppfoyks42",
                    "sg-11134201-824i8-mfrwpq00a0b111",
                    "sg-11134201-824i7-mfrwpqe1ddsb0a",
                    "sg-11134201-824hk-mfrwpqvkypzc58",
                    "sg-11134201-824hz-mfrwpr6ewxl9df",
                    "sg-11134201-824iz-mfrwprfpxc0c61",
                    "sg-11134201-824in-mfrwprrzozd5cf",
                    "sg-11134201-824j0-mfrwps7lehaj5a",
                    "sg-11134201-824hg-mfrwpsecye4pd2",
                    "sg-11134201-824im-mfrwpspese165a",
                    "sg-11134201-824h7-mfrwpsx1sf0p7c",
                    "sg-11134201-824ig-mfrwpt5waosr31",
                    "sg-11134201-824hk-mfrwptj0dpu435",
                    "sg-11134201-824hl-mfrwptzedn2n7c",
                    "sg-11134201-824j4-mfrwpu7tphxoba",
                    "sg-11134201-824ip-mfrwpufxu9e1d9",
                    "sg-11134201-824h8-mfrwpuuoq495d5",
                    "sg-11134201-824j2-mfrwpv12tdl45d",
                    "sg-11134201-824g1-mfrwpvg39dlb4b",
                    "sg-11134201-824ij-mfrwpvq9ztamc4",
                    "sg-11134201-824i1-mfrwpvxz0xe387",
                    "sg-11134201-824it-mfrwpw4k29e5f1",
                    "sg-11134201-824j6-mfrwpwbf4mx7ff",
                    "sg-11134201-824ha-mfrwpwijo9ai1a",
                    "sg-11134201-824g7-mfrwpwpoc4y6cd",
                    "sg-11134201-824i2-mfrwpwygb3t601",
                    "sg-11134201-824i2-mfrwpx76iv4beb",
                    "sg-11134201-824iw-mfrwpxerf30s5a",
                    "sg-11134201-824g3-mfrwpxkwulftd1",
                    "sg-11134201-824hm-mfrwpxrtqwi0e2",
                    "sg-11134201-824he-mfrwpxylaux6d5",
                    "sg-11134201-824g5-mfrwpydcjbbi5b",
                    "sg-11134201-824gp-mfrwpymwya6l9f",
                    "sg-11134201-824i0-mfrwpytbxw5pe0",
                    "sg-11134201-824hu-mfrwpyzk0vm71c",
                    "sg-11134201-824jc-mfrwpz9rp0y521",
                    "sg-11134201-824gs-mfrwpzg21hccb5",
                    "sg-11134201-824ii-mfrwpzmqsavh33",
                    "sg-11134201-824j0-mfrwq01z5g5r75",
                    "sg-11134201-824j4-mfrwq09xgtu12c",
                    "sg-11134201-824jf-mfrwq0ftrnd591",
                    "sg-11134201-824iq-mfrwq0sish6z26",
                    "sg-11134201-824iw-mfrwq0z2p2q245",
                    "sg-11134201-824hi-mfrwq15wcsnj3a",
                    "sg-11134201-824iq-mfrwq1ddi7m6e2",
                    "sg-11134201-824gy-mfrwq1nso0ege7",
                    "sg-11134201-824h6-mfrwq1xk58269c"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 5 Active",
                    "Redmi Watch 5 Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744055084991488,
                "price": 5690000000,
                "strikethrough_price": 9680000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-41%",
                "model_id": 271941382624,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 9680000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44223895824,
            "shopid": 1485723077,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824gl-mfrwp6nktmo9c7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,298463379,844931086908638,844931064601283,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,840955085144628,840990690654214,298888358,298938357,2143613,2103651,1718088045,2098628,298938368,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":741,\"model_id\":271941382624,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824gl-mfrwp6nktmo9c7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,298463379,844931086908638,844931064601283,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,840955085144628,840990690654214,298888358,298938357,2143613,2103651,1718088045,2098628,298938368,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":741,\"model_id\":271941382624,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44223895824",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41473886312,
              "shopid": 25309502,
              "name": "WINKEY Smartwatch NaviGO PRO - STRAVA Connectivity | Akurat 99% | Offline Maps | Layar AMOLED",
              "label_ids": [
                1400066568,
                14,
                27,
                38,
                37,
                40,
                58,
                48,
                47,
                1000109,
                1000167,
                1000230,
                1000381,
                1002164,
                1000544,
                1016119,
                1000549,
                1011692,
                1518617,
                1143625,
                1668726,
                2018618,
                298888358,
                298938357,
                2153644,
                700085405,
                1400095067,
                700195016,
                1400285005,
                844931064601283,
                298463379,
                700005490,
                1049120,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                825465608493600,
                825465608494624,
                1119699,
                700765096,
                1015914,
                700190087,
                2213652,
                1400285055,
                2098628,
                298938368,
                2098629,
                1718088045,
                298468389
              ],
              "image": "id-11134207-81ztf-mfrrlbclmpla00",
              "images": [
                "id-11134207-81ztf-mfrrlbclmpla00",
                "id-11134207-81ztm-mfrrlbclqxam60",
                "id-11134207-81ztd-mfrrlbclxy4ub1",
                "id-11134207-81ztj-mfrrlbclo45qa6",
                "id-11134207-81zte-mfrrlbcllb0u07",
                "id-11134207-81ztj-mfrrlbcltqfi64",
                "id-11134207-81zth-mfrrlbclpiq64b",
                "id-11134207-81ztp-mfrrlbclv4zye0",
                "id-11134207-81ztl-mfrrlbclwjke0a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760329548,
              "sold": 10,
              "historical_sold": 20,
              "liked": false,
              "liked_count": 168,
              "view_count": null,
              "catid": 100013,
              "brand": "WINKEY",
              "cmt_count": 7,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 129900000000,
              "price_min": 129900000000,
              "price_max": 129900000000,
              "price_min_before_discount": 499900000000,
              "price_max_before_discount": 499900000000,
              "hidden_price_display": null,
              "price_before_discount": 499900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-74%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvk-mfrs6i7x77rj25.16000081760328703.mp4",
                  "thumb_url": "id-11110105-6vdvk-mfrs6i7x77rj25_cover",
                  "duration": 58,
                  "version": 2,
                  "vid": "id-11110105-6vdvk-mfrs6i7x77rj25",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvk-mfrs6i7x77rj25.16000081760328703.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvk-mfrs6i7x77rj25.16000081760328703.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvk-mfrs6i7x77rj25.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Grey (+Black Strap)",
                    "Free Strap"
                  ],
                  "images": [
                    "id-11134207-81ztf-mfrsnqs08170c3",
                    "id-11134207-8224y-mgokk1koxssubf"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  7,
                  0,
                  0,
                  0,
                  0,
                  7
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 412179090391585,
                "add_on_deal_label": "Kombo Hemat",
                "sub_type": 0,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp216RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 811534591246336,
                "price": 129900000000,
                "strikethrough_price": 499900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-74%",
                "model_id": 196309496751,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 499900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 20,
                "rounded_local_monthly_sold_count": 10,
                "local_monthly_sold_count_text": "10",
                "rounded_display_sold_count": 20,
                "display_sold_count_text": "20"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp216RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Winkey Official",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41473886312,
            "shopid": 25309502,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztf-mfrrlbclmpla00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,14,27,38,37,40,58,48,47,1000109,1000167,1000230,1000381,1002164,1000544,1016119,1000549,1011692,1518617,1143625,1668726,2018618,298888358,298938357,2153644,700085405,1400095067,700195016,1400285005,844931064601283,298463379,700005490,1049120,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,825465608494624,1119699,700765096,1015914,700190087,2213652,1400285055,2098628,298938368,2098629,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":364,\"model_id\":196309496751,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztf-mfrrlbclmpla00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,14,27,38,37,40,58,48,47,1000109,1000167,1000230,1000381,1002164,1000544,1016119,1000549,1011692,1518617,1143625,1668726,2018618,298888358,298938357,2153644,700085405,1400095067,700195016,1400285005,844931064601283,298463379,700005490,1049120,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,825465608494624,1119699,700765096,1015914,700190087,2213652,1400285055,2098628,298938368,2098629,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":364,\"model_id\":196309496751,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41473886312",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42623873514,
              "shopid": 1326292815,
              "name": "(Untuk Android) 1-4PCS  Mili MiTag Android Smart Tag - Pelacak Bluetooth Anti Lost untuk Kunci, Tas, Dompet, Compatible dengan Google Find My Device, IP67 Waterproof, Baterainya Tahan Lama",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1400285055,
                298933384,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "id-11134207-81zth-mfrpzb1mmn0s81",
              "images": [
                "id-11134207-81zth-mfrpzb1mmn0s81",
                "id-11134207-81ztc-mfrpzb1mo1l85a",
                "id-11134207-81ztn-mfrr7uqu9mhbca",
                "id-11134207-81ztj-mfrr7uqsbe32e0",
                "id-11134207-81ztd-mfrr7uqwj3f173",
                "id-11134207-81zti-mfrr7uqscsni7c",
                "id-11134207-81ztk-mfrr7urx7h8r22",
                "id-11134207-81ztm-mfrr7uqwlwjxa2",
                "id-11134207-81ztk-mfrr7urx0geg21"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760327143,
              "sold": 54,
              "historical_sold": 169,
              "liked": false,
              "liked_count": 70,
              "view_count": null,
              "catid": 100013,
              "brand": "Mili",
              "cmt_count": 55,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 13200000000,
              "price_min": 13200000000,
              "price_max": 13200000000,
              "price_min_before_discount": 20900000000,
              "price_max_before_discount": 20900000000,
              "hidden_price_display": null,
              "price_before_discount": 20900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-37%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdve-mfs1k1oqzggbd5.16000101760344488.mp4",
                  "thumb_url": "id-11110105-6vdve-mfs1k1oqzggbd5_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6vdve-mfs1k1oqzggbd5",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdve-mfs1k1oqzggbd5.16000101760344488.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdve-mfs1k1oqzggbd5.16000101760344488.mp4",
                      "width": 952,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdve-mfs1k1oqzggbd5.default.mp4",
                    "width": 952,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Kuantitas",
                  "options": [
                    "Hitam-1PCS",
                    "Hitam-2PCS",
                    "Hitam-3PCS",
                    "Hitam-4PCS",
                    "Putih-1PCS",
                    "Putih-2PCS",
                    "Putih-3PCS",
                    "Putih-4PCS"
                  ],
                  "images": [
                    "id-11134207-81ztl-mfrpzb1mbeh83f",
                    "id-11134207-81zte-mfrpzb1me7m406",
                    "id-11134207-81ztf-mfrpzb1mfm6k33",
                    "id-11134207-81zte-mfrpzb1mh0r014",
                    "id-11134207-81zto-mfrpzb1mct1oec",
                    "id-11134207-81ztn-mfrpzb1mifbg46",
                    "id-11134207-81ztf-mfrpzb1mjtvwae",
                    "id-11134207-81ztm-mfrpzb1ml8gc7f"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.963636363636364,
                "rating_count": [
                  55,
                  0,
                  0,
                  0,
                  2,
                  53
                ],
                "rcount_with_context": 21,
                "rcount_with_image": 20
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-81zth-mfrpzb1mmn0s81",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228209774047233,
                "price": 12800000000,
                "strikethrough_price": 20900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1330018375843840,
                "discount_text": "-37%",
                "model_id": 276939705225,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1330018375843840,
                  "voucher_code": "ACER0113",
                  "voucher_discount": 400000000,
                  "time_info": {
                    "start_time": 1768009740,
                    "end_time": 1776049080,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 9000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 20900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 169,
                "rounded_local_monthly_sold_count": 54,
                "local_monthly_sold_count_text": "54",
                "rounded_display_sold_count": 169,
                "display_sold_count_text": "169"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Acer Indonesia Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42623873514,
            "shopid": 1326292815,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zth-mfrpzb1mmn0s81\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1049122,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,1400285055,298933384,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":169,\"model_id\":276939705225,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zth-mfrpzb1mmn0s81\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1049122,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,1400285055,298933384,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":169,\"model_id\":276939705225,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42623873514",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44423858872,
              "shopid": 1485723077,
              "name": "Tempered Glass PC Case for Samsung Galaxy Watch 6 44mm / Galaxy Watch 6 40mm Full Coverage Cover Anti Gores Bumper Screen Protector Frame with Film Accessories for Jam Tangan Smartwatch Samsung Galaxy Watch 6 40mm 44mm",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384,
                840990690654214,
                840955085144628,
                2048660,
                2048661,
                298888358,
                298938357,
                700765096,
                298938368,
                2098628,
                2098629,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-824hd-mfrppbedmej17b",
              "images": [
                "sg-11134201-824hd-mfrppbedmej17b",
                "sg-11134201-824jj-mfrppc66znkcc6",
                "sg-11134201-824hm-mfrppcryboqyc6",
                "sg-11134201-824hv-mfrppd7rn4zwb1",
                "sg-11134201-824gu-mfrppdq156a73e",
                "sg-11134201-824iy-mfrppe665zbddd",
                "sg-11134201-824gf-mfrppelv9q8d60",
                "sg-11134201-824ge-mfrppf6mo3yj57",
                "sg-11134201-824j8-mfrppfk25atk59"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760324538,
              "sold": 1,
              "historical_sold": 8,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2190000000,
              "price_min": 2190000000,
              "price_max": 2190000000,
              "price_min_before_discount": 5580000000,
              "price_max_before_discount": 5580000000,
              "hidden_price_display": null,
              "price_before_discount": 5580000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-61%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black(case)",
                    "Silver(case)",
                    "pink(case)",
                    "Rose Gold(case)",
                    "Star(case)",
                    "Transparent(case)"
                  ],
                  "images": [
                    "sg-11134201-824hh-mfrpps5mjlzh47",
                    "sg-11134201-824h8-mfrppsfg4ob29d",
                    "sg-11134201-824gm-mfrppsqraccpf1",
                    "sg-11134201-824j0-mfrppt4mvnrj5a",
                    "sg-11134201-824h1-mfrpptg6b5sa96",
                    "sg-11134201-824iv-mfrpptrb9fymcb"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "for Galaxy 6 40mm",
                    "for Galaxy 6 44mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.333333333333333,
                "rating_count": [
                  3,
                  0,
                  0,
                  1,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 393092813566800,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744055084991488,
                "price": 2190000000,
                "strikethrough_price": 5580000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-61%",
                "model_id": 296939123722,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5580000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 8,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 8,
                "display_sold_count_text": "8"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44423858872,
            "shopid": 1485723077,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824hd-mfrppbedmej17b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,840990690654214,840955085144628,2048660,2048661,298888358,298938357,700765096,298938368,2098628,2098629,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":742,\"model_id\":296939123722,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824hd-mfrppbedmej17b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,840990690654214,840955085144628,2048660,2048661,298888358,298938357,700765096,298938368,2098628,2098629,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":742,\"model_id\":296939123722,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44423858872",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44223859022,
              "shopid": 1485723077,
              "name": "Rubber Band Strap for IWatch Apple Watch Ultra 3 2 SE 3 2 Series 11 10 9 8 7 6 5 4 3 2 49mm 46mm 45mm 41mm 44mm 40mm 42mm 38mm Soft Sport Silicone Belt Accessories for Tali Jam Tangan Smartwatch T900 T800 Ultra I8 Pro Max S8 S9 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                298933384,
                840990690654214,
                840955085144628,
                2048660,
                2048661,
                298888358,
                298938357,
                700765096,
                1015914,
                700190087,
                2098628,
                1718088045,
                2098629,
                298938368,
                298468389
              ],
              "image": "sg-11134201-824iw-mfrppalzdki420",
              "images": [
                "sg-11134201-824iw-mfrppalzdki420",
                "sg-11134201-824jg-mfrppb8f7qbs13",
                "sg-11134201-824j4-mfrppblyzh8o59",
                "sg-11134201-824hi-mfrppbxvhgcqdd",
                "sg-11134201-824h5-mfrppcave87e7b",
                "sg-11134201-824iq-mfrppclylcek68",
                "sg-11134201-824ir-mfrppcyq19fs0f",
                "sg-11134201-824jc-mfrppdb7u6mm94",
                "sg-11134201-824gd-mfrppdolsmx708"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760324536,
              "sold": 15,
              "historical_sold": 24,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2690000000,
              "price_min": 2690000000,
              "price_max": 2690000000,
              "price_min_before_discount": 5000000000,
              "price_max_before_discount": 5000000000,
              "hidden_price_display": null,
              "price_before_discount": 5000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-46%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khxy-lzot8klmn4qf3a.16000081725281034.mp4",
                  "thumb_url": "sg-11110106-7rdx2-lzot8ogwzn67a5",
                  "duration": 44,
                  "version": 2,
                  "vid": "sg-11110106-6khxy-lzot8klmn4qf3a",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxy-lzot8klmn4qf3a.16003251731649372.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxy-lzot8klmn4qf3a.16003251731649372.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxy-lzot8klmn4qf3a.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black(strap)",
                    "White(strap)",
                    "Milk Tea(strap)",
                    "Star(strap)",
                    "Dark Purple(strap)",
                    "Green(strap)",
                    "Pink(strap)",
                    "Lavender(strap)",
                    "Clear Blue(strap)",
                    "Clear pink(strap)",
                    "Clear(strap)"
                  ],
                  "images": [
                    "sg-11134201-824g6-mfrppqedux3h75",
                    "sg-11134201-824io-mfrppqtqjxu58b",
                    "sg-11134201-824gu-mfrppr5zuospd6",
                    "sg-11134201-824g7-mfrppronmsct21",
                    "sg-11134201-824j4-mfrpps0gqlmz0a",
                    "sg-11134201-824ht-mfrppsdqir6601",
                    "sg-11134201-824gq-mfrppsuxxr0o8c",
                    "sg-11134201-824j2-mfrppt83te6m30",
                    "sg-11134201-824ip-mfrpptlowwek82",
                    "sg-11134201-824g7-mfrppu0n91qn4f",
                    "sg-11134201-824ja-mfrppud6rthp9e"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "41/40/38/(S10)42mm",
                    "49/46/45/44/42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  0,
                  4
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 393092813566800,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744055084991488,
                "price": 2690000000,
                "strikethrough_price": 5000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-46%",
                "model_id": 238162501855,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 24,
                "rounded_local_monthly_sold_count": 15,
                "local_monthly_sold_count_text": "15",
                "rounded_display_sold_count": 24,
                "display_sold_count_text": "24"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44223859022,
            "shopid": 1485723077,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824iw-mfrppalzdki420\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,840990690654214,840955085144628,2048660,2048661,298888358,298938357,700765096,1015914,700190087,2098628,1718088045,2098629,298938368,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":744,\"model_id\":238162501855,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824iw-mfrppalzdki420\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,298933384,840990690654214,840955085144628,2048660,2048661,298888358,298938357,700765096,1015914,700190087,2098628,1718088045,2098629,298938368,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":744,\"model_id\":238162501855,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44223859022",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40123871937,
              "shopid": 1485723077,
              "name": "22mm 20mm Quick Release Rubber Strap Band for Tali Jam Tangan Smartwatch Samsung Watch Galaxy Watch 7 6 5 4 FE for Garmin/Huawei GT 5 4 3 2/Amazfit Bip 6 GTS GTR/Xiaomi Watch S4 S1 S2 S3/ Active/Redmi Watch 5 Active/5 Lite/Itel 011 12/Aolon/Advan",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                2048660,
                2048661,
                840955085144628,
                840990690654214,
                298888358,
                298938357,
                700765096,
                298933384,
                298938368,
                298468389,
                2098629,
                2098628,
                1718088045
              ],
              "image": "sg-11134201-824ig-mfrpoihi3qq7df",
              "images": [
                "sg-11134201-824ig-mfrpoihi3qq7df",
                "sg-11134201-824h7-mfrpok0w9clrc0",
                "sg-11134201-824hp-mfrpokftjkllf3",
                "sg-11134201-824hv-mfrpokr2jxu7aa",
                "sg-11134201-824gz-mfrpol2dedcead",
                "sg-11134201-824gq-mfrpole0aubx59",
                "sg-11134201-824gi-mfrpolxgzua232",
                "sg-11134201-824gg-mfrpom883ifd83",
                "sg-11134201-824gw-mfrpommk2qrx95"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760324501,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2690000000,
              "price_min": 2690000000,
              "price_max": 2690000000,
              "price_min_before_discount": 5800000000,
              "price_max_before_discount": 5800000000,
              "hidden_price_display": null,
              "price_before_discount": 5800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khxv-m3xd0ebwqn5y3d.16000081734515517.mp4",
                  "thumb_url": "sg-11110106-6khxv-m3xd0ebwqn5y3d_cover",
                  "duration": 38,
                  "version": 2,
                  "vid": "sg-11110106-6khxv-m3xd0ebwqn5y3d",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxv-m3xd0ebwqn5y3d.16003251738383602.mp4",
                      "url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxv-m3xd0ebwqn5y3d.16003251738383602.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxv-m3xd0ebwqn5y3d.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Orange(strap)",
                    "Star(strap)",
                    "Stone(strap)",
                    "Pink Sands(strap)",
                    "Pine green(strap)",
                    "Black(strap)",
                    "Wine red(strap)",
                    "Navy blue(strap)",
                    "Red(strap)",
                    "Purple(strap)",
                    "Lavender(strap)",
                    "White(strap)",
                    "Olive(strap)"
                  ],
                  "images": [
                    "sg-11134201-824jd-mfrpoza12hvtb8",
                    "sg-11134201-824gw-mfrpozmo3qby09",
                    "sg-11134201-824hr-mfrpozvc7mz06a",
                    "sg-11134201-824g3-mfrpp05hcft559",
                    "sg-11134201-824i9-mfrpp0gnjrbj89",
                    "sg-11134201-824hq-mfrpp0ouzvgr29",
                    "sg-11134201-824i1-mfrpp10xz2fec8",
                    "sg-11134201-824hv-mfrpp19ix72k62",
                    "sg-11134201-824ix-mfrpp1ky6cr0ea",
                    "sg-11134201-824iv-mfrpp1v2uaru0c",
                    "sg-11134201-824j1-mfrpp28whfdaa6",
                    "sg-11134201-824ge-mfrpp2hu2o0881",
                    "sg-11134201-824go-mfrpp2r0wt8odd"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm ",
                    "22mm "
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 393092813566800,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744055084991488,
                "price": 2690000000,
                "strikethrough_price": 5800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 249017300112,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 5800000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40123871937,
            "shopid": 1485723077,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824ig-mfrpoihi3qq7df\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,2048660,2048661,840955085144628,840990690654214,298888358,298938357,700765096,298933384,298938368,298468389,2098629,2098628,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":745,\"model_id\":249017300112,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824ig-mfrpoihi3qq7df\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,2048660,2048661,840955085144628,840990690654214,298888358,298938357,700765096,298933384,298938368,298468389,2098629,2098628,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":745,\"model_id\":249017300112,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40123871937",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29642860163,
              "shopid": 1485723077,
              "name": "20mm Quick Release Silicone Strap for Samsung Galaxy Watch FE 7 6 5 4 40mm 44mm 6 Classic 43mm 47mm 5 LTE 5 Pro 45mm 4 Classic 42 46mm Active 2 Parttern Printed Sport Bracelet Belt Band for Tali Jam Tangan Smartwatch Huawei Watch GT 42mm/Amazfit/Garmin",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1059154,
                1059152,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1119699,
                840955085144628,
                840990690654214,
                2048660,
                2048661,
                298888358,
                298938357,
                700765096,
                298933384,
                1015914,
                700190087,
                1400285055,
                298468389,
                2098629,
                1718088045,
                298938368,
                2098628
              ],
              "image": "sg-11134201-824in-mfrppb8lkqh49f",
              "images": [
                "sg-11134201-824in-mfrppb8lkqh49f",
                "sg-11134201-824j6-mfrppbrllwcp5f",
                "sg-11134201-824i7-mfrppc1hufpm55",
                "sg-11134201-824io-mfrppcf8u03t60",
                "sg-11134201-824iz-mfrppcoouadr52",
                "sg-11134201-824gv-mfrppd72zfns89",
                "sg-11134201-824hk-mfrppdkf9edn6e",
                "sg-11134201-824gq-mfrppe1fqeq181",
                "sg-11134201-824ji-mfrppeg7mtxk8d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760324537,
              "sold": 16,
              "historical_sold": 21,
              "liked": false,
              "liked_count": 14,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 7,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3500000000,
              "price_min": 3500000000,
              "price_max": 3500000000,
              "price_min_before_discount": 7800000000,
              "price_max_before_discount": 7800000000,
              "hidden_price_display": null,
              "price_before_discount": 7800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-55%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "red(strap)",
                    "redblack(strap)",
                    "butterfly(strap)",
                    "leopardbrown(strap)",
                    "footprints(strap)",
                    "multicolor(strap)",
                    "flower(strap)",
                    "fish(strap)"
                  ],
                  "images": [
                    "sg-11134201-824gp-mfrppr5xwhzh54",
                    "sg-11134201-824j8-mfrppre59rf29d",
                    "sg-11134201-824g2-mfrpprocsah505",
                    "sg-11134201-824il-mfrpps63y39oab",
                    "sg-11134201-824hy-mfrppsfnfci579",
                    "sg-11134201-824h3-mfrppsr6xm2z97",
                    "sg-11134201-824g9-mfrppt3xio7e2d",
                    "sg-11134201-824hd-mfrpptdkjpjd7d"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  7,
                  0,
                  0,
                  0,
                  0,
                  7
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 393092813566800,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744055084991488,
                "price": 3500000000,
                "strikethrough_price": 7800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-55%",
                "model_id": 286939136794,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7800000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 21,
                "rounded_local_monthly_sold_count": 16,
                "local_monthly_sold_count_text": "16",
                "rounded_display_sold_count": 21,
                "display_sold_count_text": "21"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 29642860163,
            "shopid": 1485723077,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824in-mfrppb8lkqh49f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059154,1059152,822059908662278,825465608497696,825465608494624,825465608499232,1119699,840955085144628,840990690654214,2048660,2048661,298888358,298938357,700765096,298933384,1015914,700190087,1400285055,298468389,2098629,1718088045,298938368,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":743,\"model_id\":286939136794,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824in-mfrppb8lkqh49f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1059154,1059152,822059908662278,825465608497696,825465608494624,825465608499232,1119699,840955085144628,840990690654214,2048660,2048661,298888358,298938357,700765096,298933384,1015914,700190087,1400285055,298468389,2098629,1718088045,298938368,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":743,\"model_id\":286939136794,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29642860163",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42423836961,
              "shopid": 1631881052,
              "name": "GPS Tracker Motor 4G Kontrol Aplikasi Untuk Mematikan Mesin Alarm Pembongkaran",
              "label_ids": [
                844931064601283,
                1049112,
                1049127,
                822059908662278,
                825465608499232,
                1718093079,
                1119699,
                700810080
              ],
              "image": "id-11134207-7r98p-lsjldbgiol3h93",
              "images": [
                "id-11134207-7r98p-lsjldbgiol3h93",
                "id-11134207-7r98x-lsjldbgire8d14",
                "id-11134207-7r98t-lsjldbgipznxb5",
                "id-11134207-7r98x-ls6h49ltoxxpaa",
                "id-11134207-7r98q-ls6h49ltvyrx16",
                "id-11134207-7r98w-ls6h49ltuk7he6",
                "id-11134207-7r98o-ls6h49ltt5n139",
                "id-11134207-7r990-ls6h49ltqci5c2",
                "id-11134207-7rbkb-m9joaayp677x32"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760300618,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 16142400000,
              "price_min": 16142400000,
              "price_max": 16142400000,
              "price_min_before_discount": 33984000000,
              "price_max_before_discount": 33984000000,
              "hidden_price_display": null,
              "price_before_discount": 33984000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Model",
                  "options": [
                    "GT02A",
                    "GF07"
                  ],
                  "images": [
                    "id-11134207-7r98t-ls6h49ltnj9i97",
                    "id-11134207-7rbk1-m9jmie8s2pkd47"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 760810968760320,
                "price": 16142400000,
                "strikethrough_price": 33984000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 266937282238,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 33984000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "_vw05k1jei",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE0YmRkYjNiMTg1OTgwN2RjMDA6MDIwMDAwOGI3ZTRlNDY1MDowMTAwMDEwNWFkN2U4ZWZkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42423836961,
            "shopid": 1631881052,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98p-lsjldbgiol3h93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1049127,822059908662278,825465608499232,1718093079,1119699,700810080],\"matched_keywords\":[\"\"],\"merge_rank\":746,\"model_id\":266937282238,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98p-lsjldbgiol3h93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1049127,822059908662278,825465608499232,1718093079,1119699,700810080],\"matched_keywords\":[\"\"],\"merge_rank\":746,\"model_id\":266937282238,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42423836961",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41373672898,
              "shopid": 1174107739,
              "name": "โœฆReady ya,codโœฆRealtime Car GPS Tracker ST-901 Vehicle Tracking Device Waterproof Motorcycle Car Mini Gps Gsm Sms Locator With Real Time Tracking Original Gsm Alarm Anti-Theft Tracking Device Car/Vehicle/Motorcycle",
              "label_ids": [
                2023641,
                2018619,
                844931064601283,
                844931086908638,
                700005490,
                1049120,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079,
                1119699,
                1428713,
                1718087960,
                1400285055,
                1015914,
                700190087,
                298933384
              ],
              "image": "sg-11134201-824ir-mfpa8pndlt6ze7",
              "images": [
                "sg-11134201-824ir-mfpa8pndlt6ze7",
                "sg-11134201-824i7-mfpa8rfdq0wa23",
                "sg-11134201-824h9-mfpa8seb1wy630",
                "sg-11134201-824ix-mfpa8t3ewydo9b",
                "sg-11134201-824jd-mfpa8uwqd0y211",
                "sg-11134201-824gq-mfpa8voa0lqn44",
                "sg-11134201-824j5-mfpa8wges26n8c",
                "sg-11134201-824hh-mfpa8xfr7ifi4a",
                "sg-11134201-824gy-mfpa8yck3nyl62"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760177479,
              "sold": 9,
              "historical_sold": 68,
              "liked": false,
              "liked_count": 27,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 18,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5250000000,
              "price_min": 5250000000,
              "price_max": 5250000000,
              "price_min_before_discount": 13224400000,
              "price_max_before_discount": 13224400000,
              "hidden_price_display": null,
              "price_before_discount": 13224400000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-60%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8ib-mfpa92y5xafeb0.16000101760177486.mp4",
                  "thumb_url": "sg-11110106-6v8ib-mfpa92y5xafeb0_cover",
                  "duration": 15,
                  "version": 2,
                  "vid": "sg-11110106-6v8ib-mfpa92y5xafeb0",
                  "formats": [
                    {
                      "format": 1600010,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8ib-mfpa92y5xafeb0.16000101760177486.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8ib-mfpa92y5xafeb0.16000101760177486.mp4",
                      "width": 676,
                      "height": 540
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8ib-mfpa92y5xafeb0.default.mp4",
                    "width": 676,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Size",
                  "options": [
                    "GF07",
                    "With built Battery"
                  ],
                  "images": [
                    "sg-11134201-824gi-mfpa8yz8hhqi0a",
                    "sg-11134201-824gh-mfpa8zt9rjf36c"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.444444444444445,
                "rating_count": [
                  18,
                  2,
                  0,
                  1,
                  0,
                  15
                ],
                "rcount_with_context": 9,
                "rcount_with_image": 8
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 828226973270016,
                "price": 5250000000,
                "strikethrough_price": 13224400000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-60%",
                "model_id": 224567500874,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 13224400000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 68,
                "rounded_local_monthly_sold_count": 9,
                "local_monthly_sold_count_text": "9",
                "rounded_display_sold_count": 68,
                "display_sold_count_text": "68"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "101PERSEN",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41373672898,
            "shopid": 1174107739,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824ir-mfpa8pndlt6ze7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,844931064601283,844931086908638,700005490,1049120,822059908662278,825465608497696,825465608499232,1718093079,1119699,1428713,1718087960,1400285055,1015914,700190087,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":748,\"model_id\":224567500874,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824ir-mfpa8pndlt6ze7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,844931064601283,844931086908638,700005490,1049120,822059908662278,825465608497696,825465608499232,1718093079,1119699,1428713,1718087960,1400285055,1015914,700190087,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":748,\"model_id\":224567500874,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41373672898",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42223519261,
              "shopid": 1344414745,
              "name": "Soft TPU Case Milanese Loop Stainless Steel Strap for Samsung Galaxy Fit 3 Strap Magnetic Metal Band With Soft Bumper Screen Protective Cover Anti Gores Accessories Tali Jam Tangan Smartwatch for Samsung Fit 3",
              "label_ids": [
                2018619,
                1428713,
                1718087960,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                844931086908638,
                844931064601283,
                298933384,
                2023641,
                1015914,
                700190087,
                2048660,
                2048661,
                840955085144628,
                840990690654214,
                700765096,
                1400285055,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824gb-mfnv0y6umqyz5c",
              "images": [
                "sg-11134201-824gb-mfnv0y6umqyz5c",
                "sg-11134201-824gn-mfnv16l9d1xr4b",
                "sg-11134201-824h2-mfnv1712u2vd78",
                "sg-11134201-824g8-mfnv17il7tvz9d",
                "sg-11134201-824hl-mfnv17vah4pa20",
                "sg-11134201-824j4-mfnv18fi7h1q92",
                "sg-11134201-824gg-mfnv191824nc16",
                "sg-11134201-824h9-mfnv19t6qgi756",
                "sg-11134201-824ik-mfnv1akde8lm0b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760091362,
              "sold": 17,
              "historical_sold": 72,
              "liked": false,
              "liked_count": 24,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 27,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5700000000,
              "price_min": 5700000000,
              "price_max": 5700000000,
              "price_min_before_discount": 9000000000,
              "price_max_before_discount": 9000000000,
              "hidden_price_display": null,
              "price_before_discount": 9000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-37%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kiqh-mata2twfhyznaa.16000081749523134.mp4",
                  "thumb_url": "sg-11110106-6kiqh-mata2twfhyznaa_cover",
                  "duration": 34,
                  "version": 2,
                  "vid": "sg-11110106-6kiqh-mata2twfhyznaa",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiqh-mata2twfhyznaa.16000081749523134.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiqh-mata2twfhyznaa.16000081749523134.mp4",
                      "width": 1280,
                      "height": 672
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiqh-mata2twfhyznaa.default.mp4",
                    "width": 1028,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "silvery+transparent",
                    "black+black",
                    "rose pink+rose pink ",
                    "rose gold+rose gold",
                    "gold+gold",
                    "starlight+gold",
                    "Gray+transparent",
                    "silvery (Strap)",
                    "black (Strap)",
                    "rose pink (Strap)",
                    " rose gold (Strap)",
                    "gold (Strap)",
                    " starlight (Strap)",
                    "Space Gray (Strap)",
                    "transparent (Case)",
                    "silvery (Case)",
                    "black (Case)",
                    "rose pink (Case)",
                    "rose gold (Case)",
                    "gold (Case)",
                    "green (Case)",
                    "blue (Case)"
                  ],
                  "images": [
                    "sg-11134201-824j4-mfnv1n5xd53j69",
                    "sg-11134201-824gm-mfnv1nc0j6ktc5",
                    "sg-11134201-824ip-mfnv1njiktfu7d",
                    "sg-11134201-824gv-mfnv1nqsxtla5e",
                    "sg-11134201-824je-mfnv1nwspki53d",
                    "sg-11134201-824gr-mfnv1o5fsydp51",
                    "sg-11134201-824ho-mfnv1oe8a87j99",
                    "sg-11134201-824i1-mfnv1on9kwso30",
                    "sg-11134201-824gf-mfnv1p08mozsd0",
                    "sg-11134201-824h8-mfnv1pa2j1fyed",
                    "sg-11134201-824ho-mfnv1pirj7kfc1",
                    "sg-11134201-824g9-mfnv1psf400961",
                    "sg-11134201-824ie-mfnv1qi4wf0s8d",
                    "sg-11134201-824j7-mfnv1qrluex5cd",
                    "sg-11134201-824g3-mfnv1r9fchs89b",
                    "sg-11134201-824ho-mfnv1rg226mm1b",
                    "sg-11134201-824gq-mfnv1rmrwc2202",
                    "sg-11134201-824gl-mfnv1rsushzia0",
                    "sg-11134201-824gi-mfnv1rz0ym1a44",
                    "sg-11134201-824g7-mfnv1s4r0n4b2b",
                    "sg-11134201-824iu-mfnv1sagsu8980",
                    "sg-11134201-824gf-mfnv1sh5fg2546"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "for Samsung Fit 3"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.851851851851852,
                "rating_count": [
                  27,
                  0,
                  0,
                  1,
                  2,
                  24
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 749772776980480,
                "price": 5700000000,
                "strikethrough_price": 9000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-37%",
                "model_id": 301912842677,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 9000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 72,
                "rounded_local_monthly_sold_count": 17,
                "local_monthly_sold_count_text": "17",
                "rounded_display_sold_count": 72,
                "display_sold_count_text": "72"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "LCAPLE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42223519261,
            "shopid": 1344414745,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824gb-mfnv0y6umqyz5c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,844931086908638,844931064601283,298933384,2023641,1015914,700190087,2048660,2048661,840955085144628,840990690654214,700765096,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":751,\"model_id\":301912842677,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824gb-mfnv0y6umqyz5c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,844931086908638,844931064601283,298933384,2023641,1015914,700190087,2048660,2048661,840955085144628,840990690654214,700765096,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":751,\"model_id\":301912842677,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42223519261",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40873410261,
              "shopid": 284175299,
              "name": "[NEW LAUNCH] UltraWatch Series 11 Smartwatch AMOLED Display 46mm โ€“ GPS, Water Resistant, Sport Mode, Bluetooth 5.3, Original Premium - by PodsIndonesia",
              "label_ids": [
                700700063,
                2018619,
                298888358,
                2023641,
                1718072935,
                298938357,
                700025016,
                1428713,
                1718087960,
                844931064601283,
                1049112,
                1049133,
                822059908662278,
                825465608499232,
                1015914,
                700190087,
                1400285055,
                825465608497696,
                298463379,
                1718093079,
                298938368,
                2098628,
                2098629,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224s-mg21o9kl67ex9b",
              "images": [
                "id-11134207-8224s-mg21o9kl67ex9b",
                "id-11134207-8224y-mg21o9kn78y3d8",
                "id-11134207-8224p-mg21o9khmdqgb8",
                "id-11134207-8224q-mg21o9l9y61a12",
                "id-11134207-8224z-mg21o9kt0jkdf9",
                "id-11134207-8224s-mg21o9kujbpoe6"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760023264,
              "sold": 33,
              "historical_sold": 83,
              "liked": false,
              "liked_count": 264,
              "view_count": null,
              "catid": 100013,
              "brand": "Smart Watch",
              "cmt_count": 45,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 79359500000,
              "price_min": 79359500000,
              "price_max": 79359500000,
              "price_min_before_discount": 499999900000,
              "price_max_before_discount": 499999900000,
              "hidden_price_display": null,
              "price_before_discount": 499999900000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-84%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Varian Warna",
                  "options": [
                    "Black",
                    "Silver",
                    "Gold"
                  ],
                  "images": [
                    "id-11134207-8224z-mg21o9l8s0zud8",
                    "id-11134207-8224o-mg21o9l8tfka76",
                    "id-11134207-8224t-mg21o9l8uu4q44"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.555555555555555,
                "rating_count": [
                  45,
                  2,
                  2,
                  2,
                  2,
                  37
                ],
                "rcount_with_context": 8,
                "rcount_with_image": 7
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-8224s-mg21o9kl67ex9b",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Bandung",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp129RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 809482544791552,
                "price": 77859500000,
                "strikethrough_price": 499999900000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1312033627455488,
                "discount_text": "-84%",
                "model_id": 261903241768,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1312033627455488,
                  "voucher_code": "PODS15K",
                  "voucher_discount": 1500000000,
                  "time_info": {
                    "start_time": 1765866360,
                    "end_time": 1772297940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 75000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 499999900000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 83,
                "rounded_local_monthly_sold_count": 33,
                "local_monthly_sold_count_text": "33",
                "rounded_display_sold_count": 83,
                "display_sold_count_text": "83"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp129RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Pods Indonesia Official Mall",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40873410261,
            "shopid": 284175299,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mg21o9kl67ex9b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,298888358,2023641,1718072935,298938357,700025016,1428713,1718087960,844931064601283,1049112,1049133,822059908662278,825465608499232,1015914,700190087,1400285055,825465608497696,298463379,1718093079,298938368,2098628,2098629,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":753,\"model_id\":261903241768,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mg21o9kl67ex9b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,298888358,2023641,1718072935,298938357,700025016,1428713,1718087960,844931064601283,1049112,1049133,822059908662278,825465608499232,1015914,700190087,1400285055,825465608497696,298463379,1718093079,298938368,2098628,2098629,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":753,\"model_id\":261903241768,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40873410261",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43373362902,
              "shopid": 1344444411,
              "name": "Anti Gores Soft TPU Case Milanese Loop Metal Strap for Redmi Watch 5 Active / 5 Lite Bumper Screen Protector Cover 22mm Stainless Steel Band Accessories Tali Jam Tangan Smartwatch for Xiaomi Redmi Watch 5 Active / Redmi Watch 5 Lite",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1718093079,
                1119699,
                1015914,
                700190087,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                700765096,
                1400285055,
                298933384,
                700810080,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824j4-mfmglgwmd82426",
              "images": [
                "sg-11134201-824j4-mfmglgwmd82426",
                "sg-11134201-824jh-mfmglh61h5ooa5",
                "sg-11134201-824g9-mfmglhfiawb158",
                "sg-11134201-824j4-mfmglhn4ent653",
                "sg-11134201-824g5-mfmgli028zkbe5",
                "sg-11134201-824i9-mfmgli5pf11n82",
                "sg-11134201-824hl-mfmglibln1fy81",
                "sg-11134201-824gg-mfmglikn0hladc",
                "sg-11134201-824hp-mfmglit0cphkc2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760006550,
              "sold": 4,
              "historical_sold": 48,
              "liked": false,
              "liked_count": 8,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 20,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4830000000,
              "price_min": 4830000000,
              "price_max": 4830000000,
              "price_min_before_discount": 11440000000,
              "price_max_before_discount": 11440000000,
              "hidden_price_display": null,
              "price_before_discount": 11440000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-58%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8j8-mf6obk5kjz0rf4.16000081759050991.mp4",
                  "thumb_url": "sg-11110106-6v8j8-mf6obk5kjz0rf4_cover",
                  "duration": 26,
                  "version": 2,
                  "vid": "sg-11110106-6v8j8-mf6obk5kjz0rf4",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8j8-mf6obk5kjz0rf4.16000081759050991.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8j8-mf6obk5kjz0rf4.16000081759050991.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8j8-mf6obk5kjz0rf4.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "silvery 1",
                    "black 1",
                    "gold 1",
                    "rose gold 1",
                    "Barbie pink 1",
                    "Lavender 1",
                    "sky blue 1",
                    "Space Gray 1",
                    "blue 1",
                    "red 1",
                    "rose pink 1",
                    "vintage gold 1",
                    "Porcelain blue 1",
                    "silvery 2",
                    "black 2",
                    "gold 2",
                    "rose gold 2",
                    "Barbie pink 2",
                    "Lavender 2",
                    "sky blue 2",
                    "Space Gray 2",
                    "blue 2",
                    "red 2",
                    "rose pink 3",
                    "vintage gold 2",
                    "Porcelain blue 2",
                    "black 3",
                    "Space Gray 3",
                    "blue 3",
                    "silvery (Strap)",
                    "black (Strap)",
                    "gold (Strap)",
                    "rose gold (Strap)",
                    "Barbie pink (Strap)",
                    "Lavender (Strap)",
                    "sky blue (Strap)",
                    "Space Gray (Strap)",
                    "blue (Strap)",
                    "red (Strap)",
                    "rose pink (Strap)",
                    "vintage gold (Strap)",
                    "Porcelainblue(Strap)",
                    "transparent",
                    "silvery",
                    "black",
                    "blue",
                    "rose gold",
                    "gold",
                    "pink"
                  ],
                  "images": [
                    "sg-11134201-824ir-mfmglvpkv7ke60",
                    "sg-11134201-824j0-mfmglvv9vbbec6",
                    "sg-11134201-824hg-mfmglw1vq6tldf",
                    "sg-11134201-824hm-mfmglw81e32j82",
                    "sg-11134201-824ia-mfmglwer2j2n8c",
                    "sg-11134201-824hj-mfmglwl6x34fca",
                    "sg-11134201-824hc-mfmglwtwgx6xf6",
                    "sg-11134201-824gv-mfmglx0kqvwtdf",
                    "sg-11134201-824if-mfmglx7ngj635d",
                    "sg-11134201-824i5-mfmglxg2qzgv01",
                    "sg-11134201-824h2-mfmglxnjnvv380",
                    "sg-11134201-824hk-mfmglxw0zdoubf",
                    "sg-11134201-824h1-mfmgly3klafea3",
                    "sg-11134201-824jg-mfmgly9yg5xp3e",
                    "sg-11134201-824gd-mfmglyifnehb58",
                    "sg-11134201-824id-mfmglyqo189462",
                    "sg-11134201-824gc-mfmglyxlh8um7e",
                    "sg-11134201-824gg-mfmglz5e7sw99b",
                    "sg-11134201-824gd-mfmglzcrql1oe9",
                    "sg-11134201-824jg-mfmglzj231fu06",
                    "sg-11134201-824is-mfmglzpwn408b9",
                    "sg-11134201-824iv-mfmglzyc8suld8",
                    "sg-11134201-824gh-mfmgm05wxybx51",
                    "sg-11134201-824i1-mfmgm0cdrkzz04",
                    "sg-11134201-824ib-mfmgm0lkix3eba",
                    "sg-11134201-824ix-mfmgm0u79nuy6b",
                    "sg-11134201-824ig-mfmglg4oxvyl9e",
                    "sg-11134201-824ic-mfmgm1677c3sb9",
                    "sg-11134201-824gw-mfmgm1cu9o22bd",
                    "sg-11134201-824g7-mfmgm1jby8su56",
                    "sg-11134201-824ik-mfmgm1pjer62a8",
                    "sg-11134201-824ja-mfmgm1w5jdhlba",
                    "sg-11134201-824j4-mfmgm247wvta17",
                    "sg-11134201-824i6-mfmgm2arnwnf6b",
                    "sg-11134201-824jk-mfmgm2j621vsad",
                    "sg-11134201-824i6-mfmgm2vc9sen76",
                    "sg-11134201-824hk-mfmgm32uqx3g99",
                    "sg-11134201-824h0-mfmgm38g5u6n1f",
                    "sg-11134201-824gh-mfmgm3eqpbexcb",
                    "sg-11134201-824gn-mfmgm3kyjtvud8",
                    "sg-11134201-824iw-mfmgm3qyob2la8",
                    "sg-11134201-824i0-mfmgm445na4r06",
                    "sg-11134201-824gm-mfmgm4a6fle1df",
                    "sg-11134201-824h1-mfmgm4hwcyz29e",
                    "sg-11134201-824h8-mfmgm4oxbg99f8",
                    "sg-11134201-824j7-mfmgm4v2tonh29",
                    "sg-11134201-824jd-mfmgm512ehvs02",
                    "sg-11134201-824hu-mfmgm59jixal93",
                    "sg-11134201-824gv-mfmgm5fzzwun52"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi Watch 5 Active",
                    "Redmi Watch 5 Lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.85,
                "rating_count": [
                  20,
                  0,
                  0,
                  1,
                  1,
                  18
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 749782205792256,
                "price": 4830000000,
                "strikethrough_price": 11440000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-58%",
                "model_id": 218745086768,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 11440000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 48,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 48,
                "display_sold_count_text": "48"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RMUTANE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43373362902,
            "shopid": 1344444411,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824j4-mfmglgwmd82426\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,1015914,700190087,840990690654214,2048660,2048661,840955085144628,700765096,1400285055,298933384,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":754,\"model_id\":218745086768,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824j4-mfmglgwmd82426\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,1015914,700190087,840990690654214,2048660,2048661,840955085144628,700765096,1400285055,298933384,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":754,\"model_id\":218745086768,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43373362902",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43673361105,
              "shopid": 1484087853,
              "name": "Anti Gores PC Case Soft Strap for Tali Jam Tangan Smartwatch Samsung Galaxy Fit 3 Replacement Silicone Rubber Band Strap Belt Bracelet Screen Protector Bumper Cover Accessories for Samsung Fit 3",
              "label_ids": [
                2018618,
                2153644,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                840955085144628,
                1718093079,
                1119699,
                1015914,
                700190087,
                298933384,
                1400285055,
                298888358,
                298938357,
                2213652,
                2048661,
                2048660,
                700765096,
                2103651,
                2143613,
                700810055,
                298468389,
                2098629,
                1718088045,
                298938368,
                2098628
              ],
              "image": "sg-11134201-824g8-mfmeqg52fjtb7b",
              "images": [
                "sg-11134201-824g8-mfmeqg52fjtb7b",
                "sg-11134201-824gc-mfmeqgm7b8r3e7",
                "sg-11134201-824go-mfmeqh06ot8q2a",
                "sg-11134201-824ib-mfmeqheq5tsed0",
                "sg-11134201-824gt-mfmeqhrixgjw17",
                "sg-11134201-824g8-mfmeqi6vwcukba",
                "sg-11134201-824hx-mfmeqiiumhhnca",
                "sg-11134201-824h7-mfmeqiycmjgpd1",
                "sg-11134201-824ht-mfmeqjat55ho40"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760003421,
              "sold": 85,
              "historical_sold": 267,
              "liked": false,
              "liked_count": 20,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 85,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3420000000,
              "price_min": 3420000000,
              "price_max": 3420000000,
              "price_min_before_discount": 6820000000,
              "price_max_before_discount": 6820000000,
              "hidden_price_display": null,
              "price_before_discount": 6820000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8hl-mfcgp9blqn0qac.16000081759401387.mp4",
                  "thumb_url": "sg-11110106-6v8hl-mfcgp9blqn0qac_cover",
                  "duration": 35,
                  "version": 2,
                  "vid": "sg-11110106-6v8hl-mfcgp9blqn0qac",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8hl-mfcgp9blqn0qac.16000081759401387.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8hl-mfcgp9blqn0qac.16000081759401387.mp4",
                      "width": 1366,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8hl-mfcgp9blqn0qac.default.mp4",
                    "width": 1024,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Transparent + ivory",
                    "Transparent + White ",
                    "Transparent pink",
                    "Transparent + mint",
                    "Transparent + Blue 1",
                    "Purple transparent",
                    "Transparent + yellow",
                    "Transparent + Orange",
                    "Transparent + Green",
                    "Transparent + Red ",
                    "Transparent red wine",
                    "Transparent + Gray ",
                    "Transparent + Blue 2",
                    "Transparent + Black ",
                    "Black + Space Gray",
                    "Black + Blue",
                    "Black + black",
                    " Blue + Space Gray",
                    "Blue + Blue",
                    "Blue + Black",
                    "ivory + ivory",
                    "Pink + Pink",
                    "Green + Green",
                    "ivory",
                    "White",
                    "pink",
                    "mint",
                    "Sky Blue",
                    "Purple",
                    "yellow",
                    "Orange",
                    "Green ",
                    "Red",
                    "Red wine",
                    "Space Gray",
                    "Blue",
                    "Black",
                    "Transparent 1",
                    "Black 1",
                    "Blue 1",
                    "Pink 1",
                    "ivory 1",
                    "Green 1"
                  ],
                  "images": [
                    "sg-11134201-824i0-mfmeqvu3zrbf97",
                    "sg-11134201-824if-mfmeqw1znnykd7",
                    "sg-11134201-824g2-mfmeqwaarv2gc7",
                    "sg-11134201-824it-mfmeqwl08hsfbe",
                    "sg-11134201-824hh-mfmeqwsycxs8f6",
                    "sg-11134201-824g6-mfmeqx0mq4nje2",
                    "sg-11134201-824h2-mfmeqy7z9nv134",
                    "sg-11134201-824hg-mfmeqygblektb8",
                    "sg-11134201-824gn-mfmeqyqlx0y0f7",
                    "sg-11134201-824j0-mfmeqywr6vig5a",
                    "sg-11134201-824i6-mfmeqz7avpc9e6",
                    "sg-11134201-824i0-mfmeqzfrf28e7b",
                    "sg-11134201-824jb-mfmeqzy4nwg8b8",
                    "sg-11134201-824j1-mfmer06yfhfvbf",
                    "sg-11134201-824j0-mfmer0fctmoc8a",
                    "sg-11134201-824gq-mfmer0nlzjt90b",
                    "sg-11134201-824j7-mfmer0wt0pvx5a",
                    "sg-11134201-824jb-mfmer15tt53fdf",
                    "sg-11134201-824hn-mfmer1ff5tl4f8",
                    "sg-11134201-824jc-mfmer1s8k0loe2",
                    "sg-11134201-824ii-mfmer20kyhanf7",
                    "sg-11134201-824i8-mfmer2aqvgnf3b",
                    "sg-11134201-824iq-mfmer2j4ydcf53",
                    "sg-11134201-824gr-mfmer2s8zdoo41",
                    "sg-11134201-824i4-mfmer33wfh1o91",
                    "sg-11134201-824il-mfmer3dep6of87",
                    "sg-11134201-824h9-mfmer3ni8ft611",
                    "sg-11134201-824ga-mfmer48yn5zc80",
                    "sg-11134201-824ht-mfmer4inmive35",
                    "sg-11134201-824hd-mfmer4y035s9c1",
                    "sg-11134201-824hb-mfmer58e00el3f",
                    "sg-11134201-824i4-mfmer5msjzt88b",
                    "sg-11134201-824gl-mfmer5wjg4y48f",
                    "sg-11134201-824hl-mfmer66w5hjfb9",
                    "sg-11134201-824hh-mfmer6lye58p0d",
                    "sg-11134201-824g3-mfmer6vgb7rcd7",
                    "sg-11134201-824h8-mfmer74cf18o26",
                    "sg-11134201-824im-mfmer7d8u4un77",
                    "sg-11134201-824j7-mfmer7rsgq2y1e",
                    "sg-11134201-824hb-mfmer83zrvnu08",
                    "sg-11134201-824h6-mfmer8cpy8eg7b",
                    "sg-11134201-824ih-mfmer8r6dn2j0a",
                    "sg-11134201-824ho-mfmer95kw6bw80"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.847058823529411,
                "rating_count": [
                  85,
                  1,
                  0,
                  1,
                  7,
                  76
                ],
                "rcount_with_context": 12,
                "rcount_with_image": 15
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "sg-11134201-824g8-mfmeqg52fjtb7b",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372024811991523,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744049498177536,
                "price": 3420000000,
                "strikethrough_price": 6820000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 276899732164,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6820000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 267,
                "rounded_local_monthly_sold_count": 85,
                "local_monthly_sold_count_text": "85",
                "rounded_display_sold_count": 267,
                "display_sold_count_text": "267"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EIHAIHIS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43673361105,
            "shopid": 1484087853,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824g8-mfmeqg52fjtb7b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1718093079,1119699,1015914,700190087,298933384,1400285055,298888358,298938357,2213652,2048661,2048660,700765096,2103651,2143613,700810055,298468389,2098629,1718088045,298938368,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":756,\"model_id\":276899732164,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824g8-mfmeqg52fjtb7b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,1718093079,1119699,1015914,700190087,298933384,1400285055,298888358,298938357,2213652,2048661,2048660,700765096,2103651,2143613,700810055,298468389,2098629,1718088045,298938368,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":756,\"model_id\":276899732164,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43673361105",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28092716349,
              "shopid": 1484087853,
              "name": "TPU Case Metal Strap for Tali Jam Tangan Smartwatch Huawei Watch Fit 4 Pro / Huawei Watch Fit 4 / Huawei Watch Fit 3 Soft Screen Protector Cover Bumper Milanese Loop Stainless Steel Magnetic Band Bracelet Accessories for Huawei Fit 4 Pro/4/3",
              "label_ids": [
                2018618,
                2153644,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                840990690654214,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                298888358,
                298938357,
                1015914,
                700190087,
                2213652,
                2048660,
                2048661,
                700765096,
                1400285055,
                700810055,
                2008656,
                2098628,
                298938368,
                298468389,
                2098629,
                1718088045
              ],
              "image": "sg-11134201-824g8-mfmeqfk5kikrb1",
              "images": [
                "sg-11134201-824g8-mfmeqfk5kikrb1",
                "sg-11134201-824hg-mfmeqg3y7cb381",
                "sg-11134201-824iz-mfmeqgkaelu43d",
                "sg-11134201-824jj-mfmeqh0l7ci322",
                "sg-11134201-824ip-mfmeqhhazitr85",
                "sg-11134201-824j6-mfmeqhqm5l3c2e",
                "sg-11134201-824gg-mfmeqi0xeyo8d6",
                "sg-11134201-824j6-mfmeqia91u6kad",
                "sg-11134201-824h3-mfmeqirxzkln7c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1760003421,
              "sold": 84,
              "historical_sold": 160,
              "liked": false,
              "liked_count": 73,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 54,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 6275000000,
              "price_min": 6275000000,
              "price_max": 6275000000,
              "price_min_before_discount": 11890000000,
              "price_max_before_discount": 11890000000,
              "hidden_price_display": null,
              "price_before_discount": 11890000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-47%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8jc-mfdpv7g1fcwc89.16000081759477330.mp4",
                  "thumb_url": "sg-11110106-6v8jc-mfdpv7g1fcwc89_cover",
                  "duration": 36,
                  "version": 2,
                  "vid": "sg-11110106-6v8jc-mfdpv7g1fcwc89",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8jc-mfdpv7g1fcwc89.16000081759477330.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8jc-mfdpv7g1fcwc89.16000081759477330.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8jc-mfdpv7g1fcwc89.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Pink",
                    "Black",
                    "Gray",
                    "Gold",
                    "Rose Gold",
                    "Siliver"
                  ],
                  "images": [
                    "sg-11134201-824gk-mfmeqvjm0s20b5",
                    "sg-11134201-824iu-mfmeqw18b1fy0a",
                    "sg-11134201-824g9-mfmeqwiokxsa0a",
                    "sg-11134201-824hi-mfmeqx0g0iyyae",
                    "sg-11134201-824j3-mfmeqxbf8d8rc7",
                    "sg-11134201-824hz-mfmeqxn268sqa4"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei Fit 3",
                    "Huawei Fit 4",
                    "Huawei Fit 4 Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.925925925925926,
                "rating_count": [
                  54,
                  0,
                  0,
                  1,
                  2,
                  51
                ],
                "rcount_with_context": 6,
                "rcount_with_image": 7
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372024811991523,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 6275000000,
                "strikethrough_price": 11890000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-47%",
                "model_id": 281899728623,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 11890000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 62.750",
                      "hidden_promotion_price": "Rp ?2.750",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 160,
                "rounded_local_monthly_sold_count": 84,
                "local_monthly_sold_count_text": "84",
                "rounded_display_sold_count": 160,
                "display_sold_count_text": "160"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EIHAIHIS Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 28092716349,
            "shopid": 1484087853,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824g8-mfmeqfk5kikrb1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,840990690654214,840955085144628,825465608494624,825465608499232,825465608497696,1119699,298933384,298888358,298938357,1015914,700190087,2213652,2048660,2048661,700765096,1400285055,700810055,2008656,2098628,298938368,298468389,2098629,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":755,\"model_id\":281899728623,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824g8-mfmeqfk5kikrb1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,840990690654214,840955085144628,825465608494624,825465608499232,825465608497696,1119699,298933384,298888358,298938357,1015914,700190087,2213652,2048660,2048661,700765096,1400285055,700810055,2008656,2098628,298938368,298468389,2098629,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":755,\"model_id\":281899728623,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28092716349",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29192709404,
              "shopid": 978748732,
              "name": "Bandify Premium Strap Xiaomi Mi Band 10/9/8 Wanita Aksesoris Wanita Tali Jam Mi Band 8 Bahan Stainless Model Bintang Lucu Mewah",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                1015914,
                700190087,
                700810080,
                1400285055,
                1718088045,
                298468389
              ],
              "image": "id-11134207-81ztl-mfmax0vrciks4e",
              "images": [
                "id-11134207-81ztl-mfmax0vrciks4e",
                "id-11134207-81zto-mfmax0vi0sui98",
                "id-11134207-81ztn-mfmax0wwwhe635",
                "id-11134207-81zti-mfmax0vsd1cea8",
                "id-11134207-81ztk-mfmax0wkaryleb",
                "sg-11134201-824gw-mfmavzjvafii4b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759996952,
              "sold": 5,
              "historical_sold": 14,
              "liked": false,
              "liked_count": 54,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1500000000,
              "price_min": 1500000000,
              "price_max": 1500000000,
              "price_min_before_discount": 2000000000,
              "price_max_before_discount": 2000000000,
              "hidden_price_display": null,
              "price_before_discount": 2000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-25%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvl-mfmax8xma7t8fa.16000081759997016.mp4",
                  "thumb_url": "id-11110105-6vdvl-mfmax8xma7t8fa_cover",
                  "duration": 11,
                  "version": 2,
                  "vid": "id-11110105-6vdvl-mfmax8xma7t8fa",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvl-mfmax8xma7t8fa.16000081759997016.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvl-mfmax8xma7t8fa.16000081759997016.mp4",
                      "width": 720,
                      "height": 1038
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvl-mfmax8xma7t8fa.default.mp4",
                    "width": 540,
                    "height": 778
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "TPU Bening",
                    "TPU Black",
                    "TPU Silver",
                    "TPU Pink",
                    "TPU Rosegold",
                    "TPU Gold",
                    "TPU Green",
                    "TPU Blue",
                    "Black",
                    "Silver",
                    "Starlight",
                    "Rose Gold"
                  ],
                  "images": [
                    "sg-11134201-824if-mfmavzqug7in5b",
                    "sg-11134201-824gg-mfmavzxtggehdc",
                    "sg-11134201-824gz-mfmaw03use1420",
                    "sg-11134201-824ih-mfmaw0aizjm421",
                    "sg-11134201-824g3-mfmaw0m52ioda2",
                    "sg-11134201-824h0-mfmaw0sepoum1c",
                    "sg-11134201-824gi-mfmaw0xxxuywa7",
                    "sg-11134201-824ih-mfmaw13j1hxk3e",
                    "id-11134207-81ztp-mfmax0wy9n9r6b",
                    "id-11134207-81zth-mfmax0wyb1u72e",
                    "id-11134207-81ztf-mfmax0wycgen53",
                    "id-11134207-81ztn-mfmax0wyduz381"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tipe",
                  "options": [
                    "Miband 10/9/8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 394593233551501,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 789185645036544,
                "price": 1500000000,
                "strikethrough_price": 2000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-25%",
                "model_id": 244004081544,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 14,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 14,
                "display_sold_count_text": "14"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANDIFY",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 29192709404,
            "shopid": 978748732,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-mfmax0vrciks4e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699,298933384,1015914,700190087,700810080,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":757,\"model_id\":244004081544,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-mfmax0vrciks4e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699,298933384,1015914,700190087,700810080,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":757,\"model_id\":244004081544,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29192709404",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40473310116,
              "shopid": 603041185,
              "name": "TOUITECH GPS Apple Global Tracker iOS Support Only Smart Tag Locator Bluetooth Smart Tracker Pelacak Lokasi GPS Air Tag AirTag TRC10",
              "label_ids": [
                1400085047,
                1011692,
                2018618,
                2153644,
                1016119,
                1012729,
                2068629,
                298938357,
                700700063,
                1002164,
                844931064601283,
                844931086908638,
                1718087960,
                1428713,
                298463379,
                1718093079,
                1059151,
                1049112,
                822059908662278,
                825465608499232,
                825465608497696,
                1400285055,
                1015914,
                700190087,
                2213652,
                2098629,
                1718088045,
                298468389,
                2098628,
                298938368
              ],
              "image": "id-11134207-81ztp-mfm6x82otbm53c",
              "images": [
                "id-11134207-81ztp-mfm6x82otbm53c",
                "id-11134207-81ztl-mfm299zgqbd857",
                "id-11134207-81ztn-mfm299zgni8c8b",
                "id-11134207-81ztk-mfm2kmyyahan52",
                "id-11134207-81ztq-mfm299zghvyk8a",
                "id-11134207-81zti-mfm299zgowss50",
                "id-11134207-81ztg-mfm299zgrpxo69",
                "id-11134207-81ztf-mfm299zgt4i42d",
                "id-11134207-81ztp-mfm299zgkp3gbd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759983665,
              "sold": 22,
              "historical_sold": 83,
              "liked": false,
              "liked_count": 81,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 30,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5799000000,
              "price_min": 5799000000,
              "price_max": 5799000000,
              "price_min_before_discount": 14900000000,
              "price_max_before_discount": 14900000000,
              "hidden_price_display": null,
              "price_before_discount": 14900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-61%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vend-mgemr17du8lkbe.16000081761711885.mp4",
                  "thumb_url": "id-11110105-6vend-mgemr17du8lkbe_cover",
                  "duration": 57,
                  "version": 2,
                  "vid": "id-11110105-6vend-mgemr17du8lkbe",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vend-mgemr17du8lkbe.16000081761711885.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vend-mgemr17du8lkbe.16000081761711885.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vend-mgemr17du8lkbe.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Apple Tracker",
                  "options": [
                    "TRC10 - Black",
                    "TRC10 - Pink",
                    "TRC10 - White",
                    "TRC10 - Blue",
                    "TRC10 - Green"
                  ],
                  "images": [
                    "id-11134207-81ztq-mfm2kmys4jkbe8",
                    "id-11134207-81ztj-mfm2kmys5y4rc5",
                    "id-11134207-81zto-mfm2kmys7cp7ad",
                    "id-11134207-81ztd-mfm2kmysa5u322",
                    "id-11134207-81ztf-mfm2kmys8r9nbe"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.633333333333334,
                "rating_count": [
                  30,
                  1,
                  1,
                  1,
                  2,
                  25
                ],
                "rcount_with_context": 8,
                "rcount_with_image": 7
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227976038072320,
                "price": 5699100000,
                "strikethrough_price": 14900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1324532736868368,
                "discount_text": "-61%",
                "model_id": 254003153486,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1324532736868368,
                  "voucher_code": "TOUIDSK99",
                  "voucher_discount": 99900000,
                  "time_info": {
                    "start_time": 1767356280,
                    "end_time": 1774976340,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 100000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 14900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 83,
                "rounded_local_monthly_sold_count": 22,
                "local_monthly_sold_count_text": "22",
                "rounded_display_sold_count": 83,
                "display_sold_count_text": "83"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Touitech Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40473310116,
            "shopid": 603041185,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztp-mfm6x82otbm53c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400085047,1011692,2018618,2153644,1016119,1012729,2068629,298938357,700700063,1002164,844931064601283,844931086908638,1718087960,1428713,298463379,1718093079,1059151,1049112,822059908662278,825465608499232,825465608497696,1400285055,1015914,700190087,2213652,2098629,1718088045,298468389,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":758,\"model_id\":254003153486,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztp-mfm6x82otbm53c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400085047,1011692,2018618,2153644,1016119,1012729,2068629,298938357,700700063,1002164,844931064601283,844931086908638,1718087960,1428713,298463379,1718093079,1059151,1049112,822059908662278,825465608499232,825465608497696,1400285055,1015914,700190087,2213652,2098629,1718088045,298468389,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":758,\"model_id\":254003153486,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40473310116",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41223283646,
              "shopid": 1608761778,
              "name": "Original East Smartwatch Serie 11 AMOLED HD 46mm  Jam Pintar Olahraga Bluetooth SmartWatch Wanita SmartWatch Pria IP68 Tahan Air Jam Tangan Pintar Monitor Detak Jantung Jam Tangan Digital Wanita iPhone smartwatch Couple",
              "label_ids": [
                2018618,
                844931064601283,
                844931086908638,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1718087960,
                1428713,
                1059152,
                1049122,
                298933384,
                2213652,
                1400285055,
                1015914,
                700190087,
                298463379,
                825465608492064,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224q-mgvos8dba6tq21",
              "images": [
                "id-11134207-8224q-mgvos8dba6tq21",
                "id-11134207-81ztl-mflzgklq1bt725",
                "id-11134207-81zth-mflzgklzd1jg8f",
                "id-11134207-81zte-mflzgklz4m4s82",
                "id-11134207-81ztf-mflzgklz60p8a0",
                "id-11134207-81zti-mflzgklz7f9o8d",
                "id-11134207-81zti-mflzgklz8tu472",
                "id-11134207-81ztn-mflzgklza8ekf6",
                "id-11134207-81ztf-mflzgklzbmz0f5"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759979753,
              "sold": 60,
              "historical_sold": 92,
              "liked": false,
              "liked_count": 128,
              "view_count": null,
              "catid": 100013,
              "brand": "East",
              "cmt_count": 48,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 13000000000,
              "price_min": 13000000000,
              "price_max": 13000000000,
              "price_min_before_discount": 900000000000,
              "price_max_before_discount": 900000000000,
              "hidden_price_display": null,
              "price_before_discount": 900000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": ">90% off",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvj-mflzrlbjp8ukad.16000081759978290.mp4",
                  "thumb_url": "id-11110105-6vdvj-mflzrlbjp8ukad_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6vdvj-mflzrlbjp8ukad",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvj-mflzrlbjp8ukad.16000081759978290.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvj-mflzrlbjp8ukad.16000081759978290.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvj-mflzrlbjp8ukad.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Variasi",
                  "options": [
                    "Serie 11-Black",
                    "Serie 11-White",
                    "Serie 11-Pink",
                    "Serie 11-Silver",
                    "Serie 11-Bule",
                    "Serie 10-Black",
                    "Serie 10-White",
                    "Serie 10-Pink",
                    "Serie 10-Silver",
                    "Serie 10-Blue",
                    "Serie 10-Red",
                    "Serie 9-Black",
                    "Serie 9-Silver",
                    "Serie 9-Pink",
                    "Black",
                    "White",
                    "Pink",
                    "Silver",
                    "Blue",
                    "Red"
                  ],
                  "images": [
                    "id-11134207-81ztn-mflzgklzeg3wee",
                    "id-11134207-81ztn-mflzgklzfuoc26",
                    "id-11134207-8224p-mi1ara3v8pvl6e",
                    "id-11134207-81ztc-mfm0m76ehhcaed",
                    "id-11134207-81ztd-mfm0m76eivwq2e",
                    "id-11134207-8224q-mgst3rgqqoej4d",
                    "id-11134207-8224q-mgst3rghrls90b",
                    "id-11134207-8224v-mgst3rght0cp80",
                    "id-11134207-8224r-mgst3rghuex51a",
                    "id-11134207-8224s-mgst3rghvthlab",
                    "id-11134207-82250-mgst3rghx82142",
                    "id-11134207-8224r-mgst3rghymmh8a",
                    "id-11134207-8224t-mgst3rgi016x4d",
                    "id-11134207-8224v-mgst3rgi1frdd0",
                    "id-11134207-8224o-mgst3rgi48w961",
                    "id-11134207-81ztp-mfm0m76en3m209",
                    "id-11134207-81ztn-mfm0m76eoi6i3e",
                    "id-11134207-81ztk-mfm0m76epwqyd2",
                    "id-11134207-81ztf-mfm0m76erbbec3",
                    "id-11134207-81ztk-mfm0m76espvub9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.916666666666667,
                "rating_count": [
                  48,
                  0,
                  0,
                  0,
                  4,
                  44
                ],
                "rcount_with_context": 29,
                "rcount_with_image": 29
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 380734917587489,
                "add_on_deal_label": "Hadiah Gratis",
                "sub_type": 1,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 227921344344065,
                "price": 13000000000,
                "strikethrough_price": 900000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": ">90% off",
                "model_id": 262135503296,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 900000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 92,
                "rounded_local_monthly_sold_count": 60,
                "local_monthly_sold_count_text": "60",
                "rounded_display_sold_count": 92,
                "display_sold_count_text": "92"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "EAST Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41223283646,
            "shopid": 1608761778,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mgvos8dba6tq21\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,844931064601283,844931086908638,1718093079,822059908662278,825465608499232,825465608497696,1718087960,1428713,1059152,1049122,298933384,2213652,1400285055,1015914,700190087,298463379,825465608492064,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":759,\"model_id\":262135503296,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mgvos8dba6tq21\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,844931064601283,844931086908638,1718093079,822059908662278,825465608499232,825465608497696,1718087960,1428713,1059152,1049122,298933384,2213652,1400285055,1015914,700190087,298463379,825465608492064,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":759,\"model_id\":262135503296,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41223283646",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40373239357,
              "shopid": 18731808,
              "name": "Strap Smartwatch MAGNET BLOCK CMC Tali Jam Tangan Karet Magnetic 22mm 20mm Universal Size Watch Huawei Fit GT 6 5 4 3 2 Xiaomi Redmi 5 Lite Active Samsung Watch Garmin Forerunner Fenix Aolon Itel Amazfit Active 2 GTS GTR BIP 6 AppleWatch Series 44mm 49mm",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                1119699,
                1015914,
                700190087,
                298933384,
                1400285055,
                1718088045,
                298468389
              ],
              "image": "id-11134207-81ztc-mf9l6lbcly4tcb",
              "images": [
                "id-11134207-81ztc-mf9l6lbcly4tcb",
                "id-11134207-81ztl-mfl84mtelerse7",
                "id-11134207-81ztk-mfl84mtgcmbv55",
                "id-11134207-81ztn-mf9l6lbc6hvye2",
                "id-11134207-81ztq-mf9l6lbc7wgea0",
                "id-11134207-81zti-mf9l6lbc9b0u67"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759932268,
              "sold": 41,
              "historical_sold": 94,
              "liked": false,
              "liked_count": 42,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 47,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5220000000,
              "price_min": 5220000000,
              "price_max": 5220000000,
              "price_min_before_discount": 7220000000,
              "price_max_before_discount": 7220000000,
              "hidden_price_display": null,
              "price_before_discount": 7220000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-28%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Magnet BLOCK 1",
                    "Magnet BLOCK 2",
                    "Magnet BLOCK 3",
                    "Magnet BLOCK 4",
                    "Magnet BLOCK 5",
                    "Magnet BLOCK 6",
                    "Magnet BLOCK 7",
                    "Magnet BLOCK 8",
                    "Magnet BLOCK 9",
                    "Magnet BLOCK 10"
                  ],
                  "images": [
                    "id-11134207-81ztg-mf9l6lbcexamf2",
                    "id-11134207-81ztn-mf9l6lbcgbv2ce",
                    "id-11134207-81ztc-mfl84mtkojdb19",
                    "id-11134207-81zte-mfl84mtkn4svd2",
                    "id-11134207-81ztp-mfl84mtklq8f7c",
                    "id-11134207-81zto-mfl84mtkkbnzc9",
                    "id-11134207-81zth-mfl84mtkix3j50",
                    "id-11134207-81zto-mfl84mtkhij3b6",
                    "id-11134207-81zto-mfl84mtkg3yn27",
                    "id-11134207-81ztq-mfl84mtkepe7da"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ukuran",
                  "options": [
                    "20mm",
                    "22mm",
                    "AppleWatch42/44/49mm",
                    "Samsung Ultra 47mm",
                    "Redmi4/5  Band8/9pro",
                    "Gshock 16mm",
                    "Huawei Fit 3/4",
                    "18mm (konektor)",
                    "Samsung Watch 8",
                    "Garmin 26mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.829787234042553,
                "rating_count": [
                  47,
                  0,
                  0,
                  1,
                  6,
                  40
                ],
                "rcount_with_context": 12,
                "rcount_with_image": 8
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744136144125952,
                "price": 5220000000,
                "strikethrough_price": 7220000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-28%",
                "model_id": 244001561814,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7220000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 94,
                "rounded_local_monthly_sold_count": 41,
                "local_monthly_sold_count_text": "41",
                "rounded_display_sold_count": 94,
                "display_sold_count_text": "94"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CORMIC INDONESIA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40373239357,
            "shopid": 18731808,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztc-mf9l6lbcly4tcb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,1119699,1015914,700190087,298933384,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":762,\"model_id\":244001561814,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztc-mf9l6lbcly4tcb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,1119699,1015914,700190087,298933384,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":762,\"model_id\":244001561814,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40373239357",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28242676504,
              "shopid": 1451906919,
              "name": "[Senter + UV & Baterai 1100mAh] Morein Rock2 Smartwatch - 1.7 Layar HD | Badan Logam | Tahan Air IP68 | Kompas | Panggilan Bluetooth | Monitor Kesehatan | Jam Tangan Pria Olahraga",
              "label_ids": [
                2018619,
                2023641,
                700700063,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1119699,
                1015914,
                700190087,
                1400285055,
                298933384,
                1718093079,
                1049120,
                700005490,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                2068629,
                298938357,
                298468389,
                2098628,
                1718088045,
                298938368,
                2098629
              ],
              "image": "sg-11134201-81zv5-mipi0mmyh2bneb",
              "images": [
                "sg-11134201-81zv5-mipi0mmyh2bneb",
                "sg-11134201-824gi-mfkyn38fal1m13",
                "sg-11134201-824ia-mfkyn3h2dxcf7b",
                "sg-11134201-824ix-mfkyn3p25d73a8",
                "sg-11134201-824hb-mfkyn3v9c00dc7",
                "sg-11134201-824gx-mfkyn41x9a17f3",
                "sg-11134201-824iq-mfkyn49dxslq1b",
                "sg-11134201-824g9-mfkyn4hua7t460",
                "sg-11134201-824hr-mfkyn4p046xa6d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759915824,
              "sold": 41,
              "historical_sold": 119,
              "liked": false,
              "liked_count": 141,
              "view_count": null,
              "catid": 100013,
              "brand": "MOREIN Plus",
              "cmt_count": 78,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 42500000000,
              "price_min": 42500000000,
              "price_max": 42500000000,
              "price_min_before_discount": 200000000000,
              "price_max_before_discount": 200000000000,
              "hidden_price_display": null,
              "price_before_discount": 200000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-79%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven8-mipdjiltybk108.16000081766720773.mp4",
                  "thumb_url": "id-11110105-6ven8-mipdjiltybk108_cover",
                  "duration": 43,
                  "version": 2,
                  "vid": "id-11110105-6ven8-mipdjiltybk108",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven8-mipdjiltybk108.16000081766720773.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven8-mipdjiltybk108.16000081766720773.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven8-mipdjiltybk108.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam+Silikon Strap",
                    "Hitam+Velcro Strap",
                    "Perak+Silikon Strap",
                    "Perak+Velcro Strap"
                  ],
                  "images": [
                    "sg-11134201-821ea-mggantyc4d8va1",
                    "sg-11134201-821ee-mgganu5v57gt0c",
                    "sg-11134201-821g9-mgganud5urk827",
                    "sg-11134201-822zj-mi6yljbhce81ee"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.910256410256411,
                "rating_count": [
                  78,
                  0,
                  1,
                  1,
                  2,
                  74
                ],
                "rcount_with_context": 26,
                "rcount_with_image": 21
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp131RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228241151635458,
                "price": 39500000000,
                "strikethrough_price": 200000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1291780289216524,
                "discount_text": "-79%",
                "model_id": 306887631353,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1291780289216524,
                  "voucher_code": "MORER230K",
                  "voucher_discount": 3000000000,
                  "time_info": {
                    "start_time": 1763451780,
                    "end_time": 1769848980,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 30000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 200000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 119,
                "rounded_local_monthly_sold_count": 41,
                "local_monthly_sold_count_text": "41",
                "rounded_display_sold_count": 119,
                "display_sold_count_text": "119"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp131RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Morein Wear",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 28242676504,
            "shopid": 1451906919,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zv5-mipi0mmyh2bneb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,700700063,1718087960,1428713,844931064601283,844931086908638,298463379,1119699,1015914,700190087,1400285055,298933384,1718093079,1049120,700005490,822059908662278,825465608494624,825465608499232,825465608497696,2068629,298938357,298468389,2098628,1718088045,298938368,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":763,\"model_id\":306887631353,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zv5-mipi0mmyh2bneb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,700700063,1718087960,1428713,844931064601283,844931086908638,298463379,1119699,1015914,700190087,1400285055,298933384,1718093079,1049120,700005490,822059908662278,825465608494624,825465608499232,825465608497696,2068629,298938357,298468389,2098628,1718088045,298938368,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":763,\"model_id\":306887631353,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28242676504",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43173199821,
              "shopid": 1050447455,
              "name": "realme Watch 5 | Compass & Independent GPS | NFC | 460mAh 14-day Battery Life | Accurateย Sportsย &ย Health | AMOLED 600nits | IP68ย Waterย Resistant",
              "label_ids": [
                1400066568,
                700700063,
                2018618,
                2153644,
                844931064601283,
                844931086908638,
                1718087960,
                1428713,
                1015914,
                700190087,
                1400285055,
                298888358,
                298938357,
                298463379,
                1718093079,
                1049120,
                700005490,
                822059908662278,
                825465608492064,
                825465608499232,
                825465608497696,
                2213652,
                299103323,
                298938368,
                2098628,
                1718088045,
                2098629,
                298468389
              ],
              "image": "id-11134207-81ztk-mfkxcjd4464t91",
              "images": [
                "id-11134207-81ztk-mfkxcjd4464t91",
                "id-11134207-81ztd-mfkxcjd6hury86",
                "id-11134207-81ztd-mfkxcjd6j9ce87",
                "id-11134207-81ztq-mfkxcjd6knwue2",
                "id-11134207-81ztg-mfkxcjd6m2ha4a",
                "id-11134207-81ztk-mfkxcjd6nh1qde",
                "id-11134207-81ztk-mfkxcjd6ovm6f9",
                "id-11134207-81ztj-mfkxcjd6qa6m8a",
                "id-11134207-81ztn-mfkxcjd6ror292"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759914137,
              "sold": 413,
              "historical_sold": 1000,
              "liked": false,
              "liked_count": 937,
              "view_count": null,
              "catid": 100013,
              "brand": "Realme",
              "cmt_count": 438,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 79900000000,
              "price_min": 79900000000,
              "price_max": 79900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Titanium Silver",
                    "Titanium Black"
                  ],
                  "images": [
                    "id-11134207-81ztm-mfkxcjd6t3bid6",
                    "id-11134207-81ztm-mfkxcjd6uhvy49"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.938356164383562,
                "rating_count": [
                  438,
                  3,
                  0,
                  0,
                  15,
                  420
                ],
                "rcount_with_context": 110,
                "rcount_with_image": 87
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp133RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 79900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 286887218338,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 79900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1000,
                "rounded_local_monthly_sold_count": 413,
                "local_monthly_sold_count_text": "413",
                "rounded_display_sold_count": 1000,
                "display_sold_count_text": "1RB+"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp133RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "realme Authorized Store Tangerang",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43173199821,
            "shopid": 1050447455,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztk-mfkxcjd4464t91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,700700063,2018618,2153644,844931064601283,844931086908638,1718087960,1428713,1015914,700190087,1400285055,298888358,298938357,298463379,1718093079,1049120,700005490,822059908662278,825465608492064,825465608499232,825465608497696,2213652,299103323,298938368,2098628,1718088045,2098629,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":764,\"model_id\":286887218338,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztk-mfkxcjd4464t91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,700700063,2018618,2153644,844931064601283,844931086908638,1718087960,1428713,1015914,700190087,1400285055,298888358,298938357,298463379,1718093079,1049120,700005490,822059908662278,825465608492064,825465608499232,825465608497696,2213652,299103323,298938368,2098628,1718088045,2098629,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":764,\"model_id\":286887218338,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43173199821",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43673207074,
              "shopid": 1176840059,
              "name": "Soft TPU Case Milanese Loop Metal Strap for Huawei Watch Fit 4 Pro / Huawei Watch Fit 4 /huawei Watch Fit 3 Stainless Steel Magnetic Band Bracelet Accessories Tali Jam Tangan for Smartwatch Huawei Fit 4 Pro/4/3",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1718093079,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                1015914,
                700190087,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                700765096,
                298623321,
                1993623,
                998091078,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-824is-mfkvq038x2q5ce",
              "images": [
                "sg-11134201-824is-mfkvq038x2q5ce",
                "sg-11134201-824hl-mfkvq0mgskqzdb",
                "sg-11134201-824h2-mfkvq16glte7d8",
                "sg-11134201-824g7-mfkvq1q62tjic8",
                "sg-11134201-824jb-mfkvq2b75k3y1e",
                "sg-11134201-824j9-mfkvq2rxd3ik73",
                "sg-11134201-824is-mfkvq3af3h1qb2",
                "sg-11134201-824ic-mfkvq435ik962e",
                "sg-11134201-824i2-mfkvq4znlkwa24"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759910920,
              "sold": 8,
              "historical_sold": 39,
              "liked": false,
              "liked_count": 12,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 15,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5769000000,
              "price_min": 5769000000,
              "price_max": 5769000000,
              "price_min_before_discount": 10811000000,
              "price_max_before_discount": 10811000000,
              "hidden_price_display": null,
              "price_before_discount": 10811000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-47%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwi-lz8zkg2ad96f91.16000081724323134.mp4",
                  "thumb_url": "sg-11110106-7rdwu-lz8zkpgio28qce",
                  "duration": 12,
                  "version": 2,
                  "vid": "sg-11110106-6khwi-lz8zkg2ad96f91",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwi-lz8zkg2ad96f91.16006711750693718.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwi-lz8zkg2ad96f91.16006711750693718.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwi-lz8zkg2ad96f91.16003251728045249.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwi-lz8zkg2ad96f91.16003251728045249.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwi-lz8zkg2ad96f91.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Pink",
                    "Black",
                    "Gray",
                    "Gold",
                    "Rose Gold",
                    "Siliver"
                  ],
                  "images": [
                    "sg-11134201-824g1-mfkvqi7rb40e56",
                    "sg-11134201-824gr-mfkvqir8s7bjf9",
                    "sg-11134201-824i0-mfkvqjd1ird7af",
                    "sg-11134201-824h6-mfkvqk2j9wjx82",
                    "sg-11134201-824jj-mfkvqkzph1qg7a",
                    "sg-11134201-824hy-mfkvqlk0acy69d"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei Fit 3",
                    "Huawei Fit 4",
                    "Huawei Fit 4 Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.8,
                "rating_count": [
                  15,
                  0,
                  1,
                  0,
                  0,
                  14
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 403933596234286,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 5769000000,
                "strikethrough_price": 10811000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-47%",
                "model_id": 179092962518,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 10811000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 57.690",
                      "hidden_promotion_price": "Rp ?7.690",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 39,
                "rounded_local_monthly_sold_count": 8,
                "local_monthly_sold_count_text": "8",
                "rounded_display_sold_count": 39,
                "display_sold_count_text": "39"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Almnvo Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43673207074,
            "shopid": 1176840059,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824is-mfkvq038x2q5ce\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1718093079,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1119699,298933384,1015914,700190087,840990690654214,2048660,2048661,840955085144628,700765096,298623321,1993623,998091078,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":765,\"model_id\":179092962518,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824is-mfkvq038x2q5ce\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1718093079,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1119699,298933384,1015914,700190087,840990690654214,2048660,2048661,840955085144628,700765096,298623321,1993623,998091078,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":765,\"model_id\":179092962518,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43673207074",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29192654192,
              "shopid": 17570987,
              "name": "Realme Watch 5 1.97\" Layar AMOLED Smartwatch with Intercom Bluetooth Call Health Monitoring 108 Sports Mode Up to 16 Days Long Battery Live IP68 Dust & Water Resistant Waterproof AOD Display Smart Watch Water Proof Watch5",
              "label_ids": [
                1400066568,
                27,
                2153644,
                2018618,
                2018619,
                1012729,
                1400095067,
                1400285005,
                844931064601283,
                298463379,
                1718093079,
                1119699,
                700765096,
                1015914,
                700190087,
                1400285055,
                2213652,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                834403089593352,
                825465608497696,
                2048660,
                2048661,
                825465608493600,
                825465608494624,
                700005490,
                1049120,
                700005487,
                299103323,
                1718088045,
                298468389
              ],
              "image": "id-11134207-81ztn-mfrmltccjaj054",
              "images": [
                "id-11134207-81ztn-mfrmltccjaj054",
                "id-11134207-81ztg-mfkkwsna366h24",
                "id-11134207-81zth-mfkkwsna4kqxbb",
                "id-11134207-81ztp-mfjabprcw4qz26",
                "id-11134207-81ztp-mfjabprcuq6jcf",
                "id-11134207-81ztl-mfjabprb6brced",
                "id-11134207-81ztj-mfjabpq4x2q1df",
                "id-11134207-81ztg-mfklx7pupxjea4",
                "id-11134207-81zto-mfklx7prmyob56"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759894579,
              "sold": 164,
              "historical_sold": 422,
              "liked": false,
              "liked_count": 541,
              "view_count": null,
              "catid": 100013,
              "brand": "Realme",
              "cmt_count": 212,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 79900000000,
              "price_min": 79900000000,
              "price_max": 79900000000,
              "price_min_before_discount": 139800000000,
              "price_max_before_discount": 139800000000,
              "hidden_price_display": null,
              "price_before_discount": 139800000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-43%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvl-mfmdfvb5to20d5.16000081760001243.mp4",
                  "thumb_url": "id-11110105-6vdvl-mfmdfvb5to20d5_cover",
                  "duration": 10,
                  "version": 2,
                  "vid": "id-11110105-6vdvl-mfmdfvb5to20d5",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvl-mfmdfvb5to20d5.16000081760001243.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvl-mfmdfvb5to20d5.16000081760001243.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvl-mfmdfvb5to20d5.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Titanium Silver",
                    "Titanium Black"
                  ],
                  "images": [
                    "id-11134207-81zth-mfrmltctxrta29",
                    "id-11134207-81ztp-mfrmltctz6dqb9"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.976415094339623,
                "rating_count": [
                  212,
                  0,
                  0,
                  0,
                  5,
                  207
                ],
                "rcount_with_context": 50,
                "rcount_with_image": 46
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 817119701303296,
                "price": 79900000000,
                "strikethrough_price": 139800000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-43%",
                "model_id": 266883844064,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 139800000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 422,
                "rounded_local_monthly_sold_count": 164,
                "local_monthly_sold_count_text": "164",
                "rounded_display_sold_count": 422,
                "display_sold_count_text": "422"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HangOn Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 29192654192,
            "shopid": 17570987,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztn-mfrmltccjaj054\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,27,2153644,2018618,2018619,1012729,1400095067,1400285005,844931064601283,298463379,1718093079,1119699,700765096,1015914,700190087,1400285055,2213652,1059152,1059154,822059908662278,825465608499232,834403089593352,825465608497696,2048660,2048661,825465608493600,825465608494624,700005490,1049120,700005487,299103323,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":767,\"model_id\":266883844064,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztn-mfrmltccjaj054\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,27,2153644,2018618,2018619,1012729,1400095067,1400285005,844931064601283,298463379,1718093079,1119699,700765096,1015914,700190087,1400285055,2213652,1059152,1059154,822059908662278,825465608499232,834403089593352,825465608497696,2048660,2048661,825465608493600,825465608494624,700005490,1049120,700005487,299103323,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":767,\"model_id\":266883844064,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29192654192",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41273128086,
              "shopid": 1637266389,
              "name": "[SimCard+VideoCall ] Samsung Smartwatch S9 ULTRA 4G & 5G | RAM 2 / 16GB | SIM CARD | Bisa Nonton Youtube | Bisa Nonton TikTok | Wifi | PlayStore | Goole Play | Jam Tangan Wanita smartwatch pria jam tangan Couple",
              "label_ids": [
                844931086908638,
                844931064601283,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1119699,
                1718093079,
                1400285055,
                1059152,
                1049122,
                298933384
              ],
              "image": "id-11134207-8224z-miy3uuhu6vphcc",
              "images": [
                "id-11134207-8224z-miy3uuhu6vphcc",
                "id-11134207-8224x-miy3uuhu8a9xab",
                "id-11134207-8224q-miy3uuhu9oudf5",
                "id-11134207-8224u-miy3uuhub3et56",
                "id-11134207-82250-miy3uuhuchz922",
                "id-11134207-8224y-miy3uuhudwjpbd",
                "id-11134207-8224o-miy3uuhufb45c7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759852152,
              "sold": 28,
              "historical_sold": 51,
              "liked": false,
              "liked_count": 26,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 17,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 16900000000,
              "price_min": 16900000000,
              "price_max": 16900000000,
              "price_min_before_discount": 18000000000,
              "price_max_before_discount": 18000000000,
              "hidden_price_display": null,
              "price_before_discount": 18000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-6%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven8-miy42q43u3gmc0.16000031767249633.mp4",
                  "thumb_url": "id-11110105-6ven8-miy42q43u3gmc0_cover",
                  "duration": 45,
                  "version": 2,
                  "vid": "id-11110105-6ven8-miy42q43u3gmc0",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven8-miy42q43u3gmc0.16000031767249633.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven8-miy42q43u3gmc0.16000031767249633.mp4",
                      "width": 854,
                      "height": 480
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven8-miy42q43u3gmc0.default.mp4",
                    "width": 854,
                    "height": 480
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Pink",
                    "Putih",
                    "BLACK",
                    "WHITE"
                  ],
                  "images": [
                    "sg-11134201-824hb-mfjwrxavpq8f60",
                    "sg-11134201-824hb-mfjwrxgjs2rs9e",
                    "sg-11134201-824gi-mfjwrxqux8ng11",
                    "id-11134207-82250-miy3uuhugpol5f",
                    "id-11134207-8224y-miy3uuhu5h51e0"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  17,
                  0,
                  0,
                  0,
                  0,
                  17
                ],
                "rcount_with_context": 13,
                "rcount_with_image": 11
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 762156837027840,
                "price": 15900000000,
                "strikethrough_price": 18000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1310041734922240,
                "discount_text": "-6%",
                "model_id": 296880322827,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1310041734922240,
                  "voucher_code": "TOKORGHIB",
                  "voucher_discount": 1000000000,
                  "time_info": {
                    "start_time": 1765628880,
                    "end_time": 1773667680,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 5000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 18000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 51,
                "rounded_local_monthly_sold_count": 28,
                "local_monthly_sold_count_text": "28",
                "rounded_display_sold_count": 51,
                "display_sold_count_text": "51"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "3c digital electronics",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41273128086,
            "shopid": 1637266389,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-miy3uuhu6vphcc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,822059908662278,825465608497696,825465608494624,825465608499232,1119699,1718093079,1400285055,1059152,1049122,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":35,\"model_id\":296880322827,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-miy3uuhu6vphcc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,822059908662278,825465608497696,825465608494624,825465608499232,1119699,1718093079,1400285055,1059152,1049122,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":35,\"model_id\":296880322827,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41273128086",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43023091662,
              "shopid": 1472567764,
              "name": "Double Pearl Strap for ADVAN Smartwatch S1 S2 Pro SE1",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                1718093079,
                1119699,
                1059152,
                700005487,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1015914,
                700190087
              ],
              "image": "sg-11134201-824h7-mfjgqmy6j3t457",
              "images": [
                "sg-11134201-824h7-mfjgqmy6j3t457",
                "sg-11134201-824i0-mfjgqnc6zymja6",
                "sg-11134201-824hd-mfjgqogkh3ij03",
                "sg-11134201-824i6-mfjgqovxvg2030",
                "sg-11134201-824hz-mfjgqp8yenezaa"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759825189,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 12,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 6705400000,
              "price_min": 6705400000,
              "price_max": 6705400000,
              "price_min_before_discount": 13969500000,
              "price_max_before_discount": 13969500000,
              "hidden_price_display": null,
              "price_before_discount": 13969500000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-52%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Model",
                  "options": [
                    "Putih",
                    "Hijau"
                  ],
                  "images": [
                    "sg-11134201-824i2-mfjgqpq12bke8e",
                    "sg-11134201-824i6-mfjgqovxvg2030"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ukuran",
                  "options": [
                    "AdvanS1/SE1/S2Pro/SR"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 721719132749824,
                "price": 6705400000,
                "strikethrough_price": 13969500000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-52%",
                "model_id": 238151123959,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 13969500000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Chauri aksesoris",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43023091662,
            "shopid": 1472567764,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824h7-mfjgqmy6j3t457\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,1718093079,1119699,1059152,700005487,822059908662278,825465608494624,825465608499232,825465608497696,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":770,\"model_id\":238151123959,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824h7-mfjgqmy6j3t457\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,1718093079,1119699,1059152,700005487,822059908662278,825465608494624,825465608499232,825465608497696,1015914,700190087],\"matched_keywords\":[\"\"],\"merge_rank\":770,\"model_id\":238151123959,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43023091662",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42073061916,
              "shopid": 1632696269,
              "name": "Xiaomi Smart Band 9 Active | Refresh rate 60 Hz | Tahan Air Hingga 50 Meter | 50+ Mode Olahraga | Baterai Hingga 18 Hari [Official Store]",
              "label_ids": [
                2018618,
                844931064601283,
                700005490,
                1049120,
                822059908662278,
                825465608497696,
                825465608499232,
                1718087960,
                1428713,
                844931086908638,
                1015914,
                700190087,
                1400285055,
                2213652,
                2048660,
                2048661,
                700765096,
                299103323,
                2008656
              ],
              "image": "id-11134207-8224r-mfupgzq14ydke1",
              "images": [
                "id-11134207-8224r-mfupgzq14ydke1",
                "id-11134207-81zto-mfj6mwz4q2od37",
                "id-11134207-81ztq-mfj6mwz4luz110",
                "id-11134207-81ztn-mfj6mwz4n9jh59",
                "id-11134207-81zth-mfj6mwz4oo3x07"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759808933,
              "sold": 945,
              "historical_sold": 3000,
              "liked": false,
              "liked_count": 3159,
              "view_count": null,
              "catid": 100013,
              "brand": "Xiaomi",
              "cmt_count": 1319,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 31800000000,
              "price_min": 31800000000,
              "price_max": 31800000000,
              "price_min_before_discount": 34900000000,
              "price_max_before_discount": 34900000000,
              "hidden_price_display": null,
              "price_before_discount": 34900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-9%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Pink",
                    "Black",
                    "Beige White",
                    "NEW Green",
                    "NEW Purple"
                  ],
                  "images": [
                    "id-11134207-81ztn-mfj6mwz4dfkdb8",
                    "id-11134207-81ztc-mfj6mwz4eu4tc6",
                    "id-11134207-81ztf-mfj6mwz4g8p960",
                    "id-11134207-81ztj-mfj6mwz4hn9pf4",
                    "id-11134207-81ztq-mfj6mwz4j1u51b"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.941622441243366,
                "rating_count": [
                  1319,
                  2,
                  0,
                  6,
                  57,
                  1254
                ],
                "rcount_with_context": 162,
                "rcount_with_image": 176
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-8224r-mfupgzq14ydke1",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 302,
                "promotion_id": 219959745851393,
                "price": 31800000000,
                "strikethrough_price": 34900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-9%",
                "model_id": 286874686406,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 34900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3000,
                "rounded_local_monthly_sold_count": 945,
                "local_monthly_sold_count_text": "945",
                "rounded_display_sold_count": 3000,
                "display_sold_count_text": "3RB+"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": " Xiaomi Smart Home Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42073061916,
            "shopid": 1632696269,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mfupgzq14ydke1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,844931064601283,700005490,1049120,822059908662278,825465608497696,825465608499232,1718087960,1428713,844931086908638,1015914,700190087,1400285055,2213652,2048660,2048661,700765096,299103323,2008656],\"matched_keywords\":[\"\"],\"merge_rank\":772,\"model_id\":286874686406,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mfupgzq14ydke1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,844931064601283,700005490,1049120,822059908662278,825465608497696,825465608499232,1718087960,1428713,844931086908638,1015914,700190087,1400285055,2213652,2048660,2048661,700765096,299103323,2008656],\"matched_keywords\":[\"\"],\"merge_rank\":772,\"model_id\":286874686406,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42073061916",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43473047384,
              "shopid": 45905899,
              "name": "Charger Magnetik Adapter USB Type C for Garmin Fernix 7 6S",
              "label_ids": [
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608492064,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                2048660,
                2048661,
                2023641,
                2018619,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824iv-mfj0myc5an0ra6",
              "images": [
                "sg-11134201-824iv-mfj0myc5an0ra6",
                "sg-11134201-824i1-mfj0myh5tz4e6b",
                "sg-11134201-824gb-mfj0myp8d5al36",
                "sg-11134201-824hb-mfj0myv0lu6k40",
                "sg-11134201-824ie-mfj0mz2cg6bs5f",
                "sg-11134201-824j0-mfj0mz9j2adnd7",
                "sg-11134201-824j1-mfj0mzgwqlmxf1",
                "sg-11134201-824hj-mfj0mzoewhs850",
                "sg-11134201-824go-mfj0mzwcftoud1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759798112,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2900000000,
              "price_min": 2900000000,
              "price_max": 2900000000,
              "price_min_before_discount": 4880000000,
              "price_max_before_discount": 4880000000,
              "hidden_price_display": null,
              "price_before_discount": 4880000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-41%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Jenis Plug",
                  "options": [
                    "90 Degree Head",
                    "Straight Head"
                  ],
                  "images": [
                    "sg-11134201-824i1-mfj0myh5tz4e6b",
                    "sg-11134201-824gh-mfj0n051924v9d"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Warna",
                  "options": [
                    "Ungu"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 820844771722240,
                "price": 2900000000,
                "strikethrough_price": 4880000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-41%",
                "model_id": 306873371450,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4880000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Sinar Belawa",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43473047384,
            "shopid": 45905899,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824iv-mfj0myc5an0ra6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,1119699,2048660,2048661,2023641,2018619,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":773,\"model_id\":306873371450,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824iv-mfj0myc5an0ra6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,1119699,2048660,2048661,2023641,2018619,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":773,\"model_id\":306873371450,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43473047384",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41723028088,
              "shopid": 96306692,
              "name": "IWatch Series 1 Batangan Kondisi Mati (Gembling Aja)",
              "label_ids": [
                1400066568,
                2018619,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                700005489,
                822059908662278,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                1718093079,
                1119699,
                700765096,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-81ztm-mfievd5ags229a",
              "images": [
                "id-11134207-81ztm-mfievd5ags229a",
                "id-11134207-81ztq-mfievd5amebue8",
                "id-11134207-81ztc-mfievd5afdhmf3",
                "id-11134207-81ztq-mfievd5ai6mib6",
                "id-11134207-81ztj-mfievd5ajl6y02",
                "id-11134207-81zti-mfievd5akzre57",
                "id-11134207-81ztg-mfievd5bfw9452",
                "id-11134207-81ztl-mfievd5bhatk51"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759770534,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 28500000000,
              "price_min": 28500000000,
              "price_max": 28500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Ukuran",
                  "options": [
                    "38mm",
                    "42mm"
                  ],
                  "images": [
                    "id-11134207-81zti-mfievd5bipe00f",
                    "id-11134207-81ztf-mfievd5bk3ygf4"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Pusat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 28500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 266872212318,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 28500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GreatGadget199",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41723028088,
            "shopid": 96306692,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztm-mfievd5ags229a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,844931086908638,298463379,1059152,700005489,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1718093079,1119699,700765096,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":774,\"model_id\":266872212318,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztm-mfievd5ags229a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,844931086908638,298463379,1059152,700005489,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,2048661,840955085144628,1718093079,1119699,700765096,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":774,\"model_id\":266872212318,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41723028088",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42973007925,
              "shopid": 304557501,
              "name": "Huawei Watch GT6 46mm Pro - Black",
              "label_ids": [
                2018618,
                1002164,
                2153644,
                1718072935,
                844931064601283,
                1119699,
                1015914,
                700190087,
                1400285055,
                2143658,
                998151040,
                1718093079,
                2213652,
                1428713,
                1718087960,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                299103323
              ],
              "image": "id-11134207-81ztk-mfi4dkgo7abv87",
              "images": [
                "id-11134207-81ztk-mfi4dkgo7abv87",
                "id-11134207-81ztq-mfi4r78xfeh563",
                "id-11134207-81ztm-mfi4r797ezv17b",
                "id-11134207-81ztj-mfi4r798cphoc1",
                "id-11134207-81ztk-mfi4r798bax8a7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759744505,
              "sold": 13,
              "historical_sold": 58,
              "liked": false,
              "liked_count": 70,
              "view_count": null,
              "catid": 100013,
              "brand": "Xiaomi",
              "cmt_count": 17,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 459900000000,
              "price_min": 459900000000,
              "price_max": 459900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  17,
                  0,
                  0,
                  0,
                  0,
                  17
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 456900000000,
                "strikethrough_price": 459900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1323190040018984,
                "discount_text": null,
                "model_id": 286869879783,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1323190040018984,
                  "voucher_code": "URBA131JA",
                  "voucher_discount": 3000000000,
                  "time_info": {
                    "start_time": 1767200400,
                    "end_time": 1769878740,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 110000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 459900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 58,
                "rounded_local_monthly_sold_count": 13,
                "local_monthly_sold_count_text": "13",
                "rounded_display_sold_count": 58,
                "display_sold_count_text": "58"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Urban Republic Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42973007925,
            "shopid": 304557501,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztk-mfi4dkgo7abv87\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1002164,2153644,1718072935,844931064601283,1119699,1015914,700190087,1400285055,2143658,998151040,1718093079,2213652,1428713,1718087960,700005490,1049120,822059908662278,825465608499232,299103323],\"matched_keywords\":[\"\"],\"merge_rank\":775,\"model_id\":286869879783,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztk-mfi4dkgo7abv87\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1002164,2153644,1718072935,844931064601283,1119699,1015914,700190087,1400285055,2143658,998151040,1718093079,2213652,1428713,1718087960,700005490,1049120,822059908662278,825465608499232,299103323],\"matched_keywords\":[\"\"],\"merge_rank\":775,\"model_id\":286869879783,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42973007925",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42172995695,
              "shopid": 59414059,
              "name": "OLIKE Smartwatch Meta S2 1.83\" HD Screen 1000mAh Sync Strava IP68 Tahan Air Healt & Sport Monitoring",
              "label_ids": [
                1000167,
                1013217,
                1000109,
                1016119,
                1668726,
                1011692,
                1012865,
                1002164,
                2018618,
                1400285005,
                1400095067,
                2068629,
                2153644,
                700185028,
                700195012,
                700195013,
                700195016,
                298938357,
                700185027,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1119699,
                1049120,
                700005490,
                822059908662278,
                825465608497696,
                840990690654214,
                840955085144628,
                825465608499232,
                1428713,
                1718087960,
                1015914,
                700190087,
                1400285055,
                2213652,
                299103323,
                825465608492064,
                825465608493600,
                2008656,
                1718088045,
                298938368,
                2098628,
                2098629,
                298468389
              ],
              "image": "id-11134207-8224u-mhpkfmuqws1v0d",
              "images": [
                "id-11134207-8224u-mhpkfmuqws1v0d",
                "id-11134207-81ztg-mfhu9918kfm3f1",
                "id-11134207-8224s-mgbry9h05onf9c",
                "id-11134207-8224x-mgbry9h0737v38",
                "id-11134207-81ztj-mfhu9918derv56",
                "id-11134207-81ztp-mfhu9918hmh743",
                "id-11134207-81ztf-mfhu9918onbf25",
                "id-11134207-81ztl-mfhu9918n8qz96",
                "id-11134207-81zto-mfmbalyr90y530"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759732133,
              "sold": 182,
              "historical_sold": 485,
              "liked": false,
              "liked_count": 766,
              "view_count": null,
              "catid": 100013,
              "brand": "Olike",
              "cmt_count": 220,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 27200000000,
              "price_min": 27200000000,
              "price_max": 27200000000,
              "price_min_before_discount": 59900000000,
              "price_max_before_discount": 59900000000,
              "hidden_price_display": null,
              "price_before_discount": 59900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-55%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv7-mfwfupk73toqd9.16000081760610652.mp4",
                  "thumb_url": "id-11110105-6vdv7-mfwfupk73toqd9_cover",
                  "duration": 50,
                  "version": 2,
                  "vid": "id-11110105-6vdv7-mfwfupk73toqd9",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv7-mfwfupk73toqd9.16000081760610652.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv7-mfwfupk73toqd9.16000081760610652.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv7-mfwfupk73toqd9.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "Black",
                    "SIlver",
                    "Meta S2 BLK+Strap BK",
                    "Meta S2 SLV+Strap SL"
                  ],
                  "images": [
                    "id-11134207-81ztn-mfc1xxu6ggzxc7",
                    "id-11134207-81ztl-mfc37pazbnre87",
                    "id-11134207-8224s-mggd15o6d3bg2c",
                    "id-11134207-8224u-mggd15o6ehvwa6"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.881818181818182,
                "rating_count": [
                  220,
                  1,
                  1,
                  2,
                  15,
                  201
                ],
                "rcount_with_context": 41,
                "rcount_with_image": 40
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "id-11134207-8224u-mhpkfmuqws1v0d",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 3,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp90RB X 3",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228251570290689,
                "price": 27200000000,
                "strikethrough_price": 59900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-55%",
                "model_id": 276868719212,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 59900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 485,
                "rounded_local_monthly_sold_count": 182,
                "local_monthly_sold_count_text": "182",
                "rounded_display_sold_count": 485,
                "display_sold_count_text": "485"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp90RB x 3"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Olike Official Shop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42172995695,
            "shopid": 59414059,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mhpkfmuqws1v0d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1013217,1000109,1016119,1668726,1011692,1012865,1002164,2018618,1400285005,1400095067,2068629,2153644,700185028,700195012,700195013,700195016,298938357,700185027,844931064601283,844931086908638,298463379,1718093079,1119699,1049120,700005490,822059908662278,825465608497696,840990690654214,840955085144628,825465608499232,1428713,1718087960,1015914,700190087,1400285055,2213652,299103323,825465608492064,825465608493600,2008656,1718088045,298938368,2098628,2098629,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":213,\"model_id\":276868719212,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mhpkfmuqws1v0d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1013217,1000109,1016119,1668726,1011692,1012865,1002164,2018618,1400285005,1400095067,2068629,2153644,700185028,700195012,700195013,700195016,298938357,700185027,844931064601283,844931086908638,298463379,1718093079,1119699,1049120,700005490,822059908662278,825465608497696,840990690654214,840955085144628,825465608499232,1428713,1718087960,1015914,700190087,1400285055,2213652,299103323,825465608492064,825465608493600,2008656,1718088045,298938368,2098628,2098629,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":213,\"model_id\":276868719212,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42172995695",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44172825239,
              "shopid": 155149633,
              "name": "[FREE WIFI] HUAWEI WATCH GT 6 Pro Smartwatch l Golf & Diving l Running & Cycling l 21-Day Battery Life | ECG",
              "label_ids": [
                1400066568,
                1000544,
                1002164,
                1000381,
                1000109,
                2018618,
                2153644,
                1011692,
                1012729,
                1400095067,
                1400285005,
                844931064601283,
                298463379,
                1718093079,
                1119699,
                700765096,
                1015914,
                700190087,
                700005490,
                700005510,
                822059908662278,
                2048660,
                2048661,
                825465608499232,
                825465608497696,
                1400285055,
                2213652,
                2008656,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224o-mijxn0e4dptzea",
              "images": [
                "id-11134207-8224o-mijxn0e4dptzea",
                "id-11134207-8224p-mgotgir9jle732",
                "id-11134207-82251-mifvbetr9kox2d",
                "id-11134207-8224r-mgotgir99rf3fd",
                "id-11134207-8224x-mgotgir9b5zj9f",
                "id-11134207-8224t-mgotgir9dz4f68",
                "id-11134207-8224q-mgotgir9fdov38",
                "id-11134207-8224u-mgotgir9gs9bd6",
                "id-11134207-8224p-mgotgir9i6tr00"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759554008,
              "sold": 18,
              "historical_sold": 49,
              "liked": false,
              "liked_count": 84,
              "view_count": null,
              "catid": 100013,
              "brand": "Huawei",
              "cmt_count": 28,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 499900000000,
              "price_min": 499900000000,
              "price_max": 499900000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "GT 6 Series",
                  "options": [
                    "[Pro] 46mm Black",
                    "[Pro] 46mm Titanium",
                    "[Pro] 46mm Brown"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  28,
                  0,
                  0,
                  0,
                  0,
                  28
                ],
                "rcount_with_context": 9,
                "rcount_with_image": 6
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Tangerang Selatan",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 499900000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 253989850360,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 499900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 49,
                "rounded_local_monthly_sold_count": 18,
                "local_monthly_sold_count_text": "18",
                "rounded_display_sold_count": 49,
                "display_sold_count_text": "49"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "IT Galeri Official Shop",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44172825239,
            "shopid": 155149633,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mijxn0e4dptzea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1000544,1002164,1000381,1000109,2018618,2153644,1011692,1012729,1400095067,1400285005,844931064601283,298463379,1718093079,1119699,700765096,1015914,700190087,700005490,700005510,822059908662278,2048660,2048661,825465608499232,825465608497696,1400285055,2213652,2008656,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":750,\"model_id\":253989850360,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mijxn0e4dptzea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1000544,1002164,1000381,1000109,2018618,2153644,1011692,1012729,1400095067,1400285005,844931064601283,298463379,1718093079,1119699,700765096,1015914,700190087,700005490,700005510,822059908662278,2048660,2048661,825465608499232,825465608497696,1400285055,2213652,2008656,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":750,\"model_id\":253989850360,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44172825239",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43972759006,
              "shopid": 965335597,
              "name": "SUIRGE Nylon Braided Strap 20mm 22mm for Samsung Galaxy Watch Active 7 6 5 4 3 2 Huami Amazfit GTR 47mm GTS 4 3 2 GT4 GT3 GT2 Magnetic Buckle Replacement Strap",
              "label_ids": [
                1012729,
                2153644,
                2068629,
                2018618,
                298938357,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                1049120,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                1400285055,
                1015914,
                700190087,
                2213652,
                298468389,
                1718088045,
                298938368,
                2098629,
                2098628
              ],
              "image": "sg-11134201-824j5-mfdsrwx7dmvcf1",
              "images": [
                "sg-11134201-824j5-mfdsrwx7dmvcf1",
                "sg-11134201-824ik-mfdsrx63rbwsf7",
                "sg-11134201-824ii-mfdsrxe8pjple1",
                "sg-11134201-824gj-mfdsrxn444jsc2",
                "sg-11134201-824hz-mfdsrxv7b6dmce",
                "sg-11134201-824ie-mfdsry3tqn0obb",
                "sg-11134201-824gg-mfdsrycu27f27a",
                "sg-11134201-824j6-mfdsrymy7xmz42",
                "sg-11134201-824ja-mfdsrywvqvbd6c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759482223,
              "sold": 78,
              "historical_sold": 210,
              "liked": false,
              "liked_count": 122,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 87,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3680000000,
              "price_min": 3680000000,
              "price_max": 3680000000,
              "price_min_before_discount": 6560000000,
              "price_max_before_discount": 6560000000,
              "hidden_price_display": null,
              "price_before_discount": 6560000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-44%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color",
                  "options": [
                    "A- Black",
                    "A- Pink",
                    "A- Star",
                    "A- Grey",
                    "A- Blue",
                    "A- Green",
                    "A- Orange",
                    "A- Wine Red",
                    "B- Black",
                    "B- Orange",
                    "B- Brown",
                    "B- Grey",
                    "B- Blue",
                    "B- Green"
                  ],
                  "images": [
                    "sg-11134201-824hx-mfdss1gczbbf8a",
                    "sg-11134201-824h0-mfdss1wjstmz4c",
                    "sg-11134201-824g2-mfdss19qt8un65",
                    "sg-11134201-824iw-mfdss1n5iccofd",
                    "sg-11134201-824gc-mfdss127o8i7ed",
                    "sg-11134201-824gc-mfdss04ih0r3f1",
                    "sg-11134201-824ip-mfdsrzc1jcp80a",
                    "sg-11134201-824gs-mfdsrziiv8qyce",
                    "sg-11134201-824h5-mfdsrzvv0zrg56",
                    "sg-11134201-824is-mfdsrz4oitxle5",
                    "sg-11134201-824in-mfdss0u9s9hp3b",
                    "sg-11134201-824gr-mfdsrzopz40ed5",
                    "sg-11134201-824jg-mfdss0epvdos90",
                    "sg-11134201-824jk-mfdss0nsrnk954"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Size",
                  "options": [
                    "20mm",
                    "22mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.816091954022989,
                "rating_count": [
                  87,
                  2,
                  0,
                  1,
                  6,
                  78
                ],
                "rcount_with_context": 15,
                "rcount_with_image": 15
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 773304231707648,
                "price": 3680000000,
                "strikethrough_price": 6560000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-44%",
                "model_id": 286849153327,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 6560000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 210,
                "rounded_local_monthly_sold_count": 78,
                "local_monthly_sold_count_text": "78",
                "rounded_display_sold_count": 210,
                "display_sold_count_text": "210"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SUIRGE Official Store ",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43972759006,
            "shopid": 965335597,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824j5-mfdsrwx7dmvcf1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2153644,2068629,2018618,298938357,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,1049120,1718093079,822059908662278,825465608499232,825465608497696,1119699,1400285055,1015914,700190087,2213652,298468389,1718088045,298938368,2098629,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":780,\"model_id\":286849153327,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824j5-mfdsrwx7dmvcf1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2153644,2068629,2018618,298938357,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,1049120,1718093079,822059908662278,825465608499232,825465608497696,1119699,1400285055,1015914,700190087,2213652,298468389,1718088045,298938368,2098629,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":780,\"model_id\":286849153327,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43972759006",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41372770014,
              "shopid": 1224688845,
              "name": "Anti Gores Case Strap for Samsung Galaxy Fit 3 Strap Magnetic Metal Stainless Steel Milanese Loop Band Soft TPU Bumper Screen Protective Cover Accessories Tali Jam Tangan Smartwatch for Samsung Fit 3",
              "label_ids": [
                2018618,
                2153644,
                298938357,
                298888358,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                2048660,
                2048661,
                840955085144628,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                1119699,
                700765096,
                1015914,
                700190087,
                1400285055,
                2213652,
                2103651,
                2143613,
                700810055,
                298468389,
                2098629,
                298938368,
                2098628,
                1718088045
              ],
              "image": "sg-11134201-824hm-mfdq150rhhxp7e",
              "images": [
                "sg-11134201-824hm-mfdq150rhhxp7e",
                "sg-11134201-824hk-mfdq16c48o3w9c",
                "sg-11134201-824j7-mfdq18h4xhql7a",
                "sg-11134201-824gs-mfdq1a2mtibz2c",
                "sg-11134201-824iy-mfdq1bq9vy8c8d",
                "sg-11134201-824j7-mfdq1db1si6l86",
                "sg-11134201-824jh-mfdq1ex5sx710d",
                "sg-11134201-824j3-mfdq1h6dknbgb4",
                "sg-11134201-824ia-mfdq1jxpknbd4a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759477623,
              "sold": 171,
              "historical_sold": 376,
              "liked": false,
              "liked_count": 123,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 134,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 6270000000,
              "price_min": 6270000000,
              "price_max": 6270000000,
              "price_min_before_discount": 9900000000,
              "price_max_before_discount": 9900000000,
              "hidden_price_display": null,
              "price_before_discount": 9900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-37%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kiqh-mata2twfhyznaa.16000081749523134.mp4",
                  "thumb_url": "sg-11110106-6kiqh-mata2twfhyznaa_cover",
                  "duration": 34,
                  "version": 2,
                  "vid": "sg-11110106-6kiqh-mata2twfhyznaa",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiqh-mata2twfhyznaa.16000081749523134.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiqh-mata2twfhyznaa.16000081749523134.mp4",
                      "width": 1280,
                      "height": 672
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiqh-mata2twfhyznaa.default.mp4",
                    "width": 1028,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "silvery+transparent",
                    "black+black",
                    "rose pink+rose pink ",
                    "rose gold+rose gold",
                    "gold+gold",
                    "starlight+gold",
                    "Gray+transparent",
                    "silvery (Strap)",
                    "black (Strap)",
                    "rose pink (Strap)",
                    " rose gold (Strap)",
                    "gold (Strap)",
                    " starlight (Strap)",
                    "Space Gray (Strap)",
                    "transparent (Case)",
                    "silvery (Case)",
                    "black (Case)",
                    "rose pink (Case)",
                    "rose gold (Case)",
                    "gold (Case)",
                    "green (Case)",
                    "blue (Case)"
                  ],
                  "images": [
                    "sg-11134201-824gq-mfdq1xhig5xn46",
                    "sg-11134201-824hs-mfdq1xnxcyrvcb",
                    "sg-11134201-824ib-mfdq1xu4gsgc24",
                    "sg-11134201-824hc-mfdq1y0bf1fz75",
                    "sg-11134201-824gk-mfdq1yiannd73f",
                    "sg-11134201-824hs-mfdq1yrjn096cb",
                    "sg-11134201-824h8-mfdq1z95kky7f9",
                    "sg-11134201-824ie-mfdq1zm7gzrd59",
                    "sg-11134201-824iq-mfdq204jfh8s3a",
                    "sg-11134201-824g2-mfdq20iuv37y70",
                    "sg-11134201-824hp-mfdq20ysl8261c",
                    "sg-11134201-824hb-mfdq21fx05ccd9",
                    "sg-11134201-824i3-mfdq220q1frc96",
                    "sg-11134201-824i1-mfdq22hwadqhf6",
                    "sg-11134201-824hp-mfdq22t4d1cb7d",
                    "sg-11134201-824ip-mfdq2328xr7t08",
                    "sg-11134201-824h6-mfdq2381q42094",
                    "sg-11134201-824hf-mfdq23ea1ixa20",
                    "sg-11134201-824ib-mfdq23kve3go35",
                    "sg-11134201-824i4-mfdq23rq2c5l2d",
                    "sg-11134201-824hp-mfdq23xi89hqd8",
                    "sg-11134201-824ih-mfdq243vw45n5b"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "for Samsung Fit 3"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.902985074626866,
                "rating_count": [
                  134,
                  0,
                  0,
                  1,
                  11,
                  122
                ],
                "rcount_with_context": 12,
                "rcount_with_image": 15
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 392412463907329,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 784824206409728,
                "price": 6270000000,
                "strikethrough_price": 9900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-37%",
                "model_id": 291848666374,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 9900000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 376,
                "rounded_local_monthly_sold_count": 171,
                "local_monthly_sold_count_text": "171",
                "rounded_display_sold_count": 376,
                "display_sold_count_text": "376"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "KMAIXA Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41372770014,
            "shopid": 1224688845,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824hm-mfdq150rhhxp7e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,298938357,298888358,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,1015914,700190087,1400285055,2213652,2103651,2143613,700810055,298468389,2098629,298938368,2098628,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":781,\"model_id\":291848666374,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824hm-mfdq150rhhxp7e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,298938357,298888358,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,2048660,2048661,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1119699,700765096,1015914,700190087,1400285055,2213652,2103651,2143613,700810055,298468389,2098629,298938368,2098628,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":781,\"model_id\":291848666374,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41372770014",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 24347312116,
              "shopid": 59812924,
              "name": "Kabel Charger Amazfit Balance 2 Cable Charger Magnetic For Amazfit Balance 2",
              "label_ids": [
                2023641,
                1000167,
                2018619,
                1428713,
                1718087960,
                844931064601283,
                700005490,
                700005495,
                822059908662278,
                822120592861206,
                825465608493600,
                825465608497696,
                840990690654214,
                2048660,
                840955085144628,
                827380695406658,
                825465608494624,
                2048661,
                825465608499232,
                1718093079,
                1119699,
                700765096
              ],
              "image": "id-11134207-81ztl-mfcz4bwv7ifja7",
              "images": [
                "id-11134207-81ztl-mfcz4bwv7ifja7",
                "id-11134207-81ztp-mfcyrd0yic5nfc",
                "id-11134207-81ztm-mfcyrd0ygxl75b",
                "id-11134207-81ztf-mfcz4bwhfnyjfc",
                "id-11134207-81ztm-mfcz4bwb5ij3f1",
                "id-11134207-81zto-mfcz4bwof3m41c",
                "id-11134207-81ztc-mfcz4bwb6x3j46"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759432406,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 8000000000,
              "price_min": 8000000000,
              "price_max": 8000000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 411492684152863,
                "bundle_deal_label": "Pilih 2, diskon 2%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 8000000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 271844190657,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 8000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Toko-Berkah",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 24347312116,
            "shopid": 59812924,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-mfcz4bwv7ifja7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,1000167,2018619,1428713,1718087960,844931064601283,700005490,700005495,822059908662278,822120592861206,825465608493600,825465608497696,840990690654214,2048660,840955085144628,827380695406658,825465608494624,2048661,825465608499232,1718093079,1119699,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":783,\"model_id\":271844190657,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-mfcz4bwv7ifja7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,1000167,2018619,1428713,1718087960,844931064601283,700005490,700005495,822059908662278,822120592861206,825465608493600,825465608497696,840990690654214,2048660,840955085144628,827380695406658,825465608494624,2048661,825465608499232,1718093079,1119699,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":783,\"model_id\":271844190657,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_24347312116",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41172633564,
              "shopid": 1606678681,
              "name": "Loopline Kulit Model Bintang Sabit Strap Mi Band 10/9/8 Kulit Wanita Premium Tali Jam  Mi Band 9 Aksesoris Wanita Xiaomi Mi Band 10 Kulit",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                298463379,
                1059152,
                1049122,
                822059908662278,
                825465608499232,
                825465608497696,
                844931064601283,
                844931086908638,
                1718093079,
                1119699,
                1015914,
                700190087,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-824hh-mfcbye7n57gv49",
              "images": [
                "sg-11134201-824hh-mfcbye7n57gv49",
                "sg-11134201-824g9-mfcbyedlzabu45",
                "sg-11134201-824j1-mfcbyeicnabv89",
                "sg-11134201-824i1-mfcbyenyrg2584",
                "sg-11134201-824ip-mfcbyetqowem56",
                "sg-11134201-824hm-mfcbyezv591q0d",
                "sg-11134201-824i2-mfcbyf4jwdn14b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759393402,
              "sold": 10,
              "historical_sold": 20,
              "liked": false,
              "liked_count": 25,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 7,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 6687200000,
              "price_min": 6687200000,
              "price_max": 6687200000,
              "price_min_before_discount": 7599000000,
              "price_max_before_discount": 7599000000,
              "hidden_price_display": null,
              "price_before_discount": 7599000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-12%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Bintang Black",
                    "Bintang Cream White",
                    "Bintang Brown",
                    "Bintang Aprikot",
                    "Elegant Black",
                    "Transparan",
                    "Ivory",
                    "Pink",
                    "Pine Green",
                    "INK Blue"
                  ],
                  "images": [
                    "sg-11134201-824gk-mfcbyf9cpogac1",
                    "sg-11134201-824hx-mfcbyfgaqrked3",
                    "sg-11134201-824hi-mfcbyfmxqbyhc9",
                    "sg-11134201-824hv-mfcbyftqhself9",
                    "sg-11134201-824je-mfcbyg0023v2dd",
                    "sg-11134201-824hg-mfcbyg47lv612b",
                    "sg-11134201-824gu-mfcbyg8bvjm3a1",
                    "sg-11134201-824gz-mfcbygdslwjxc3",
                    "sg-11134201-824iz-mfcbygjdbhu5d6",
                    "sg-11134201-824h8-mfcbygq0cgso11"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tipe",
                  "options": [
                    "Mi Band 10/9/8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.714285714285714,
                "rating_count": [
                  7,
                  0,
                  0,
                  1,
                  0,
                  6
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 364432693932900,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 722961326194688,
                "price": 6687200000,
                "strikethrough_price": 7599000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-12%",
                "model_id": 306840455152,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7599000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 20,
                "rounded_local_monthly_sold_count": 10,
                "local_monthly_sold_count_text": "10",
                "rounded_display_sold_count": 20,
                "display_sold_count_text": "20"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Loopline",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41172633564,
            "shopid": 1606678681,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824hh-mfcbye7n57gv49\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,298463379,1059152,1049122,822059908662278,825465608499232,825465608497696,844931064601283,844931086908638,1718093079,1119699,1015914,700190087,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":784,\"model_id\":306840455152,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824hh-mfcbye7n57gv49\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,298463379,1059152,1049122,822059908662278,825465608499232,825465608497696,844931064601283,844931086908638,1718093079,1119699,1015914,700190087,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":784,\"model_id\":306840455152,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41172633564",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28392458951,
              "shopid": 1628289636,
              "name": "MIJOBS BR8 Silicone Strap for Xiaomi Mi Band 8 (Tali Jam MiBand Breathable Rubber Silikon TPU dengan Casing)",
              "label_ids": [
                700700063,
                844931064601283,
                844931086908638,
                700005490,
                700005495,
                822059908662278,
                825465608493600,
                825465608499232,
                825465608497696,
                1119699,
                2023641,
                2018619,
                298463379,
                1718093079,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-824gg-mf9kuqyyqbrg60",
              "images": [
                "sg-11134201-824gg-mf9kuqyyqbrg60",
                "sg-11134201-824gd-mf9kur329czzda",
                "sg-11134201-824ha-mf9kuqzvqmml88",
                "sg-11134201-824i5-mf9kur0euww98a",
                "sg-11134201-824j1-mf9kuqzwpseh67",
                "sg-11134201-824hq-mf9kur3qj28b62",
                "sg-11134201-824ge-mf9kur0kimtq04",
                "sg-11134201-824g2-mf9kuqyske1504",
                "sg-11134201-824iv-mf9kuqz5vdov23"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759226788,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1990000000,
              "price_min": 1990000000,
              "price_max": 1990000000,
              "price_min_before_discount": 2500000000,
              "price_max_before_discount": 2500000000,
              "hidden_price_display": null,
              "price_before_discount": 2500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-20%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Color Variant",
                  "options": [
                    "Grey",
                    "Army Green",
                    "Black",
                    "Midnight Blue",
                    "Pink"
                  ],
                  "images": [
                    "sg-11134201-824gs-mf9kuqopf6kr36",
                    "sg-11134201-824iv-mf9kuqqj1s7e0e",
                    "sg-11134201-824he-mf9kuqnv3rbfa2",
                    "sg-11134201-824hs-mf9kuqnhwxsb1b",
                    "sg-11134201-824gv-mf9kuqngh0cu3c"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 799863218946048,
                "price": 1990000000,
                "strikethrough_price": 2500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-20%",
                "model_id": 301825629213,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gloopz",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 28392458951,
            "shopid": 1628289636,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824gg-mf9kuqyyqbrg60\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,844931086908638,700005490,700005495,822059908662278,825465608493600,825465608499232,825465608497696,1119699,2023641,2018619,298463379,1718093079,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":787,\"model_id\":301825629213,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824gg-mf9kuqyyqbrg60\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,844931086908638,700005490,700005495,822059908662278,825465608493600,825465608499232,825465608497696,1119699,2023641,2018619,298463379,1718093079,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":787,\"model_id\":301825629213,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28392458951",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40972428422,
              "shopid": 634180660,
              "name": "LIGE AK81 Jam Tangan Pintar Olahraga Pria Layar 1,46 Inci untuk Panggilan Bluetooth Monitor Detak Jantung Senter Pelacak Aktivitas Jam Tangan Pintar",
              "label_ids": [
                1668726,
                298938357,
                298888358,
                2018619,
                2023641,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                1015914,
                700190087,
                298933384,
                2098629
              ],
              "image": "id-11134207-81ztj-mf9ifit48gzy0e",
              "images": [
                "id-11134207-81ztj-mf9ifit48gzy0e",
                "id-11134207-81ztl-mf9ifit45nv25a",
                "id-11134207-81ztk-mf9ifit449amf1",
                "id-11134207-81ztc-mf9ifit472fi4a",
                "id-11134207-81ztl-mf9ifit41g5qb3",
                "id-11134207-81ztd-mf9ifit401laa7",
                "id-11134207-81ztm-mf9ifit42uq6a4",
                "id-11134207-81ztg-mf9j2ahwqj9q76"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759223923,
              "sold": 0,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 9,
              "view_count": null,
              "catid": 100013,
              "brand": "Lige",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 43900000000,
              "price_min": 43900000000,
              "price_max": 43900000000,
              "price_min_before_discount": 59900000000,
              "price_max_before_discount": 59900000000,
              "hidden_price_display": null,
              "price_before_discount": 59900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-27%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "BWAK81",
                  "options": [
                    "Black + 2 strap",
                    "Silver + 2 strap"
                  ],
                  "images": [
                    "id-11134207-81ztg-mf9j2ai16o0b56",
                    "id-11134207-81ztj-mf9j2ai182kra0"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp73RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 773934476230656,
                "price": 43900000000,
                "strikethrough_price": 59900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-27%",
                "model_id": 271825006551,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 59900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp73RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "LIGE Jam Tangan",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40972428422,
            "shopid": 634180660,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztj-mf9ifit48gzy0e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1668726,298938357,298888358,2018619,2023641,1718087960,1428713,844931086908638,844931064601283,1059152,1049122,1718093079,822059908662278,825465608497696,825465608499232,1119699,1015914,700190087,298933384,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":788,\"model_id\":271825006551,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztj-mf9ifit48gzy0e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1668726,298938357,298888358,2018619,2023641,1718087960,1428713,844931086908638,844931064601283,1059152,1049122,1718093079,822059908662278,825465608497696,825465608499232,1119699,1015914,700190087,298933384,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":788,\"model_id\":271825006551,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40972428422",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27992442785,
              "shopid": 1482295448,
              "name": "(Terlaris hadiah)PulsrFit   Smartwatch Original GT6 Pro jam tangan pintar pria Minimalis Kesehatan  Bluetooth  Monitor Kesehatan Olaharaga smart watch hadiah untuk Ayah cocok untuk siswa",
              "label_ids": [
                700700063,
                2018619,
                844931064601283,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                298463379,
                1718093079,
                1119699,
                1015914,
                700190087,
                1400285055,
                844931086908638,
                1428713,
                1718087960,
                1400066568,
                2048660,
                2048661,
                1718088045,
                298468389
              ],
              "image": "id-11134207-81ztl-mf9dvmbdkky120",
              "images": [
                "id-11134207-81ztl-mf9dvmbdkky120",
                "id-11134207-81ztq-mf9dvmbcwpaj9c",
                "id-11134207-81ztp-mf9dvmbj9nuw44",
                "id-11134207-81ztj-mf9dvmbjdvkefe",
                "id-11134207-81zti-mf9dvmbk1r7u10",
                "id-11134207-81zth-mf9dvmbdlzih91",
                "id-11134207-81zte-mf9dvmbmz3t7d0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759216991,
              "sold": 5,
              "historical_sold": 16,
              "liked": false,
              "liked_count": 23,
              "view_count": null,
              "catid": 100013,
              "brand": "PulsarFit",
              "cmt_count": 9,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 23490000000,
              "price_min": 23490000000,
              "price_max": 23490000000,
              "price_min_before_discount": 89900000000,
              "price_max_before_discount": 89900000000,
              "hidden_price_display": null,
              "price_before_discount": 89900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-74%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven8-mf9dwpxyz1fta5.16000081759215082.mp4",
                  "thumb_url": "id-11110105-6ven8-mf9dwpxyz1fta5_cover",
                  "duration": 22,
                  "version": 2,
                  "vid": "id-11110105-6ven8-mf9dwpxyz1fta5",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven8-mf9dwpxyz1fta5.16000081759215082.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven8-mf9dwpxyz1fta5.16000081759215082.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven8-mf9dwpxyz1fta5.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "waran",
                  "options": [
                    "Hitam",
                    "Coffee"
                  ],
                  "images": [
                    "id-11134207-81ztn-mf9dvmbp8kr37d",
                    "id-11134207-81ztg-mf9dvmbp9zbj04"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  9,
                  0,
                  0,
                  0,
                  0,
                  9
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 3
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 821593689882624,
                "price": 23490000000,
                "strikethrough_price": 89900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-74%",
                "model_id": 248980155294,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 89900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 16,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 16,
                "display_sold_count_text": "16"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "PulsarFit",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 27992442785,
            "shopid": 1482295448,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-mf9dvmbdkky120\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,844931064601283,1059152,1059154,822059908662278,825465608499232,298463379,1718093079,1119699,1015914,700190087,1400285055,844931086908638,1428713,1718087960,1400066568,2048660,2048661,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":598,\"model_id\":248980155294,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-mf9dvmbdkky120\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,844931064601283,1059152,1059154,822059908662278,825465608499232,298463379,1718093079,1119699,1015914,700190087,1400285055,844931086908638,1428713,1718087960,1400066568,2048660,2048661,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":598,\"model_id\":248980155294,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27992442785",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40922405496,
              "shopid": 1496409734,
              "name": "Temepred Glass PC Case for Apple Watch IWatch Ultra 3 2 49mm Series 11 10 9 8 7 6 5 SE 3 2 46 41 44 45 42 38 Anti Gores Matte Hard with Film Screen Protector Bumper Cover for Jam Tangan Smartwatch I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2023641,
                2018619,
                298513322,
                700025282,
                1718087960,
                1428713,
                298463379,
                844931064601283,
                844931086908638,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                298933384,
                1015914,
                700190087,
                2048660,
                2048661,
                840955085144628,
                840990690654214,
                700765096,
                700810080,
                1400285055,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824gn-mf9cze3a330sa9",
              "images": [
                "sg-11134201-824gn-mf9cze3a330sa9",
                "sg-11134201-824ib-mf9czeh0ke15df",
                "sg-11134201-824iq-mf9czezvaioa80",
                "sg-11134201-824i1-mf9czfb153wr64",
                "sg-11134201-824hj-mf9czfksqj9nbc",
                "sg-11134201-824j6-mf9czfxkudjg70",
                "sg-11134201-824hi-mf9czgejk6by97",
                "sg-11134201-824hn-mf9czgq4wf0rcb",
                "sg-11134201-824gj-mf9czh255a8899"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759213528,
              "sold": 39,
              "historical_sold": 67,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 13,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1505000000,
              "price_min": 1505000000,
              "price_max": 1505000000,
              "price_min_before_discount": 3040000000,
              "price_max_before_discount": 3040000000,
              "hidden_price_display": null,
              "price_before_discount": 3040000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16000081706251701.mp4",
                  "thumb_url": "sg-11110106-7rcer-lqygg27qwq7u03",
                  "duration": 26,
                  "version": 2,
                  "vid": "sg-11110106-6khxb-lqygfzdctrq805",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16003221712886906.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16003221712886906.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16002401707249769.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16002401707249769.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16004081707249596.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16004081707249596.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16006711723612227.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16006711723612227.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16006731724150137.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16006731724150137.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16004091707249604.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16004091707249604.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16002411707249778.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16002411707249778.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16006591743076783.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16006591743076783.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16000081706251701.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16000081706251701.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16003251707136771.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16003251707136771.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16003241707136771.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16003241707136771.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16004111707249604.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16004111707249604.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16004101707249604.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.16004101707249604.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxb-lqygfzdctrq805.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Starlight(Case)",
                    "Bright silver(Case)",
                    "Transparent(Case)",
                    "Black(Case)",
                    "White(Case)",
                    "Mindnight blue(Case)",
                    "Dark green(Case)",
                    "Rose(Case)",
                    "Pink(Case)",
                    "red(Case)",
                    "wine(Case)"
                  ],
                  "images": [
                    "sg-11134201-824gr-mf9cztvruc5r9c",
                    "sg-11134201-824he-mf9czu5ixi4u1b",
                    "sg-11134201-824he-mf9czud9k7ih71",
                    "sg-11134201-824ie-mf9czukvs6q4d4",
                    "sg-11134201-824iy-mf9czuutp7nw29",
                    "sg-11134201-824jg-mf9czv4wvs3va8",
                    "sg-11134201-824gr-mf9czvdre3gte4",
                    "sg-11134201-824hl-mf9czvmrmt5780",
                    "sg-11134201-824g7-mf9czvw930un96",
                    "sg-11134201-824ih-mf9czwapqwi268",
                    "sg-11134201-824h2-mf9czwlc4kcr08"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Variation",
                  "options": [
                    "40mm",
                    "42mm",
                    "38mm",
                    "41mm",
                    "44mm",
                    "45mm",
                    "49mm",
                    "42mm Series 11 10",
                    "46mm Series 11 10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.538461538461538,
                "rating_count": [
                  13,
                  0,
                  1,
                  0,
                  3,
                  9
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 225635054403584,
                "price": 1505000000,
                "strikethrough_price": 3040000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 253979839571,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3040000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 67,
                "rounded_local_monthly_sold_count": 39,
                "local_monthly_sold_count_text": "39",
                "rounded_display_sold_count": 67,
                "display_sold_count_text": "67"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BXUXOHS",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU4MTY0MzU1MmM3MTIyYjc4NzkwMDowMjAwMDA3OTRjMDUwYmZhOjAxMDAwMTdkNTNlNTg5MWF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40922405496,
            "shopid": 1496409734,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824gn-mf9cze3a330sa9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,298513322,700025282,1718087960,1428713,298463379,844931064601283,844931086908638,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,298933384,1015914,700190087,2048660,2048661,840955085144628,840990690654214,700765096,700810080,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":790,\"model_id\":253979839571,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824gn-mf9cze3a330sa9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,298513322,700025282,1718087960,1428713,298463379,844931064601283,844931086908638,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,298933384,1015914,700190087,2048660,2048661,840955085144628,840990690654214,700765096,700810080,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":790,\"model_id\":253979839571,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40922405496",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43772378531,
              "shopid": 14380575,
              "name": "Tali Strap Jam Coros Apex 4 46mm / Nomad - Kulit Leather Simple Polos 24mm Modern",
              "label_ids": [
                2018619,
                47,
                1014371,
                2023641,
                700190019,
                844931064601283,
                1049116,
                1049117,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                700765096,
                1718087960,
                1428713,
                298463379,
                298933384,
                825465608494624,
                825465608493600,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224q-mi82ng333fgo7f",
              "images": [
                "id-11134207-8224q-mi82ng333fgo7f",
                "id-11134207-8224u-mi7analg8mivb1",
                "id-11134207-8224s-mi7analg1lon5b",
                "id-11134207-82252-mi7analgbfnr1f",
                "id-11134207-82251-mi7analg309317",
                "id-11134207-82252-mi7analg5tdz27",
                "id-11134207-8224q-mi7analg074795",
                "id-11134207-8224q-mi7analg77yf21"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759207439,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 9500000000,
              "price_min": 9500000000,
              "price_max": 9500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvj-mi85iktify13d3.16000071765678164.mp4",
                  "thumb_url": "id-11110105-6vdvj-mi85iktify13d3_cover",
                  "duration": 38,
                  "version": 2,
                  "vid": "id-11110105-6vdvj-mi85iktify13d3",
                  "formats": [
                    {
                      "format": 1600007,
                      "defn": "V640P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvj-mi85iktify13d3.16000071765678164.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvj-mi85iktify13d3.16000071765678164.mp4",
                      "width": 640,
                      "height": 640
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvj-mi85iktify13d3.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "warna",
                  "options": [
                    "black",
                    "brown",
                    "blue"
                  ],
                  "images": [
                    "id-11134207-81ztd-mf99bmtwv56y9e",
                    "id-11134207-81ztp-mf99bmtwwjre55",
                    "id-11134207-81ztj-mf99bmtwxybu75"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Surabaya",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 9500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 253979489171,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 9500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "jmcellsurabaya",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43772378531,
            "shopid": 14380575,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mi82ng333fgo7f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,47,1014371,2023641,700190019,844931064601283,1049116,1049117,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,700765096,1718087960,1428713,298463379,298933384,825465608494624,825465608493600,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":271,\"model_id\":253979489171,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mi82ng333fgo7f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,47,1014371,2023641,700190019,844931064601283,1049116,1049117,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,700765096,1718087960,1428713,298463379,298933384,825465608494624,825465608493600,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":271,\"model_id\":253979489171,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43772378531",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29742411722,
              "shopid": 692486792,
              "name": "Mecha magnetic strap and PC Case for Redmi watch 1 Redmi watch 2 Redmi watch 3 Redmi watch 3 Active",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1059152,
                700005487,
                822059908662278,
                2048661,
                840955085144628,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                840990690654214,
                2048660,
                1119699,
                1718093079,
                298463379,
                700765096,
                1400285055,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824hm-mf845n718r2je8",
              "images": [
                "sg-11134201-824hm-mf845n718r2je8",
                "sg-11134201-824gl-mf845nfp9ukq53",
                "sg-11134201-824in-mf845nolnjm3eb",
                "sg-11134201-824j4-mf845nw9qy311f",
                "sg-11134201-824ia-mf845o1kba4t03",
                "sg-11134201-824gq-mf845o650etk25",
                "sg-11134201-824hi-mf845oalotfs80"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759138152,
              "sold": 18,
              "historical_sold": 37,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 13,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4886500000,
              "price_min": 4886500000,
              "price_max": 4886500000,
              "price_min_before_discount": 10842000000,
              "price_max_before_discount": 10842000000,
              "hidden_price_display": null,
              "price_before_discount": 10842000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-55%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "StarLight",
                    "Black",
                    "WineRed-Black",
                    "PinkOxford-Stralight",
                    "SmokePurple-S.Light",
                    "Midnight",
                    "L.Purple-PinkSand"
                  ],
                  "images": [
                    "sg-11134201-824i4-mf845oi4zg2020",
                    "sg-11134201-824ib-mf845osfdx58e9",
                    "sg-11134201-824i9-mf845p0vt3wp98",
                    "sg-11134201-824ga-mf845p99nl737c",
                    "sg-11134201-824hh-mf845pjszor2f8",
                    "sg-11134201-824ga-mf845pryygw982",
                    "sg-11134201-824g9-mf845q1ulxqj17"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Ukuran",
                  "options": [
                    "Redmi-1",
                    "Redmi-2",
                    "Redmi-3",
                    "Redmi-3-Active"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.538461538461538,
                "rating_count": [
                  13,
                  1,
                  0,
                  1,
                  0,
                  11
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Timur",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 4886500000,
                "strikethrough_price": 10842000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-55%",
                "model_id": 118756740006,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 10842000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 48.865",
                      "hidden_promotion_price": "Rp ?8.865",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 37,
                "rounded_local_monthly_sold_count": 18,
                "local_monthly_sold_count_text": "18",
                "rounded_display_sold_count": 37,
                "display_sold_count_text": "37"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "AMH.id",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 29742411722,
            "shopid": 692486792,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824hm-mf845n718r2je8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,1059152,700005487,822059908662278,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1119699,1718093079,298463379,700765096,1400285055,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1210,\"model_id\":118756740006,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824hm-mf845n718r2je8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,1059152,700005487,822059908662278,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,2048660,1119699,1718093079,298463379,700765096,1400285055,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1210,\"model_id\":118756740006,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29742411722",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43622232490,
              "shopid": 18476381,
              "name": "STRAP TALI JAM GARMIN WATCH FENIX 8 47MM 7 6 5 INSTINCT 3 45MM 2 1 QUICK FIT 22MM TYPE 3 FENIX",
              "label_ids": [
                2018619,
                1000167,
                700700063,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1119699,
                700765096,
                1015914,
                700190087,
                298933384,
                1059152,
                1049122,
                822059908662278,
                2048660,
                2048661,
                825465608493600,
                825465608494624,
                825465608499232,
                825465608497696,
                1400285055,
                298468389,
                1718088045
              ],
              "image": "id-11134207-81zto-mf80gz0hh0y2d1",
              "images": [
                "id-11134207-81zto-mf80gz0hh0y2d1",
                "id-11134207-81ztq-mf7vh7l0kwzuf3",
                "id-11134207-81ztf-mf7vh7l3qozs24"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759132273,
              "sold": 4,
              "historical_sold": 18,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 5,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 10010000000,
              "price_min": 10010000000,
              "price_max": 10010000000,
              "price_min_before_discount": 11000000000,
              "price_max_before_discount": 11000000000,
              "hidden_price_display": null,
              "price_before_discount": 11000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-9%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Orange",
                    "Red",
                    "Navy",
                    "Black",
                    "Grey",
                    "Grey Blue",
                    "Soft Pink",
                    "Army"
                  ],
                  "images": [
                    "id-11134207-81ztd-mf80mnb6v8r055",
                    "id-11134207-81ztq-mf80mpxgdo946b",
                    "id-11134207-81ztp-mf80mtg67yfe4b",
                    "id-11134207-81zti-mf80mw17n47e46",
                    "id-11134207-81ztq-mf80myz6328eaf",
                    "id-11134207-81ztf-mf80n2khc3yg8b",
                    "id-11134207-81zto-mf80n5q9q5n163",
                    "id-11134207-81zte-mf80n8znupl7ae"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 794368789774336,
                "price": 10010000000,
                "strikethrough_price": 11000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-9%",
                "model_id": 306808314901,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 11000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 18,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 18,
                "display_sold_count_text": "18"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Jktmanshop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43622232490,
            "shopid": 18476381,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zto-mf80gz0hh0y2d1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1000167,700700063,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1119699,700765096,1015914,700190087,298933384,1059152,1049122,822059908662278,2048660,2048661,825465608493600,825465608494624,825465608499232,825465608497696,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":343,\"model_id\":306808314901,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zto-mf80gz0hh0y2d1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1000167,700700063,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1119699,700765096,1015914,700190087,298933384,1059152,1049122,822059908662278,2048660,2048661,825465608493600,825465608494624,825465608499232,825465608497696,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":343,\"model_id\":306808314901,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43622232490",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40922228396,
              "shopid": 284666524,
              "name": "[NEW LAUNCH] ADVAN Smartwatch S3 Pro | 2.01โ€ Big Screen | Metal Body | 100+ Sports Modes | Smart AI Chat GPT Assistant | Wireless Bluetooth Call | 5ATM Waterproof | Support Strava & One Click Health | Garansi Resmi 1 Tahun",
              "label_ids": [
                1518617,
                1002164,
                2018618,
                2153644,
                1400095067,
                1400285005,
                844931086908638,
                844931064601283,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608493600,
                298463379,
                1119699,
                1718093079,
                1015914,
                700190087,
                1400285055,
                2213652,
                2008656,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-824ix-mf7zokv7vl72f2",
              "images": [
                "sg-11134201-824ix-mf7zokv7vl72f2",
                "sg-11134201-824jc-mf7zol0r3uh6db",
                "sg-11134201-824gm-mf7zol6darri76",
                "sg-11134201-824ji-mf7zolbr7zta8a",
                "sg-11134201-824ha-mf7zoli55mvf69",
                "sg-11134201-824gw-mf7zolompybuaf",
                "sg-11134201-824gd-mf7zolwyrthob7",
                "sg-11134201-824h7-mf7zom3z6mto38"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759130629,
              "sold": 51,
              "historical_sold": 105,
              "liked": false,
              "liked_count": 58,
              "view_count": null,
              "catid": 100013,
              "brand": "ADVAN",
              "cmt_count": 27,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 29900000000,
              "price_min": 29900000000,
              "price_max": 29900000000,
              "price_min_before_discount": 79900000000,
              "price_max_before_discount": 79900000000,
              "hidden_price_display": null,
              "price_before_discount": 79900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-63%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "White"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.888888888888889,
                "rating_count": [
                  27,
                  0,
                  0,
                  1,
                  1,
                  25
                ],
                "rcount_with_context": 9,
                "rcount_with_image": 4
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "sg-11134201-824ix-mf7zokv7vl72f2",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 794084843782144,
                "price": 29900000000,
                "strikethrough_price": 79900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-63%",
                "model_id": 296807757742,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 79900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 105,
                "rounded_local_monthly_sold_count": 51,
                "local_monthly_sold_count_text": "51",
                "rounded_display_sold_count": 105,
                "display_sold_count_text": "105"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Advan Indonesia",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40922228396,
            "shopid": 284666524,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824ix-mf7zokv7vl72f2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1518617,1002164,2018618,2153644,1400095067,1400285005,844931086908638,844931064601283,700005490,1049120,822059908662278,825465608499232,825465608497696,825465608493600,298463379,1119699,1718093079,1015914,700190087,1400285055,2213652,2008656,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1237,\"model_id\":296807757742,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824ix-mf7zokv7vl72f2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1518617,1002164,2018618,2153644,1400095067,1400285005,844931086908638,844931064601283,700005490,1049120,822059908662278,825465608499232,825465608497696,825465608493600,298463379,1119699,1718093079,1015914,700190087,1400285055,2213652,2008656,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1237,\"model_id\":296807757742,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40922228396",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40222228403,
              "shopid": 284666524,
              "name": "[NEW LAUNCH] ADVAN Smartwatch SR V2 | AI Voice Assistant | Wireless Bluetooth Call | IP68 Waterproof | Ultra Thin Body | Mens Monitoring Support Strava & Google Fit One Click Health | Garansi Resmi 1 Tahun",
              "label_ids": [
                1002164,
                2018618,
                1518617,
                2153644,
                1400285005,
                1400095067,
                844931064601283,
                844931086908638,
                700005490,
                1049120,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608493600,
                298463379,
                1119699,
                1718093079,
                1015914,
                700190087,
                1400285055,
                2213652,
                700810080,
                2008656,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824he-mf7zoa3hvz0q7d",
              "images": [
                "sg-11134201-824he-mf7zoa3hvz0q7d",
                "sg-11134201-824jk-mf7zoadvkhe670",
                "sg-11134201-824h1-mf7zobgn7wnhf4",
                "sg-11134201-824gj-mf7zobqeb11qc4",
                "sg-11134201-824je-mf7zobzbi9l4d4",
                "sg-11134201-824gu-mf7zoc9hw0lod6",
                "sg-11134201-824i2-mf7zocgodwy76b",
                "sg-11134201-824jj-mf7zocp76scrac",
                "sg-11134201-824go-mf7zocz5ou882a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759130618,
              "sold": 119,
              "historical_sold": 300,
              "liked": false,
              "liked_count": 168,
              "view_count": null,
              "catid": 100013,
              "brand": "ADVAN",
              "cmt_count": 133,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 26900000000,
              "price_min": 26900000000,
              "price_max": 26900000000,
              "price_min_before_discount": 54900000000,
              "price_max_before_discount": 54900000000,
              "hidden_price_display": null,
              "price_before_discount": 54900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-51%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Silver",
                    "Gold",
                    "Black"
                  ],
                  "images": [
                    "id-11134207-8224x-mg4jkw0ewmix39",
                    "id-11134207-8224u-mg4jkw0ezfnt4c",
                    "id-11134207-82251-mg4jkw0f0u89b6"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.849624060150376,
                "rating_count": [
                  133,
                  2,
                  0,
                  2,
                  8,
                  121
                ],
                "rcount_with_context": 25,
                "rcount_with_image": 28
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "sg-11134201-824he-mf7zoa3hvz0q7d",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 794084843782144,
                "price": 26900000000,
                "strikethrough_price": 54900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-51%",
                "model_id": 262060675472,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 54900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 300,
                "rounded_local_monthly_sold_count": 119,
                "local_monthly_sold_count_text": "119",
                "rounded_display_sold_count": 300,
                "display_sold_count_text": "300"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Advan Indonesia",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40222228403,
            "shopid": 284666524,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824he-mf7zoa3hvz0q7d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,2018618,1518617,2153644,1400285005,1400095067,844931064601283,844931086908638,700005490,1049120,822059908662278,825465608499232,825465608497696,825465608493600,298463379,1119699,1718093079,1015914,700190087,1400285055,2213652,700810080,2008656,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2377,\"model_id\":262060675472,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824he-mf7zoa3hvz0q7d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,2018618,1518617,2153644,1400285005,1400095067,844931064601283,844931086908638,700005490,1049120,822059908662278,825465608499232,825465608497696,825465608493600,298463379,1119699,1718093079,1015914,700190087,1400285055,2213652,700810080,2008656,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2377,\"model_id\":262060675472,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40222228403",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44322221980,
              "shopid": 1629046872,
              "name": "Baggioo Silicone Strap Huawei Watch GT 6 41mm / GT 5 41mm / GT 4 41mm Silicone Magnet Tali Strap Universal 18mm Bahan Silicone Model Magnet",
              "label_ids": [
                844931064601283,
                844931086908638,
                298463379,
                1049122,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                2023641,
                2018619,
                1400285055,
                1015914,
                700190087,
                298933384,
                1718087960,
                1428713,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824ha-mf7y7mu8q5u1f4",
              "images": [
                "sg-11134201-824ha-mf7y7mu8q5u1f4",
                "sg-11134201-824h4-mf7y7n1mfx8td1",
                "sg-11134201-824gy-mf7y7n8edvrc37",
                "sg-11134201-824gq-mf7y7neikefi81",
                "sg-11134201-824iz-mf7y7nkh63gtbb",
                "sg-11134201-824gp-mf7y7nrbdhcf33"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759128156,
              "sold": 36,
              "historical_sold": 144,
              "liked": false,
              "liked_count": 46,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 44,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5400000000,
              "price_min": 5400000000,
              "price_max": 5400000000,
              "price_min_before_discount": 6000000000,
              "price_max_before_discount": 6000000000,
              "hidden_price_display": null,
              "price_before_discount": 6000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-10%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Cream Blue",
                    "Cream Orange",
                    "Black Orange",
                    "Black-Black",
                    "Black Blue",
                    "Black Grey",
                    "Pink Maroon",
                    "Pinkish",
                    "Grey Orange",
                    "Creamy"
                  ],
                  "images": [
                    "sg-11134201-824h6-mf7y7nzxrkzud9",
                    "sg-11134201-824go-mf7y7o6e4efc81",
                    "sg-11134201-824i2-mf7y7odd1slq5c",
                    "sg-11134201-824i7-mf7y7ojkwb2h5d",
                    "sg-11134201-824j0-mf7y7oq7xa14dc",
                    "sg-11134201-824gd-mf7y7ovr5jbib3",
                    "sg-11134201-824id-mf7y7p2egaodd5",
                    "sg-11134201-824hk-mf7y7p7uslxm58",
                    "sg-11134201-824g0-mf7y7pegc5qm89",
                    "sg-11134201-824j7-mf7y7pk3l1xl63"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tipe",
                  "options": [
                    "GT6/5/4 41mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.909090909090909,
                "rating_count": [
                  44,
                  1,
                  0,
                  0,
                  0,
                  43
                ],
                "rcount_with_context": 4,
                "rcount_with_image": 5
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 376746700714174,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 740407617585152,
                "price": 5320000000,
                "strikethrough_price": 6000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1308630403006464,
                "discount_text": "-10%",
                "model_id": 296807042200,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1308630403006464,
                  "voucher_code": "BAGGWI2NL",
                  "voucher_discount": 80000000,
                  "time_info": {
                    "start_time": 1765460197,
                    "end_time": 1773236040,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 4990000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 6000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 144,
                "rounded_local_monthly_sold_count": 36,
                "local_monthly_sold_count_text": "36",
                "rounded_display_sold_count": 144,
                "display_sold_count_text": "144"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Baggioo",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44322221980,
            "shopid": 1629046872,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824ha-mf7y7mu8q5u1f4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1049122,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699,2023641,2018619,1400285055,1015914,700190087,298933384,1718087960,1428713,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":181,\"model_id\":296807042200,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824ha-mf7y7mu8q5u1f4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1049122,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699,2023641,2018619,1400285055,1015914,700190087,298933384,1718087960,1428713,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":181,\"model_id\":296807042200,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44322221980",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44022213595,
              "shopid": 1592030327,
              "name": "Soft Silicone Strap for Apple Watch IWatch Ultra 3 2 Series 11 10 9 8 7 6 5 4 SE 3 2 49 46 45 44 42 41 40 38mm Sport Rubber Magnetic Buckle Rivet Buckle Band Tali Jam Tangan Smartwatch for I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1119699,
                2023641,
                2018619,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                700765096,
                298933384,
                2103651,
                2143613,
                844931086908638,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-824hc-mf7xzipgfimh2c",
              "images": [
                "sg-11134201-824hc-mf7xzipgfimh2c",
                "sg-11134201-824gq-mf7xzj94un0v19",
                "sg-11134201-824hy-mf7xzjqlijgp5c",
                "sg-11134201-824ij-mf7xzk8wcah6ec",
                "sg-11134201-824ig-mf7xzkngo5xk68",
                "sg-11134201-824ij-mf7xzl6b0ahac8",
                "sg-11134201-824gb-mf7xzlt1qb6653",
                "sg-11134201-824ix-mf7xzmqf5czwe3",
                "sg-11134201-824g6-mf7xzoeseadq3d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759127780,
              "sold": 18,
              "historical_sold": 23,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 8,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2500000000,
              "price_min": 2500000000,
              "price_max": 2500000000,
              "price_min_before_discount": 4220000000,
              "price_max_before_discount": 4220000000,
              "hidden_price_display": null,
              "price_before_discount": 4220000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-41%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16000081704706511.mp4",
                  "thumb_url": "sg-11110106-7rbmx-lq8xim9ld82m96",
                  "duration": 29,
                  "version": 2,
                  "vid": "sg-11110106-6khy4-lq8xiceptldw8e",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16003221722507511.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16003221722507511.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16004081743085921.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16004081743085921.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16006711723379270.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16006711723379270.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16006731743872596.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16006731743872596.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16004091721664212.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16004091721664212.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16006591721664219.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16006591721664219.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16000081704706511.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16000081704706511.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16003251712752886.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16003251712752886.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16003241712752886.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16003241712752886.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16004111721664219.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16004111721664219.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16004101743085921.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16004101743085921.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16005581712752886.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16005581712752886.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16005681721664219.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.16005681721664219.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khy4-lq8xiceptldw8e.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Black(Strap)",
                    "Starlight(Strap)",
                    "Silt(Strap)",
                    "Red(Strap)",
                    "Midnight(Strap)",
                    "Grey(Strap)",
                    "White(Strap)",
                    "Burgundy(Strap)",
                    "Orange(Strap)",
                    "Green(Strap)",
                    "Star Blue(Strap)",
                    "Pine Green(Strap)",
                    "Pink(Strap)"
                  ],
                  "images": [
                    "sg-11134201-824g1-mf7y015v8t1o57",
                    "sg-11134201-824hn-mf7y01jg6lu4cb",
                    "sg-11134201-824ga-mf7y01ygpgjye2",
                    "sg-11134201-824if-mf7y02gqwqh51f",
                    "sg-11134201-824go-mf7y02umuozs3e",
                    "sg-11134201-824jh-mf7y03hji80bdb",
                    "sg-11134201-824hz-mf7y04443sp990",
                    "sg-11134201-824gs-mf7y04pcy0p82a",
                    "sg-11134201-824gu-mf7y059tgetm37",
                    "sg-11134201-824j3-mf7y05weiubuab",
                    "sg-11134201-824hs-mf7y06df8a337e",
                    "sg-11134201-824h1-mf7y06tc94p9b5",
                    "sg-11134201-824hn-mf7y07a807wteb"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "smartwear_size",
                  "options": [
                    "49/46/45/44/(S3)42mm",
                    "41/40/38/42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  8,
                  0,
                  0,
                  0,
                  0,
                  8
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359074252468611,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718148739858432,
                "price": 2500000000,
                "strikethrough_price": 4220000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-41%",
                "model_id": 206293297633,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4220000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 23,
                "rounded_local_monthly_sold_count": 18,
                "local_monthly_sold_count_text": "18",
                "rounded_display_sold_count": 23,
                "display_sold_count_text": "23"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANSLOOP Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44022213595,
            "shopid": 1592030327,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824hc-mf7xzipgfimh2c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699,2023641,2018619,840990690654214,2048660,2048661,840955085144628,700765096,298933384,2103651,2143613,844931086908638,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1680,\"model_id\":206293297633,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824hc-mf7xzipgfimh2c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699,2023641,2018619,840990690654214,2048660,2048661,840955085144628,700765096,298933384,2103651,2143613,844931086908638,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1680,\"model_id\":206293297633,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44022213595",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40222213667,
              "shopid": 1592030327,
              "name": "Soft Original Silicone Strap for Xiaomi Redmi Watch 3 Sport Rubber Adjustable Replacement Bracelet Belt Band Accessories Tali Jam Tangan Smartwatch for Xiaomi Redmi Watch Lite 3",
              "label_ids": [
                844931064601283,
                1428713,
                1718087960,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1119699,
                2023641,
                2018619,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                700765096,
                1400285055,
                298933384,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824h5-mf7xxk0qwk5n42",
              "images": [
                "sg-11134201-824h5-mf7xxk0qwk5n42",
                "sg-11134201-824i3-mf7xxkjk13iga8",
                "sg-11134201-824hm-mf7xxl17adxr74",
                "sg-11134201-824i0-mf7xxlgnnhmw6e",
                "sg-11134201-824gx-mf7xxm3y1i4q7a",
                "sg-11134201-824ge-mf7xxmlmwfex6a",
                "sg-11134201-824h0-mf7xxmzl2hvu0b",
                "sg-11134201-824hb-mf7xxne7xmofed",
                "sg-11134201-824iy-mf7xxnw0qfbg5c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759127686,
              "sold": 3,
              "historical_sold": 12,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1590000000,
              "price_min": 1590000000,
              "price_max": 1590000000,
              "price_min_before_discount": 3180000000,
              "price_max_before_discount": 3180000000,
              "hidden_price_display": null,
              "price_before_discount": 3180000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "SkyblueOrange(Strap)",
                    "White(Strap)",
                    "Black(Strap)",
                    "Pink white(Strap)",
                    "Pink(Strap)",
                    "Red(Strap)",
                    "Dark gray(Strap)",
                    "Army green(Strap)",
                    "Deep blue(Strap)",
                    "Green(Strap)"
                  ],
                  "images": [
                    "sg-11134201-824jg-mf7xy0mt08i3a5",
                    "sg-11134201-824gx-mf7xy0y2g556c0",
                    "sg-11134201-824i1-mf7xy1bbn4zv27",
                    "sg-11134201-824hn-mf7xy1o192x4fa",
                    "sg-11134201-824go-mf7xy1za9hqj19",
                    "sg-11134201-824ik-mf7xy2jmk6iz10",
                    "sg-11134201-824i3-mf7xy36n2ux917",
                    "sg-11134201-824io-mf7xy44p9s7hff",
                    "sg-11134201-824ij-mf7xy56bafii69",
                    "sg-11134201-824i6-mf7xy5zox91na5"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "For Redmi Watch 3",
                    "For Mi Watch Lite 3"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359074252468611,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718148739858432,
                "price": 1590000000,
                "strikethrough_price": 3180000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 301806917310,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3180000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 12,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 12,
                "display_sold_count_text": "12"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANSLOOP Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40222213667,
            "shopid": 1592030327,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824h5-mf7xxk0qwk5n42\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1428713,1718087960,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699,2023641,2018619,840990690654214,2048660,2048661,840955085144628,700765096,1400285055,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1351,\"model_id\":301806917310,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824h5-mf7xxk0qwk5n42\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1428713,1718087960,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699,2023641,2018619,840990690654214,2048660,2048661,840955085144628,700765096,1400285055,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1351,\"model_id\":301806917310,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40222213667",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29742389894,
              "shopid": 1592030327,
              "name": "Soft Nylon Loop Strap for Apple Watch IWatch Ultra 3 2 Series 11 10 9 8 7 6 5 4 SE 3 2 49mm 46 45 44 42 41 40 38mm Replacement Bracelet Band Wristband Accessories Tali Jam Tangan Smartwatch for I8 S10 S8 S9 Pro Max T900 T800 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1119699,
                2023641,
                2018619,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                700765096,
                298933384,
                2103651,
                2143613,
                1400285055,
                298623321,
                998091078,
                1993623,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824iu-mf7xy3b482rse9",
              "images": [
                "sg-11134201-824iu-mf7xy3b482rse9",
                "sg-11134201-824hp-mf7xy4jed2iw62",
                "sg-11134201-824i1-mf7xy5yaquq330",
                "sg-11134201-824hr-mf7xy7fpvz0r1e",
                "sg-11134201-824gr-mf7xy8szcr9le3",
                "sg-11134201-824gi-mf7xy9y5gvey5e",
                "sg-11134201-824g1-mf7xyb8ftwco23",
                "sg-11134201-824g4-mf7xyc1o737y23",
                "sg-11134201-824jk-mf7xycx7v8js78"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759127719,
              "sold": 10,
              "historical_sold": 18,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 5,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1530000000,
              "price_min": 1530000000,
              "price_max": 1530000000,
              "price_min_before_discount": 2990000000,
              "price_max_before_discount": 2990000000,
              "hidden_price_display": null,
              "price_before_discount": 2990000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-49%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16000081708173929.mp4",
                  "thumb_url": "sg-11110106-7rce1-lru7llu0n57377",
                  "duration": 27,
                  "version": 2,
                  "vid": "sg-11110106-6khwa-lru7lff5s6zs12",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16003221722506609.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16003221722506609.mp4",
                      "width": 360,
                      "height": 480
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16002401709251860.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16002401709251860.mp4",
                      "width": 360,
                      "height": 480
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16004081709251738.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16004081709251738.mp4",
                      "width": 360,
                      "height": 480
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16006711723457686.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16006711723457686.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16006731727519153.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16006731727519153.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16002411709251869.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16002411709251869.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16004091709251747.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16004091709251747.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16006591743529692.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16006591743529692.mp4",
                      "width": 540,
                      "height": 720
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16000081708173929.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16000081708173929.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16003241712801361.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16003241712801361.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16003251712801361.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16003251712801361.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16004101709251747.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16004101709251747.mp4",
                      "width": 720,
                      "height": 960
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16004111709251747.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.16004111709251747.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwa-lru7lff5s6zs12.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Rain Drum(Strap)",
                    "Light Pink(Strap)",
                    "Star(Strap)",
                    "Black(Strap)",
                    "Cypress(Strap)",
                    "Beaver(Strap)",
                    "Midnight(Strap)",
                    "Smoke(Strap)",
                    "White(Strap)",
                    "Antique Black(Strap)",
                    "Rose(Strap)",
                    "Deep Navy(Strap)",
                    "Cream(Strap)",
                    "Charcoal(Strap)",
                    "Antique White(Strap)",
                    "Khaki Snow(Strap)",
                    "Mica(Strap)",
                    "Black-Blue(Strap)",
                    "Gray(Strap)",
                    "light blue(Strap)",
                    "dark blue(Strap)",
                    "Bisque(Strap)",
                    "Pomegranate(Strap)",
                    "Orange(Strap)"
                  ],
                  "images": [
                    "sg-11134201-824j9-mf7xypohgoay6e",
                    "sg-11134201-824jl-mf7xyq58543wf8",
                    "sg-11134201-824i8-mf7xyqj2bv2mbd",
                    "sg-11134201-824je-mf7xyqy04cg97c",
                    "sg-11134201-824hc-mf7xyrdlfua58a",
                    "sg-11134201-824hs-mf7xyryubguj12",
                    "sg-11134201-824j6-mf7xysezkqvc9f",
                    "sg-11134201-824jb-mf7xysxdybkde6",
                    "sg-11134201-824gj-mf7xyths09ho9e",
                    "sg-11134201-824ga-mf7xytw3mxvve0",
                    "sg-11134201-824hd-mf7xyuaa445l28",
                    "sg-11134201-824h7-mf7xyul7jdvs31",
                    "sg-11134201-824gr-mf7xyuxq8npnf2",
                    "sg-11134201-824gr-mf7xyv9ovw242f",
                    "sg-11134201-824g2-mf7xyvkik9ot66",
                    "sg-11134201-824jg-mf7xyw3c8gzy5a",
                    "sg-11134201-824hl-mf7xywdl5ki43b",
                    "sg-11134201-824im-mf7xywri5gcp20",
                    "sg-11134201-824ic-mf7xyx756r6766",
                    "sg-11134201-824jb-mf7xyxl0z4zt36",
                    "sg-11134201-824ix-mf7xyy0c6tqj98",
                    "sg-11134201-824hd-mf7xyybvuo0cfc",
                    "sg-11134201-824gn-mf7xyyonq1aj49",
                    "sg-11134201-824hx-mf7xyyztyrdbf8"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "smartwear_size",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  5,
                  0,
                  0,
                  0,
                  0,
                  5
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359074252468611,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718148739858432,
                "price": 1530000000,
                "strikethrough_price": 2990000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-49%",
                "model_id": 276806919993,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2990000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 18,
                "rounded_local_monthly_sold_count": 10,
                "local_monthly_sold_count_text": "10",
                "rounded_display_sold_count": 18,
                "display_sold_count_text": "18"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANSLOOP Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 29742389894,
            "shopid": 1592030327,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824iu-mf7xy3b482rse9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699,2023641,2018619,840990690654214,2048660,2048661,840955085144628,700765096,298933384,2103651,2143613,1400285055,298623321,998091078,1993623,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1276,\"model_id\":276806919993,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824iu-mf7xy3b482rse9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699,2023641,2018619,840990690654214,2048660,2048661,840955085144628,700765096,298933384,2103651,2143613,1400285055,298623321,998091078,1993623,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1276,\"model_id\":276806919993,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29742389894",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26392394708,
              "shopid": 1592030327,
              "name": "Ocean Silicone Strap for IWatch Apple Watch Ultra 3 2 SE 3 2 Series 11 10 9 8 7 6 5 4 3 49mm 46mm 45mm 44mm 42mm 41mm 40mm 38mm Ocean Bracelet Belt Accessories Band Tali Jam Tangan Smartwatch for T900 T800 Ultra I8 Pro Max S8 S9 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1718093079,
                1119699,
                2023641,
                2018619,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                700765096,
                2103651,
                2143613,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824i8-mf7xxiq4ye4qae",
              "images": [
                "sg-11134201-824i8-mf7xxiq4ye4qae",
                "sg-11134201-824hy-mf7xxj7x4poof3",
                "sg-11134201-824h1-mf7xxjusoydp86",
                "sg-11134201-824ic-mf7xxkc27swd84",
                "sg-11134201-824g8-mf7xxkqy4wlncf",
                "sg-11134201-824ih-mf7xxlelfthr3a",
                "sg-11134201-824gt-mf7xxlvfo2yxcc",
                "sg-11134201-824is-mf7xxmb1yozt97",
                "sg-11134201-824g5-mf7xxmw43cwbb3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759127685,
              "sold": 5,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1380000000,
              "price_min": 1380000000,
              "price_max": 1380000000,
              "price_min_before_discount": 1990000000,
              "price_max_before_discount": 1990000000,
              "hidden_price_display": null,
              "price_before_discount": 1990000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-31%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8if-mdyi6f0y7bic9a.16000081756377147.mp4",
                  "thumb_url": "sg-11110106-6v8if-mdyi6f0y7bic9a_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "sg-11110106-6v8if-mdyi6f0y7bic9a",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8if-mdyi6f0y7bic9a.16000081756377147.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8if-mdyi6f0y7bic9a.16000081756377147.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8if-mdyi6f0y7bic9a.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Black(Strap)",
                    "Blue(Strap)",
                    "White(Strap)",
                    "Orange(Strap)",
                    "Midnight(Strap)",
                    "Pink Sand(Strap)",
                    "Starlight(Strap)",
                    "Yellow(Strap)",
                    "Clover(Strap)"
                  ],
                  "images": [
                    "sg-11134201-824gq-mf7xxzlm603ud9",
                    "sg-11134201-824g0-mf7xxzyakcuk47",
                    "sg-11134201-824ib-mf7xy0djo8i5c5",
                    "sg-11134201-824i6-mf7xy0uw4fm6f2",
                    "sg-11134201-824h1-mf7xy1jyw6q46b",
                    "sg-11134201-824h4-mf7xy2ieqqrs57",
                    "sg-11134201-824gr-mf7xy3jiqfppbc",
                    "sg-11134201-824ga-mf7xy4kmlwy4d9",
                    "sg-11134201-824gx-mf7xy5infpxl24"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "smartwear_size",
                  "options": [
                    "49/46/45/44/(S3)42mm",
                    "41/40/38/42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359074252468611,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718148739858432,
                "price": 1380000000,
                "strikethrough_price": 1990000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-31%",
                "model_id": 301806925491,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1990000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 0,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANSLOOP Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26392394708,
            "shopid": 1592030327,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824i8-mf7xxiq4ye4qae\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,2023641,2018619,840990690654214,2048660,2048661,840955085144628,700765096,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":691,\"model_id\":301806925491,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824i8-mf7xxiq4ye4qae\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,298463379,1059152,1059154,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,2023641,2018619,840990690654214,2048660,2048661,840955085144628,700765096,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":691,\"model_id\":301806925491,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26392394708",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28392398972,
              "shopid": 1629046872,
              "name": "Baggioo Sofcase Huawei Watch GT 6 PRO 46mm Huawei Watch GT 5 PRO 46mm 41mm 42mm Bahan TPU Silcone",
              "label_ids": [
                844931086908638,
                844931064601283,
                1059152,
                1049122,
                298463379,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                2023641,
                2018619,
                1428713,
                1718087960,
                298933384,
                1400285055,
                298468389,
                1718088045
              ],
              "image": "id-11134207-8224u-mgynvwdwcefi32",
              "images": [
                "id-11134207-8224u-mgynvwdwcefi32",
                "sg-11134201-824iw-mf7wfucvo6x728",
                "sg-11134201-824je-mf7wfuidyozw4f",
                "sg-11134201-824hy-mf7wfunneaksed",
                "sg-11134201-824h2-mf7wfuufaw3v42",
                "sg-11134201-824ir-mf7wfuzq9bezef"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759125174,
              "sold": 2,
              "historical_sold": 11,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3150000000,
              "price_min": 3150000000,
              "price_max": 3150000000,
              "price_min_before_discount": 3500000000,
              "price_max_before_discount": 3500000000,
              "hidden_price_display": null,
              "price_before_discount": 3500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-10%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "TPU Transparan",
                    "TPU Black",
                    "TPU Silver",
                    "TPU Pink",
                    "TPU Rosegold",
                    "TPU Gold"
                  ],
                  "images": [
                    "sg-11134201-824g5-mf7wfv6fcow8bc",
                    "sg-11134201-824gp-mf7wfvemhm2yc9",
                    "sg-11134201-824hc-mf7wfvjotkb255",
                    "sg-11134201-824j1-mf7wfvonls0a9b",
                    "sg-11134201-824is-mf7wfvtwrjm1f8",
                    "sg-11134201-824gn-mf7wfw0djrpo61"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tipe",
                  "options": [
                    "GT5 PRO 46mm",
                    "GT5 PRO 42mm",
                    "GT5 46mm",
                    "GT5 41mm",
                    "GT 6 46mm",
                    "GT 6 41mm",
                    "GT 6 PRO 46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4,
                "rating_count": [
                  4,
                  1,
                  0,
                  0,
                  0,
                  3
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 376735908773933,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 740407617585152,
                "price": 3150000000,
                "strikethrough_price": 3500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-10%",
                "model_id": 266806544283,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 11,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 11,
                "display_sold_count_text": "11"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Baggioo",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 28392398972,
            "shopid": 1629046872,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mgynvwdwcefi32\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1059152,1049122,298463379,1718093079,822059908662278,825465608499232,825465608497696,1119699,2023641,2018619,1428713,1718087960,298933384,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1100,\"model_id\":266806544283,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mgynvwdwcefi32\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1059152,1049122,298463379,1718093079,822059908662278,825465608499232,825465608497696,1119699,2023641,2018619,1428713,1718087960,298933384,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1100,\"model_id\":266806544283,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28392398972",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29592373158,
              "shopid": 64783678,
              "name": "Smartwatch Smart Watch Y68 Sport Sporty Bluetooth Touchscreen Amoled Display Waterproof Jam Tangan Olahraga Pintar Digital Layar Sentuh Anti Air Pengukur Detak Jantung Langkah Kaki Kalori Tekanan Darah Pelacak Kebugaran Fitness Tracker Unisex Pria Wanita",
              "label_ids": [
                1000167,
                2018619,
                700185071,
                2023641,
                700190019,
                1718087960,
                1428713,
                844931064601283,
                298463379,
                844931086908638,
                700005490,
                700005495,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1119699,
                298933384,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "id-11134207-81ztl-mf7ricjptc7f03",
              "images": [
                "id-11134207-81ztl-mf7ricjptc7f03",
                "id-11134207-81zti-mf7ricjpuqrvec",
                "id-11134207-81ztm-mf7ricjpw5cb27",
                "id-11134207-81ztm-mf7ricjpxjwr6e",
                "id-11134207-81zth-mf7ricjprxmzea"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759118533,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4390000000,
              "price_min": 4390000000,
              "price_max": 4390000000,
              "price_min_before_discount": 17000000000,
              "price_max_before_discount": 17000000000,
              "hidden_price_display": null,
              "price_before_discount": 17000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-74%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven2-mf7s7zfvz3m02f.16000081759118090.mp4",
                  "thumb_url": "id-11110105-6ven2-mf7s7zfvz3m02f_cover",
                  "duration": 19,
                  "version": 2,
                  "vid": "id-11110105-6ven2-mf7s7zfvz3m02f",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven2-mf7s7zfvz3m02f.16000081759118090.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven2-mf7s7zfvz3m02f.16000081759118090.mp4",
                      "width": 720,
                      "height": 1280
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven2-mf7s7zfvz3m02f.default.mp4",
                    "width": 540,
                    "height": 960
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "White Silver",
                    "Silver Grey",
                    "Pink"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 377440094667038,
                "bundle_deal_label": "Pilih 2, diskon Rp1.500"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 771558235226112,
                "price": 4390000000,
                "strikethrough_price": 17000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-74%",
                "model_id": 281805364695,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 17000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GROVERR",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 29592373158,
            "shopid": 64783678,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-mf7ricjptc7f03\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,700185071,2023641,700190019,1718087960,1428713,844931064601283,298463379,844931086908638,700005490,700005495,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699,298933384,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":860,\"model_id\":281805364695,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-mf7ricjptc7f03\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,700185071,2023641,700190019,1718087960,1428713,844931064601283,298463379,844931086908638,700005490,700005495,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699,298933384,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":860,\"model_id\":281805364695,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29592373158",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41872201543,
              "shopid": 478083269,
              "name": "[NEW LAUNCH] ADVAN Smartwatch S3 Pro | 2.01โ€ Big Screen | Metal Body | 100+ Sports Modes | Smart AI Chat GPT Assistant | Wireless Bluetooth Call | 5ATM Waterproof | Support Strava & One Click Health | Garansi Resmi 1 Tahun",
              "label_ids": [
                1002164,
                1014792,
                1016119,
                2153644,
                2018618,
                1400095067,
                1400285005,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1049120,
                700005490,
                1718093079,
                822059908662278,
                825465608493600,
                825465608499232,
                825465608497696,
                1119699,
                1015914,
                700190087,
                1400025118,
                2213652,
                997921050,
                997921049,
                1718088045,
                1718088046,
                1718093085,
                700585042,
                298468389
              ],
              "image": "sg-11134201-824jf-mf7r5mzpsgll3c",
              "images": [
                "sg-11134201-824jf-mf7r5mzpsgll3c",
                "sg-11134201-824g1-mf7r5n726gp898",
                "sg-11134201-824ir-mf7r5ncq603w6e",
                "sg-11134201-824g4-mf7r5nik1qfcc5",
                "sg-11134201-824hg-mf7r5ns8myh936",
                "sg-11134201-824gp-mf7r5o0v59u538",
                "sg-11134201-824i3-mf7r5o8ro4jz83",
                "sg-11134201-824hp-mf7r5og728sq81"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759116292,
              "sold": 1,
              "historical_sold": 10,
              "liked": false,
              "liked_count": 38,
              "view_count": null,
              "catid": 100013,
              "brand": "ADVAN",
              "cmt_count": 4,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 29900000000,
              "price_min": 29900000000,
              "price_max": 29900000000,
              "price_min_before_discount": 79900000000,
              "price_max_before_discount": 79900000000,
              "hidden_price_display": null,
              "price_before_discount": 79900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-63%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "White"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.75,
                "rating_count": [
                  4,
                  0,
                  0,
                  0,
                  1,
                  3
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Tangerang",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 792059254996992,
                "price": 29900000000,
                "strikethrough_price": 79900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-63%",
                "model_id": 167329904783,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 79900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 10,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 10,
                "display_sold_count_text": "10"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Advan Smartlife",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41872201543,
            "shopid": 478083269,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824jf-mf7r5mzpsgll3c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,1014792,1016119,2153644,2018618,1400095067,1400285005,1428713,1718087960,844931064601283,844931086908638,298463379,1049120,700005490,1718093079,822059908662278,825465608493600,825465608499232,825465608497696,1119699,1015914,700190087,1400025118,2213652,997921050,997921049,1718088045,1718088046,1718093085,700585042,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":555,\"model_id\":167329904783,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824jf-mf7r5mzpsgll3c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,1014792,1016119,2153644,2018618,1400095067,1400285005,1428713,1718087960,844931064601283,844931086908638,298463379,1049120,700005490,1718093079,822059908662278,825465608493600,825465608499232,825465608497696,1119699,1015914,700190087,1400025118,2213652,997921050,997921049,1718088045,1718088046,1718093085,700585042,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":555,\"model_id\":167329904783,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41872201543",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42321966954,
              "shopid": 1485723077,
              "name": "Tpu Case Milanese Loop Strap for Apple Watch IWatch Ultra 3 2 Series 11 10 9 8 7 6 5 4 SE 3 2 49 46 45 44 41 42 38mm Anti Gores Soft Screen Productor Cover Magnetic Metal Band Bracelet Wristbands for Jam Tangan Smartwatch I8 Pro Max S8 S9 8 MAX 9 PRO S20",
              "label_ids": [
                2023641,
                2018619,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1119699,
                298933384,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                298888358,
                298938357,
                700765096,
                298938368,
                2098628,
                298468389,
                1718088045,
                2098629
              ],
              "image": "sg-11134201-824gd-mf68w5leohe240",
              "images": [
                "sg-11134201-824gd-mf68w5leohe240",
                "sg-11134201-824h5-mf68w6iyhurz21",
                "sg-11134201-824is-mf68w6y7wyyx6d",
                "sg-11134201-824h4-mf68w7g3zpqn17",
                "sg-11134201-824hl-mf68w84etq8b8c",
                "sg-11134201-824ie-mf68w8mmq4ngdf",
                "sg-11134201-824j3-mf68w94i97gq3e",
                "sg-11134201-824gq-mf68w9mpkjdb9f",
                "sg-11134201-824g0-mf68wa3qsa2x5d"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759025049,
              "sold": 4,
              "historical_sold": 6,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 3,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 4610000000,
              "price_min": 4610000000,
              "price_max": 4610000000,
              "price_min_before_discount": 8980000000,
              "price_max_before_discount": 8980000000,
              "hidden_price_display": null,
              "price_before_discount": 8980000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-49%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khxm-lve1ch9ufwd20b.16000081715911831.mp4",
                  "thumb_url": "sg-11110106-7rd72-lve1cn4px1xj95",
                  "duration": 25,
                  "version": 2,
                  "vid": "sg-11110106-6khxm-lve1ch9ufwd20b",
                  "formats": [
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxm-lve1ch9ufwd20b.16004081727478433.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxm-lve1ch9ufwd20b.16004081727478433.mp4",
                      "width": 640,
                      "height": 360
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khxm-lve1ch9ufwd20b.16000081715911831.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxm-lve1ch9ufwd20b.16000081715911831.mp4",
                      "width": 854,
                      "height": 480
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khxm-lve1ch9ufwd20b.default.mp4",
                    "width": 854,
                    "height": 480
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Rose Gold(case strap",
                    "Gold(case strap)",
                    "Gray(case strap)",
                    "pink gold(case strap",
                    "Black(case strap)",
                    "Silver(case strap)",
                    "Starlingt(case strap",
                    "Sliver 2(case strap)"
                  ],
                  "images": [
                    "sg-11134201-824ij-mf68wmk3cjd67d",
                    "sg-11134201-824iu-mf68wn1w86q2d6",
                    "sg-11134201-824gc-mf68wndvdq161b",
                    "sg-11134201-824gh-mf68wnq4d8ga4f",
                    "sg-11134201-824ge-mf68wo0rke8ab2",
                    "sg-11134201-824id-mf68wocvlij3ca",
                    "sg-11134201-824im-mf68woqd2cco36",
                    "sg-11134201-824ir-mf68wp2gwhe4f6"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "smartwear_size",
                  "options": [
                    "42mm",
                    "45mm",
                    "44mm",
                    "40mm",
                    "49mm",
                    "38mm",
                    "41mm",
                    "Series 11/10 42mm",
                    "Series 11/10 46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.666666666666667,
                "rating_count": [
                  3,
                  0,
                  0,
                  0,
                  1,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 393092813566800,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744055084991488,
                "price": 4610000000,
                "strikethrough_price": 8980000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-49%",
                "model_id": 253968065726,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 8980000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 6,
                "rounded_local_monthly_sold_count": 4,
                "local_monthly_sold_count_text": "4",
                "rounded_display_sold_count": 6,
                "display_sold_count_text": "6"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42321966954,
            "shopid": 1485723077,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824gd-mf68w5leohe240\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699,298933384,840990690654214,2048660,2048661,840955085144628,298888358,298938357,700765096,298938368,2098628,298468389,1718088045,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":2005,\"model_id\":253968065726,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824gd-mf68w5leohe240\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,825465608494624,1119699,298933384,840990690654214,2048660,2048661,840955085144628,298888358,298938357,700765096,298938368,2098628,298468389,1718088045,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":2005,\"model_id\":253968065726,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42321966954",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40721962780,
              "shopid": 1485723077,
              "name": "PC Case Alpine Loop Strap for IWatch Apple Watch Series SE 11 10 9 8 7 6 5 4 3 2 46mm 45mm 41 44mm 40mm 42mm 38mm Anti Gores Change To Ultra Cover with Tempered Glass Film Nylon Band Belt Bracelet for Jam Tangan Smartwatch I8 Pro Max S8 S9 8 MAX 9 PRO S20",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                298888358,
                298938357,
                700765096,
                298933384,
                298468389,
                2098629,
                2098628,
                1718088045,
                298938368
              ],
              "image": "sg-11134201-824hs-mf68w5at026g47",
              "images": [
                "sg-11134201-824hs-mf68w5at026g47",
                "sg-11134201-824hy-mf68w6djej9kf1",
                "sg-11134201-824ge-mf68w71hpngoe2",
                "sg-11134201-824hk-mf68w7spfcwbba",
                "sg-11134201-824gx-mf68w8gwpgjv72",
                "sg-11134201-824gu-mf68w8zhadje65",
                "sg-11134201-824j7-mf68w9gkrjm7f2",
                "sg-11134201-824g1-mf68w9x66cqw92",
                "sg-11134201-824in-mf68wa65smx561"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1759025049,
              "sold": 3,
              "historical_sold": 8,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3790000000,
              "price_min": 3790000000,
              "price_max": 3790000000,
              "price_min_before_discount": 7580000000,
              "price_max_before_discount": 7580000000,
              "hidden_price_display": null,
              "price_before_discount": 7580000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16000081704357854.mp4",
                  "thumb_url": "sg-11110106-7rbmw-lq36643bq87s09",
                  "duration": 17,
                  "version": 2,
                  "vid": "sg-11110106-6khwx-lq365xz0o9k017",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16003221717911141.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16003221717911141.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16002401713772328.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16002401713772328.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16004081707736857.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16004081707736857.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16006711723379064.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16006711723379064.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16006731731507109.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16006731731507109.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600265,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16002651724169845.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16002651724169845.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16004091707736866.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16004091707736866.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16002411713772335.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16002411713772335.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16006591724177771.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16006591724177771.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600266,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16002661724169852.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16002661724169852.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16000081704357854.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16000081704357854.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16003241711838362.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16003241711838362.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16003251711838362.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16003251711838362.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600267,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16002671724169852.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16002671724169852.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16004101707736866.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16004101707736866.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16004111707736866.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16004111707736866.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16005581711838363.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16005581711838363.mp4",
                      "width": 1080,
                      "height": 1080
                    },
                    {
                      "format": 1600568,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16005681707736866.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.16005681707736866.mp4",
                      "width": 1080,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwx-lq365xz0o9k017.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "green(case strap)",
                    "star(case strap)",
                    "black(case strap)",
                    "Black 2(case strap)",
                    "white(case strap)",
                    "orange(case strap)",
                    "orange 2(case strap)",
                    "navy(case strap)"
                  ],
                  "images": [
                    "sg-11134201-824ii-mf68wmqkhg5l2b",
                    "sg-11134201-824i4-mf68wn86dma3cf",
                    "sg-11134201-824gy-mf68wnhxtdsd27",
                    "sg-11134201-824it-mf68wnv1pdzje8",
                    "sg-11134201-824j2-mf68wo6e5ert65",
                    "sg-11134201-824hh-mf68wok0xbf2d6",
                    "sg-11134201-824ho-mf68wowomdxr8e",
                    "sg-11134201-824jl-mf68wpahmya106"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "40mm",
                    "41mm",
                    "44mm",
                    "45mm",
                    "42mm",
                    "38mm",
                    "Series 11 10 42mm",
                    "Series 11 10 46mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 393092813566800,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744055084991488,
                "price": 3790000000,
                "strikethrough_price": 7580000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 261785509088,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7580000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 8,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 8,
                "display_sold_count_text": "8"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40721962780,
            "shopid": 1485723077,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824hs-mf68w5at026g47\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,840990690654214,2048660,2048661,840955085144628,298888358,298938357,700765096,298933384,298468389,2098629,2098628,1718088045,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":1552,\"model_id\":261785509088,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824hs-mf68w5at026g47\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,840990690654214,2048660,2048661,840955085144628,298888358,298938357,700765096,298933384,298468389,2098629,2098628,1718088045,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":1552,\"model_id\":261785509088,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40721962780",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44421681630,
              "shopid": 1485723077,
              "name": "Sport Nylon Loop Strap for Huawei Watch Fit 4/4 Pro/3 Soft Replacement Band Bracelet Belt Wristband Accessories for Tali Jam Tangan Smartwatch Huawei Fit 4/3",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                2018619,
                2023641,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                825465608494624,
                1718093079,
                1119699,
                298933384,
                840990690654214,
                840955085144628,
                2048660,
                2048661,
                298888358,
                298938357,
                700765096,
                298468389,
                1718088045,
                2098629,
                298938368,
                2098628
              ],
              "image": "sg-11134201-824g6-mf430p460556a3",
              "images": [
                "sg-11134201-824g6-mf430p460556a3",
                "sg-11134201-824ja-mf430ps8hij12d",
                "sg-11134201-824h3-mf430qai9dsd50",
                "sg-11134201-824im-mf430qq5zytmbf",
                "sg-11134201-824gs-mf430r74tzbe78",
                "sg-11134201-824ik-mf430rsqmia267",
                "sg-11134201-824g4-mf430saaonpnd5",
                "sg-11134201-824hw-mf430su2ax3dcf",
                "sg-11134201-824ir-mf430tbj7c3s6a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758894103,
              "sold": 1,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3800000000,
              "price_min": 3800000000,
              "price_max": 3800000000,
              "price_min_before_discount": 7350000000,
              "price_max_before_discount": 7350000000,
              "hidden_price_display": null,
              "price_before_discount": 7350000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-48%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kio5-mc01uuvnd2gw91.16000081752112337.mp4",
                  "thumb_url": "sg-11110106-6kio5-mc01uuvnd2gw91_cover",
                  "duration": 41,
                  "version": 2,
                  "vid": "sg-11110106-6kio5-mc01uuvnd2gw91",
                  "formats": [
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio5-mc01uuvnd2gw91.16006711753734849.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio5-mc01uuvnd2gw91.16006711753734849.mp4",
                      "width": 1024,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio5-mc01uuvnd2gw91.16000081752112337.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio5-mc01uuvnd2gw91.16000081752112337.mp4",
                      "width": 1366,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio5-mc01uuvnd2gw91.16003251753734849.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio5-mc01uuvnd2gw91.16003251753734849.mp4",
                      "width": 1366,
                      "height": 720
                    },
                    {
                      "format": 1600558,
                      "defn": "V1080P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kio5-mc01uuvnd2gw91.16005581753734849.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio5-mc01uuvnd2gw91.16005581753734849.mp4",
                      "width": 2048,
                      "height": 1080
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kio5-mc01uuvnd2gw91.default.mp4",
                    "width": 1024,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Island Blue(Strap)",
                    "pink(Strap)",
                    "Starlight(Strap)",
                    "Mermaid(Strap)",
                    "Orange(Strap)",
                    "Spruce Green(Strap)",
                    "Blue(Strap)",
                    "Advanced Grey(Strap)",
                    "Harano Green(Strap)",
                    "Water Red(Strap)",
                    "Black(Strap)",
                    "Klein Blue(Strap)",
                    "Purple(Strap)",
                    "Case"
                  ],
                  "images": [
                    "sg-11134201-824gy-mf4316ikv9xo5b",
                    "sg-11134201-824jc-mf4317sn5jbea3",
                    "sg-11134201-824j7-mf4318rt82ko4b",
                    "sg-11134201-824gp-mf4319wrrq4v75",
                    "sg-11134201-824iq-mf431aszfqq093",
                    "sg-11134201-824ir-mf431ber30gd37",
                    "sg-11134201-824g0-mf431bysvuha27",
                    "sg-11134201-824j5-mf431chg1gy1c6",
                    "sg-11134201-824gj-mf431d4b0op605",
                    "sg-11134201-824je-mf431dp0md5719",
                    "sg-11134201-824g7-mf431edia5fve7",
                    "sg-11134201-824i7-mf431f1pojyg8a",
                    "sg-11134201-824h8-mf431fl7waha42",
                    "sg-11134201-824hl-mf431g1m4n486e"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei Fit 3",
                    "Huawei Fit 4",
                    "Huawei Fit 4 Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744055084991488,
                "price": 3800000000,
                "strikethrough_price": 7350000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-48%",
                "model_id": 266766203801,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7350000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44421681630,
            "shopid": 1485723077,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824g6-mf430p460556a3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,298463379,2018619,2023641,1059152,1059154,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,298933384,840990690654214,840955085144628,2048660,2048661,298888358,298938357,700765096,298468389,1718088045,2098629,298938368,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":1414,\"model_id\":266766203801,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824g6-mf430p460556a3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,298463379,2018619,2023641,1059152,1059154,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,298933384,840990690654214,840955085144628,2048660,2048661,298888358,298938357,700765096,298468389,1718088045,2098629,298938368,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":1414,\"model_id\":266766203801,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44421681630",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40071607085,
              "shopid": 668197281,
              "name": "Strap Mi Band 8Pro/9Pro Nylon Velcro  Quick Dry Tali Jam Xiaomi Smart Band 9/8 Pro Nilon",
              "label_ids": [
                844931064601283,
                700190019,
                2018619,
                1059154,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                1428713,
                1718087960,
                1718093079,
                1119699,
                2023641
              ],
              "image": "id-11134207-81ztl-mf3qrzt4w9hrf5",
              "images": [
                "id-11134207-81ztl-mf3qrzt4w9hrf5",
                "id-11134207-81ztg-mf3qrzt4uuxb83",
                "id-11134207-81zth-mf3qrzt4s1sf63",
                "id-11134207-81ztn-mf3qrzt4tgcv7b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758873878,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1850000000,
              "price_min": 1850000000,
              "price_max": 1850000000,
              "price_min_before_discount": 3500000000,
              "price_max_before_discount": 3500000000,
              "hidden_price_display": null,
              "price_before_discount": 3500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-47%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam NilonV",
                    "Ranbow White NilonV",
                    "Lime Abu NilonV",
                    "Hijau Army NilonV",
                    "Putih Abu NilonV",
                    "Pink Abu NilonV",
                    "Rainbw Red NilonV",
                    "Navy Hijau NilonV",
                    "Vanila NilonV",
                    "Hitam Merah NilonV",
                    "Army Abu NilonV",
                    "Navy NilonV",
                    "Tosca Abu NilonV"
                  ],
                  "images": [
                    "id-11134207-7ra0p-mdfhb5chg98r10",
                    "id-11134207-7ra0s-mdfhb5chkgy3b4",
                    "id-11134207-7ra0h-mdfhb5chlvijca",
                    "id-11134207-7ra0n-mdfhb5chna2ze0",
                    "id-11134207-7ra0o-mdfhb5chhnt78c",
                    "id-11134207-7ra0i-mdfhb5chj2dn55",
                    "id-11134207-7ra0p-mdfhb5choonf89",
                    "id-11134207-7ra0l-mdfjv2a32l5bf5",
                    "id-11134207-7ra0q-mdfjv2a33zprb1",
                    "id-11134207-7ra0n-mdfjv2a39lzj72",
                    "id-11134207-7ra0p-mdfjv2a387f320",
                    "id-11134207-7ra0i-mdfjv2a35ea791",
                    "id-11134207-7ra0k-mdfjv2a36sund3"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Tali Jam",
                  "options": [
                    "Mi Band 9Pro / 8Pro"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 806672671490048,
                "price": 1810000000,
                "strikethrough_price": 3500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1308695396892672,
                "discount_text": "-47%",
                "model_id": 296758424443,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1308695396892672,
                  "voucher_code": "CAVVNEW",
                  "voucher_discount": 40000000,
                  "time_info": {
                    "start_time": 1765468200,
                    "end_time": 1772297940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 100000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 3500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Cavva Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40071607085,
            "shopid": 668197281,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-mf3qrzt4w9hrf5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700190019,2018619,1059154,1059152,822059908662278,825465608499232,825465608497696,1428713,1718087960,1718093079,1119699,2023641],\"matched_keywords\":[\"\"],\"merge_rank\":1201,\"model_id\":296758424443,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-mf3qrzt4w9hrf5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700190019,2018619,1059154,1059152,822059908662278,825465608499232,825465608497696,1428713,1718087960,1718093079,1119699,2023641],\"matched_keywords\":[\"\"],\"merge_rank\":1201,\"model_id\":296758424443,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40071607085",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41521567531,
              "shopid": 1415264633,
              "name": "GOTEMBA Curve Smart Watch New | IP68 Waterproof | 2.01-inch Curved IPS Screen | Bluetooth Call | Up to 10 days Battery Life | Custom Wallpaper Smartwatch | Jam tangan pintar untuk pria dan wanita",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1012729,
                700700063,
                298888358,
                2153644,
                2018618,
                298938357,
                298463379,
                1049112,
                1059151,
                822059908662278,
                825465608493600,
                825465608499232,
                1718093079,
                1015914,
                700190087,
                1400285055,
                2213652,
                2008656,
                2098628,
                2098629,
                298938368,
                1718088045,
                298468389
              ],
              "image": "id-11134207-8224o-mizd7bzif75u00",
              "images": [
                "id-11134207-8224o-mizd7bzif75u00",
                "id-11134207-8224s-minxcme5g64g58",
                "id-11134207-8224u-minxcme5hkow60",
                "id-11134207-8224u-minxcme5iz9cc9",
                "id-11134207-82250-minxcme5kdtscd",
                "id-11134207-8224w-minxcme5olj41b",
                "id-11134207-82252-minxcme5q03kd5",
                "id-11134207-8224r-minxcme5n6yo8e",
                "id-11134207-8224s-minxcme5lse84c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758872349,
              "sold": 59,
              "historical_sold": 212,
              "liked": false,
              "liked_count": 125,
              "view_count": null,
              "catid": 100013,
              "brand": "Gotemba",
              "cmt_count": 29,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 18000000000,
              "price_min": 18000000000,
              "price_max": 18000000000,
              "price_min_before_discount": 55600000000,
              "price_max_before_discount": 55600000000,
              "hidden_price_display": null,
              "price_before_discount": 55600000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-68%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven1-mio4dcelqhhi8f.16000081766644787.mp4",
                  "thumb_url": "id-11110105-6ven1-mio4dcelqhhi8f_cover",
                  "duration": 32,
                  "version": 2,
                  "vid": "id-11110105-6ven1-mio4dcelqhhi8f",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven1-mio4dcelqhhi8f.16000081766644787.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven1-mio4dcelqhhi8f.16000081766644787.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven1-mio4dcelqhhi8f.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "black",
                    "pink",
                    "grey",
                    "black+ml strap",
                    "pink+ml strap",
                    "grey+ml strap",
                    "black+steal strap",
                    "pink+steal strap",
                    "grey+steal strap",
                    "hitam"
                  ],
                  "images": [
                    "id-11134207-8224y-mio5dgxoyfpe65",
                    "id-11134207-8224r-mio5dgxm6pdv28",
                    "id-11134207-82252-mio5dgxm83yb62",
                    "id-11134207-82252-mio5dgxm9iir1d",
                    "id-11134207-8224u-mio5dgxmax378d",
                    "id-11134207-8224o-mio5dgxmcbnnc2",
                    "id-11134207-8224t-mio5dgxmdq8320",
                    "id-11134207-8224t-mio5dgxmf4sjc7",
                    "id-11134207-82252-mio5dgxmgjczc4",
                    "id-11134207-81ztj-mf3pxezp10y1ad"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  29,
                  0,
                  0,
                  0,
                  0,
                  29
                ],
                "rcount_with_context": 17,
                "rcount_with_image": 15
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": true,
              "show_official_shop_label": true,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 400295230456651,
                "add_on_deal_label": "Kombo Hemat",
                "sub_type": 0,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": 6,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": "Rp29RB X 6",
              "spl_repayment_label_text": "Cicilan Murah 0%",
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 228214526197760,
                "price": 17700000000,
                "strikethrough_price": 55600000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1328700885319680,
                "discount_text": "-68%",
                "model_id": 291757690585,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1328700885319680,
                  "voucher_code": "GOTE3000",
                  "voucher_discount": 300000000,
                  "time_info": {
                    "start_time": 1767853200,
                    "end_time": 1775971200,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 12000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 55600000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 212,
                "rounded_local_monthly_sold_count": 59,
                "local_monthly_sold_count_text": "59",
                "rounded_display_sold_count": 212,
                "display_sold_count_text": "212"
              },
              "spl_installment_discount": {
                "card_promo_title_text": "Cicilan 0%",
                "card_promo_sub_title_text": "Rp29RB x 6"
              },
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gotemba Official Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41521567531,
            "shopid": 1415264633,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mizd7bzif75u00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1012729,700700063,298888358,2153644,2018618,298938357,298463379,1049112,1059151,822059908662278,825465608493600,825465608499232,1718093079,1015914,700190087,1400285055,2213652,2008656,2098628,2098629,298938368,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1172,\"model_id\":291757690585,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mizd7bzif75u00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1012729,700700063,298888358,2153644,2018618,298938357,298463379,1049112,1059151,822059908662278,825465608493600,825465608499232,1718093079,1015914,700190087,1400285055,2213652,2008656,2098628,2098629,298938368,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1172,\"model_id\":291757690585,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41521567531",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40121512260,
              "shopid": 1240342009,
              "name": "Jam Tangan Pintar Panggilan Bluetooth BARU Pelacak Kebugaran Pemantauan Tidur Jam Tangan Pintar Olahraga Fashion untuk Pria dan Wanita Hadiah",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1718093079,
                1119699,
                298933384,
                1400285055,
                1015914,
                700190087,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                298468389,
                1718088045
              ],
              "image": "id-11134207-81ztq-mf3gukzzta8f32",
              "images": [
                "id-11134207-81ztq-mf3gukzzta8f32",
                "id-11134207-81ztn-mf3gul09am8c85",
                "id-11134207-81ztj-mf3gul09c0sseb",
                "id-11134207-81ztd-mf3gul09dfd829",
                "id-11134207-81ztm-mf3gul09etxo23",
                "id-11134207-81ztd-mf3gul09g8i4f1",
                "id-11134207-81ztp-mf3gul09hn2ka8",
                "id-11134207-81ztq-mf3gul09j1n0ec",
                "id-11134207-81ztd-mf3gul09kg7g39"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758856968,
              "sold": 1,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "TZUZL",
              "cmt_count": 2,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 11000000000,
              "price_min": 11000000000,
              "price_max": 11000000000,
              "price_min_before_discount": 22000000000,
              "price_max_before_discount": 22000000000,
              "hidden_price_display": null,
              "price_before_discount": 22000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv4-mf3gvan09oga14.16000081758856857.mp4",
                  "thumb_url": "id-11110105-6vdv4-mf3gvan09oga14_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6vdv4-mf3gvan09oga14",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv4-mf3gvan09oga14.16000081758856857.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mf3gvan09oga14.16000081758856857.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mf3gvan09oga14.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "hitam",
                    "perak",
                    "merah muda"
                  ],
                  "images": [
                    "id-11134207-81ztc-mf3gul09lurwfc",
                    "id-11134207-81ztf-mf3gul09n9cc72",
                    "id-11134207-81ztg-mf3eqdqqt3bh51"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 757844505329664,
                "price": 11000000000,
                "strikethrough_price": 22000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 248958123984,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 22000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "TECH-TOKO",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40121512260,
            "shopid": 1240342009,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztq-mf3gukzzta8f32\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1119699,298933384,1400285055,1015914,700190087,1059152,1059154,822059908662278,825465608499232,825465608497696,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2227,\"model_id\":248958123984,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztq-mf3gukzzta8f32\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1718093079,1119699,298933384,1400285055,1015914,700190087,1059152,1059154,822059908662278,825465608499232,825465608497696,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2227,\"model_id\":248958123984,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40121512260",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41071511293,
              "shopid": 1410865922,
              "name": "Soft Silicone Strap for Xiaomi Mi Band 10 9 8 NFC Polos Warna Strap Sport Rubber Band Wristband Replacement Bracelet Belt Accessories Tali Jam Tangan Smartwatch for Miband 10 9 8",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                1400285055,
                298933384,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-824hq-mf3g6goed4wc58",
              "images": [
                "sg-11134201-824hq-mf3g6goed4wc58",
                "sg-11134201-824gv-mf3g6i5moe8c9c",
                "sg-11134201-824iq-mf3g6jsynv9k54",
                "sg-11134201-824gc-mf3g6km08ow887",
                "sg-11134201-824h3-mf3g6lua6knc29",
                "sg-11134201-824iu-mf3g6naj11ca07",
                "sg-11134201-824gv-mf3g6p01tz4bb5",
                "sg-11134201-824j4-mf3g6q09bjf250",
                "sg-11134201-824j4-mf3g6qqtz4spbc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758855705,
              "sold": 5,
              "historical_sold": 48,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 13,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1550000000,
              "price_min": 1550000000,
              "price_max": 1550000000,
              "price_min_before_discount": 3100000000,
              "price_max_before_discount": 3100000000,
              "hidden_price_display": null,
              "price_before_discount": 3100000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8ie-mev7ggmd2h36ff.16000081758356753.mp4",
                  "thumb_url": "sg-11110106-6v8ie-mev7ggmd2h36ff_cover",
                  "duration": 33,
                  "version": 2,
                  "vid": "sg-11110106-6v8ie-mev7ggmd2h36ff",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8ie-mev7ggmd2h36ff.16000081758356753.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8ie-mev7ggmd2h36ff.16000081758356753.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8ie-mev7ggmd2h36ff.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Smoky Purple",
                    "blue",
                    "Pink Sand",
                    "wine red",
                    "haze blue",
                    "pine needle green",
                    "starlight",
                    "white",
                    "black",
                    "Case"
                  ],
                  "images": [
                    "sg-11134201-824g7-mf3g73t6qa6kca",
                    "sg-11134201-824ir-mf3g74h5mgwdde",
                    "sg-11134201-824j2-mf3g758mb8y2f7",
                    "sg-11134201-824g9-mf3g75yh6bd7cf",
                    "sg-11134201-824hh-mf3g76luhmveb4",
                    "sg-11134201-824iz-mf3g779tgmq708",
                    "sg-11134201-824hx-mf3g77z0afbd73",
                    "sg-11134201-824ij-mf3g78tkexan8a",
                    "sg-11134201-824g5-mf3g79k1inezee",
                    "sg-11134201-824i1-mf3g7a9jcikpdb"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "mi band 10 9 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.769230769230769,
                "rating_count": [
                  13,
                  0,
                  0,
                  1,
                  1,
                  11
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 392642018162052,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 785277459677184,
                "price": 1550000000,
                "strikethrough_price": 3100000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 301753889035,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3100000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 48,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 48,
                "display_sold_count_text": "48"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "jaobeo Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41071511293,
            "shopid": 1410865922,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824hq-mf3g6goed4wc58\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1400285055,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2221,\"model_id\":301753889035,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824hq-mf3g6goed4wc58\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1400285055,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2221,\"model_id\":301753889035,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41071511293",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42671498508,
              "shopid": 1106447987,
              "name": "Jam Tangan Pintar Senter LED Layar AMOLED 2,01\" Pria Olahraga Panggilan Bluetooth Militer Luar Ruangan Jam Tangan Pintar Baru",
              "label_ids": [
                2018619,
                2023641,
                844931086908638,
                844931064601283,
                1718087960,
                1428713,
                298463379,
                1059154,
                1059152,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079,
                1119699,
                298933384,
                298468389,
                1718088045
              ],
              "image": "id-11134207-81ztm-mf3fc8b2o74e88",
              "images": [
                "id-11134207-81ztm-mf3fc8b2o74e88",
                "id-11134207-81zti-mf3fc8b2r09ae2",
                "id-11134207-81ztl-mf3fc8b2setq03",
                "id-11134207-81ztm-mf3fc8b2tte6fd",
                "id-11134207-81zti-mf3fc8b2v7ymcb",
                "id-11134207-81zto-mf3fc8b2wmj22e",
                "id-11134207-81ztn-mf3fc8b2y13if4",
                "id-11134207-81ztq-mf3fc8b2zfny33",
                "id-11134207-81ztg-mf3fc8b2plou38"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758854823,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100013,
              "brand": "TZUZL",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 15900000000,
              "price_min": 15900000000,
              "price_max": 15900000000,
              "price_min_before_discount": 29000000000,
              "price_max_before_discount": 29000000000,
              "hidden_price_display": null,
              "price_before_discount": 29000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-45%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdv8-mf3fdazwewi10c.16000081758854333.mp4",
                  "thumb_url": "id-11110105-6vdv8-mf3fdazwewi10c_cover",
                  "duration": 44,
                  "version": 2,
                  "vid": "id-11110105-6vdv8-mf3fdazwewi10c",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdv8-mf3fdazwewi10c.16000081758854333.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv8-mf3fdazwewi10c.16000081758854333.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv8-mf3fdazwewi10c.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "COLOR",
                  "options": [
                    "hitam",
                    "Hitam-Emas"
                  ],
                  "images": [
                    "id-11134207-81zte-mf3fc8b30u8e4b",
                    "id-11134207-81ztl-mf3fc8b328sua7"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 757844060733440,
                "price": 15900000000,
                "strikethrough_price": 29000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-45%",
                "model_id": 276753649298,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 29000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "GDZD-TOKO",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42671498508,
            "shopid": 1106447987,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztm-mf3fc8b2o74e88\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931086908638,844931064601283,1718087960,1428713,298463379,1059154,1059152,822059908662278,825465608497696,825465608499232,1718093079,1119699,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2157,\"model_id\":276753649298,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztm-mf3fc8b2o74e88\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931086908638,844931064601283,1718087960,1428713,298463379,1059154,1059152,822059908662278,825465608497696,825465608499232,1718093079,1119699,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2157,\"model_id\":276753649298,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42671498508",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44121497297,
              "shopid": 1023511939,
              "name": "Jam tangan pintar 2025 Olahraga Luar Ruang Baru 1.83 Inch Layar HD Bluetooth Talking Smart Watch Untuk Pria Wanita Hadiah Liburan",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1718093079,
                1119699,
                298933384,
                1015914,
                700190087,
                1059152,
                1059154,
                822059908662278,
                825465608499232,
                825465608497696,
                298468389,
                1718088045
              ],
              "image": "id-11134207-81ztp-mf3eqdqr1iq773",
              "images": [
                "id-11134207-81ztp-mf3eqdqr1iq773",
                "id-11134207-81ztn-mf3eqdqqgg7hc2",
                "id-11134207-81ztl-mf3eqdqqhurx33",
                "id-11134207-81ztn-mf3eqdqqj9cddf",
                "id-11134207-81ztl-mf3eqdqqknwt77",
                "id-11134207-81ztn-mf3eqdqqm2h96e",
                "id-11134207-81ztq-mf3eqdqqnh1p3d",
                "id-11134207-81ztq-mf3eqdqqovm54c",
                "id-11134207-81ztm-mf3eqdqqqa6l06"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758853703,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "TZUZL",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 11000000000,
              "price_min": 11000000000,
              "price_max": 11000000000,
              "price_min_before_discount": 22000000000,
              "price_max_before_discount": 22000000000,
              "hidden_price_display": null,
              "price_before_discount": 22000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven3-mf3erk1vdwcpa1.16000081758853318.mp4",
                  "thumb_url": "id-11110105-6ven3-mf3erk1vdwcpa1_cover",
                  "duration": 60,
                  "version": 2,
                  "vid": "id-11110105-6ven3-mf3erk1vdwcpa1",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven3-mf3erk1vdwcpa1.16000081758853318.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven3-mf3erk1vdwcpa1.16000081758853318.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven3-mf3erk1vdwcpa1.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "hitam",
                    "merah muda",
                    "perak"
                  ],
                  "images": [
                    "id-11134207-81ztn-mf3eqdqqror158",
                    "id-11134207-81ztg-mf3eqdqqt3bh51",
                    "id-11134207-81ztg-mf28rblczy89d3"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 757814859972608,
                "price": 11000000000,
                "strikethrough_price": 22000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 286753387855,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 22000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "HOEN-TOKO",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44121497297,
            "shopid": 1023511939,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztp-mf3eqdqr1iq773\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,298463379,1718093079,1119699,298933384,1015914,700190087,1059152,1059154,822059908662278,825465608499232,825465608497696,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2315,\"model_id\":286753387855,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztp-mf3eqdqr1iq773\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,298463379,1718093079,1119699,298933384,1015914,700190087,1059152,1059154,822059908662278,825465608499232,825465608497696,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2315,\"model_id\":286753387855,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44121497297",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43471394891,
              "shopid": 1501894134,
              "name": "Flagship Royal Oak Titanium Strap for Apple Watch 45/46/49MM",
              "label_ids": [
                1428713,
                1718087960,
                2018619,
                1049112,
                700005512,
                822059908662278,
                825465608499232,
                825465608497696,
                844931064601283,
                844931086908638,
                1119699,
                298933384,
                1400285055,
                2023641,
                1015914,
                700190087,
                298463379,
                1718093079,
                1718088045,
                298468389
              ],
              "image": "id-11134207-81ztj-mf2lr7u6p15bdc",
              "images": [
                "id-11134207-81ztj-mf2lr7u6p15bdc",
                "id-11134207-8224v-mggnrsy0cah4db"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758809998,
              "sold": 2,
              "historical_sold": 15,
              "liked": false,
              "liked_count": 8,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 8,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 24500000000,
              "price_min": 24500000000,
              "price_max": 24500000000,
              "price_min_before_discount": -1,
              "price_max_before_discount": -1,
              "hidden_price_display": null,
              "price_before_discount": 0,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": null,
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Silver"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  8,
                  0,
                  0,
                  0,
                  0,
                  8
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Kab. Bekasi",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 0,
                "promotion_id": 0,
                "price": 24500000000,
                "strikethrough_price": null,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": null,
                "model_id": 261746875191,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 24500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 15,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 15,
                "display_sold_count_text": "15"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Harga-Ambyar",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43471394891,
            "shopid": 1501894134,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztj-mf2lr7u6p15bdc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,2018619,1049112,700005512,822059908662278,825465608499232,825465608497696,844931064601283,844931086908638,1119699,298933384,1400285055,2023641,1015914,700190087,298463379,1718093079,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":69,\"model_id\":261746875191,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztj-mf2lr7u6p15bdc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,2018619,1049112,700005512,822059908662278,825465608499232,825465608497696,844931064601283,844931086908638,1119699,298933384,1400285055,2023641,1015914,700190087,298463379,1718093079,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":69,\"model_id\":261746875191,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43471394891",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 28542161775,
              "shopid": 1481276809,
              "name": "Soft Silicone Strap for Xiaomi Mi Band 10 9 8 NFC Polos Warna Strap Sport Rubber Soft Band Wristband Replacement Bracelet Belt Accessories Tali Jam Tangan Smartwatch for Miband 10 9 8",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                1015914,
                700190087,
                298933384,
                1400285055,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824jd-mf2fw89293ijf5",
              "images": [
                "sg-11134201-824jd-mf2fw89293ijf5",
                "sg-11134201-824h8-mf2fw8xpndakd8",
                "sg-11134201-824hz-mf2fw9ibmi2x86",
                "sg-11134201-824j1-mf2fwa01hy4v2d",
                "sg-11134201-824h2-mf2fwamh28ei3c",
                "sg-11134201-824im-mf2fwb6hm7ew63",
                "sg-11134201-824jd-mf2fwbqke5n042",
                "sg-11134201-824gp-mf2fwco5gh6wf8",
                "sg-11134201-824im-mf2fwdlgq87e40"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758794687,
              "sold": 25,
              "historical_sold": 51,
              "liked": false,
              "liked_count": 4,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 16,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1550000000,
              "price_min": 1550000000,
              "price_max": 1550000000,
              "price_min_before_discount": 3100000000,
              "price_max_before_discount": 3100000000,
              "hidden_price_display": null,
              "price_before_discount": 3100000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8ie-mev7ggmd2h36ff.16000081758356753.mp4",
                  "thumb_url": "sg-11110106-6v8ie-mev7ggmd2h36ff_cover",
                  "duration": 33,
                  "version": 2,
                  "vid": "sg-11110106-6v8ie-mev7ggmd2h36ff",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8ie-mev7ggmd2h36ff.16000081758356753.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8ie-mev7ggmd2h36ff.16000081758356753.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8ie-mev7ggmd2h36ff.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Smoky Purple",
                    "blue",
                    "Pink Sand",
                    "wine red",
                    "haze blue",
                    "pine needle green",
                    "starlight",
                    "white",
                    "black",
                    "Case"
                  ],
                  "images": [
                    "sg-11134201-824h3-mf2fwqt27tor6f",
                    "sg-11134201-824jf-mf2fwrxg4etm4c",
                    "sg-11134201-824ge-mf2fwsmk98nc34",
                    "sg-11134201-824i1-mf2fwteb4oi6b2",
                    "sg-11134201-824he-mf2fwu1x81sc58",
                    "sg-11134201-824i8-mf2fwurcvaq216",
                    "sg-11134201-824if-mf2fwvgouia2ae",
                    "sg-11134201-824hp-mf2fww65jojt8a",
                    "sg-11134201-824jj-mf2fwwuuky6icf",
                    "sg-11134201-824h3-mf2fwxkphgr1dd"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "mi band 10 9 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.9375,
                "rating_count": [
                  16,
                  0,
                  0,
                  0,
                  1,
                  15
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 372022693871686,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744045069009920,
                "price": 1550000000,
                "strikethrough_price": 3100000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 261743924230,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3100000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 51,
                "rounded_local_monthly_sold_count": 25,
                "local_monthly_sold_count_text": "25",
                "rounded_display_sold_count": 51,
                "display_sold_count_text": "51"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "SOLOLUP",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 28542161775,
            "shopid": 1481276809,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824jd-mf2fw89293ijf5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1015914,700190087,298933384,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2122,\"model_id\":261743924230,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824jd-mf2fw89293ijf5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1015914,700190087,298933384,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2122,\"model_id\":261743924230,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_28542161775",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43421344807,
              "shopid": 1344427364,
              "name": "Soft Silicone Strap for Redmi Watch 3 Active /3 Lite Replacement Rubber Band Bracelet Wristbands Belt Accessories Tali Jam Tangan Smartwatch for Xiaomi Mi Watch 3 Lite",
              "label_ids": [
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                1015914,
                700190087,
                1400285055,
                298933384,
                700810080,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824i7-mf2ekoo1g5cf78",
              "images": [
                "sg-11134201-824i7-mf2ekoo1g5cf78",
                "sg-11134201-824id-mf2ekp4dq9l8d7",
                "sg-11134201-824h1-mf2ekpl05lhm84",
                "sg-11134201-824i7-mf2ekpzruya2af",
                "sg-11134201-824ic-mf2ekqhc6xoq41",
                "sg-11134201-824hh-mf2ekqwdov0q30",
                "sg-11134201-824hs-mf2ekr97fp592c",
                "sg-11134201-824hj-mf2ekrlqyfbeef",
                "sg-11134201-824gp-mf2ekscpjhfu02"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758792464,
              "sold": 18,
              "historical_sold": 195,
              "liked": false,
              "liked_count": 12,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 41,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1212000000,
              "price_min": 1212000000,
              "price_max": 1212000000,
              "price_min_before_discount": 2448000000,
              "price_max_before_discount": 2448000000,
              "hidden_price_display": null,
              "price_before_discount": 2448000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Black๏ผˆstrap๏ผ‰",
                    "White๏ผˆstrap๏ผ‰",
                    "Ivory๏ผˆstrap๏ผ‰",
                    "Green๏ผˆstrap๏ผ‰",
                    "Purple๏ผˆstrap๏ผ‰",
                    "Red๏ผˆstrap๏ผ‰",
                    "Pink๏ผˆstrap๏ผ‰",
                    "Orange๏ผˆstrap๏ผ‰",
                    "Teal๏ผˆstrap๏ผ‰",
                    "Navy๏ผˆstrap๏ผ‰",
                    "Mint๏ผˆstrap๏ผ‰",
                    "Blue๏ผˆstrap๏ผ‰",
                    "Case"
                  ],
                  "images": [
                    "sg-11134201-824j8-mf2el51q0o3s7d",
                    "sg-11134201-824id-mf2el5elmvwt95",
                    "sg-11134201-824ig-mf2el5rpzpce29",
                    "sg-11134201-824jd-mf2el64gqdqi92",
                    "sg-11134201-824ia-mf2el6iepdsad2",
                    "sg-11134201-824hh-mf2el6zgkwzy1e",
                    "sg-11134201-824hu-mf2el7bolcsqe6",
                    "sg-11134201-824hm-mf2el7oi6hhl09",
                    "sg-11134201-824iz-mf2el824lr0sdd",
                    "sg-11134201-824g5-mf2el8g9r5zf6f",
                    "sg-11134201-824hy-mf2el8rtrqiw8f",
                    "sg-11134201-824g0-mf2el945g4jseb",
                    "sg-11134201-824i7-mf2el9jfaozu64"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi watch 3 active",
                    "Redmi watch 3 lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.902439024390244,
                "rating_count": [
                  41,
                  0,
                  0,
                  0,
                  4,
                  37
                ],
                "rcount_with_context": 10,
                "rcount_with_image": 11
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 225594864582656,
                "price": 1212000000,
                "strikethrough_price": 2448000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 306743148677,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2448000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 195,
                "rounded_local_monthly_sold_count": 18,
                "local_monthly_sold_count_text": "18",
                "rounded_display_sold_count": 195,
                "display_sold_count_text": "195"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "eameasca",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43421344807,
            "shopid": 1344427364,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824i7-mf2ekoo1g5cf78\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,1015914,700190087,1400285055,298933384,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2056,\"model_id\":306743148677,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824i7-mf2ekoo1g5cf78\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,1015914,700190087,1400285055,298933384,700810080,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2056,\"model_id\":306743148677,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43421344807",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40071343411,
              "shopid": 668197281,
              "name": "Cavva Hard Case Mi Band 8/9/10 Case + Tempered Glass Xiaomi Smart Band 8/9/10 Pelindung Layar",
              "label_ids": [
                700190019,
                2018619,
                844931064601283,
                1428713,
                1718087960,
                1119699,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079,
                700810080,
                2023641
              ],
              "image": "id-11134207-81ztl-mf27pf8f4m4s2f",
              "images": [
                "id-11134207-81ztl-mf27pf8f4m4s2f",
                "id-11134207-81zto-mf2acc3az66l9b",
                "id-11134207-81ztd-mf2acc39t158ec",
                "id-11134207-81ztk-mf2acc39ufpo61"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758785755,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1250000000,
              "price_min": 1250000000,
              "price_max": 1250000000,
              "price_min_before_discount": 3500000000,
              "price_max_before_discount": 3500000000,
              "hidden_price_display": null,
              "price_before_discount": 3500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-64%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hardcase Armor Hitam",
                    "Hardcase Armor Peach",
                    "Hardcase Armor Navy",
                    "Hardcase Slim Hitam",
                    "Hardcase Slim Putih",
                    "Hardcase Slim Navy",
                    "Hardcase Armor Bning",
                    "Hardcase Armor Hijau",
                    "Hardcase Armor Krem",
                    "Hardcase Slim Bening",
                    "Hardcase Slim Peach",
                    "Hardcase Slim Hijau"
                  ],
                  "images": [
                    "id-11134207-7ra0o-md6zs29hd8wz8c",
                    "id-11134207-7ra0u-md6zs29henhf45",
                    "id-11134207-7ra0k-md6zs29hg21v3e",
                    "id-11134207-7ra0s-md6zs29hhgmb56",
                    "id-11134207-7ra0l-md70eitq0n5323",
                    "id-11134207-7ra0t-md6zs29hiv6r79",
                    "id-11134207-7ra0p-md6zs29hk9r772",
                    "id-11134207-7ra0p-md6zs29hn2w37c",
                    "id-11134207-7ra0q-md6zs29hohgj7b",
                    "id-11134207-7ra0o-md6zs29hpw0z19",
                    "id-11134207-7ra0h-md70eitpxu074a",
                    "id-11134207-7ra0n-md70eitpz8kn05"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Case Jam",
                  "options": [
                    "Mi Band 10/9",
                    "Mi Band 10/8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 806672671490048,
                "price": 1210000000,
                "strikethrough_price": 3500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1308695396892672,
                "discount_text": "-64%",
                "model_id": 218725209086,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1308695396892672,
                  "voucher_code": "CAVVNEW",
                  "voucher_discount": 40000000,
                  "time_info": {
                    "start_time": 1765468200,
                    "end_time": 1772297940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 100000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 3500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Cavva Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40071343411,
            "shopid": 668197281,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-mf27pf8f4m4s2f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700190019,2018619,844931064601283,1428713,1718087960,1119699,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,700810080,2023641],\"matched_keywords\":[\"\"],\"merge_rank\":2009,\"model_id\":218725209086,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-mf27pf8f4m4s2f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700190019,2018619,844931064601283,1428713,1718087960,1119699,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,700810080,2023641],\"matched_keywords\":[\"\"],\"merge_rank\":2009,\"model_id\":218725209086,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40071343411",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41571293608,
              "shopid": 1344444411,
              "name": "Sport Silicone Strap for Xiaomi Mi Band 10 9 8 NFC Polos Warna Strap Soft Rubber Band Wristband Replacement Bracelet Belt Accessories For Tali Jam Tangan Smartwatch Miband 10 9 8",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                1400285055,
                1015914,
                700190087,
                298933384,
                840955085144628,
                840990690654214,
                2048660,
                2048661,
                700765096,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-824g5-mf28olw4c6iw9e",
              "images": [
                "sg-11134201-824g5-mf28olw4c6iw9e",
                "sg-11134201-824i1-mf28ouc5613h7f",
                "sg-11134201-824is-mf28ov71455b5a",
                "sg-11134201-824jb-mf28ovhn6m1a2f",
                "sg-11134201-824ho-mf28ovpnaozvf8",
                "sg-11134201-824j2-mf28ovwon4sr3a",
                "sg-11134201-824gb-mf28ow3iyryi89",
                "sg-11134201-824jd-mf28owb7zw2618",
                "sg-11134201-824gm-mf28owj17axa6b"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758782567,
              "sold": 45,
              "historical_sold": 116,
              "liked": false,
              "liked_count": 10,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 17,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1550000000,
              "price_min": 1550000000,
              "price_max": 1550000000,
              "price_min_before_discount": 3100000000,
              "price_max_before_discount": 3100000000,
              "hidden_price_display": null,
              "price_before_discount": 3100000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-50%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6v8ie-mev7ggmd2h36ff.16000081758356753.mp4",
                  "thumb_url": "sg-11110106-6v8ie-mev7ggmd2h36ff_cover",
                  "duration": 33,
                  "version": 2,
                  "vid": "sg-11110106-6v8ie-mev7ggmd2h36ff",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6v8ie-mev7ggmd2h36ff.16000081758356753.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8ie-mev7ggmd2h36ff.16000081758356753.mp4",
                      "width": 720,
                      "height": 960
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v8ie-mev7ggmd2h36ff.default.mp4",
                    "width": 540,
                    "height": 720
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Smoky Purple(Strap)",
                    "blue(Strap)",
                    "Pink Sand(Strap)",
                    "wine red(Strap)",
                    "haze blue(Strap)",
                    "pine green(Strap)",
                    "starlight(Strap)",
                    "white(Strap)",
                    "black(Strap)",
                    "Case(Strap)"
                  ],
                  "images": [
                    "sg-11134201-824io-mf28p98omh3h2f",
                    "sg-11134201-824gq-mf28p9kuzvgueb",
                    "sg-11134201-824jj-mf28pa45bv9p27",
                    "sg-11134201-824hm-mf28paidbtor16",
                    "sg-11134201-824hh-mf28pb2i7o5r33",
                    "sg-11134201-824hk-mf28pbggrqq630",
                    "sg-11134201-824gw-mf28pbpemtce98",
                    "sg-11134201-824id-mf28pbx3cowafd",
                    "sg-11134201-824g3-mf28pc7z0phof6",
                    "sg-11134201-824h0-mf28pcfliio8fd"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "mi band 10 9 8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.705882352941177,
                "rating_count": [
                  17,
                  0,
                  1,
                  0,
                  2,
                  14
                ],
                "rcount_with_context": 3,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 374890880581698,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 749782205792256,
                "price": 1550000000,
                "strikethrough_price": 3100000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-50%",
                "model_id": 306738495043,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3100000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 116,
                "rounded_local_monthly_sold_count": 45,
                "local_monthly_sold_count_text": "45",
                "rounded_display_sold_count": 116,
                "display_sold_count_text": "116"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "RMUTANE",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41571293608,
            "shopid": 1344444411,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824g5-mf28olw4c6iw9e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,1400285055,1015914,700190087,298933384,840955085144628,840990690654214,2048660,2048661,700765096,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1274,\"model_id\":306738495043,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824g5-mf28olw4c6iw9e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,1400285055,1015914,700190087,298933384,840955085144628,840990690654214,2048660,2048661,700765096,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1274,\"model_id\":306738495043,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41571293608",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29992156344,
              "shopid": 991713459,
              "name": "Jam tangan pintar 2.01 '' HD Layar Bluetooth Panggilan Olahraga Luar Biasa Smart Watch Pria",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059154,
                1059152,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                298933384,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "id-11134207-81ztl-mf28fitituz230",
              "images": [
                "id-11134207-81ztl-mf28fitituz230",
                "id-11134207-81zti-mf28fitmhwcq25",
                "id-11134207-81ztl-mf28fitmjax685",
                "id-11134207-81ztp-mf28fitmkphmf0",
                "id-11134207-81ztp-mf28fitmm422f5",
                "id-11134207-81zte-mf28fitmnimi94",
                "id-11134207-81ztk-mf28fitmox6y4a",
                "id-11134207-81ztf-mf28fitmqbre4d",
                "id-11134207-81ztn-mf28fitmrqbud1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758782391,
              "sold": 0,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100013,
              "brand": "TZUZL",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 15500000000,
              "price_min": 15500000000,
              "price_max": 15500000000,
              "price_min_before_discount": 29000000000,
              "price_max_before_discount": 29000000000,
              "hidden_price_display": null,
              "price_before_discount": 29000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-47%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6ven6-mf28i4j9n3t78d.16000081758782253.mp4",
                  "thumb_url": "id-11110105-6ven6-mf28i4j9n3t78d_cover",
                  "duration": 44,
                  "version": 2,
                  "vid": "id-11110105-6ven6-mf28i4j9n3t78d",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6ven6-mf28i4j9n3t78d.16000081758782253.mp4",
                      "url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven6-mf28i4j9n3t78d.16000081758782253.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven6-mf28i4j9n3t78d.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "hitam",
                    "emas hitam"
                  ],
                  "images": [
                    "id-11134207-81ztp-mf28fitmt4wac3",
                    "id-11134207-81ztd-mf28fitmujgqc8"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": {
                "add_on_deal_id": 401795503632422,
                "add_on_deal_label": "Kombo Hemat",
                "sub_type": 0,
                "status": 1
              },
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 757845570682880,
                "price": 15000000000,
                "strikethrough_price": 29000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1289561780404228,
                "discount_text": "-47%",
                "model_id": 281738397419,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1289561780404228,
                  "voucher_code": "JONA5000",
                  "voucher_discount": 500000000,
                  "time_info": {
                    "start_time": 1763187480,
                    "end_time": 1771226280,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 15000000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 29000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "MUZI-TOKO",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 29992156344,
            "shopid": 991713459,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-mf28fitituz230\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059154,1059152,1718093079,822059908662278,825465608497696,825465608499232,1119699,298933384,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2385,\"model_id\":281738397419,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-mf28fitituz230\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059154,1059152,1718093079,822059908662278,825465608497696,825465608499232,1119699,298933384,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":2385,\"model_id\":281738397419,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29992156344",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26592058960,
              "shopid": 668197281,
              "name": "Cavva Hard Case Mi Band 9 Active Case + Tempered Glass Xiaomi Smart Band 9 Active Pelindung Layar",
              "label_ids": [
                2018619,
                700190019,
                844931064601283,
                1718087960,
                1428713,
                1119699,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608499232,
                1718093079,
                2023641
              ],
              "image": "id-11134207-81ztm-mf0yyb5fcw086a",
              "images": [
                "id-11134207-81ztm-mf0yyb5fcw086a",
                "id-11134207-81zti-mf0yyb5feakoee",
                "id-11134207-81zth-mf0yyb5fa2vcb3",
                "id-11134207-81ztq-mf0yyb5fbhfs4c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758706188,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1400000000,
              "price_min": 1400000000,
              "price_max": 1400000000,
              "price_min_before_discount": 3500000000,
              "price_max_before_discount": 3500000000,
              "hidden_price_display": null,
              "price_before_discount": 3500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-60%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hard Case Hijau",
                    "Hard Case Navy",
                    "Hard Case Bening",
                    "Hard Case Peach",
                    "Hard Case Krem",
                    "Hard Case Hitam"
                  ],
                  "images": [
                    "id-11134207-7ra0m-md03rkhcvpcn27",
                    "id-11134207-7ra0p-md03rkhcx3x34b",
                    "id-11134207-7ra0m-md03rkhcyihj98",
                    "id-11134207-7ra0i-md03rkhczx1z22",
                    "id-11134207-7ra0n-md03rkhd1bmfc9",
                    "id-11134207-7ra0h-md03rkhd2q6v03"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "Case Jam",
                  "options": [
                    "Mi Band 9 Active"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 806672671490048,
                "price": 1360000000,
                "strikethrough_price": 3500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": 1308695396892672,
                "discount_text": "-60%",
                "model_id": 253943754916,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": {
                  "promotion_id": 1308695396892672,
                  "voucher_code": "CAVVNEW",
                  "voucher_discount": 40000000,
                  "time_info": {
                    "start_time": 1765468200,
                    "end_time": 1772297940,
                    "valid_duration": null
                  },
                  "groups": [],
                  "min_spend": 100000000
                },
                "recommended_platform_voucher_info": null,
                "original_price": 3500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Cavva Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26592058960,
            "shopid": 668197281,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztm-mf0yyb5fcw086a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700190019,844931064601283,1718087960,1428713,1119699,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,2023641],\"matched_keywords\":[\"\"],\"merge_rank\":1331,\"model_id\":253943754916,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztm-mf0yyb5fcw086a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700190019,844931064601283,1718087960,1428713,1119699,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,2023641],\"matched_keywords\":[\"\"],\"merge_rank\":1331,\"model_id\":253943754916,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26592058960",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43570944740,
              "shopid": 1592030327,
              "name": "Sport Magnetic Silicone Strap for Huawei Band 10 / Huawei Band 9 / Huawei Band 8 Soft Silikon Replacement Rubber Bracelet Wristbands Belt Bracelet Band Accessories Tali Jam Tangan Smartwatch for Huawei Band 10 9 8 NFC",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                1400285055,
                2023641,
                2018619,
                840955085144628,
                840990690654214,
                2048660,
                2048661,
                700765096,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824gf-mf0xyxtzuqdo97",
              "images": [
                "sg-11134201-824gf-mf0xyxtzuqdo97",
                "sg-11134201-824jh-mf0xyy9se1ou31",
                "sg-11134201-824g7-mf0xyyrlyxoqef",
                "sg-11134201-824i3-mf0xyz7tj37ye2",
                "sg-11134201-824ic-mf0xyzn9mej393",
                "sg-11134201-824gq-mf0xz02lhyxbea",
                "sg-11134201-824g0-mf0xz0jvewpbbd",
                "sg-11134201-824g2-mf0xz10hkd1n24",
                "sg-11134201-824j4-mf0xz1hhx5ooeb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758704009,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 5500000000,
              "price_min": 5500000000,
              "price_max": 5500000000,
              "price_min_before_discount": 9000000000,
              "price_max_before_discount": 9000000000,
              "hidden_price_display": null,
              "price_before_discount": 9000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-39%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "White(Strap)",
                    "Milk tea (Strap)",
                    "Pink sand (Strap)",
                    "Pink star(Strap)",
                    "Starlight(Strap)",
                    "Army green(Strap)",
                    "Orange black(Strap)",
                    "Wine red(Strap)",
                    "Midnight blue(Strap)",
                    "Black(Strap)"
                  ],
                  "images": [
                    "sg-11134201-824hr-mf0xzebqff2n4e",
                    "sg-11134201-824jg-mf0xzeo072fe7b",
                    "sg-11134201-824j3-mf0xzf3q1gjy75",
                    "sg-11134201-824h2-mf0xzfi18opbe4",
                    "sg-11134201-824hf-mf0xzfx198gc43",
                    "sg-11134201-824h5-mf0xzgc7ihhnce",
                    "sg-11134201-824j2-mf0xzgtv1p1ld7",
                    "sg-11134201-824je-mf0xzh8s696zec",
                    "sg-11134201-824gx-mf0xzhm2noy450",
                    "sg-11134201-824hz-mf0xzhz0jc3sbd"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Huawei Band 10/9/8"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359074252468611,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718148739858432,
                "price": 5500000000,
                "strikethrough_price": 9000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-39%",
                "model_id": 286708353590,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 9000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANSLOOP Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU4MTdjNzUzMmQ5YmU5MTA1NWYwMDowMjAwMDA0ZWNhNTE2MWU0OjAxMDAwMWVjMDk3Y2ZjYjJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43570944740,
            "shopid": 1592030327,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824gf-mf0xyxtzuqdo97\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1400285055,2023641,2018619,840955085144628,840990690654214,2048660,2048661,700765096,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1273,\"model_id\":286708353590,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824gf-mf0xyxtzuqdo97\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1400285055,2023641,2018619,840955085144628,840990690654214,2048660,2048661,700765096,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1273,\"model_id\":286708353590,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43570944740",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43020948996,
              "shopid": 1592030327,
              "name": "Soft TPU Clear Case for IWatch Apple Watch Ultra/Ultra 3 2 Series 11 10 9 8 7 6 5 4 SE 3 2 1 49mm 46 45 44 42 41 40 38mm Anti Gores Sceen Protector Bumper Cover Accessories Jam Tangan Smartwatch for I8 Pro Max S8 S9 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                2023641,
                298933384,
                2018619,
                1015914,
                700190087,
                1400285055,
                2048661,
                840955085144628,
                840990690654214,
                2048660,
                700765096,
                844931086908638,
                2103651,
                2143613,
                298623321,
                1993623,
                998091078,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824jh-mf0xxyr743ync7",
              "images": [
                "sg-11134201-824jh-mf0xxyr743ync7",
                "sg-11134201-824ja-mf0xxz4rmi2xbd",
                "sg-11134201-824gs-mf0xxzfe8oi1e9",
                "sg-11134201-824jc-mf0xxzph5ez364",
                "sg-11134201-824hk-mf0xy02sgcnj82",
                "sg-11134201-824ib-mf0xy0mb4xzh89",
                "sg-11134201-824h9-mf0xy12li8em43",
                "sg-11134201-824g1-mf0xy1qhz8qzdb",
                "sg-11134201-824h5-mf0xy21jun7zfd"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758703963,
              "sold": 55,
              "historical_sold": 145,
              "liked": false,
              "liked_count": 15,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 33,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1207500000,
              "price_min": 1207500000,
              "price_max": 1207500000,
              "price_min_before_discount": 2450000000,
              "price_max_before_discount": 2450000000,
              "hidden_price_display": null,
              "price_before_discount": 2450000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-51%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16000081705667005.mp4",
                  "thumb_url": "sg-11110106-7rbma-lqosq45un33scc",
                  "duration": 47,
                  "version": 2,
                  "vid": "sg-11110106-6khwp-lqospxied5af21",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16003221713649919.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16003221713649919.mp4",
                      "width": 640,
                      "height": 360
                    },
                    {
                      "format": 1600240,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16002401713544640.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16002401713544640.mp4",
                      "width": 640,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16004081713514722.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16004081713514722.mp4",
                      "width": 640,
                      "height": 360
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16006731724217564.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16006731724217564.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16006711722579029.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16006711722579029.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600241,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16002411713544659.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16002411713544659.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16004091713514742.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16004091713514742.mp4",
                      "width": 960,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16000081705667005.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16000081705667005.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16003241707453911.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16003241707453911.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16003251707453912.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16003251707453912.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16004111713514742.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16004111713514742.mp4",
                      "width": 1280,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16004101713514742.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.16004101713514742.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khwp-lqospxied5af21.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color_family",
                  "options": [
                    "Rose Gold(Case)",
                    "Gold(Case)",
                    "space gray(Case)",
                    "pink gold(Case)",
                    "Black(Case)",
                    "Silver(Case)",
                    "Transparent(Case)",
                    "Star(Case)",
                    "Blue(Case)"
                  ],
                  "images": [
                    "sg-11134201-824i8-mf0xyemcnuvgb6",
                    "sg-11134201-824h7-mf0xyewttc7ede",
                    "sg-11134201-824i5-mf0xyf5yuvbiec",
                    "sg-11134201-824j9-mf0xyfgvgn4ef8",
                    "sg-11134201-824il-mf0xyg1kpog857",
                    "sg-11134201-824g8-mf0xyghmysr1e4",
                    "sg-11134201-824go-mf0xygr1dhqib8",
                    "sg-11134201-824ig-mf0xyh427xn386",
                    "sg-11134201-824jh-mf0xyhc9fksqba"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "smartwear_size",
                  "options": [
                    "42mm",
                    "45mm",
                    "44mm",
                    "40mm",
                    "49mm",
                    "38mm",
                    "41mm",
                    "46mm Series 11 10",
                    "42mm Series 11 10"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.848484848484849,
                "rating_count": [
                  33,
                  0,
                  1,
                  0,
                  2,
                  30
                ],
                "rcount_with_context": 7,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359074252468611,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 324,
                "promotion_id": 10000018470,
                "price": 1207500000,
                "strikethrough_price": 2450000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-51%",
                "model_id": 167321530587,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2450000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 145,
                "rounded_local_monthly_sold_count": 55,
                "local_monthly_sold_count_text": "55",
                "rounded_display_sold_count": 145,
                "display_sold_count_text": "145"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANSLOOP Store",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43020948996,
            "shopid": 1592030327,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824jh-mf0xxyr743ync7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,2023641,298933384,2018619,1015914,700190087,1400285055,2048661,840955085144628,840990690654214,2048660,700765096,844931086908638,2103651,2143613,298623321,1993623,998091078,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":16,\"model_id\":167321530587,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824jh-mf0xxyr743ync7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,2023641,298933384,2018619,1015914,700190087,1400285055,2048661,840955085144628,840990690654214,2048660,700765096,844931086908638,2103651,2143613,298623321,1993623,998091078,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":16,\"model_id\":167321530587,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43020948996",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27642054048,
              "shopid": 1592030327,
              "name": "2 In1 Soft Silicone Strap + Case for Redmi Watch 5 Active / Redmi Watch 5 Lite Anti Gores Screen Protector Bumper Frame Cover Sport Rubber Wristband Bracelet Band Accessories Tali Pengganti Jam Tangan for Smartwatch Xiaomi Redmi Watch 5 Lite",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                2023641,
                298933384,
                2018619,
                2048660,
                2048661,
                840955085144628,
                840990690654214,
                700765096,
                1400285055,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-824im-mf0xyy4y3ggf9a",
              "images": [
                "sg-11134201-824im-mf0xyy4y3ggf9a",
                "sg-11134201-824it-mf0xyyue642500",
                "sg-11134201-824ij-mf0xyzc2hde4d7",
                "sg-11134201-824hj-mf0xyzzeidqi94",
                "sg-11134201-824hi-mf0xz0dl80ztbf",
                "sg-11134201-824ho-mf0xz0ui6nt9e4",
                "sg-11134201-824g9-mf0xz1b30cugfe",
                "sg-11134201-824g3-mf0xz1qz0qa288",
                "sg-11134201-824j5-mf0xz250z098a2"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758704010,
              "sold": 44,
              "historical_sold": 50,
              "liked": false,
              "liked_count": 9,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 14,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1872000000,
              "price_min": 1872000000,
              "price_max": 1872000000,
              "price_min_before_discount": 7520000000,
              "price_max_before_discount": 7520000000,
              "hidden_price_display": null,
              "price_before_discount": 7520000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-75%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6kiob-m5cqig533g0079.16000081737625480.mp4",
                  "thumb_url": "sg-11110106-6kiob-m5cqig533g0079_cover",
                  "duration": 36,
                  "version": 2,
                  "vid": "sg-11110106-6kiob-m5cqig533g0079",
                  "formats": [
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6kiob-m5cqig533g0079.16003251745126972.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiob-m5cqig533g0079.16003251745126972.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiob-m5cqig533g0079.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "1 (Strap+Case)",
                    "2๏ผˆStrap+Case๏ผ‰",
                    "3๏ผˆStrap+Case๏ผ‰",
                    "4๏ผˆStrap+Case๏ผ‰",
                    "5๏ผˆStrap+Case๏ผ‰",
                    "6๏ผˆStrap+Case๏ผ‰",
                    "7๏ผˆStrap+Case๏ผ‰",
                    "8๏ผˆStrap+Case๏ผ‰",
                    "9๏ผˆStrap+Case๏ผ‰",
                    "10๏ผˆStrap+Case๏ผ‰",
                    "11๏ผˆStrap+Case๏ผ‰",
                    "12๏ผˆStrap+Case๏ผ‰",
                    "13๏ผˆStrap+Case๏ผ‰",
                    "Black Strap",
                    "White Strap",
                    "Gray Strap",
                    "Dark green Strap",
                    "Ivory Strap",
                    "Red Strap",
                    "Purple Strap",
                    "Light pink Strap",
                    "Teal Strap",
                    "Dark Blue Strap",
                    "Orange Strap",
                    "Light Blue Strap",
                    "Lemon Strap",
                    "Black Case",
                    "White Case",
                    "Pink Case",
                    "Grey Case",
                    "Lemon Case",
                    "Teal Case",
                    "Purple Case",
                    "Light Blue Case",
                    "Red Case",
                    "Ivory Case",
                    "Dark green Case",
                    "Dark Blue Case",
                    "Orange Case",
                    "Film"
                  ],
                  "images": [
                    "sg-11134201-824ia-mf0xzex3d6a4f6",
                    "sg-11134201-824hw-mf0xzfae8m4pe2",
                    "sg-11134201-824h4-mf0xzfmz0c20ff",
                    "sg-11134201-824gt-mf0xzg0nw1scbf",
                    "sg-11134201-824gu-mf0xzgdrnua48f",
                    "sg-11134201-824gl-mf0xzgqmcavd44",
                    "sg-11134201-824id-mf0xzh3pg9an2b",
                    "sg-11134201-824h0-mf0xzhgx5x57c7",
                    "sg-11134201-824jf-mf0xzhupinf085",
                    "sg-11134201-824ho-mf0xzi8eikun43",
                    "sg-11134201-824ht-mf0xziot4z6653",
                    "sg-11134201-824jf-mf0xzj0h8y6kbb",
                    "sg-11134201-824gz-mf0xzjdmjkem3a",
                    "sg-11134201-824i6-mf0xzjuh1ma33c",
                    "sg-11134201-824jd-mf0xzk73hs7d6b",
                    "sg-11134201-824hc-mf0xzklk9tzf55",
                    "sg-11134201-824je-mf0xzl3fc3k809",
                    "sg-11134201-824i5-mf0xzlh6ob2m6d",
                    "sg-11134201-824g7-mf0xzm06z9c9f2",
                    "sg-11134201-824hn-mf0xzmgb3uhb7f",
                    "sg-11134201-824j7-mf0xzmx56g3v55",
                    "sg-11134201-824hc-mf0xzndhce8fa2",
                    "sg-11134201-824h6-mf0xznx9s3yn0b",
                    "sg-11134201-824gc-mf0xzodp2dxr81",
                    "sg-11134201-824hm-mf0xzotm0ikqf5",
                    "sg-11134201-824i7-mf0xzp9l6mffa5",
                    "sg-11134201-824ig-mf0xzpncvh1ra1",
                    "sg-11134201-824j1-mf0xzpxbard557",
                    "sg-11134201-824gw-mf0xzq9qyfbcd3",
                    "sg-11134201-824i1-mf0xzqoq6xan9b",
                    "sg-11134201-824gc-mf0xzr6bayh4fa",
                    "sg-11134201-824io-mf0xzrl241sf43",
                    "sg-11134201-824gi-mf0xzs2d026hec",
                    "sg-11134201-824gk-mf0xzshyk0zw04",
                    "sg-11134201-824j5-mf0xzsvcifpo67",
                    "sg-11134201-824hf-mf0xzt7bnz0v0c",
                    "sg-11134201-824gp-mf0xztk6ch72f4",
                    "sg-11134201-824i7-mf0xzu0h2eq39b",
                    "sg-11134201-824i4-mf0xzugemxah8e",
                    "sg-11134201-824i8-mf0xzuuhztai4c"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "Redmi watch 5 active",
                    "Redmi watch 5 lite"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.785714285714286,
                "rating_count": [
                  14,
                  0,
                  0,
                  1,
                  1,
                  12
                ],
                "rcount_with_context": 2,
                "rcount_with_image": 5
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359074252468611,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 1872000000,
                "strikethrough_price": 7520000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-75%",
                "model_id": 276708363619,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 7520000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 18.720",
                      "hidden_promotion_price": "Rp ?8.720",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 50,
                "rounded_local_monthly_sold_count": 44,
                "local_monthly_sold_count_text": "44",
                "rounded_display_sold_count": 50,
                "display_sold_count_text": "50"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANSLOOP Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 27642054048,
            "shopid": 1592030327,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824im-mf0xyy4y3ggf9a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,2023641,298933384,2018619,2048660,2048661,840955085144628,840990690654214,700765096,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":827,\"model_id\":276708363619,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824im-mf0xyy4y3ggf9a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,2023641,298933384,2018619,2048660,2048661,840955085144628,840990690654214,700765096,1400285055,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":827,\"model_id\":276708363619,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27642054048",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 27542053994,
              "shopid": 1592030327,
              "name": "9D Tempered Glass Soft Film for Huawei Band 10 9 8 7 Screen Protector Accessories Jam Tangan Smartwatch for Huawei Band 10 9 8 7 NFC",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1718093079,
                1119699,
                2023641,
                2018619,
                298933384,
                840955085144628,
                840990690654214,
                2048660,
                2048661,
                700765096,
                1400285055,
                844931086908638,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824gw-mf0xyxw8qk2721",
              "images": [
                "sg-11134201-824gw-mf0xyxw8qk2721",
                "sg-11134201-824iy-mf0xyyd52o7ic2",
                "sg-11134201-824hq-mf0xyynpi58q77",
                "sg-11134201-824ia-mf0xyz2fncwb6b",
                "sg-11134201-824iu-mf0xyzjaqivd5c",
                "sg-11134201-824gi-mf0xz00r8t1p4b",
                "sg-11134201-824i2-mf0xz0jhn28a43",
                "sg-11134201-824ij-mf0xz131djbiae",
                "sg-11134201-824jb-mf0xz1l48qh452"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758704009,
              "sold": 11,
              "historical_sold": 64,
              "liked": false,
              "liked_count": 8,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 18,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 899000000,
              "price_min": 899000000,
              "price_max": 899000000,
              "price_min_before_discount": 1900000000,
              "price_max_before_discount": 1900000000,
              "hidden_price_display": null,
              "price_before_discount": 1900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-53%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "soft",
                    "9D"
                  ],
                  "images": [
                    "sg-11134201-824g0-mf0xzebmzt3gc5",
                    "sg-11134201-824hn-mf0xzepte7t956"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "1 Pcs",
                    "2 Pcs"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  18,
                  0,
                  0,
                  0,
                  0,
                  18
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359074252468611,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 718148739858432,
                "price": 899000000,
                "strikethrough_price": 1900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-53%",
                "model_id": 271708357810,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1900000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 64,
                "rounded_local_monthly_sold_count": 11,
                "local_monthly_sold_count_text": "11",
                "rounded_display_sold_count": 64,
                "display_sold_count_text": "64"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANSLOOP Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 27542053994,
            "shopid": 1592030327,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824gw-mf0xyxw8qk2721\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,2023641,2018619,298933384,840955085144628,840990690654214,2048660,2048661,700765096,1400285055,844931086908638,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":828,\"model_id\":271708357810,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824gw-mf0xyxw8qk2721\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1119699,2023641,2018619,298933384,840955085144628,840990690654214,2048660,2048661,700765096,1400285055,844931086908638,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":828,\"model_id\":271708357810,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_27542053994",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41470924857,
              "shopid": 974913,
              "name": "[ARP] Headphone X55 Headset Bluetooth Gaming Peredam Kebisingan Aktif yang Keren",
              "label_ids": [
                47,
                1000167,
                1000653,
                13,
                1000515,
                1000211,
                1000560,
                1000559,
                1000255,
                1000504,
                1014371,
                1016104,
                2018619,
                700190019,
                700185038,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                1059152,
                1049122,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                1015914,
                700190087,
                1400285055
              ],
              "image": "id-11134207-81ztc-mf0tls9atgqzb9",
              "images": [
                "id-11134207-81ztc-mf0tls9atgqzb9",
                "id-11134207-81ztk-mf0tls9anuh732",
                "id-11134207-81zth-mf0tls9aw9vv4d",
                "id-11134207-81ztq-mf0tls9ap91n78",
                "id-11134207-81zte-mf0tls9aqnm3fb",
                "id-11134207-81ztp-mf0tls9as26j1c",
                "id-11134207-81zti-mf0tls9auvbfa1"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758700426,
              "sold": 34,
              "historical_sold": 199,
              "liked": false,
              "liked_count": 35,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 81,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3400000000,
              "price_min": 3400000000,
              "price_max": 3400000000,
              "price_min_before_discount": 10000000000,
              "price_max_before_discount": 10000000000,
              "hidden_price_display": null,
              "price_before_discount": 10000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-66%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vend-mf0ukcrcrax6c1.16000031758698280.mp4",
                  "thumb_url": "id-11110105-6vend-mf0ukcrcrax6c1_cover",
                  "duration": 21,
                  "version": 2,
                  "vid": "id-11110105-6vend-mf0ukcrcrax6c1",
                  "formats": [
                    {
                      "format": 1600003,
                      "defn": "V480P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vend-mf0ukcrcrax6c1.16000031758698280.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vend-mf0ukcrcrax6c1.16000031758698280.mp4",
                      "width": 480,
                      "height": 480
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vend-mf0ukcrcrax6c1.default.mp4",
                    "width": 480,
                    "height": 480
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "X55",
                  "options": [
                    "Hitam",
                    "Cream",
                    "Putih",
                    "Pink",
                    "Biru",
                    "Ungu"
                  ],
                  "images": [
                    "id-11134207-81zth-mf0tls9aw9vv4d",
                    "id-11134207-81zth-mf0tls9ajmrvee",
                    "id-11134207-81zth-mf0tls9al1cb0c",
                    "id-11134207-81zti-mf0tls9ae0i0f6",
                    "id-11134207-81zti-mf0tls9auvbfa1",
                    "id-11134207-81zto-mf0tls9amfwr31"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.765432098765432,
                "rating_count": [
                  81,
                  1,
                  0,
                  2,
                  11,
                  67
                ],
                "rcount_with_context": 17,
                "rcount_with_image": 9
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": true,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 312,
                "promotion_id": 225411766431746,
                "price": 3400000000,
                "strikethrough_price": 10000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-66%",
                "model_id": 296706705351,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 10000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 4,
                "exclusive_price_result": null,
                "deep_discount_skin": null
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 199,
                "rounded_local_monthly_sold_count": 34,
                "local_monthly_sold_count_text": "34",
                "rounded_display_sold_count": 199,
                "display_sold_count_text": "199"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "ARLOJIPEDIA",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41470924857,
            "shopid": 974913,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztc-mf0tls9atgqzb9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,1000653,13,1000515,1000211,1000560,1000559,1000255,1000504,1014371,1016104,2018619,700190019,700185038,2023641,1718087960,1428713,844931064601283,844931086908638,1059152,1049122,1718093079,822059908662278,825465608497696,825465608499232,1119699,1015914,700190087,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":830,\"model_id\":296706705351,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztc-mf0tls9atgqzb9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,1000653,13,1000515,1000211,1000560,1000559,1000255,1000504,1014371,1016104,2018619,700190019,700185038,2023641,1718087960,1428713,844931064601283,844931086908638,1059152,1049122,1718093079,822059908662278,825465608497696,825465608499232,1119699,1015914,700190087,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":830,\"model_id\":296706705351,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41470924857",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26392045850,
              "shopid": 257763236,
              "name": "HONOR Band 6 Smartwatch Fitness Daily Activity Tracker Smart Watch Jam Tangan Pintar Pelacak Kebugaran Original",
              "label_ids": [
                1400066568,
                2018619,
                844931064601283,
                844931086908638,
                1059152,
                1059154,
                822059908662278,
                825465608497696,
                825465608493600,
                825465608494624,
                825465608499232,
                834403089593352,
                1718093079,
                2048660,
                2048661,
                700765096,
                298933384
              ],
              "image": "id-11134207-81ztn-mf0rjcuo347d5b",
              "images": [
                "id-11134207-81ztn-mf0rjcuo347d5b",
                "id-11134207-81ztp-mf0rjcuo4irt9c",
                "id-11134207-81zti-mf0rjcuo5xc90a",
                "id-11134207-81ztf-mf0rjcuo7bwp96",
                "id-11134207-81zte-mf0rjcuobjm185",
                "id-11134207-81zti-mf0rjcuo8qh547",
                "id-11134207-81ztn-mf0rjcuoa51l23"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758693476,
              "sold": 0,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "Honor",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 32900000000,
              "price_min": 32900000000,
              "price_max": 32900000000,
              "price_min_before_discount": 34900000000,
              "price_max_before_discount": 34900000000,
              "hidden_price_display": null,
              "price_before_discount": 34900000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-6%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110105/mms/id-11110105-6vdvn-mf0rn4kdxrt780.16000081758693365.mp4",
                  "thumb_url": "id-11110105-6vdvn-mf0rn4kdxrt780_cover",
                  "duration": 32,
                  "version": 2,
                  "vid": "id-11110105-6vdvn-mf0rn4kdxrt780",
                  "formats": [
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110105/mms/id-11110105-6vdvn-mf0rn4kdxrt780.16000081758693365.mp4",
                      "url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvn-mf0rn4kdxrt780.16000081758693365.mp4",
                      "width": 1280,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvn-mf0rn4kdxrt780.default.mp4",
                    "width": 960,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Hitam",
                    "Merah Muda"
                  ],
                  "images": [
                    "id-11134207-81ztn-mf0rjcuocy6h7e",
                    "id-11134207-81zth-mf0rjcuoecqxf7"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": false,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": false,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 749840204611584,
                "price": 32900000000,
                "strikethrough_price": 34900000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-6%",
                "model_id": 301704181268,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 34900000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "CYANMART",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26392045850,
            "shopid": 257763236,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztn-mf0rjcuo347d5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,844931086908638,1059152,1059154,822059908662278,825465608497696,825465608493600,825465608494624,825465608499232,834403089593352,1718093079,2048660,2048661,700765096,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":831,\"model_id\":301704181268,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztn-mf0rjcuo347d5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,844931086908638,1059152,1059154,822059908662278,825465608497696,825465608493600,825465608494624,825465608499232,834403089593352,1718093079,2048660,2048661,700765096,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":831,\"model_id\":301704181268,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26392045850",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 42320895650,
              "shopid": 1628289636,
              "name": "HOP Anti Gores 3D Curved Full Cover for Huawei Band 10 / 9 / 8 Screen Protector Layar Band10 / Band9 / Band8",
              "label_ids": [
                700700063,
                844931064601283,
                844931086908638,
                700005490,
                700005495,
                822059908662278,
                825465608493600,
                825465608499232,
                825465608497696,
                1119699,
                1015914,
                700190087,
                2023641,
                2018619,
                298463379,
                1718093079,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824h0-mf0p6bet3pccf7",
              "images": [
                "sg-11134201-824h0-mf0p6bet3pccf7",
                "sg-11134201-824g9-mf0p6bgcibrd31",
                "sg-11134201-824i5-mf0p6blpc6byeb",
                "sg-11134201-824j6-mf0p6bh3z5zh26",
                "sg-11134201-824g0-mf0p6bgmyryl77",
                "sg-11134201-824hn-mf0p6bghi2vi57",
                "sg-11134201-824he-mf0p6bhgnq4p6d",
                "sg-11134201-824hi-mf0p6bglzm6g2d",
                "sg-11134201-824hu-mf0p6bf3mx3gf3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758689268,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1250000000,
              "price_min": 1250000000,
              "price_max": 1250000000,
              "price_min_before_discount": 1490000000,
              "price_max_before_discount": 1490000000,
              "hidden_price_display": null,
              "price_before_discount": 1490000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-16%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 799863218946048,
                "price": 1250000000,
                "strikethrough_price": 1490000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-16%",
                "model_id": 291703532748,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1490000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gloopz",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 42320895650,
            "shopid": 1628289636,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824h0-mf0p6bet3pccf7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,844931086908638,700005490,700005495,822059908662278,825465608493600,825465608499232,825465608497696,1119699,1015914,700190087,2023641,2018619,298463379,1718093079,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":832,\"model_id\":291703532748,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824h0-mf0p6bet3pccf7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,844931086908638,700005490,700005495,822059908662278,825465608493600,825465608499232,825465608497696,1119699,1015914,700190087,2023641,2018619,298463379,1718093079,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":832,\"model_id\":291703532748,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_42320895650",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41670880965,
              "shopid": 1628289636,
              "name": "SIKAI SPORT 2Tone Silikon Strap 22MM AMAZFIT GTR 47MM 2 3 4 / HONOR GS PRO / Realme / HUAWEI GT2 GT3 GT4 GT5 GT6 46mm / Mi Redmi Watch 5 Active / Lite Tali Silicone",
              "label_ids": [
                700700063,
                844931064601283,
                844931086908638,
                298463379,
                700005490,
                700005495,
                1718093079,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                2023641,
                2018619,
                825465608493600,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824h6-mf0m8q6qxyq1c6",
              "images": [
                "sg-11134201-824h6-mf0m8q6qxyq1c6",
                "sg-11134201-824gi-mf0m8q7i3lzj51",
                "sg-11134201-824h3-mf0m8q8rin0q46",
                "sg-11134201-824if-mf0m8q8hg8i291",
                "sg-11134201-824ig-mf0m8q6gu5mxe9",
                "sg-11134201-824jc-mf0m8q6x14we6c",
                "sg-11134201-824he-mf0m8q89nci7d7"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758684601,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2250000000,
              "price_min": 2250000000,
              "price_max": 2250000000,
              "price_min_before_discount": 3500000000,
              "price_max_before_discount": 3500000000,
              "hidden_price_display": null,
              "price_before_discount": 3500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-36%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "COLOR VARIANT",
                  "options": [
                    "BLACK LIME",
                    "BLACK GREY",
                    "BLACK WHITE",
                    "BLACK RED",
                    "RED BLACK",
                    "GREY LIME",
                    "GREY WHITE"
                  ],
                  "images": [
                    "sg-11134201-824i4-mf0m8po0740ee4",
                    "sg-11134201-824hm-mf0m8pmh7xu298",
                    "sg-11134201-824hs-mf0m8pnt6bd72f",
                    "sg-11134201-824ic-mf0m8po9n30u05",
                    "sg-11134201-824g4-mf0m8pomv7yh12",
                    "sg-11134201-824jk-mf0m8pn8nf2h80",
                    "sg-11134201-824hx-mf0m8po0icjs66"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 799863218946048,
                "price": 2250000000,
                "strikethrough_price": 3500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-36%",
                "model_id": 306702531358,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gloopz",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41670880965,
            "shopid": 1628289636,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824h6-mf0m8q6qxyq1c6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,825465608497696,825465608499232,1119699,2023641,2018619,825465608493600,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":833,\"model_id\":306702531358,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824h6-mf0m8q6qxyq1c6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,825465608497696,825465608499232,1119699,2023641,2018619,825465608493600,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":833,\"model_id\":306702531358,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41670880965",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 43220779062,
              "shopid": 18476381,
              "name": "STRAP STAINLESS 3 BEADS XIAOMI MI WATCH S4 S3 S2 / AMAZFIT GTR 4 3 2 47MM LUG 22MM",
              "label_ids": [
                700700063,
                1000167,
                2018619,
                2023641,
                1428713,
                1718087960,
                844931064601283,
                844931086908638,
                1049122,
                1059152,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                825465608493600,
                298463379,
                1718093079,
                1119699,
                700765096,
                1400285055,
                298933384,
                1015914,
                700190087,
                298468389,
                1718088045
              ],
              "image": "id-11134207-81ztn-mezxjusv44r11c",
              "images": [
                "id-11134207-81ztn-mezxjusv44r11c"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758643193,
              "sold": 5,
              "historical_sold": 11,
              "liked": false,
              "liked_count": 5,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 6,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 12740000000,
              "price_min": 12740000000,
              "price_max": 12740000000,
              "price_min_before_discount": 14000000000,
              "price_max_before_discount": 14000000000,
              "hidden_price_display": null,
              "price_before_discount": 14000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-9%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Silver",
                    "Rose Gold",
                    "Gold",
                    "Silver Black"
                  ],
                  "images": [
                    "id-11134207-81ztn-mezxpkb0hhqia8",
                    "id-11134207-81ztg-mezxpmyqo7ws4a",
                    "id-11134207-81zti-mezxpq1kxkwe6d",
                    "id-11134207-81ztc-mezxpsv3czyk6a",
                    "id-11134207-81ztp-mezxshib3hu09a"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  6,
                  0,
                  0,
                  0,
                  0,
                  6
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 794368789774336,
                "price": 12740000000,
                "strikethrough_price": 14000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-9%",
                "model_id": 206279928333,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 14000000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 11,
                "rounded_local_monthly_sold_count": 5,
                "local_monthly_sold_count_text": "5",
                "rounded_display_sold_count": 11,
                "display_sold_count_text": "11"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Jktmanshop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 43220779062,
            "shopid": 18476381,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztn-mezxjusv44r11c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,1000167,2018619,2023641,1428713,1718087960,844931064601283,844931086908638,1049122,1059152,822059908662278,825465608494624,825465608499232,825465608497696,2048660,2048661,825465608493600,298463379,1718093079,1119699,700765096,1400285055,298933384,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":834,\"model_id\":206279928333,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztn-mezxjusv44r11c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,1000167,2018619,2023641,1428713,1718087960,844931064601283,844931086908638,1049122,1059152,822059908662278,825465608494624,825465608499232,825465608497696,2048660,2048661,825465608493600,298463379,1718093079,1119699,700765096,1400285055,298933384,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":834,\"model_id\":206279928333,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_43220779062",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41920791069,
              "shopid": 18476381,
              "name": "STRAP LEATHER KULIT PREMIUM XIAOMI MI WATCH S4 S3 S2 S1 AMAZFIT GTR 4 3 2 47MM / PRO LUG 22MM",
              "label_ids": [
                1428713,
                1718087960,
                844931086908638,
                844931064601283,
                1000167,
                2023641,
                700700063,
                2018619,
                1049122,
                1059152,
                822059908662278,
                825465608499232,
                825465608497696,
                2048660,
                2048661,
                825465608493600,
                825465608494624,
                298463379,
                1718093079,
                1119699,
                700765096,
                1400285055,
                298933384,
                1015914,
                700190087,
                1718088045,
                298468389
              ],
              "image": "id-11134207-81ztd-mezwt7ixjpc87f",
              "images": [
                "id-11134207-81ztd-mezwt7ixjpc87f"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758642041,
              "sold": 6,
              "historical_sold": 18,
              "liked": false,
              "liked_count": 9,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 9,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 14105000000,
              "price_min": 14105000000,
              "price_max": 14105000000,
              "price_min_before_discount": 15500000000,
              "price_max_before_discount": 15500000000,
              "hidden_price_display": null,
              "price_before_discount": 15500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-9%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "Warna",
                  "options": [
                    "Black",
                    "Navy",
                    "Pink",
                    "Soft Pink",
                    "Grey",
                    "Brown",
                    "Dark Brown"
                  ],
                  "images": [
                    "id-11134207-81zte-mezx1wewar64fb",
                    "id-11134207-81ztj-mezx09f5q8sv29",
                    "id-11134207-81ztm-mezx2aj3un7yc1",
                    "id-11134207-81ztf-mezx2zjs25fx74",
                    "id-11134207-81ztf-mezx0goq7eof6b",
                    "id-11134207-81ztl-mezx0kxhjjtaa9",
                    "id-11134207-81zth-mezx0nn979cfcc"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.888888888888889,
                "rating_count": [
                  9,
                  0,
                  0,
                  0,
                  1,
                  8
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 2
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": true,
              "shop_location": "Jakarta Utara",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 794368789774336,
                "price": 14105000000,
                "strikethrough_price": 15500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-9%",
                "model_id": 301696815408,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 15500000000,
                "model_selection_logic": 3,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 18,
                "rounded_local_monthly_sold_count": 6,
                "local_monthly_sold_count_text": "6",
                "rounded_display_sold_count": 18,
                "display_sold_count_text": "18"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Jktmanshop",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41920791069,
            "shopid": 18476381,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztd-mezwt7ixjpc87f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,1000167,2023641,700700063,2018619,1049122,1059152,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,825465608494624,298463379,1718093079,1119699,700765096,1400285055,298933384,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":835,\"model_id\":301696815408,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztd-mezwt7ixjpc87f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,1000167,2023641,700700063,2018619,1049122,1059152,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,825465608494624,298463379,1718093079,1119699,700765096,1400285055,298933384,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":835,\"model_id\":301696815408,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41920791069",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44270710999,
              "shopid": 1485723077,
              "name": "Lucu Silicone Strap for Apple Watch IWatch Series 11 10 9 8 7 6 SE Ultra 3 2 49 46 42 45 44 42 41 40 38mm Soft Engraved Women Rubber Flower Printed Band Wristbands for Tali Jam Tangan Smartwatch T900 T800 Ultra I8 Pro Max S8 S9 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931064601283,
                844931086908638,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                840990690654214,
                840955085144628,
                2048660,
                2048661,
                298888358,
                298938357,
                700765096,
                1718088045,
                2098629,
                298468389,
                2098628,
                298938368
              ],
              "image": "sg-11134201-824ja-mezd4qs95clpd9",
              "images": [
                "sg-11134201-824ja-mezd4qs95clpd9",
                "sg-11134201-824hb-mezd4uvyus5n6b",
                "sg-11134201-824j8-mezd4x03mjns61",
                "sg-11134201-824ia-mezd4z4xdc7j63",
                "sg-11134201-824hf-mezd50ghnlzd03",
                "sg-11134201-824iv-mezd51fnnc3v5e",
                "sg-11134201-824iz-mezd52gdmsqwee",
                "sg-11134201-824gd-mezd53lkbzewc8",
                "sg-11134201-824gq-mezd5533rm6k95"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758608448,
              "sold": 3,
              "historical_sold": 5,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1999000000,
              "price_min": 1999000000,
              "price_max": 1999000000,
              "price_min_before_discount": 3580000000,
              "price_max_before_discount": 3580000000,
              "hidden_price_display": null,
              "price_before_discount": 3580000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-44%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Eco Teal(strap)",
                    "Smoke(strap)",
                    "Star(strap)",
                    "Cactus(strap)",
                    "Brown(strap)",
                    "Pink Sands(strap)",
                    "Black(strap)",
                    "White(strap)"
                  ],
                  "images": [
                    "sg-11134201-824ir-mezd5hl2xq1a6b",
                    "sg-11134201-824gh-mezd5hv1zfv114",
                    "sg-11134201-824id-mezd5ia3lkw8e0",
                    "sg-11134201-824i4-mezd5is32knj3d",
                    "sg-11134201-824he-mezd5j9jrx8s5e",
                    "sg-11134201-824j3-mezd5jt5w2z1ac",
                    "sg-11134201-824g9-mezd5kb36gi029",
                    "sg-11134201-824gh-mezd5kmdwmq354"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "49/46/45/44/(S3)42mm",
                    "41/40/38/42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 393092813566800,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 744055084991488,
                "price": 1999000000,
                "strikethrough_price": 3580000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-44%",
                "model_id": 306690805704,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3580000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 5,
                "rounded_local_monthly_sold_count": 3,
                "local_monthly_sold_count_text": "3",
                "rounded_display_sold_count": 5,
                "display_sold_count_text": "5"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44270710999,
            "shopid": 1485723077,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824ja-mezd4qs95clpd9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,840990690654214,840955085144628,2048660,2048661,298888358,298938357,700765096,1718088045,2098629,298468389,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":837,\"model_id\":306690805704,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824ja-mezd4qs95clpd9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,840990690654214,840955085144628,2048660,2048661,298888358,298938357,700765096,1718088045,2098629,298468389,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":837,\"model_id\":306690805704,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44270710999",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 44170706839,
              "shopid": 1485723077,
              "name": "Trail Loop Nylon Strap for Apple Watch Ultra 3 2 Iwatch Series 11 10 9 8 7 6 5 4 SE 3 2 1 49 45 46 42 38 40 41 44mm Sport Band Belt Bracelet Wristbands Accessories for Tali Jam Tangan Smartwatch T900 T800 Ultra I8 Pro Max S8 S9 Ultra 8 MAX 9 PRO S20 T500",
              "label_ids": [
                2018619,
                2023641,
                1718087960,
                1428713,
                844931086908638,
                844931064601283,
                298463379,
                1059152,
                1059154,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1718093079,
                1119699,
                840990690654214,
                840955085144628,
                2048660,
                2048661,
                298888358,
                298938357,
                700765096,
                298933384,
                298623321,
                998091078,
                1993623,
                2103651,
                2143613,
                1015914,
                700190087,
                1718088045,
                2098628,
                298468389,
                298938368,
                2098629
              ],
              "image": "sg-11134201-824gy-mezd4sms0rnw83",
              "images": [
                "sg-11134201-824gy-mezd4sms0rnw83",
                "sg-11134201-824hz-mezd4ukajqq725",
                "sg-11134201-824in-mezd4vd9xte731",
                "sg-11134201-824gh-mezd4wh2xjpq8d",
                "sg-11134201-824gi-mezd4xoih72i33",
                "sg-11134201-824ia-mezd4ykgcn4cd4",
                "sg-11134201-824i5-mezd4zu7pjwpdf",
                "sg-11134201-824jf-mezd50ny55ai95",
                "sg-11134201-824j7-mezd51i30dmyc3"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758608443,
              "sold": 14,
              "historical_sold": 23,
              "liked": false,
              "liked_count": 2,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 6,
              "flag": 196608,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2365400000,
              "price_min": 2365400000,
              "price_max": 2365400000,
              "price_min_before_discount": 4780000000,
              "price_max_before_discount": 4780000000,
              "hidden_price_display": null,
              "price_before_discount": 4780000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-51%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": [
                {
                  "video_id": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16000081704176057.mp4",
                  "thumb_url": "sg-11110106-7rbk7-lq061z1k28mz24",
                  "duration": 21,
                  "version": 2,
                  "vid": "sg-11110106-6khx9-lq061v73oig0c9",
                  "formats": [
                    {
                      "format": 1600322,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16003221721516676.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16003221721516676.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600408,
                      "defn": "V360P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16004081740781946.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16004081740781946.mp4",
                      "width": 360,
                      "height": 360
                    },
                    {
                      "format": 1600673,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16006731724808594.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16006731724808594.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600671,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16006711723489831.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16006711723489831.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600659,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16006591721245596.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16006591721245596.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600409,
                      "defn": "V540P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16004091721245590.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16004091721245590.mp4",
                      "width": 540,
                      "height": 540
                    },
                    {
                      "format": 1600008,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16000081704176057.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16000081704176057.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600324,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16003241709327140.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16003241709327140.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600325,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16003251709327140.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16003251709327140.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600410,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16004101740781946.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16004101740781946.mp4",
                      "width": 720,
                      "height": 720
                    },
                    {
                      "format": 1600411,
                      "defn": "V720P",
                      "profile": "MP4",
                      "path": "api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16004111721245596.mp4",
                      "url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.16004111721245596.mp4",
                      "width": 720,
                      "height": 720
                    }
                  ],
                  "default_format": {
                    "format": 1600323,
                    "defn": "V540P",
                    "profile": "MP4",
                    "path": "",
                    "url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6khx9-lq061v73oig0c9.default.mp4",
                    "width": 540,
                    "height": 540
                  },
                  "mms_data": null
                }
              ],
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Beige(strap)",
                    "Black Gray(strap)",
                    "khaki(strap)",
                    "black(strap)",
                    "blue(strap)",
                    "green(strap)",
                    "star(strap)",
                    "Dark blue(strap)",
                    "Grey Green(strap)",
                    "Orange light(strap)",
                    "midnight(strap)"
                  ],
                  "images": [
                    "sg-11134201-824h5-mezd5e16lrf2a3",
                    "sg-11134201-824gb-mezd5eddzojxdd",
                    "sg-11134201-824gj-mezd5epjxmof37",
                    "sg-11134201-824j0-mezd5f58ykgd62",
                    "sg-11134201-824gj-mezd5fsa52xb94",
                    "sg-11134201-824i7-mezd5g9p37yk09",
                    "sg-11134201-824ij-mezd5gwndqtq90",
                    "sg-11134201-824in-mezd5h7j4kjt56",
                    "sg-11134201-824gu-mezd5hfcu8srd6",
                    "sg-11134201-824gp-mezd5hmvmm1780",
                    "sg-11134201-824h0-mezd5hxmnimm61"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "41/40/38/42mm",
                    "49/46/45/44/(S3)42mm"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 4.833333333333333,
                "rating_count": [
                  6,
                  0,
                  0,
                  0,
                  1,
                  5
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 393092813566800,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": true,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 324,
                "promotion_id": 10000010030,
                "price": 2365400000,
                "strikethrough_price": 4780000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-51%",
                "model_id": 296690794976,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4780000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 23,
                "rounded_local_monthly_sold_count": 14,
                "local_monthly_sold_count_text": "14",
                "rounded_display_sold_count": 23,
                "display_sold_count_text": "23"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "DMVEIMAL",
              "shop_icon": null,
              "is_lowest_price": true,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 44170706839,
            "shopid": 1485723077,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824gy-mezd4sms0rnw83\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,840990690654214,840955085144628,2048660,2048661,298888358,298938357,700765096,298933384,298623321,998091078,1993623,2103651,2143613,1015914,700190087,1718088045,2098628,298468389,298938368,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":838,\"model_id\":296690794976,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824gy-mezd4sms0rnw83\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931086908638,844931064601283,298463379,1059152,1059154,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,840990690654214,840955085144628,2048660,2048661,298888358,298938357,700765096,298933384,298623321,998091078,1993623,2103651,2143613,1015914,700190087,1718088045,2098628,298468389,298938368,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":838,\"model_id\":296690794976,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_44170706839",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40670700429,
              "shopid": 1628289636,
              "name": "R220 SPORT DUAL TONE Silikon Strap for Samsung Galaxy Fit2 (FIT 2) Tali Jam Silicone Smartwatch",
              "label_ids": [
                700700063,
                844931064601283,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                825465608493600,
                2023641,
                2018619,
                298463379,
                1718093079,
                1059152,
                1059154,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-824i5-mezb41nuek9908",
              "images": [
                "sg-11134201-824i5-mezb41nuek9908",
                "sg-11134201-824g8-mezb41q6ztvt26",
                "sg-11134201-824il-mezb41od1y4qcb",
                "sg-11134201-824jd-mezb41pxxy4t62",
                "sg-11134201-824g5-mezb41o8j1u72a",
                "sg-11134201-824iq-mezb41o4fk7h99",
                "sg-11134201-824jl-mezb41obx7nybf",
                "sg-11134201-824i5-mezb41p4hgy2a4",
                "sg-11134201-824im-mezb41tj1zbj23"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758605506,
              "sold": 1,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2500000000,
              "price_min": 2500000000,
              "price_max": 2500000000,
              "price_min_before_discount": 2990000000,
              "price_max_before_discount": 2990000000,
              "hidden_price_display": null,
              "price_before_discount": 2990000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-16%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "COLOR VARIANT",
                  "options": [
                    "BLUE WHITE",
                    "GREY BLUE",
                    "GREEN WHITE",
                    "BLACK BLUE",
                    "BLACK GREY",
                    "BLACK GREEN",
                    "BLACK YELLOW",
                    "BLACK RED",
                    "BLACK WHITE",
                    "PINK WHITE"
                  ],
                  "images": [
                    "sg-11134201-824j3-mezb41dz51xpdb",
                    "sg-11134201-824ig-mezb41dioaa047",
                    "sg-11134201-824ha-mezb41dlafwu3c",
                    "sg-11134201-824iu-mezb41erz3m7b7",
                    "sg-11134201-824ja-mezb41ecagwc5b",
                    "sg-11134201-824gm-mezb41dp41zhf8",
                    "sg-11134201-824iu-mezb41d9p98t3c",
                    "sg-11134201-824i1-mezb41ejgvt8d8",
                    "sg-11134201-824gl-mezb41dyeeq05d",
                    "sg-11134201-824g6-mezb41bfoirt56"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 799863218946048,
                "price": 2500000000,
                "strikethrough_price": 2990000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-16%",
                "model_id": 301690240011,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 2990000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gloopz",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40670700429,
            "shopid": 1628289636,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824i5-mezb41nuek9908\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,822059908662278,825465608499232,825465608497696,1119699,825465608493600,2023641,2018619,298463379,1718093079,1059152,1059154,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":840,\"model_id\":301690240011,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824i5-mezb41nuek9908\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,822059908662278,825465608499232,825465608497696,1119699,825465608493600,2023641,2018619,298463379,1718093079,1059152,1059154,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":840,\"model_id\":301690240011,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40670700429",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26441995683,
              "shopid": 1628289636,
              "name": "SIKAI ANTI GORES 3D CURVED MiBand 6/5 Full Cover Screen Protector for Xiaomi Mi Band 6 5",
              "label_ids": [
                700700063,
                844931064601283,
                700005490,
                700005495,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                825465608493600,
                2023641,
                2018619,
                298463379,
                1718093079,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-824ii-mezb5xh65ngp34",
              "images": [
                "sg-11134201-824ii-mezb5xh65ngp34",
                "sg-11134201-824gc-mezb5xg3vpxlb3",
                "sg-11134201-824g9-mezb5xh11n2gcf",
                "sg-11134201-824gl-mezb5xj9gnii36",
                "sg-11134201-824gr-mezb5xg30rv06c",
                "sg-11134201-824j9-mezb5xk4vg97bd",
                "sg-11134201-824jh-mezb5xjec8i139",
                "sg-11134201-824g5-mezb5xj0rggb71",
                "sg-11134201-824hx-mezb5xf47uvfdc"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758605570,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1000000000,
              "price_min": 1000000000,
              "price_max": 1000000000,
              "price_min_before_discount": 1750000000,
              "price_max_before_discount": 1750000000,
              "hidden_price_display": null,
              "price_before_discount": 1750000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-43%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 799863218946048,
                "price": 1000000000,
                "strikethrough_price": 1750000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-43%",
                "model_id": 296690237787,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1750000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gloopz",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26441995683,
            "shopid": 1628289636,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824ii-mezb5xh65ngp34\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,700005490,700005495,822059908662278,825465608499232,825465608497696,1119699,825465608493600,2023641,2018619,298463379,1718093079,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":839,\"model_id\":296690237787,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824ii-mezb5xh65ngp34\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,700005490,700005495,822059908662278,825465608499232,825465608497696,1119699,825465608493600,2023641,2018619,298463379,1718093079,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":839,\"model_id\":296690237787,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26441995683",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40520694000,
              "shopid": 1628289636,
              "name": "Stainless Milan Strap 20MM for Amazfit GTS 2 3 4 Mini/ BIP U Lite/ Galaxy Watch 5 4/ Huawei GT3 GT2 42mm / GTR Mini (Tali Jam)",
              "label_ids": [
                700700063,
                844931064601283,
                700005495,
                700005490,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                825465608493600,
                2023641,
                2018619,
                298463379,
                1718093079,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824ia-mezb2o7ltxjh0f",
              "images": [
                "sg-11134201-824ia-mezb2o7ltxjh0f",
                "sg-11134201-824i7-mezb2o85t5vwa8",
                "sg-11134201-824he-mezb2odmjh8pf5",
                "sg-11134201-824hx-mezb2oc2jsaz3c",
                "sg-11134201-824hl-mezb2o9k2brhbc",
                "sg-11134201-824h2-mezb2o9j62a023",
                "sg-11134201-824h0-mezb2odg543wb4",
                "sg-11134201-824h9-mezb2o8ubaj321",
                "sg-11134201-824ih-mezb2o8q0qh9cf"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758605223,
              "sold": 2,
              "historical_sold": 2,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3990000000,
              "price_min": 3990000000,
              "price_max": 3990000000,
              "price_min_before_discount": 9500000000,
              "price_max_before_discount": 9500000000,
              "hidden_price_display": null,
              "price_before_discount": 9500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-58%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "COLOR VARIANT",
                  "options": [
                    "BLACK",
                    "SILVER",
                    "GOLD",
                    "ROSE GOLD",
                    "ROSE PINK"
                  ],
                  "images": [
                    "sg-11134201-824ja-mezb2o00nvnt65",
                    "sg-11134201-824ho-mezb2nzfy1oq99",
                    "sg-11134201-824h7-mezb2o0g8du537",
                    "sg-11134201-824gb-mezb2o0i0ydm8e",
                    "sg-11134201-824g5-mezb2nzxyyh445"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 799863218946048,
                "price": 3990000000,
                "strikethrough_price": 9500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-58%",
                "model_id": 276690200731,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 9500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 2,
                "rounded_local_monthly_sold_count": 2,
                "local_monthly_sold_count_text": "2",
                "rounded_display_sold_count": 2,
                "display_sold_count_text": "2"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gloopz",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40520694000,
            "shopid": 1628289636,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824ia-mezb2o7ltxjh0f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,700005495,700005490,822059908662278,825465608497696,825465608499232,1119699,825465608493600,2023641,2018619,298463379,1718093079,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":841,\"model_id\":276690200731,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824ia-mezb2o7ltxjh0f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,700005495,700005490,822059908662278,825465608497696,825465608499232,1119699,825465608493600,2023641,2018619,298463379,1718093079,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":841,\"model_id\":276690200731,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40520694000",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40770689520,
              "shopid": 1628289636,
              "name": "Armor 2in1 Rubber Strap with Bumper Case Cover for Fitbit Charge 3 4 5 (Tali Jam Silikon dengan Casing)",
              "label_ids": [
                700700063,
                844931064601283,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                825465608493600,
                2023641,
                2018619,
                298463379,
                1718093079,
                1059152,
                1059154,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-824ia-mezaeg0e9g5pcc",
              "images": [
                "sg-11134201-824ia-mezaeg0e9g5pcc",
                "sg-11134201-824gs-mezaeg254bgs68",
                "sg-11134201-824ij-mezaeg0v49hn4d",
                "sg-11134201-824he-mezaeg1lnfny29",
                "sg-11134201-824i4-mezaeg0t4ky125",
                "sg-11134201-824gr-mezaeg1sh91p17",
                "sg-11134201-824iq-mezaeg1o14b02a",
                "sg-11134201-824jl-mezaeg2r7cwda1",
                "sg-11134201-824hg-mezaeg40p8nh28"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758604487,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1990000000,
              "price_min": 1990000000,
              "price_max": 1990000000,
              "price_min_before_discount": 3500000000,
              "price_max_before_discount": 3500000000,
              "hidden_price_display": null,
              "price_before_discount": 3500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-43%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "COLOR VARIANT",
                  "options": [
                    "TRANSPARENT",
                    "GREY",
                    "BLACK",
                    "LIGHT PINK",
                    "LIGHT PURPLE",
                    "RED",
                    "NAVY BLUE",
                    "ORANGE",
                    "PINE GREEN",
                    "WHITE"
                  ],
                  "images": [
                    "sg-11134201-824je-mezaeft29hqj55",
                    "sg-11134201-824h2-mezaefruhgjye3",
                    "sg-11134201-824im-mezaeft2cavf28",
                    "sg-11134201-824ge-mezaefs5epzcab",
                    "sg-11134201-824gx-mezaeft0702692",
                    "sg-11134201-824in-mezaefrfgnwv73",
                    "sg-11134201-824jg-mezaefrug1zi45",
                    "sg-11134201-824iz-mezaefsh5ki47d",
                    "sg-11134201-824i8-mezaefrxyh3fb1",
                    "sg-11134201-824jc-mezaefsr7z0s42"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 799863218946048,
                "price": 1990000000,
                "strikethrough_price": 3500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-43%",
                "model_id": 276690088984,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gloopz",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40770689520,
            "shopid": 1628289636,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824ia-mezaeg0e9g5pcc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,822059908662278,825465608499232,825465608497696,1119699,825465608493600,2023641,2018619,298463379,1718093079,1059152,1059154,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":842,\"model_id\":276690088984,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824ia-mezaeg0e9g5pcc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,822059908662278,825465608499232,825465608497696,1119699,825465608493600,2023641,2018619,298463379,1718093079,1059152,1059154,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":842,\"model_id\":276690088984,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40770689520",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26741981703,
              "shopid": 1628289636,
              "name": "Curved Anti Gores 3D Full Cover for Haylou LS05 Screen Protector LS 05",
              "label_ids": [
                700700063,
                844931064601283,
                700005495,
                700005490,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                825465608493600,
                2023641,
                2018619,
                298463379,
                1718093079,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-824hg-mez9pc5k1r7wea",
              "images": [
                "sg-11134201-824hg-mez9pc5k1r7wea",
                "sg-11134201-824g7-mez9pc5rkt8u4b",
                "sg-11134201-824h1-mez9pc6cgcnf24",
                "sg-11134201-824g0-mez9pc6hwyks70",
                "sg-11134201-824g2-mez9pc68zc3u7c",
                "sg-11134201-824jh-mez9pc6y3xu455",
                "sg-11134201-824gh-mez9pc7w1ybw27",
                "sg-11134201-824h6-mez9pc7sdyiw29",
                "sg-11134201-824ge-mez9pc6quo7d52"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758603524,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 1250000000,
              "price_min": 1250000000,
              "price_max": 1250000000,
              "price_min_before_discount": 1990000000,
              "price_max_before_discount": 1990000000,
              "hidden_price_display": null,
              "price_before_discount": 1990000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-37%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 799863218946048,
                "price": 1250000000,
                "strikethrough_price": 1990000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-37%",
                "model_id": 261690232055,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 1990000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gloopz",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26741981703,
            "shopid": 1628289636,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824hg-mez9pc5k1r7wea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,700005495,700005490,822059908662278,825465608499232,825465608497696,1119699,825465608493600,2023641,2018619,298463379,1718093079,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":843,\"model_id\":261690232055,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824hg-mez9pc5k1r7wea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,700005495,700005490,822059908662278,825465608499232,825465608497696,1119699,825465608493600,2023641,2018619,298463379,1718093079,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":843,\"model_id\":261690232055,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26741981703",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 41770695475,
              "shopid": 1628289636,
              "name": "Charger Cable USB 1M for Fitbit Luxe / Charge 5 (Magnetic Charging Kabel)",
              "label_ids": [
                700700063,
                844931064601283,
                700005490,
                700005495,
                822059908662278,
                825465608499232,
                825465608497696,
                1119699,
                825465608493600,
                2023641,
                2018619,
                298463379,
                1718093079,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824i7-mez99h3neih4ed",
              "images": [
                "sg-11134201-824i7-mez99h3neih4ed",
                "sg-11134201-824ic-mez99h23x2x60e",
                "sg-11134201-824gz-mez99h39igb15f",
                "sg-11134201-824gw-mez99h3hxuyy02",
                "sg-11134201-824h3-mez99h2tpiq18f",
                "sg-11134201-824j9-mez99h1ze51k39",
                "sg-11134201-824i1-mez99h2mkgsr3a",
                "sg-11134201-824ie-mez99h3s78r312",
                "sg-11134201-824jb-mez99h3a4vt68a"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758602368,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 3900000000,
              "price_min": 3900000000,
              "price_max": 3900000000,
              "price_min_before_discount": 4500000000,
              "price_max_before_discount": 4500000000,
              "hidden_price_display": null,
              "price_before_discount": 4500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-13%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "",
                  "options": [
                    ""
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 799863218946048,
                "price": 3900000000,
                "strikethrough_price": 4500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-13%",
                "model_id": 216279070445,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gloopz",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 41770695475,
            "shopid": 1628289636,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824i7-mez99h3neih4ed\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,700005490,700005495,822059908662278,825465608499232,825465608497696,1119699,825465608493600,2023641,2018619,298463379,1718093079,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":844,\"model_id\":216279070445,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824i7-mez99h3neih4ed\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,700005490,700005495,822059908662278,825465608499232,825465608497696,1119699,825465608493600,2023641,2018619,298463379,1718093079,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":844,\"model_id\":216279070445,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_41770695475",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 29591991060,
              "shopid": 1592030327,
              "name": "22mm 20mm Quick Release Nylon Strap for Samsung Watch Galaxy Watch 7 6 5 4 FE Nyaman Band Tali Jam Tangan Smartwatch for Garmin /Huawei GT 5 4 3 2 /Amazfit Bip 6 GTS GTR /Xiaomi/ Active/Redmi Watch 5 Active/5 Lite/Itel 011 12/Aolon/advan",
              "label_ids": [
                1718087960,
                1428713,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608494624,
                825465608499232,
                825465608497696,
                1119699,
                2023641,
                2018619,
                2048660,
                2048661,
                840955085144628,
                840990690654214,
                700765096,
                1400285055,
                298933384,
                2103651,
                2143613,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824hg-mez87q0ut79n87",
              "images": [
                "sg-11134201-824hg-mez87q0ut79n87",
                "sg-11134201-824g9-mez87qpxqhhpf1",
                "sg-11134201-824h1-mez87r88k8i6fd",
                "sg-11134201-824gb-mez87rs1wavgd3",
                "sg-11134201-824ih-mez87salrz7ud8",
                "sg-11134201-824ii-mez87sqqstu4c4",
                "sg-11134201-824hr-mez87t4g85xma8",
                "sg-11134201-824h3-mez87tgcnf2ka9",
                "sg-11134201-824il-mez87tw3bb4df0"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758600166,
              "sold": 1,
              "historical_sold": 3,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 2,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2236000000,
              "price_min": 2236000000,
              "price_max": 2236000000,
              "price_min_before_discount": 4860000000,
              "price_max_before_discount": 4860000000,
              "hidden_price_display": null,
              "price_before_discount": 4860000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "Starlight(Strap)",
                    "Blue(Strap)",
                    "Rainbow(Strap)",
                    "Charcoal(Strap)",
                    "Navy Blue(Strap)",
                    "Olive green(Strap)",
                    "Plum(Strap)",
                    "Pomegranate(Strap)",
                    "Smoke purple(Strap)",
                    "Red(Strap)",
                    "Indigo blue(Strap)",
                    "Hibiscus pink(Strap)",
                    "black(Strap)",
                    "white(Strap)",
                    "Pearl pink(Strap)",
                    "army green(Strap)",
                    "Red&Black(Strap)",
                    "Dark Black(Strap)",
                    "Black&Red(Strap)",
                    "Sea shell(Strap)",
                    "Pink sand(Strap)",
                    "Midnight(Strap)",
                    "Milk(Strap)",
                    "Rose pink(Strap)"
                  ],
                  "images": [
                    "sg-11134201-824gb-mez886tmh5hm27",
                    "sg-11134201-824gn-mez887f585qge1",
                    "sg-11134201-824go-mez887xd8tfvca",
                    "sg-11134201-824go-mez888en9yx77c",
                    "sg-11134201-824i1-mez888zfhszz18",
                    "sg-11134201-824i4-mez889ie06q7b1",
                    "sg-11134201-824gs-mez88a1yd6h8ea",
                    "sg-11134201-824hz-mez88aies5cab6",
                    "sg-11134201-824ht-mez88b1kwhe551",
                    "sg-11134201-824jg-mez88bkfe51l57",
                    "sg-11134201-824gn-mez88c7q90cr27",
                    "sg-11134201-824i9-mez88crhd0cv40",
                    "sg-11134201-824ib-mez88dabry1b11",
                    "sg-11134201-824ir-mez88dte3xu007",
                    "sg-11134201-824h4-mez88eagasr297",
                    "sg-11134201-824jd-mez88es96cy17f",
                    "sg-11134201-824hk-mez88fax8c2606",
                    "sg-11134201-824j5-mez88fsd2s5p3f",
                    "sg-11134201-824ha-mez88ga5lp8u11",
                    "sg-11134201-824hh-mez88gqozgugd5",
                    "sg-11134201-824ik-mez88hbuwc9409",
                    "sg-11134201-824iv-mez88hrpnrikc2",
                    "sg-11134201-824j1-mez88i7ehog990",
                    "sg-11134201-824iw-mez88ip9sf0o48"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "20mm watch strap",
                    "22mm watch strap"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  2,
                  0,
                  0,
                  0,
                  0,
                  2
                ],
                "rcount_with_context": 1,
                "rcount_with_image": 1
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359074252468611,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2236000000,
                "strikethrough_price": 4860000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 301689478625,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4860000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 22.360",
                      "hidden_promotion_price": "Rp ?2.360",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 3,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 3,
                "display_sold_count_text": "3"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANSLOOP Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 29591991060,
            "shopid": 1592030327,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824hg-mez87q0ut79n87\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,2023641,2018619,2048660,2048661,840955085144628,840990690654214,700765096,1400285055,298933384,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":846,\"model_id\":301689478625,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824hg-mez87q0ut79n87\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,2023641,2018619,2048660,2048661,840955085144628,840990690654214,700765096,1400285055,298933384,2103651,2143613,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":846,\"model_id\":301689478625,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_29591991060",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 26291979902,
              "shopid": 1592030327,
              "name": "22mm 20mm Nylon Strap for Samsung Watch Galaxy Watch 7 6 5 4 FE Quick Release Elastic Band Tali Jam Tangan Smartwatch for Garmin /Huawei GT 5 4 3 2 /Amazfit GTS GTR /Xiaomi/ Active/Redmi Watch 5 Active/5 Lite/Itel 011 12/Aolon/advan",
              "label_ids": [
                1428713,
                1718087960,
                844931064601283,
                298463379,
                1059152,
                1059154,
                1718093079,
                822059908662278,
                825465608497696,
                825465608494624,
                825465608499232,
                1119699,
                2023641,
                2018619,
                840990690654214,
                2048660,
                2048661,
                840955085144628,
                700765096,
                298468389,
                1718088045
              ],
              "image": "sg-11134201-824iy-mez87q83os94aa",
              "images": [
                "sg-11134201-824iy-mez87q83os94aa",
                "sg-11134201-824it-mez87qz8ts7hff",
                "sg-11134201-824ja-mez87rg743677c",
                "sg-11134201-824it-mez87rzn6kg840",
                "sg-11134201-824jk-mez87sf7ak9aa1",
                "sg-11134201-824j5-mez87sxrhdzefa",
                "sg-11134201-824j6-mez87tj3zndbe4",
                "sg-11134201-824gs-mez87u4ka5u777",
                "sg-11134201-824iq-mez87umkxamgfb"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758600167,
              "sold": 1,
              "historical_sold": 1,
              "liked": false,
              "liked_count": 1,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 1,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2070000000,
              "price_min": 2070000000,
              "price_max": 2070000000,
              "price_min_before_discount": 4500000000,
              "price_max_before_discount": 4500000000,
              "hidden_price_display": null,
              "price_before_discount": 4500000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-54%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "color",
                  "options": [
                    "White(Strap)",
                    "Black(Strap)",
                    "Grey(Strap)",
                    "Pink sand(Strap)",
                    "Red(Strap)",
                    "Bohemia color(Strap)",
                    "Bohemia strip(Strap)",
                    "Midnight(Strap)",
                    "Army Green(Strap)",
                    "Wine red(Strap)",
                    "brown cheetah(Strap)",
                    "Green Arrow(Strap)",
                    "Bohemia balck(Strap)",
                    "purple(Strap)",
                    "tourquise(Strap)",
                    "Dark Gray(Strap)",
                    "lilac(Strap)",
                    "Zebra white(Strap)",
                    "Navy Blue(Strap)",
                    "Deep black(Strap)",
                    "Pink(Strap)",
                    "Rainbow(Strap)"
                  ],
                  "images": [
                    "sg-11134201-824ij-mez887bp5bt64c",
                    "sg-11134201-824g5-mez887rebxfu9a",
                    "sg-11134201-824h0-mez8887zqqkub3",
                    "sg-11134201-824ik-mez888pty232ae",
                    "sg-11134201-824hd-mez8896rndosa6",
                    "sg-11134201-824gv-mez889g926tnca",
                    "sg-11134201-824hf-mez889yypo2552",
                    "sg-11134201-824h7-mez88aime3nz76",
                    "sg-11134201-824hg-mez88b0kdo9bf2",
                    "sg-11134201-824hk-mez88bj40x7329",
                    "sg-11134201-824ja-mez88c14776645",
                    "sg-11134201-824iw-mez88clqixhq85",
                    "sg-11134201-824j3-mez88cxjqyh4e4",
                    "sg-11134201-824hj-mez88dgj00zwe6",
                    "sg-11134201-824ir-mez88dywo9vxf6",
                    "sg-11134201-824gw-mez88eif7aj022",
                    "sg-11134201-824i8-mez88ezhnw95bc",
                    "sg-11134201-824hv-mez88fb3083x58",
                    "sg-11134201-824ie-mez88g11t5vtc1",
                    "sg-11134201-824hk-mez88ghx3cpb95",
                    "sg-11134201-824hk-mez88h2u9jbe13",
                    "sg-11134201-824ga-mez88hn4j9qga2"
                  ],
                  "properties": [],
                  "type": 0
                },
                {
                  "name": "size",
                  "options": [
                    "22mm Universal",
                    "20mm Universal"
                  ],
                  "images": null,
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 5,
                "rating_count": [
                  1,
                  0,
                  0,
                  0,
                  0,
                  1
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": {
                "bundle_deal_id": 359074252468611,
                "bundle_deal_label": "Pilih 2, diskon 1%"
              },
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 201,
                "promotion_id": 825875520618496,
                "price": 2070000000,
                "strikethrough_price": 4500000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-54%",
                "model_id": 296689478568,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 4500000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": {
                "label_type": 2,
                "exclusive_price_result": null,
                "deep_discount_skin": {
                  "skin_id": 75157,
                  "start_time": 1768323600,
                  "end_time": 1768409999,
                  "skin_data": {
                    "promo_label": {
                      "promotion_price": "Rp 20.700",
                      "hidden_promotion_price": "Rp ?0.700",
                      "text": null,
                      "start_time": 1768323600,
                      "end_time": 1768409999
                    }
                  }
                }
              },
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 1,
                "rounded_local_monthly_sold_count": 1,
                "local_monthly_sold_count_text": "1",
                "rounded_display_sold_count": 1,
                "display_sold_count_text": "1"
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "BANSLOOP Store",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 26291979902,
            "shopid": 1592030327,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824iy-mez87q83os94aa\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,1119699,2023641,2018619,840990690654214,2048660,2048661,840955085144628,700765096,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":845,\"model_id\":296689478568,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824iy-mez87q83os94aa\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,1119699,2023641,2018619,840990690654214,2048660,2048661,840955085144628,700765096,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":845,\"model_id\":296689478568,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_26291979902",
            "debug_info": null
          },
          {
            "item_basic": {
              "itemid": 40320673695,
              "shopid": 1628289636,
              "name": "XY20 Silikon Strap 20mm for Amazfit GTS 2 3 4 E Mini / BIP U S Lite PRO GTR42 / GTR Mini / Huawei 42mm (Tali Silicone Jam Silicon)",
              "label_ids": [
                700700063,
                844931064601283,
                700005490,
                700005495,
                822059908662278,
                825465608497696,
                825465608499232,
                1119699,
                825465608493600,
                2023641,
                2018619,
                298463379,
                1718093079,
                1718088045,
                298468389
              ],
              "image": "sg-11134201-824i8-mez6i2krucy425",
              "images": [
                "sg-11134201-824i8-mez6i2krucy425",
                "sg-11134201-824hp-mez6i2lpv6kt23",
                "sg-11134201-824ga-mez6i2n1cpamd6",
                "sg-11134201-824i8-mez6i2mccb9kea",
                "sg-11134201-824gs-mez6i2l3tjpq83"
              ],
              "currency": "IDR",
              "stock": 1,
              "status": 1,
              "ctime": 1758597525,
              "sold": 0,
              "historical_sold": 0,
              "liked": false,
              "liked_count": 0,
              "view_count": null,
              "catid": 100013,
              "brand": "",
              "cmt_count": 0,
              "flag": 131072,
              "cb_option": 0,
              "item_status": "normal",
              "price": 2500000000,
              "price_min": 2500000000,
              "price_max": 2500000000,
              "price_min_before_discount": 3000000000,
              "price_max_before_discount": 3000000000,
              "hidden_price_display": null,
              "price_before_discount": 3000000000,
              "has_lowest_price_guarantee": false,
              "show_discount": 0,
              "raw_discount": 0,
              "discount": "-17%",
              "is_category_failed": null,
              "size_chart": null,
              "video_info_list": null,
              "tier_variations": [
                {
                  "name": "COLOR VARIANT",
                  "options": [
                    "LIGHT GREEN",
                    "BLACK",
                    "RED",
                    "MIDNIGHT BLUE",
                    "ORANGE",
                    "PINK",
                    "WHITE",
                    "SKY BLUE",
                    "TEAL",
                    "PURPLE"
                  ],
                  "images": [
                    "sg-11134201-824i7-mez6i2cd95ag96",
                    "sg-11134201-824gp-mez6i2cv34eh55",
                    "sg-11134201-824h0-mez6i2cp9tsc8a",
                    "sg-11134201-824jg-mez6i2d7djpk4f",
                    "sg-11134201-824iq-mez6i2cf60p8ce",
                    "sg-11134201-824jl-mez6i2dku5n26b",
                    "sg-11134201-824im-mez6i2cazpxld2",
                    "sg-11134201-824g7-mez6i2dk94pa32",
                    "sg-11134201-824hr-mez6i2ckiexb70",
                    "sg-11134201-824hv-mez6i2cjxcei3c"
                  ],
                  "properties": [],
                  "type": 0
                }
              ],
              "item_rating": {
                "rating_star": 0,
                "rating_count": [
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                ],
                "rcount_with_context": 0,
                "rcount_with_image": 0
              },
              "item_type": 0,
              "reference_item_id": "",
              "transparent_background_image": "",
              "is_adult": false,
              "badge_icon_type": null,
              "shopee_verified": true,
              "is_official_shop": false,
              "show_official_shop_label": false,
              "show_shopee_verified_label": true,
              "show_official_shop_label_in_title": null,
              "is_cc_installment_payment_eligible": false,
              "is_non_cc_installment_payment_eligible": false,
              "coin_earn_label": null,
              "show_free_shipping": false,
              "preview_info": null,
              "coin_info": null,
              "exclusive_price_info": null,
              "bundle_deal_id": null,
              "can_use_bundle_deal": null,
              "bundle_deal_info": null,
              "is_group_buy_item": null,
              "has_group_buy_stock": null,
              "group_buy_info": null,
              "welcome_package_type": 0,
              "welcome_package_info": null,
              "add_on_deal_info": null,
              "can_use_wholesale": false,
              "is_preferred_plus_seller": false,
              "shop_location": "Jakarta Barat",
              "has_model_with_available_shopee_stock": null,
              "voucher_info": null,
              "can_use_cod": false,
              "is_on_flash_sale": false,
              "spl_installment_tenure": null,
              "is_live_streaming_price": null,
              "is_mart": false,
              "pack_size": null,
              "deep_discount_skin": null,
              "is_service_by_shopee": false,
              "spl_repayment_label_repayment": null,
              "spl_repayment_label_text": null,
              "highlight_video": null,
              "free_shipping_info": null,
              "global_sold_count": null,
              "wp_eligibility": null,
              "live_streaming_info": null,
              "non_wifi_highlight_video": null,
              "dynamic_ui_flag": null,
              "estimated_delivery_time": null,
              "adult_age_threshold": null,
              "need_kyc": false,
              "adult_types": null,
              "item_card_display_price": {
                "promotion_type": 301,
                "promotion_id": 799863218946048,
                "price": 2500000000,
                "strikethrough_price": 3000000000,
                "discount": 0,
                "hidden_price_display_text": null,
                "recommended_shop_voucher_promotion_id": null,
                "discount_text": "-17%",
                "model_id": 301688749626,
                "recommended_platform_voucher_promotion_id": null,
                "recommended_shop_voucher_info": null,
                "recommended_platform_voucher_info": null,
                "original_price": 3000000000,
                "model_selection_logic": 2,
                "final_price_icon": null
              },
              "item_card_display_label": null,
              "model_id": null,
              "is_shopee_choice": false,
              "item_card_display_sold_count": {
                "historical_sold_count": null,
                "monthly_sold_count": null,
                "historical_sold_count_text": null,
                "monthly_sold_count_text": null,
                "display_sold_count": 0,
                "rounded_local_monthly_sold_count": 0,
                "local_monthly_sold_count_text": "",
                "rounded_display_sold_count": 0,
                "display_sold_count_text": ""
              },
              "spl_installment_discount": null,
              "item_card_hidden_field": null,
              "compatible_with_user_vehicle": false,
              "item_card_display_overlay": null,
              "shop_name": "Gloopz",
              "shop_icon": null,
              "is_lowest_price": false,
              "name_tr": null,
              "shop_location_tr": null,
              "fbs_logo": null,
              "item_card_display_brand_info": null,
              "voucher_label_display_infos": null,
              "item_card_element_collection": null
            },
            "adsid": null,
            "campaignid": null,
            "distance": null,
            "match_type": null,
            "ads_keyword": null,
            "deduction_info": null,
            "collection_id": null,
            "display_name": null,
            "campaign_stock": null,
            "json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTM3LjE1MV97YjExYmEzYWY0ODU1ODE5NmFmNzlmMmVkZjQ3ZmI1MDA6MDIwMDAwMGVhZWY2NmEzMTowMTAwMDE1ZWFiNzM5ZDBkfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE1NTg0NzQ1MDIyNA==",
            "tracking_info": {
              "viral_spu_tracking": null,
              "business_tracking": null,
              "multi_search_tracking": null,
              "groupid": null,
              "ruleid": [
                0
              ]
            },
            "itemid": 40320673695,
            "shopid": 1628289636,
            "algo_image": null,
            "fe_flags": null,
            "item_type": 1,
            "foody_item": null,
            "search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824i8-mez6i2krucy425\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,700005490,700005495,822059908662278,825465608497696,825465608499232,1119699,825465608493600,2023641,2018619,298463379,1718093079,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":847,\"model_id\":301688749626,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824i8-mez6i2krucy425\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,844931064601283,700005490,700005495,822059908662278,825465608497696,825465608499232,1119699,825465608493600,2023641,2018619,298463379,1718093079,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":847,\"model_id\":301688749626,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
            "personalized_labels": null,
            "biz_json": "",
            "creative_image_id": null,
            "creative_id": null,
            "creative_id_int": null,
            "item_card_label_groups": null,
            "title_max_lines": null,
            "play_icon_ui_type": 1,
            "item_card_bottom_element": null,
            "video_card": null,
            "live_card": null,
            "item_card_element_collection": null,
            "item_card_price": null,
            "display_ad_tag": null,
            "traffic_source": 1,
            "live_card_item": null,
            "live_card_rcmd_label": null,
            "item_card_displayed_asset": null,
            "item_data": null,
            "ads_data_tms": "",
            "item_config": {
              "disable_model_id_to_pdp": false,
              "disable_image_to_pdp": false
            },
            "ctx_item_type": 1,
            "real_items": null,
            "v_model_id": null,
            "video_card_item": null,
            "ad_voucher_signature": null,
            "ui_info": null,
            "minifeed_card_detail": null,
            "topic_card_detail": null,
            "repeated_item_type": 0,
            "hashtag_card_detail": null,
            "item_unique_key": "0_40320673695",
            "debug_info": null
          }
        ],
        "total_fetched": 500,
        "total_count": 2500,
        "pages_fetched": 17,
        "has_more": false
      }
    }
  },
  "total_items": 1400,
  "total_shops": 4,
  "errors": []
}

5. Tokopedia PDP Beta

Scrape product detail from Tokopedia product pages. Single task per request. No Approval Required

Region: ID (Tokopedia Indonesia)

๐Ÿ”‘ Endpoint

POST /v1/tokopedia/pdp/submit
GET  /v1/tokopedia/pdp/retrieve/{task_id}

๐Ÿ“ฅ Request Body

ParameterTypeRequiredDescription
product_keystringYesTokopedia product key (slug or slug-id from the product URL)
shop_domainstringYesTokopedia shop domain (subdomain part of the shop URL)

๐Ÿ”— Finding product_key and shop_domain

From a Tokopedia product URL like:

https://www.tokopedia.com/novoidminds/no-void-minds-formlock-oversized-t-shirt-core-1729569390278181925
  • shop_domain = novoidminds (first path segment after domain)
  • product_key = no-void-minds-formlock-oversized-t-shirt-core-1729569390278181925 (second path segment)

๐Ÿ’ป Code Examples

# Submit Task
curl -X POST "https://nest-api.magpieiq.com/v1/tokopedia/pdp/submit" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "product_key": "no-void-minds-formlock-oversized-t-shirt-core-1729569390278181925",
    "shop_domain": "novoidminds"
  }'

# Retrieve Result (poll until status is "completed")
curl "https://nest-api.magpieiq.com/v1/tokopedia/pdp/retrieve/{task_id}" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
View Python Example
import requests
import time

API_HOST = "https://nest-api.magpieiq.com"
headers = {"Authorization": "Bearer YOUR_API_TOKEN", "Content-Type": "application/json"}

# Submit
resp = requests.post(f"{API_HOST}/v1/tokopedia/pdp/submit",
    json={
        "product_key": "no-void-minds-formlock-oversized-t-shirt-core-1729569390278181925",
        "shop_domain": "novoidminds"
    }, headers=headers)
task_id = resp.json()["task_id"]

# Poll until ready
while True:
    result = requests.get(f"{API_HOST}/v1/tokopedia/pdp/retrieve/{task_id}", headers=headers).json()
    if result.get("status") == "completed":
        print(result["result"])
        break
    time.sleep(5)

โšก Behavior

  • Cost: 1 credit per request (beta pricing)
  • Approval: NOT required - immediate processing
  • Processing: Single task per request
  • Results: Full product detail page data including variants, pricing, shop info, and brand
  • Batch: For multiple products, submit each separately (batch endpoint coming soon)

Result Example

Tokopedia PDP JSON Click to expand
[
  {
    "data": {
      "variants": {
        "basicInfo": {
          "id": 1234567890,
          "shopID": 987654,
          "alias": "no-void-minds-formlock-oversized-t-shirt-core",
          "createdAt": "2024-10-21T08:00:00Z",
          "category": {
            "detail": {
              "id": 1009,
              "name": "T-Shirt",
              "breadcrumbURL": "https://www.tokopedia.com/p/fashion-pria/kemeja"
            }
          },
          "stats": {
            "countView": 1500,
            "countReview": 42,
            "countTalk": 5,
            "rating": 4.8
          },
          "txStats": {
            "transactionSuccess": 120,
            "transactionReject": 3,
            "countSold": 120
          },
          "minOrder": 1,
          "maxOrder": 100,
          "weight": 0.2,
          "weightUnit": "kg",
          "url": "https://www.tokopedia.com/novoidminds/no-void-minds-formlock-oversized-t-shirt-core",
          "condition": "NEW",
          "status": "ACTIVE",
          "isLeasing": false,
          "catalogID": "",
          "menu": [
            {"name": "Fashion Pria"},
            {"name": "T-Shirt"}
          ],
          "productID": 1234567890,
          "needPrescription": false
        },
        "components": [
          {
            "type": "variant",
            "data": {
              "parentID": 1234567890,
              "children": [
                {"productID": 1234567891, "productName": "Formlock Oversized T-Shirt - Black / M"},
                {"productID": 1234567892, "productName": "Formlock Oversized T-Shirt - Black / L"},
                {"productID": 1234567893, "productName": "Formlock Oversized T-Shirt - White / M"}
              ]
            }
          },
          {
            "type": "highlight",
            "data": {
              "name": "NO VOID MINDS Formlock Oversized T-Shirt Core",
              "price": {
                "value": 145000,
                "currency": "IDR",
                "discPercentage": 20
              },
              "campaign": {
                "stock": 50,
                "discountedPrice": 116000,
                "percentageAmount": 20
              },
              "stock": {"value": 50},
              "isCOD": true,
              "isCashback": {"percentage": 5}
            }
          }
        ]
      },
      "product": {
        "basic": {
          "lastUpdatePrice": "2024-10-21T08:00:00Z",
          "sku": "NVM-FLK-001",
          "gtin": "",
          "isKreasiLokal": true,
          "isMustInsurance": false
        },
        "brand": {
          "brandID": 12345,
          "name": "NO VOID MINDS",
          "brandStatus": "ACTIVE",
          "isActive": true
        }
      },
      "shopInfo": {
        "result": {
          "goldOS": {
            "isGold": true,
            "isGoldBadge": true,
            "isOfficial": false,
            "title": "Power Merchant"
          },
          "shopLastActive": "2024-10-21T10:00:00Z",
          "location": "Jakarta Barat",
          "activeProduct": 45,
          "shippingLoc": {
            "districtName": "Kebon Jeruk",
            "cityName": "Jakarta Barat"
          },
          "shopCore": {
            "domain": "novoidminds",
            "shopID": 987654,
            "name": "NO VOID MINDS",
            "url": "https://www.tokopedia.com/novoidminds"
          },
          "favoriteData": {
            "totalFavorite": 1200
          },
          "statusInfo": {
            "shopStatus": "ACTIVE",
            "statusMessage": "",
            "statusTitle": ""
          }
        }
      }
    }
  }
]

6. Blibli PDP Beta

Scrape product detail from Blibli product pages. Single task per request. No Approval Required

Region: ID (Blibli Indonesia)

๐Ÿ”‘ Endpoint

POST /v1/blibli/pdp/submit
GET  /v1/blibli/pdp/retrieve/{task_id}

๐Ÿ“ฅ Request Body

ParameterTypeRequiredDescription
formattedIdstringYesBlibli formatted product ID (e.g. ps--16M-70001-00016)
skustringYesBlibli SKU (e.g. 16M-70001-00016-00001)
pickupPointCodestringNoBlibli pickup point code (e.g. PP-3491245)
idstringNoProduct ID used as the GCS filename key; defaults to sku

๐Ÿ”— Finding formattedId and sku

From a Blibli product URL like:

https://www.blibli.com/p/sample-product/ps--16M-70001-00016
  • formattedId = ps--16M-70001-00016 (last path segment)
  • sku = 16M-70001-00016-00001 (from product detail API or product variants)

๐Ÿ’ป Code Examples

# Submit Task
curl -X POST "https://nest-api.magpieiq.com/v1/blibli/pdp/submit" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "formattedId": "ps--16M-70001-00016",
    "sku": "16M-70001-00016-00001"
  }'

# Retrieve Result (poll until status is "completed")
curl "https://nest-api.magpieiq.com/v1/blibli/pdp/retrieve/{task_id}" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
View Python Example
import requests
import time

API_HOST = "https://nest-api.magpieiq.com"
headers = {"Authorization": "Bearer YOUR_API_TOKEN", "Content-Type": "application/json"}

# Submit
resp = requests.post(f"{API_HOST}/v1/blibli/pdp/submit",
    json={
        "formattedId": "ps--16M-70001-00016",
        "sku": "16M-70001-00016-00001"
    }, headers=headers)
task_id = resp.json()["task_id"]

# Poll until ready
while True:
    result = requests.get(f"{API_HOST}/v1/blibli/pdp/retrieve/{task_id}", headers=headers).json()
    if result.get("status") == "completed":
        print(result["result"])
        break
    time.sleep(5)

โšก Behavior

  • Cost: 1 credit per request (beta pricing)
  • Approval: NOT required - immediate processing
  • Processing: Single task per request
  • Results: Full product detail page data including variants, pricing, stock, and merchant info
  • Batch: For multiple products, submit each separately

Result Example

Blibli PDP JSON Click to expand
[
  {
    "status": "OK",
    "statusCode": 200,
    "message": null,
    "data": {
      "summary": {
        "id": "16M-70001-00016",
        "name": "Sample Blibli Product",
        "brand": {
          "id": "BR-001",
          "name": "Sample Brand"
        },
        "category": {
          "id": "CAT-001",
          "name": "Electronics"
        },
        "price": {
          "price": 1500000,
          "originalPrice": 2000000,
          "discountPercentage": 25,
          "currency": "IDR"
        },
        "stock": 50,
        "sold": 120,
        "rating": 4.8,
        "totalReview": 42,
        "merchant": {
          "id": "M-001",
          "name": "Sample Official Store",
          "type": "OFFICIAL"
        },
        "url": "https://www.blibli.com/p/sample-product/ps--16M-70001-00016",
        "condition": "NEW",
        "status": "ACTIVE"
      },
      "items": [
        {
          "id": "16M-70001-00016-00001",
          "sku": "16M-70001-00016-00001",
          "name": "Sample Product - Default Variant",
          "price": 1500000,
          "stock": 50,
          "sold": 120,
          "attributes": {
            "color": "Black",
            "size": "M"
          }
        }
      ],
      "specifications": [
        {
          "name": "Weight",
          "value": "0.5 kg"
        },
        {
          "name": "Dimensions",
          "value": "10 x 20 x 5 cm"
        }
      ]
    }
  }
]

7. Tokopedia Search Beta

Scrape product listings from Tokopedia search or category pages. Single task per request. No Approval Required

Region: ID (Tokopedia Indonesia)

๐Ÿ”‘ Endpoint

POST /v1/tokopedia/search/submit
GET  /v1/tokopedia/search/retrieve/{task_id}

๐Ÿ“ฅ Request Body

ParameterTypeRequiredDescription
list_typestringNosearch (default) or category
keywordstringYesSearch keyword (for search) or numeric category ID (for category)
categorystringConditionalCategory slug (required when list_type is category)
pminintegerNoMinimum price filter in IDR
product_limitintegerNoMax products to collect (default: 5000)

๐Ÿ’ป Code Examples

# Submit Search Task
curl -X POST "https://nest-api.magpieiq.com/v1/tokopedia/search/submit" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "list_type": "search",
    "keyword": "air purifier",
    "product_limit": 5000
  }'

# Submit Category Task
curl -X POST "https://nest-api.magpieiq.com/v1/tokopedia/search/submit" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "list_type": "category",
    "keyword": "3935",
    "category": "elektronik_alat-pendingin-ruangan_air-conditioner",
    "pmin": 1000000
  }'

# Retrieve Result (poll until status is "completed")
curl "https://nest-api.magpieiq.com/v1/tokopedia/search/retrieve/{task_id}" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
View Python Example
import requests
import time

API_HOST = "https://nest-api.magpieiq.com"
headers = {"Authorization": "Bearer YOUR_API_TOKEN", "Content-Type": "application/json"}

# Submit
resp = requests.post(f"{API_HOST}/v1/tokopedia/search/submit",
    json={"list_type": "search", "keyword": "air purifier"}, headers=headers)
task_id = resp.json()["task_id"]

# Poll until ready
while True:
    result = requests.get(f"{API_HOST}/v1/tokopedia/search/retrieve/{task_id}", headers=headers).json()
    if result.get("status") == "completed":
        print(result["result"])
        break
    time.sleep(5)

โšก Behavior

  • Cost: 1 credit per request (beta pricing)
  • Approval: NOT required - immediate processing
  • Processing: Single task per request
  • Results: Merged JSON of all product listings from search/category pages

Result Example

Tokopedia Search JSON Click to expand
[
  {
    "batch_id": "a1b2c3d4e5f6",
    "keyword": "air purifier",
    "list_type": "search",
    "products": [
      {
        "id": 1234567890,
        "name": "Sharp Air Purifier FP-J30EY",
        "price": 2500000,
        "original_price": 3000000,
        "discount_percentage": 17,
        "rating": 4.9,
        "review_count": 1250,
        "sold_count": 5000,
        "shop_id": 987654,
        "shop_name": "Sharp Official Store",
        "shop_domain": "sharp-official",
        "url": "https://www.tokopedia.com/sharp-official/sharp-air-purifier-fp-j30ey",
        "image_url": "https://images.tokopedia.net/img/example.jpg",
        "location": "Jakarta Pusat",
        "condition": "NEW",
        "free_shipping": true
      },
      {
        "id": 1234567891,
        "name": "Philips Air Purifier AC0820",
        "price": 1800000,
        "original_price": 2200000,
        "discount_percentage": 18,
        "rating": 4.8,
        "review_count": 890,
        "sold_count": 3200,
        "shop_id": 987655,
        "shop_name": "Philips Official Store",
        "shop_domain": "philips-official",
        "url": "https://www.tokopedia.com/philips-official/philips-air-purifier-ac0820",
        "image_url": "https://images.tokopedia.net/img/example2.jpg",
        "location": "Jakarta Barat",
        "condition": "NEW",
        "free_shipping": true
      }
    ],
    "total_products": 2
  }
]

8. Tokopedia Merchant Beta

Scrape all products from a Tokopedia merchant/shop. Single shop per request. No Approval Required

Region: ID (Tokopedia Indonesia)

๐Ÿ”‘ Endpoint

POST /v1/tokopedia/merchant/submit
GET  /v1/tokopedia/merchant/retrieve/{task_id}

๐Ÿ“ฅ Request Body

ParameterTypeRequiredDescription
shopidstringYesTokopedia shop ID
etalase_idstringNoEtalase ID filter (default: etalase)
keywordstringNoKeyword filter within the shop
max_pagesintegerNoMax pages to fetch (omit for all pages)

๐Ÿ’ป Code Examples

# Submit Task
curl -X POST "https://nest-api.magpieiq.com/v1/tokopedia/merchant/submit" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "shopid": "12345678",
    "max_pages": 5
  }'

# Retrieve Result (poll until status is "completed")
curl "https://nest-api.magpieiq.com/v1/tokopedia/merchant/retrieve/{task_id}" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
View Python Example
import requests
import time

API_HOST = "https://nest-api.magpieiq.com"
headers = {"Authorization": "Bearer YOUR_API_TOKEN", "Content-Type": "application/json"}

# Submit
resp = requests.post(f"{API_HOST}/v1/tokopedia/merchant/submit",
    json={"shopid": "12345678"}, headers=headers)
task_id = resp.json()["task_id"]

# Poll until ready
while True:
    result = requests.get(f"{API_HOST}/v1/tokopedia/merchant/retrieve/{task_id}", headers=headers).json()
    if result.get("status") == "completed":
        print(result["result"])
        break
    time.sleep(5)

โšก Behavior

  • Cost: 1 credit per request (beta pricing)
  • Approval: NOT required - immediate processing
  • Processing: Single shop per request
  • Results: All products from the shop, including pricing, stock, and product info

Result Example

Tokopedia Merchant JSON Click to expand
[
  {
    "shopid": "12345678",
    "store_name": "Nike Official Store",
    "batch_id": "a1b2c3d4e5f6",
    "products": [
      {
        "id": 9876543210,
        "name": "Nike Air Force 1 '07 - White",
        "price": 1299000,
        "original_price": 1599000,
        "discount_percentage": 19,
        "rating": 4.9,
        "review_count": 2100,
        "sold_count": 8500,
        "etalase": "Sepatu Pria",
        "url": "https://www.tokopedia.com/nike-official/nike-air-force-1-07-white",
        "image_url": "https://images.tokopedia.net/img/nike-af1.jpg",
        "condition": "NEW",
        "stock": 120
      },
      {
        "id": 9876543211,
        "name": "Nike Dunk Low Retro - Black White",
        "price": 1499000,
        "original_price": 1799000,
        "discount_percentage": 17,
        "rating": 4.8,
        "review_count": 1500,
        "sold_count": 4200,
        "etalase": "Sepatu Pria",
        "url": "https://www.tokopedia.com/nike-official/nike-dunk-low-retro-black-white",
        "image_url": "https://images.tokopedia.net/img/nike-dunk.jpg",
        "condition": "NEW",
        "stock": 85
      }
    ],
    "total_products": 2
  }
]

9. Blibli Merchant Beta

Scrape all products from a Blibli merchant/shop. Single shop per request. No Approval Required

Region: ID (Blibli Indonesia)

๐Ÿ”‘ Endpoint

POST /v1/blibli/merchant/submit
GET  /v1/blibli/merchant/retrieve/{task_id}

๐Ÿ“ฅ Request Body

ParameterTypeRequiredDescription
shopidstringYesBlibli merchant/shop ID
categoryidsstringNoComma-separated Blibli category IDs to filter by
keywordstringNoKeyword filter within the shop
brandstringNoBrand filter
limitintegerNoMax products to collect (default: 1500)

๐Ÿ’ป Code Examples

# Submit Task
curl -X POST "https://nest-api.magpieiq.com/v1/blibli/merchant/submit" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "shopid": "SAM-10001",
    "limit": 1500
  }'

# Retrieve Result (poll until status is "completed")
curl "https://nest-api.magpieiq.com/v1/blibli/merchant/retrieve/{task_id}" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
View Python Example
import requests
import time

API_HOST = "https://nest-api.magpieiq.com"
headers = {"Authorization": "Bearer YOUR_API_TOKEN", "Content-Type": "application/json"}

# Submit
resp = requests.post(f"{API_HOST}/v1/blibli/merchant/submit",
    json={"shopid": "SAM-10001"}, headers=headers)
task_id = resp.json()["task_id"]

# Poll until ready
while True:
    result = requests.get(f"{API_HOST}/v1/blibli/merchant/retrieve/{task_id}", headers=headers).json()
    if result.get("status") == "completed":
        print(result["result"])
        break
    time.sleep(5)

โšก Behavior

  • Cost: 1 credit per request (beta pricing)
  • Approval: NOT required - immediate processing
  • Processing: Single shop per request
  • Results: All products from the shop, including pricing, stock, brand, and merchant info

Result Example

Blibli Merchant JSON Click to expand
[
  {
    "shopid": "SAM-10001",
    "store_name": "Samsung Official Store",
    "batch_id": "a1b2c3d4e5f6",
    "products": [
      {
        "id": "PROD-001",
        "name": "Samsung Galaxy S24 Ultra 256GB",
        "price": 18999000,
        "original_price": 20999000,
        "discount_percentage": 10,
        "rating": 4.9,
        "review_count": 3500,
        "sold_count": 12000,
        "brand": "Samsung",
        "category": "Smartphone",
        "url": "https://www.blibli.com/p/samsung-galaxy-s24-ultra/ps--SAM-10001",
        "image_url": "https://www.blibli.com/images/example.jpg",
        "condition": "NEW",
        "stock": 200,
        "merchant": {
          "id": "SAM-10001",
          "name": "Samsung Official Store",
          "type": "OFFICIAL"
        }
      },
      {
        "id": "PROD-002",
        "name": "Samsung Galaxy Watch 6 Classic 47mm",
        "price": 5999000,
        "original_price": 6999000,
        "discount_percentage": 14,
        "rating": 4.8,
        "review_count": 890,
        "sold_count": 2300,
        "brand": "Samsung",
        "category": "Smartwatch",
        "url": "https://www.blibli.com/p/samsung-galaxy-watch-6/ps--SAM-10002",
        "image_url": "https://www.blibli.com/images/example2.jpg",
        "condition": "NEW",
        "stock": 75,
        "merchant": {
          "id": "SAM-10001",
          "name": "Samsung Official Store",
          "type": "OFFICIAL"
        }
      }
    ],
    "total_products": 2
  }
]

๐Ÿ“‹ Job Status Reference

Job Statuses:

  • AWAITING_APPROVAL - Pending team approval
  • PROCESSING - Approved, scraping in progress
  • COMPLETED - All items successful
  • PARTIAL_COMPLETE - Some items failed
  • FAILED - All items failed
  • REJECTED - Rejected or timed out

HTTP Status Codes:

  • 200 - Success
  • 202 - Job accepted
  • 401 - Invalid/missing token
  • 402 - Insufficient credits
  • 404 - Job not found
  • 422 - Validation error

For interactive API documentation, see Swagger UI.